diff --git a/.circleci/config.yml b/.circleci/config.yml index 16f4a5766..4ac75d59d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,7 @@ jobs: build: working_directory: ~/code docker: - - image: python:3.7-slim + - image: unicef/etools-base:latest environment: PGHOST: 127.0.0.1 DATABASE_URL: "postgis://postgres:postgres@127.0.0.1:5432/etools_datamart" @@ -23,22 +23,6 @@ jobs: POSTGRES_DB: etools_datamart POSTGRES_PASSWORD: postgres steps: - - run: - name: Install dependencies - command: | - mkdir -p /usr/share/man/man1 - mkdir -p /usr/share/man/man7 - apt-get update - apt-get install -y \ - libc-bin \ - libzmq3-dev \ - git \ - gcc \ - curl \ - gdal-bin \ - python-dev \ - postgresql-client - - restore_cache: keys: - source-{{ .Branch }}-{{ .Revision }} diff --git a/src/etools_datamart/api/endpoints/datamart/__init__.py b/src/etools_datamart/api/endpoints/datamart/__init__.py index 9f206c81a..2f21ae1f4 100644 --- a/src/etools_datamart/api/endpoints/datamart/__init__.py +++ b/src/etools_datamart/api/endpoints/datamart/__init__.py @@ -2,10 +2,11 @@ # flake8: noqa: F401 from .actionpoint import ActionPointViewSet from .attachment import AttachmentViewSet -from .audit_engagement import EngagementViewSet +from .audit_engagement import EngagementDetailViewSet, EngagementViewSet from .audit_result import AuditResultViewSet from .audit_spotcheck import SpotCheckViewSet from .famindicator import FAMIndicatorViewSet +from .fm_questions import FMOntrackViewSet, FMQuestionViewSet from .funds_grant import GrantViewSet from .funds_reservation import FundsReservationViewSet from .hact_aggregate import HACTAggreagateViewSet diff --git a/src/etools_datamart/api/endpoints/datamart/actionpoint.py b/src/etools_datamart/api/endpoints/datamart/actionpoint.py index b82e59c83..35604f409 100644 --- a/src/etools_datamart/api/endpoints/datamart/actionpoint.py +++ b/src/etools_datamart/api/endpoints/datamart/actionpoint.py @@ -97,6 +97,20 @@ class Meta(DataMartSerializer.Meta): exclude = () +class ActionPointSimpleSerializer(DataMartSerializer): + class Meta(DataMartSerializer.Meta): + model = models.ActionPoint + exclude = None + fields = ( + 'actions_taken', + 'assigned_by_name', + 'assigned_by_email', + 'assigned_to_name', + 'assigned_to_email', + 'status', + ) + + class ActionPointFilterForm(forms.Form): created = DateRangePickerField(label='Created between', required=False) diff --git a/src/etools_datamart/api/endpoints/datamart/audit_engagement.py b/src/etools_datamart/api/endpoints/datamart/audit_engagement.py index 41dc1acae..0a62be467 100644 --- a/src/etools_datamart/api/endpoints/datamart/audit_engagement.py +++ b/src/etools_datamart/api/endpoints/datamart/audit_engagement.py @@ -85,6 +85,49 @@ def get_partner_name(self, obj): return 'N/A' +class EngagementDetailSerializer(DataMartSerializer): + partner = serializers.SerializerMethodField() + vendor_number = serializers.SerializerMethodField() + + class Meta(DataMartSerializer.Meta): + model = models.Engagement + exclude = None + fields = ( + "po_item", + "engagement_type", + "start_date", + "end_date", + "partner", + "partner_contacted_at", + "vendor_number", + "auditor", + "total_value", # Value of FACE forms + "spotcheck_total_amount_tested", + "date_of_field_visit", # FACE Form period + "final_report", # Findings + "agreement", # Agreed actions by partner + "rating", + "rating_extra", + "spotcheck_total_amount_of_ineligible_expenditure", + "financial_findings", # Financial findings + "action_points", + "status", + "audit_opinion", + ) + + def get_partner(self, obj): + try: + return obj.partner['name'] + except KeyError: + return 'N/A' + + def get_vendor_number(self, obj): + try: + return obj.partner['vendor_number'] + except KeyError: + return 'N/A' + + class EngagementFilterForm(forms.Form): engagement_type__in = Select2MultipleChoiceField(label='Engagement Type', choices=models.Engagement.TYPES, @@ -129,3 +172,17 @@ class EngagementViewSet(DataMartViewSet): def get_querystringfilter_form(self, request, filter): return EngagementFilterForm(request.GET, filter.form_prefix) + + +class EngagementDetailViewSet(DataMartViewSet): + querystringfilter_form_base_class = EngagementFilterForm + + serializer_class = EngagementDetailSerializer + queryset = models.Engagement.objects.all() + filter_fields = ('engagement_type', 'partner_contacted_at', + 'start_date', 'end_date', 'status', 'audit_opinion') + serializers_fieldsets = {'std': None, + 'simple': EngagementSerializerSimple} + + def get_querystringfilter_form(self, request, filter): + return EngagementFilterForm(request.GET, filter.form_prefix) diff --git a/src/etools_datamart/api/endpoints/datamart/fm_questions.py b/src/etools_datamart/api/endpoints/datamart/fm_questions.py new file mode 100644 index 000000000..b6e6e0700 --- /dev/null +++ b/src/etools_datamart/api/endpoints/datamart/fm_questions.py @@ -0,0 +1,23 @@ +from etools_datamart.api.endpoints.common import DataMartViewSet +from etools_datamart.api.endpoints.datamart.serializers import DataMartSerializer +from etools_datamart.apps.mart.data import models + + +class FMQuestionSerializer(DataMartSerializer): + class Meta(DataMartSerializer.Meta): + model = models.FMQuestion + + +class FMQuestionViewSet(DataMartViewSet): + serializer_class = FMQuestionSerializer + queryset = models.FMQuestion.objects.all() + + +class FMOntrackSerializer(DataMartSerializer): + class Meta(DataMartSerializer.Meta): + model = models.FMOntrack + + +class FMOntrackViewSet(DataMartViewSet): + serializer_class = FMOntrackSerializer + queryset = models.FMOntrack.objects.all() diff --git a/src/etools_datamart/api/endpoints/datamart/partners_staffmember.py b/src/etools_datamart/api/endpoints/datamart/partners_staffmember.py index 69c83919e..44f822fef 100644 --- a/src/etools_datamart/api/endpoints/datamart/partners_staffmember.py +++ b/src/etools_datamart/api/endpoints/datamart/partners_staffmember.py @@ -17,6 +17,7 @@ class PartnerStaffMemberSerializer(DataMartSerializer): class Meta: model = models.PartnerStaffMember fields = ('partner', + 'user', 'vendor_number', 'position', 'first_name', diff --git a/src/etools_datamart/api/urls.py b/src/etools_datamart/api/urls.py index 234f4c230..932d2948d 100644 --- a/src/etools_datamart/api/urls.py +++ b/src/etools_datamart/api/urls.py @@ -25,12 +25,15 @@ class ReadOnlyRouter(APIReadOnlyRouter): router.register(r'datamart/attachment/attachment', endpoints.AttachmentViewSet) router.register(r'datamart/funds/grants', endpoints.GrantViewSet) router.register(r'datamart/audit/engagements', endpoints.EngagementViewSet) +router.register(r'datamart/audit/engagement-details', endpoints.EngagementDetailViewSet, basename="engagement-details") router.register(r'datamart/audit/results', endpoints.AuditResultViewSet) router.register(r'datamart/audit/spot-check', endpoints.SpotCheckViewSet) router.register(r'datamart/actionpoints', endpoints.ActionPointViewSet) router.register(r'datamart/locations', endpoints.LocationViewSet) router.register(r'datamart/office', endpoints.OfficeViewSet) router.register(r'datamart/fam-indicators', endpoints.FAMIndicatorViewSet) +router.register(r'datamart/fm-questions', endpoints.FMQuestionViewSet) +router.register(r'datamart/fm-ontrack', endpoints.FMOntrackViewSet) router.register(r'datamart/funds-reservation', endpoints.FundsReservationViewSet) router.register(r'datamart/hact/aggregate', endpoints.HACTAggreagateViewSet) router.register(r'datamart/hact/history', endpoints.HACTHistoryViewSet) diff --git a/src/etools_datamart/apps/etl/loader.py b/src/etools_datamart/apps/etl/loader.py index 74df2197f..0ddc023ee 100644 --- a/src/etools_datamart/apps/etl/loader.py +++ b/src/etools_datamart/apps/etl/loader.py @@ -2,6 +2,7 @@ import time from uuid import UUID +from django.conf import settings from django.contrib.contenttypes.models import ContentType from django.core.cache import caches from django.utils import timezone @@ -314,6 +315,14 @@ def get_values(self, record): continue else: ret[k] = self.get_value(k, v, record, ret) + + # enforce field size limit + try: + ret[k] = ret[k][:settings.FIELD_SIZE_LIMIT] + except TypeError: + # not subscriptable so ignoring + pass + return ret def get_value(self, field_name, value_or_func, original_record, current_mapping): @@ -394,8 +403,9 @@ def on_start(self, run_type): self.etl_task.update(**defs) def on_end(self, error=None, retry=False): - from etools_datamart.apps.subscriptions.models import Subscription from django.utils import timezone + + from etools_datamart.apps.subscriptions.models import Subscription self.results.total_records = self.model.objects.count() cost = time.time() - self._start diff --git a/src/etools_datamart/apps/mart/data/admin.py b/src/etools_datamart/apps/mart/data/admin.py index 4480fcea6..620603af8 100644 --- a/src/etools_datamart/apps/mart/data/admin.py +++ b/src/etools_datamart/apps/mart/data/admin.py @@ -153,6 +153,12 @@ class InterventionAdmin(DataModelAdmin, TruncateTableMixin): date_hierarchy = 'start_date' +@register(models.GeoName) +class GeoNameAdmin(ModelAdmin): + list_display = ("lat", "lng", "name", "geoname_id",) + search_fields = ("lat", "lng", "name",) + + @register(models.InterventionByLocation) class InterventionByLocationAdmin(DataModelAdmin, TruncateTableMixin): list_display = ('country_name', 'title', 'document_type', @@ -203,7 +209,7 @@ class LocationAdmin(DataModelAdmin): # readonly_fields = ('parent', 'gateway') list_filter = ('level',) search_fields = ('name',) - autocomplete_fields = ('parent', 'gateway') + autocomplete_fields = ('parent', 'gateway', 'geoname',) actions = ['update_centroid', mass_update] mass_update_exclude = ['geom', 'id'] mass_update_hints = [] @@ -247,7 +253,14 @@ class PartnerAdmin(DataModelAdmin): @register(models.PartnerStaffMember) class PartnerStaffMemberAdmin(DataModelAdmin): - list_display = ('title', 'last_name', 'first_name', 'email', 'phone') + list_display = ( + 'title', + 'last_name', + 'first_name', + 'user', + 'email', + 'phone', + ) date_hierarchy = 'created' list_filter = ('active',) diff --git a/src/etools_datamart/apps/mart/data/loader.py b/src/etools_datamart/apps/mart/data/loader.py index 25976ccb6..b70892572 100644 --- a/src/etools_datamart/apps/mart/data/loader.py +++ b/src/etools_datamart/apps/mart/data/loader.py @@ -1,6 +1,7 @@ import time from inspect import isclass +from django.conf import settings from django.core.exceptions import ObjectDoesNotExist from django.db import connections, models, transaction from django.utils import timezone @@ -94,6 +95,13 @@ def xxget_values(self, record): else: raise Exception("Invalid field name or mapping '%s:%s'" % (k, v)) + # enforce field size limit + try: + ret[k] = ret[k][:settings.FIELD_SIZE_LIMIT] + except TypeError: + # not subscriptable so ignoring + pass + return ret def get_value(self, field_name, value_or_func, original_record, current_mapping): @@ -305,6 +313,13 @@ def ssget_values(self, record): else: ret[k] = get_attr(record, v) + # enforce field size limit + try: + ret[k] = ret[k][:settings.FIELD_SIZE_LIMIT] + except TypeError: + # not subscriptable so ignoring + pass + return ret def get_value(self, field_name, value_or_func, original_record, current_mapping): diff --git a/src/etools_datamart/apps/mart/data/migrations/0119_engagement_auditor.py b/src/etools_datamart/apps/mart/data/migrations/0119_engagement_auditor.py new file mode 100644 index 000000000..a242da27a --- /dev/null +++ b/src/etools_datamart/apps/mart/data/migrations/0119_engagement_auditor.py @@ -0,0 +1,24 @@ +# Generated by Django 2.2.9 on 2020-04-22 12:55 + +import django.contrib.postgres.fields.jsonb +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('data', '0118_fundsreservation_pd_reference_number'), + ] + + operations = [ + migrations.AddField( + model_name='engagement', + name='auditor', + field=models.CharField(blank=True, max_length=255, null=True), + ), + migrations.AddField( + model_name='engagement', + name='action_points', + field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, null=True), + ), + ] diff --git a/src/etools_datamart/apps/mart/data/migrations/0120_auto_20200604_1749.py b/src/etools_datamart/apps/mart/data/migrations/0120_auto_20200604_1749.py new file mode 100644 index 000000000..d555be9bb --- /dev/null +++ b/src/etools_datamart/apps/mart/data/migrations/0120_auto_20200604_1749.py @@ -0,0 +1,24 @@ +# Generated by Django 2.2.11 on 2020-06-04 17:49 + +import django.contrib.postgres.fields.jsonb +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('data', '0119_engagement_auditor'), + ] + + operations = [ + migrations.AddField( + model_name='engagement', + name='rating', + field=models.CharField(blank=True, max_length=100, null=True), + ), + migrations.AddField( + model_name='engagement', + name='rating_extra', + field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, null=True), + ), + ] diff --git a/src/etools_datamart/apps/mart/data/migrations/0121_auto_20200610_1701.py b/src/etools_datamart/apps/mart/data/migrations/0121_auto_20200610_1701.py new file mode 100644 index 000000000..fcea64a4a --- /dev/null +++ b/src/etools_datamart/apps/mart/data/migrations/0121_auto_20200610_1701.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.11 on 2020-06-10 17:01 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('data', '0120_auto_20200604_1749'), + ] + + operations = [ + migrations.AlterField( + model_name='engagement', + name='rating', + field=models.CharField(blank=True, choices=[(0, 'N/A'), (1, 'Low'), (2, 'Medium'), (3, 'Significant'), (4, 'High')], max_length=100, null=True), + ), + ] diff --git a/src/etools_datamart/apps/mart/data/migrations/0122_pdindicator_pd_reference_number.py b/src/etools_datamart/apps/mart/data/migrations/0122_pdindicator_pd_reference_number.py new file mode 100644 index 000000000..74f36bc22 --- /dev/null +++ b/src/etools_datamart/apps/mart/data/migrations/0122_pdindicator_pd_reference_number.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.11 on 2020-06-29 17:58 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('data', '0121_auto_20200610_1701'), + ] + + operations = [ + migrations.AddField( + model_name='pdindicator', + name='pd_reference_number', + field=models.CharField(blank=True, max_length=256, null=True), + ), + ] diff --git a/src/etools_datamart/apps/mart/data/migrations/0123_auto_20200811_2129.py b/src/etools_datamart/apps/mart/data/migrations/0123_auto_20200811_2129.py new file mode 100644 index 000000000..ee0cb4977 --- /dev/null +++ b/src/etools_datamart/apps/mart/data/migrations/0123_auto_20200811_2129.py @@ -0,0 +1,33 @@ +# Generated by Django 2.2.11 on 2020-08-11 21:29 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('data', '0122_pdindicator_pd_reference_number'), + ] + + operations = [ + migrations.AlterField( + model_name='intervention', + name='currency', + field=models.CharField(blank=True, max_length=5, null=True), + ), + migrations.AlterField( + model_name='interventionbudget', + name='budget_currency', + field=models.CharField(blank=True, max_length=5, null=True), + ), + migrations.AlterField( + model_name='interventionbudget', + name='currency', + field=models.CharField(blank=True, max_length=5, null=True), + ), + migrations.AlterField( + model_name='interventionbylocation', + name='currency', + field=models.CharField(blank=True, max_length=5, null=True), + ), + ] diff --git a/src/etools_datamart/apps/mart/data/migrations/0124_fmontrack_fmquestion.py b/src/etools_datamart/apps/mart/data/migrations/0124_fmontrack_fmquestion.py new file mode 100644 index 000000000..44cb18fa7 --- /dev/null +++ b/src/etools_datamart/apps/mart/data/migrations/0124_fmontrack_fmquestion.py @@ -0,0 +1,67 @@ +# Generated by Django 2.2.11 on 2020-07-29 15:37 + +import django.contrib.postgres.fields.jsonb +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('data', '0123_auto_20200811_2129'), + ] + + operations = [ + migrations.CreateModel( + name='FMOntrack', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('source_id', models.IntegerField(blank=True, db_index=True, null=True)), + ('last_modify_date', models.DateTimeField(auto_now=True)), + ('seen', models.DateTimeField(blank=True, null=True)), + ('country_name', models.CharField(max_length=100)), + ('schema_name', models.CharField(db_index=True, max_length=63)), + ('area_code', models.CharField(db_index=True, max_length=10)), + ('entity', models.CharField(blank=True, max_length=255, null=True, verbose_name='Entity')), + ('narrative_finding', models.TextField(blank=True, null=True, verbose_name='Overall Finding Narrative')), + ('overall_finding_rating', models.CharField(blank=True, max_length=50, null=True, verbose_name='Overall Finding Narrative')), + ('monitoring_activity', models.CharField(blank=True, max_length=64, null=True, verbose_name='Monitoring Activity')), + ('monitoring_activity_end_date', models.CharField(blank=True, max_length=50, null=True, verbose_name='Monitoring Activity End Date')), + ('location', models.CharField(blank=True, max_length=254, null=True, verbose_name='Location')), + ('site', models.CharField(blank=True, max_length=254, null=True, verbose_name='Location')), + ('outcome', models.CharField(blank=True, max_length=30, null=True, verbose_name='Outcome WBS')), + ], + options={ + 'ordering': ('id',), + }, + ), + migrations.CreateModel( + name='FMQuestion', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('source_id', models.IntegerField(blank=True, db_index=True, null=True)), + ('last_modify_date', models.DateTimeField(auto_now=True)), + ('seen', models.DateTimeField(blank=True, null=True)), + ('country_name', models.CharField(max_length=100)), + ('schema_name', models.CharField(db_index=True, max_length=63)), + ('area_code', models.CharField(db_index=True, max_length=10)), + ('title', models.TextField(blank=True, null=True, verbose_name='Question Title')), + ('answer_type', models.CharField(blank=True, max_length=15, null=True, verbose_name='Answer Type')), + ('answer_options', models.TextField(blank=True, null=True, verbose_name='Answer Options')), + ('entity_type', models.CharField(blank=True, max_length=100, null=True, verbose_name='Entity Type')), + ('entity_instance', models.CharField(blank=True, max_length=255, null=True, verbose_name='Entity Instance')), + ('question_collection_methods', models.TextField(blank=True, null=True, verbose_name='Question Collection Methods')), + ('collection_method', models.CharField(blank=True, max_length=100, null=True, verbose_name='Collection Method')), + ('answer', django.contrib.postgres.fields.jsonb.JSONField(blank=True, null=True, verbose_name='Answer')), + ('summary_answer', django.contrib.postgres.fields.jsonb.JSONField(blank=True, null=True, verbose_name='Summary Answer')), + ('monitoring_activity_id', models.IntegerField(blank=True, null=True, verbose_name='Monitoring Activity ID')), + ('specific_details', models.TextField(blank=True, null=True, verbose_name='Specific Details')), + ('date_of_capture', models.CharField(blank=True, max_length=50, null=True, verbose_name='Date of Capture')), + ('monitoring_activity_end_date', models.CharField(blank=True, max_length=50, null=True, verbose_name='Monitoring Activity End Date')), + ('location', models.CharField(blank=True, max_length=254, null=True, verbose_name='Location')), + ('site', models.CharField(blank=True, max_length=254, null=True, verbose_name='Location')), + ], + options={ + 'ordering': ('id',), + }, + ), + ] diff --git a/src/etools_datamart/apps/mart/data/migrations/0125_auto_20200924_1740.py b/src/etools_datamart/apps/mart/data/migrations/0125_auto_20200924_1740.py new file mode 100644 index 000000000..f36325743 --- /dev/null +++ b/src/etools_datamart/apps/mart/data/migrations/0125_auto_20200924_1740.py @@ -0,0 +1,28 @@ +# Generated by Django 2.2.11 on 2020-09-24 17:40 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('data', '0124_fmontrack_fmquestion'), + ] + + operations = [ + migrations.AddField( + model_name='intervention', + name='cfei_number', + field=models.CharField(blank=True, max_length=150, null=True), + ), + migrations.AddField( + model_name='interventionbudget', + name='cfei_number', + field=models.CharField(blank=True, max_length=150, null=True), + ), + migrations.AddField( + model_name='interventionbylocation', + name='cfei_number', + field=models.CharField(blank=True, max_length=150, null=True), + ), + ] diff --git a/src/etools_datamart/apps/mart/data/migrations/0126_auto_20200924_1847.py b/src/etools_datamart/apps/mart/data/migrations/0126_auto_20200924_1847.py new file mode 100644 index 000000000..9fdcdebaf --- /dev/null +++ b/src/etools_datamart/apps/mart/data/migrations/0126_auto_20200924_1847.py @@ -0,0 +1,33 @@ +# Generated by Django 2.2.11 on 2020-09-24 18:47 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('data', '0125_auto_20200924_1740'), + ] + + operations = [ + migrations.AddField( + model_name='intervention', + name='partner_sea_risk_rating', + field=models.CharField(blank=True, max_length=150, null=True), + ), + migrations.AddField( + model_name='interventionbudget', + name='partner_sea_risk_rating', + field=models.CharField(blank=True, max_length=150, null=True), + ), + migrations.AddField( + model_name='interventionbylocation', + name='partner_sea_risk_rating', + field=models.CharField(blank=True, max_length=150, null=True), + ), + migrations.AddField( + model_name='partner', + name='sea_risk_rating_name', + field=models.CharField(blank=True, max_length=150, null=True), + ), + ] diff --git a/src/etools_datamart/apps/mart/data/migrations/0127_partnerstaffmember_user.py b/src/etools_datamart/apps/mart/data/migrations/0127_partnerstaffmember_user.py new file mode 100644 index 000000000..35dd06ad1 --- /dev/null +++ b/src/etools_datamart/apps/mart/data/migrations/0127_partnerstaffmember_user.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.11 on 2020-11-03 19:24 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('data', '0126_auto_20200924_1847'), + ] + + operations = [ + migrations.AddField( + model_name='partnerstaffmember', + name='user', + field=models.CharField(blank=True, max_length=255, null=True), + ), + ] diff --git a/src/etools_datamart/apps/mart/data/migrations/0128_auto_20201125_1645.py b/src/etools_datamart/apps/mart/data/migrations/0128_auto_20201125_1645.py new file mode 100644 index 000000000..5470137a2 --- /dev/null +++ b/src/etools_datamart/apps/mart/data/migrations/0128_auto_20201125_1645.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.11 on 2020-11-25 16:45 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('data', '0127_partnerstaffmember_user'), + ] + + operations = [ + migrations.AlterField( + model_name='travel', + name='section_name', + field=models.CharField(blank=True, db_index=True, max_length=128, null=True), + ), + ] diff --git a/src/etools_datamart/apps/mart/data/migrations/0129_auto_20201125_1623.py b/src/etools_datamart/apps/mart/data/migrations/0129_auto_20201125_1623.py new file mode 100644 index 000000000..e48df1a9d --- /dev/null +++ b/src/etools_datamart/apps/mart/data/migrations/0129_auto_20201125_1623.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.11 on 2020-11-25 16:23 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('data', '0128_auto_20201125_1645'), + ] + + operations = [ + migrations.AlterField( + model_name='reportindicator', + name='section_name', + field=models.CharField(blank=True, max_length=128, null=True), + ), + ] diff --git a/src/etools_datamart/apps/mart/data/models/__init__.py b/src/etools_datamart/apps/mart/data/models/__init__.py index 84960b711..6946e9738 100644 --- a/src/etools_datamart/apps/mart/data/models/__init__.py +++ b/src/etools_datamart/apps/mart/data/models/__init__.py @@ -4,12 +4,13 @@ from .audit_result import AuditResult # noqa from .audit_spotcheck import SpotCheck # noqa from .fam import FAMIndicator # noqa +from .fm_questions import FMOntrack, FMQuestion # noqa from .funds_grant import Grant # noqa from .funds_reservation import FundsReservation # noqa from .hact import HACT # noqa from .hact_detail import HACTHistory # noqa from .intervention import Intervention, InterventionByLocation # noqa -from .location import GatewayType, Location # noqa +from .location import GatewayType, GeoName, Location # noqa from .partner import Partner # noqa from .partners_agreement import Agreement # noqa from .partners_interventionbudget import InterventionBudget # noqa diff --git a/src/etools_datamart/apps/mart/data/models/audit_engagement.py b/src/etools_datamart/apps/mart/data/models/audit_engagement.py index f6cc19d93..c85b68eca 100644 --- a/src/etools_datamart/apps/mart/data/models/audit_engagement.py +++ b/src/etools_datamart/apps/mart/data/models/audit_engagement.py @@ -6,9 +6,10 @@ from etools_datamart.apps.mart.data.loader import EtoolsLoader from etools_datamart.apps.mart.data.models.base import EtoolsDataMartModel -from etools_datamart.apps.sources.etools.enrichment.consts import AuditEngagementConsts -from etools_datamart.apps.sources.etools.models import (AuditAudit, AuditEngagement, AuditEngagementActivePd, - AuditMicroassessment, AuditSpecialaudit, AuditSpotcheck, +from etools_datamart.apps.sources.etools.enrichment.consts import AuditEngagementConsts, RiskConst +from etools_datamart.apps.sources.etools.models import (ActionPointsActionpoint, AuditAudit, AuditEngagement, + AuditEngagementActivePd, AuditMicroassessment, AuditRisk, + AuditRiskcategory, AuditSpecialaudit, AuditSpotcheck, DjangoContentType, UnicefAttachmentsAttachment,) from .partner import Partner @@ -35,11 +36,15 @@ class EngagementlLoader(EtoolsLoader): + OVERALL_RISK_MAP = {} def get_queryset(self): - return AuditEngagement.objects.select_related('partner', - 'agreement', - 'po_item').all() + return AuditEngagement.objects.select_related( + 'partner', + 'agreement', + 'po_item', + 'risks', + ).all() def get_content_type(self, sub_type): mapping = {AuditAudit: 'audit', @@ -159,6 +164,43 @@ def get_staff_members(self, record: AuditEngagement, values: dict, **kwargs): # def get_active_pd(self, original: AuditEngagement, values: dict): # return None + def get_action_points(self, record: AuditEngagement, values: dict, **kwargs): + from etools_datamart.api.endpoints.datamart.actionpoint import ActionPointSimpleSerializer + + ret = [] + for r in ActionPointsActionpoint.objects.filter(engagement=record).all(): + ret.append(ActionPointSimpleSerializer(r).data) + return ret + + def get_rating(self, record: AuditEngagement, values: dict, **kwargs): + schema = self.context['country'] + category_id = self.OVERALL_RISK_MAP.get(schema, None) + if category_id is None: + try: + category = AuditRiskcategory.objects.get( + header="Overall Risk Assessment", + ) + except AuditRiskcategory.DoesNotExist: + pass + else: + self.OVERALL_RISK_MAP[schema] = category.pk + category_id = category.pk + + try: + risk = AuditRisk.objects.get( + engagement=record, + blueprint__category__pk=category_id, + ) + except AuditRisk.DoesNotExist: + extra = "" + value = "" + else: + extra = risk.extra + value = risk.value + + values["rating_extra"] = extra + return value + def process_country(self): for m in [AuditMicroassessment, AuditSpecialaudit, AuditSpotcheck, AuditAudit]: for record in m.objects.select_related('engagement_ptr'): @@ -213,6 +255,7 @@ class Engagement(EtoolsDataMartModel): additional_supporting_documentation_provided = models.DecimalField(blank=True, null=True, decimal_places=2, max_digits=20) agreement = models.CharField(max_length=300, blank=True, null=True) + auditor = models.CharField(max_length=255, blank=True, null=True) amount_refunded = models.DecimalField(blank=True, null=True, default=0, decimal_places=2, max_digits=20) authorized_officers = models.TextField(blank=True, null=True) authorized_officers_data = JSONField(blank=True, null=True) @@ -268,6 +311,13 @@ class Engagement(EtoolsDataMartModel): # MicroAssessment # final_report = CodedGenericRelation(Attachment, code='micro_assessment_final_report') # Audit + rating = models.CharField( + max_length=100, + blank=True, + null=True, + choices=RiskConst.VALUES, + ) + rating_extra = JSONField(blank=True, null=True) AUDIT_OPTION_UNQUALIFIED = "unqualified" AUDIT_OPTION_QUALIFIED = "qualified" @@ -290,6 +340,9 @@ class Engagement(EtoolsDataMartModel): # SpecialAudit # final_report = CodedGenericRelation(Attachment, code='special_audit_final_report') + # ActionPoints + action_points = JSONField(blank=True, null=True) + # datamart loader = EngagementlLoader() @@ -304,6 +357,7 @@ class Options: active_pd="-", active_pd_data="i", agreement="agreement.order_number", # PurchaseOrder + auditor="agreement.auditor_firm.name", authorized_officers="-", reference_number="-", engagement_attachments='-', @@ -322,5 +376,7 @@ class Options: audited_expenditure='_impl.audited_expenditure', financial_findings='_impl.financial_findings', audit_opinion='_impl.audit_opinion', - + action_points="-", + rating="-", + rating_extra="i", ) diff --git a/src/etools_datamart/apps/mart/data/models/fm_questions.py b/src/etools_datamart/apps/mart/data/models/fm_questions.py new file mode 100644 index 000000000..321f05c0c --- /dev/null +++ b/src/etools_datamart/apps/mart/data/models/fm_questions.py @@ -0,0 +1,284 @@ +from django.contrib.postgres.fields import JSONField +from django.db import models +from django.utils.translation import gettext as _ + +from etools_datamart.apps.mart.data.loader import EtoolsLoader +from etools_datamart.apps.mart.data.models.base import EtoolsDataMartModel +from etools_datamart.apps.sources.etools.models import ( + FieldMonitoringDataCollectionActivityoverallfinding, + FieldMonitoringDataCollectionFinding, + FieldMonitoringPlanningMonitoringactivityCpOutputs, + FieldMonitoringPlanningMonitoringactivityInterventions, + FieldMonitoringPlanningMonitoringactivityPartners, + FieldMonitoringSettingsOption, +) + + +class FMQuestionLoader(EtoolsLoader): + """Loader for FM Questions""" + def get_answer_options( + self, + record: FieldMonitoringDataCollectionFinding, + values: dict, + **kwargs, + ): + option_qs = FieldMonitoringSettingsOption.objects.filter( + question=record.activity_question, + ) + return ", ".join([o.label for o in option_qs.all()]) + + def get_question_collection_methods( + self, + record: FieldMonitoringDataCollectionFinding, + values: dict, + **kwargs, + ): + return ", ".join( + [m.name for m in record.activity_question.methods.all()] + ) + + def process_country(self): + for rec in self.get_queryset(): + filters = self.config.key(self, rec) + values = self.get_values(rec) + activity = rec.activity_question.monitoring_activity + partner_qs = FieldMonitoringPlanningMonitoringactivityPartners.objects.filter( + monitoringactivity=activity, + ) + intervention_qs = FieldMonitoringPlanningMonitoringactivityInterventions.objects.filter( + monitoringactivity=activity, + ) + cp_output_qs = FieldMonitoringPlanningMonitoringactivityCpOutputs.objects.filter( + monitoringactivity=activity, + ) + for rec in partner_qs.all(): + partner = rec.partnerorganization + values["entity_type"] = "Partner" + values["entity_instance"] = partner.name + values["outcome"] = None + op = self.process_record(filters, values) + self.increment_counter(op) + for rec in intervention_qs.all(): + pd = rec.intervention + values["entity_type"] = "PD/SSFA" + values["entity_instance"] = pd.reference_number + values["outcome"] = None + op = self.process_record(filters, values) + self.increment_counter(op) + for rec in cp_output_qs.all(): + cp_ouput = rec.result + values["entity_type"] = "CP Output" + values["entity_instance"] = cp_output.name + values["outcome"] = cp_output.parent.wbs if cp_output.parent else None + op = self.process_record(filters, values) + self.increment_counter(op) + + +class FMQuestion(EtoolsDataMartModel): + title = models.TextField( + verbose_name=_("Question Title"), + null=True, + blank=True, + ) + answer_type = models.CharField( + verbose_name=_("Answer Type"), + max_length=15, + null=True, + blank=True, + ) + answer_options = models.TextField( + verbose_name=_("Answer Options"), + null=True, + blank=True, + ) + entity_type = models.CharField( + verbose_name=_("Entity Type"), + max_length=100, + null=True, + blank=True, + ) + entity_instance = models.CharField( + verbose_name=_("Entity Instance"), + max_length=255, + null=True, + blank=True, + ) + question_collection_methods = models.TextField( + verbose_name=_("Question Collection Methods"), + null=True, + blank=True, + ) + collection_method = models.CharField( + verbose_name=_("Collection Method"), + max_length=100, + null=True, + blank=True, + ) + answer = JSONField( + verbose_name=_("Answer"), + null=True, + blank=True, + ) + summary_answer = JSONField( + verbose_name=_("Summary Answer"), + null=True, + blank=True, + ) + monitoring_activity_id = models.IntegerField( + verbose_name=_("Monitoring Activity ID"), + null=True, + blank=True, + ) + specific_details = models.TextField( + verbose_name=_("Specific Details"), + null=True, + blank=True, + ) + date_of_capture = models.CharField( + verbose_name=_("Date of Capture"), + max_length=50, + null=True, + blank=True, + ) + monitoring_activity_end_date = models.CharField( + verbose_name=_("Monitoring Activity End Date"), + max_length=50, + null=True, + blank=True, + ) + location = models.CharField( + verbose_name=_("Location"), + max_length=254, + null=True, + blank=True, + ) + site = models.CharField( + verbose_name=_("Location"), + max_length=254, + null=True, + blank=True, + ) + + loader = FMQuestionLoader() + + class Meta: + ordering = ("id",) + + class Options: + source = FieldMonitoringDataCollectionFinding + mapping = dict( + title="activity_question.text", + answer_type="activity_question.answer_type", + answer_options="-", + entity_type="i", + entity_instance="i", + question_collection_methods="-", + collection_method="started_checklist.method", + answer="value", + summary_answer="activity_question.overall_finding.value", + monitoring_activity_id="activity_question.monitoring_activity.pk", + specific_details="i", + date_of_capture="", + monitoring_activity_end_date="activity_question.monitoring_activity.end_date", + location="activity_question.monitoring_activity.location.name", + site="activity_question.monitoring_activity.locationsite.name", + ) + + +class FMOntrackLoader(EtoolsLoader): + """Loader for FM Ontrack""" + def get_overall_finding_rating( + self, + record: FieldMonitoringDataCollectionActivityoverallfinding, + values: dict, + **kwargs, + ): + return "On track" if record.on_track else "Off track" + + def process_country(self): + for rec in self.get_queryset(): + filters = self.config.key(self, rec) + values = self.get_values(rec) + for partner in rec.monitoring_activity.partners.all(): + values["entity"] = partner.name + values["outcome"] = None + op = self.process_record(filters, values) + self.increment_counter(op) + for pd in rec.monitoring_activity.interventions.all(): + values["entity"] = pd.reference_number + values["outcome"] = None + op = self.process_record(filters, values) + self.increment_counter(op) + for cp_output in rec.monitoring_activity.cp_output.all(): + values["entity"] = cp_output.name + values["outcome"] = cp_output.parent.wbs if cp_output.parent else None + op = self.process_record(filters, values) + self.increment_counter(op) + + +class FMOntrack(EtoolsDataMartModel): + entity = models.CharField( + verbose_name=_("Entity"), + max_length=255, + null=True, + blank=True, + ) + narrative_finding = models.TextField( + verbose_name=_("Overall Finding Narrative"), + null=True, + blank=True, + ) + overall_finding_rating = models.CharField( + verbose_name=_("Overall Finding Narrative"), + max_length=50, + null=True, + blank=True, + ) + monitoring_activity = models.CharField( + verbose_name=_("Monitoring Activity"), + max_length=64, + blank=True, + null=True, + ) + monitoring_activity_end_date = models.CharField( + verbose_name=_("Monitoring Activity End Date"), + max_length=50, + null=True, + blank=True, + ) + location = models.CharField( + verbose_name=_("Location"), + max_length=254, + null=True, + blank=True, + ) + site = models.CharField( + verbose_name=_("Location"), + max_length=254, + null=True, + blank=True, + ) + outcome = models.CharField( + verbose_name=_("Outcome WBS"), + max_length=30, + null=True, + blank=True, + ) + + loader = FMOntrackLoader() + + class Meta: + ordering = ("id",) + + class Options: + source = FieldMonitoringDataCollectionActivityoverallfinding + mapping = dict( + entity="i", + narrative_finding="i", + overall_finding_rating="-", + monitoring_activity="monitoring_activity.number", + monitoring_activity_end_date="monitoring_activity.end_date", + location="monitoring_activity.location.name", + site="monitoring_activity.locationsite.name", + outcome="i", + ) diff --git a/src/etools_datamart/apps/mart/data/models/intervention.py b/src/etools_datamart/apps/mart/data/models/intervention.py index 9d51bef12..9a991d4cd 100644 --- a/src/etools_datamart/apps/mart/data/models/intervention.py +++ b/src/etools_datamart/apps/mart/data/models/intervention.py @@ -8,9 +8,12 @@ from etools_datamart.apps.mart.data.loader import EtoolsLoader from etools_datamart.apps.mart.data.models.reports_office import Office from etools_datamart.apps.sources.etools.enrichment.consts import PartnersInterventionConst, TravelType -from etools_datamart.apps.sources.etools.models import (FundsFundsreservationheader, PartnersAgreementamendment, - PartnersIntervention, PartnersInterventionplannedvisits, - ReportsAppliedindicator, T2FTravelactivity,) + +from etools_datamart.apps.sources.etools.models import (FundsFundsreservationheader, PartnersIntervention, + PartnersInterventionamendment, + PartnersInterventionplannedvisits, ReportsAppliedindicator, + T2FTravelactivity,) +from etools_datamart.sentry import process_exception from .base import EtoolsDataMartModel from .location import Location @@ -26,6 +29,7 @@ class InterventionAbstract(models.Model): amendment_types = models.TextField(blank=True, null=True) attachment_types = models.TextField(blank=True, null=True) agreement_id = models.IntegerField(blank=True, null=True) + cfei_number = models.CharField(max_length=150, null=True, blank=True) clusters = models.TextField(blank=True, null=True) contingency_pd = models.NullBooleanField(null=True) # cp_output = models.CharField(max_length=300, blank=True, null=True) @@ -37,7 +41,7 @@ class InterventionAbstract(models.Model): country_programme = models.CharField(max_length=300, blank=True, null=True) country_programme_id = models.IntegerField(blank=True, null=True) created = models.DateTimeField(blank=True, null=True) - currency = models.CharField(max_length=4, blank=True, null=True) + currency = models.CharField(max_length=5, blank=True, null=True) days_from_prc_review_to_signature = models.IntegerField(blank=True, null=True) days_from_submission_to_signature = models.IntegerField(blank=True, null=True) document_type = models.CharField(max_length=255, null=True, @@ -66,6 +70,7 @@ class InterventionAbstract(models.Model): # partner_focal_point_title = models.CharField(max_length=64, null=True) partner_id = models.IntegerField(blank=True, null=True) partner_name = models.CharField(max_length=200, null=True) + partner_sea_risk_rating = models.CharField(max_length=150, null=True, blank=True) partner_signatory_name = models.CharField(max_length=300, null=True) partner_signatory_email = models.CharField(max_length=128, null=True) partner_signatory_first_name = models.CharField(max_length=64, null=True) @@ -97,7 +102,6 @@ class InterventionAbstract(models.Model): unicef_cash_local = models.DecimalField(max_digits=20, decimal_places=2, blank=True, null=True) unicef_focal_points = models.TextField(blank=True, null=True) unicef_focal_points_data = JSONField(blank=True, null=True, default=dict) - unicef_signatory_name = models.CharField(max_length=500, null=True) # unicef_signatory_first_name = models.CharField(max_length=30, null=True) # unicef_signatory_id = models.IntegerField(blank=True, null=True) @@ -156,6 +160,7 @@ class Options: partner_focal_points_data='i', partner_id='-', partner_name='agreement.partner.name', + partner_sea_risk_rating='i', partner_signatory_email='partner_authorized_officer_signatory.email', partner_signatory_first_name='partner_authorized_officer_signatory.first_name', partner_signatory_last_name='partner_authorized_officer_signatory.last_name', @@ -180,6 +185,7 @@ class Options: # unicef_signatory_id='unicef_signatory.pk', # unicef_signatory_last_name='unicef_signatory.last_name', updated='modified', + cfei_number='=', ) @@ -201,9 +207,14 @@ def get_queryset(self): def get_partner_id(self, record: PartnersIntervention, values: dict, **kwargs): try: - return Partner.objects.get(schema_name=self.context['country'].schema_name, - source_id=record.agreement.partner.id).pk + data = Partner.objects.get( + schema_name=self.context['country'].schema_name, + source_id=record.agreement.partner.id, + ) + values['partner_sea_risk_rating'] = data.sea_risk_rating_name + return data.pk except Partner.DoesNotExist: + values['partner_sea_risk_rating'] = None return None def get_planned_programmatic_visits(self, record: PartnersIntervention, values: dict, **kwargs): @@ -221,7 +232,7 @@ def get_attachment_types(self, record: PartnersIntervention, values: dict, **kwa return ", ".join(qs.values_list('type__name', flat=True)) def get_amendment_types(self, record: PartnersIntervention, values: dict, **kwargs): - qs = PartnersAgreementamendment.objects.filter(agreement=record.agreement).order_by('signed_date') + qs = PartnersInterventionamendment.objects.filter(intervention=record).order_by('signed_date') values['number_of_amendments'] = qs.count() if qs: values['last_amendment_date'] = qs.latest('signed_date').signed_date diff --git a/src/etools_datamart/apps/mart/data/models/location.py b/src/etools_datamart/apps/mart/data/models/location.py index 2ce8c8460..8a8d4266a 100644 --- a/src/etools_datamart/apps/mart/data/models/location.py +++ b/src/etools_datamart/apps/mart/data/models/location.py @@ -1,5 +1,3 @@ -from xml.etree import ElementTree - from django.conf import settings from django.contrib.gis.db import models as geomodels from django.contrib.gis.db.models.functions import Centroid @@ -49,7 +47,7 @@ def batch_update_centroid(self): latitude__isnull=False, longitude__isnull=False, ).all(): - geoname = GeoName.objects.get_or_add( + geoname, __ = GeoName.objects.get_or_create( lat=record.latitude, lng=record.longitude, ) @@ -63,7 +61,7 @@ def update_centroid(self): each.point = each.cent each.latitude = each.point.y each.longitude = each.point.x - each.geoname = GeoName.objects.get_or_add( + each.geoname, __ = GeoName.objects.get_or_create( lat=each.point.y, lng=each.point.x, ) @@ -125,57 +123,9 @@ def __str__(self): return self.name -# store geo names pulled from http://api.geonames.org -# Using lat and lng get geoname data with -# http://api.geonames.org/findNearby?lat=47.3&lng=9&username=ntrncic -class GeoNameManager(models.Manager): - def get_or_add(self, lat, lng): - # check if we have a matching lat, lng record - # if so, return that record - # otherwise create a new record based on results - # of request to geonames.org - if not lat or not lng: - return None - try: - geoname = self.get_queryset().get(lat=lat, lng=lng) - except GeoName.DoesNotExist: - payload = { - "lat": lat, - "lng": lng, - "username": settings.GEONAMES_USERNAME, - } - res = requests.get( - settings.GEONAMES_URL, - params=payload, - timeout=settings.REQUEST_TIMEOUT, - ) - geoname = ElementTree.fromstring(res.content)[0] - mapping = [ - ("toponym_name", "toponymName"), - ("name", "name"), - ("lat", "lat"), - ("lng", "lng"), - ("geoname_id", "geonameId"), - ("country_code", "countryCode"), - ("country_name", "countryName"), - ("fcl", "fcl"), - ("fcode", "fcode"), - ("distance", "distance"), - ] - data = {} - for k, f in mapping: - try: - data[k] = geoname.find(f).text - except AttributeError: - return None - lat = data.pop("lat") - lng = data.pop("lng") - geoname, __ = GeoName.objects.get_or_create( - lat=lat, - lng=lng, - defaults=data, - ) - return geoname +class GeoNameLimitException(Exception): + # GeoName requests have reached their limit + pass class GeoName(models.Model): @@ -190,10 +140,64 @@ class GeoName(models.Model): fcode = models.CharField(max_length=50, null=True) distance = models.FloatField(null=True) - objects = GeoNameManager() - class Meta: unique_together = ('lat', 'lng') def __str__(self): return f"{self.name} ({self.lat}, {self.lng})" + + def sync(self): + # store geo names pulled from http://api.geonames.org + # Using lat and lng get geoname data with + # http://api.geonames.org/findNearbyJSON?lat=47.3&lng=9&username=ntrncic + payload = { + "lat": self.lat, + "lng": self.lng, + "username": settings.GEONAMES_USERNAME, + } + res = requests.get( + settings.GEONAMES_URL, + params=payload, + timeout=30, + ) + geonames = res.json() + # check for exception + if "status" in geonames: + if geonames["status"]["value"] in [18, 19, 20]: + raise GeoNameLimitException + return None + + mapping = [ + ("toponym_name", "toponymName"), + ("name", "name"), + ("lat", "lat"), + ("lng", "lng"), + ("geoname_id", "geonameId"), + ("country_code", "countryCode"), + ("country_name", "countryName"), + ("fcl", "fcl"), + ("fcode", "fcode"), + ("distance", "distance"), + ] + try: + geoname = geonames["geonames"][0] + except IndexError: + return None + # to prevent unique exception as lat/lng + # returned in response may be altered + geo, __ = GeoName.objects.get_or_create( + lat=geoname.get("lat"), + lng=geoname.get("lng"), + ) + for k, f in mapping: + try: + setattr(geo, k, geoname.get(f)) + except AttributeError: + return None + if self != geo: + # geoname wioth lat/lng already exists + # update all related locations to existing geoname + # and delete this instance + Location.objects.filter(geoname=self).update(geoname=geo) + self.delete() + geo.save() diff --git a/src/etools_datamart/apps/mart/data/models/partner.py b/src/etools_datamart/apps/mart/data/models/partner.py index 4bc620ece..20e8f4ffa 100644 --- a/src/etools_datamart/apps/mart/data/models/partner.py +++ b/src/etools_datamart/apps/mart/data/models/partner.py @@ -102,6 +102,11 @@ class Partner(EtoolsDataMartModel): planned_engagement = JSONField(default=dict, blank=True, null=True) last_pv_date = models.DateField(blank=True, null=True, db_index=True) + sea_risk_rating_name = models.CharField( + max_length=150, + blank=True, + null=True, + ) class Meta: ordering = ("name",) diff --git a/src/etools_datamart/apps/mart/data/models/partners_interventionbudget.py b/src/etools_datamart/apps/mart/data/models/partners_interventionbudget.py index f03b4e4fc..a949ff674 100644 --- a/src/etools_datamart/apps/mart/data/models/partners_interventionbudget.py +++ b/src/etools_datamart/apps/mart/data/models/partners_interventionbudget.py @@ -43,7 +43,7 @@ class InterventionBudget(InterventionAbstract, EtoolsDataMartModel): created = models.DateTimeField(blank=True, null=True) modified = models.DateTimeField(blank=True, null=True) budget_cso_contribution = models.DecimalField(max_digits=20, decimal_places=2, blank=True, null=True) - budget_currency = models.CharField(max_length=4, blank=True, null=True) + budget_currency = models.CharField(max_length=5, blank=True, null=True) budget_total = models.DecimalField(max_digits=20, decimal_places=2, blank=True, null=True) budget_unicef_cash = models.DecimalField(max_digits=20, decimal_places=2, blank=True, null=True) budget_unicef_supply = models.DecimalField(max_digits=20, decimal_places=2, blank=True, null=True) diff --git a/src/etools_datamart/apps/mart/data/models/partners_staffmember.py b/src/etools_datamart/apps/mart/data/models/partners_staffmember.py index 5bf19e530..ac77a5ad4 100644 --- a/src/etools_datamart/apps/mart/data/models/partners_staffmember.py +++ b/src/etools_datamart/apps/mart/data/models/partners_staffmember.py @@ -2,15 +2,23 @@ # import django_filters from django.db import models +from etools_datamart.apps.mart.data.loader import EtoolsLoader from etools_datamart.apps.mart.data.models.base import EtoolsDataMartModel from etools_datamart.apps.sources.etools.models import PartnersPartnerstaffmember +class PartnerStaffMemberLoader(EtoolsLoader): + def get_user(self, record: PartnersPartnerstaffmember, values: dict, **kwargs): + if record.user: + return "{0.last_name} {0.first_name} ({0.email})".format(record.user) + + class PartnerStaffMember(EtoolsDataMartModel): title = models.CharField(max_length=255, blank=True, null=True) first_name = models.CharField(max_length=255, blank=True, null=True) last_name = models.CharField(max_length=255, blank=True, null=True) email = models.CharField(max_length=128, blank=True, null=True) + user = models.CharField(max_length=255, blank=True, null=True) phone = models.CharField(max_length=255, blank=True, null=True) partner = models.CharField(max_length=255, blank=True, null=True) vendor_number = models.CharField(max_length=100, blank=True, null=True) @@ -18,7 +26,12 @@ class PartnerStaffMember(EtoolsDataMartModel): created = models.DateTimeField(blank=True, null=True) modified = models.DateTimeField(blank=True, null=True) + loader = PartnerStaffMemberLoader() + class Options: source = PartnersPartnerstaffmember - mapping = {'partner': 'partner.name', - 'vendor_number': 'partner.vendor_number'} + mapping = { + 'partner': 'partner.name', + 'vendor_number': 'partner.vendor_number', + 'user': '-', + } diff --git a/src/etools_datamart/apps/mart/data/models/pd_indicator.py b/src/etools_datamart/apps/mart/data/models/pd_indicator.py index b0ac622f6..23f0bc612 100644 --- a/src/etools_datamart/apps/mart/data/models/pd_indicator.py +++ b/src/etools_datamart/apps/mart/data/models/pd_indicator.py @@ -64,6 +64,11 @@ class PDIndicator(LocationMixin, EtoolsDataMartModel): label = models.TextField(blank=True, null=True) measurement_specifications = models.TextField(blank=True, null=True) numerator_label = models.CharField(max_length=256, blank=True, null=True) + pd_reference_number = models.CharField( + max_length=256, + blank=True, + null=True, + ) # target = models.TextField() # This field type is a guess. target_denominator = models.DecimalField(blank=True, null=True, @@ -135,6 +140,7 @@ class Options: section_name='section.name', lower_result_name='lower_result.name', result_link_intervention='lower_result.result_link.intervention.pk', + pd_reference_number='lower_result.result_link.intervention.reference_number', pd_url='-', disaggregation_name='disaggregation.name', diff --git a/src/etools_datamart/apps/mart/data/models/reports_indicator.py b/src/etools_datamart/apps/mart/data/models/reports_indicator.py index 834b30b40..25a7cc97d 100644 --- a/src/etools_datamart/apps/mart/data/models/reports_indicator.py +++ b/src/etools_datamart/apps/mart/data/models/reports_indicator.py @@ -123,7 +123,7 @@ class ReportIndicator(NestedLocationMixin, EtoolsDataMartModel): pd_sffa_reference_number = models.CharField(max_length=256, blank=True, null=True) response_plan_name = models.CharField(max_length=1024, blank=True, null=True, ) result_link_intervention = models.IntegerField(blank=True, null=True) - section_name = models.CharField(max_length=45, blank=True, null=True) + section_name = models.CharField(max_length=128, blank=True, null=True) # source_disaggregation_id = models.IntegerField(blank=True, null=True) # source_location_id = models.IntegerField(blank=True, null=True) target = JSONField(default=dict, blank=True, null=True) diff --git a/src/etools_datamart/apps/mart/data/models/travel.py b/src/etools_datamart/apps/mart/data/models/travel.py index d608ec8d2..c3b250f15 100644 --- a/src/etools_datamart/apps/mart/data/models/travel.py +++ b/src/etools_datamart/apps/mart/data/models/travel.py @@ -43,7 +43,7 @@ class Travel(EtoolsDataMartModel): rejection_note = models.TextField(blank=True, null=True, ) report_note = models.TextField(blank=True, null=True, ) # section = models.ForeignKey(ReportsSector, models.DO_NOTHING, related_name='reportssector_t2f_travel_section_id', blank=True, null=True) - section_name = models.CharField(max_length=45, blank=True, null=True, db_index=True) + section_name = models.CharField(max_length=128, blank=True, null=True, db_index=True) start_date = models.DateField(blank=True, null=True, db_index=True) status = models.CharField(max_length=50, choices=T2FTravelConsts.CHOICES, db_index=True) submitted_at = models.DateTimeField(blank=True, null=True) diff --git a/src/etools_datamart/apps/mart/data/tasks.py b/src/etools_datamart/apps/mart/data/tasks.py new file mode 100644 index 000000000..e622fedf9 --- /dev/null +++ b/src/etools_datamart/apps/mart/data/tasks.py @@ -0,0 +1,14 @@ +from django.db.models import Q +from etools_datamart.apps.mart.data.models.location import GeoName, GeoNameLimitException +from etools_datamart.celery import app + + +@app.task +def update_geonames(): + # update those geonames that are missing data + for geoname in GeoName.objects.filter(Q(name__isnull=True) | Q(name="")): + try: + geoname.sync() + except GeoNameLimitException: + # have reached our daily limit, so pointless continuing + break diff --git a/src/etools_datamart/apps/mart/prp/migrations/0011_auto_20200723_1857.py b/src/etools_datamart/apps/mart/prp/migrations/0011_auto_20200723_1857.py new file mode 100644 index 000000000..06570927c --- /dev/null +++ b/src/etools_datamart/apps/mart/prp/migrations/0011_auto_20200723_1857.py @@ -0,0 +1,23 @@ +# Generated by Django 2.2.11 on 2020-07-23 18:57 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('prp', '0010_datareport_report_type'), + ] + + operations = [ + migrations.AddField( + model_name='datareport', + name='admin_level', + field=models.SmallIntegerField(null=True), + ), + migrations.AddField( + model_name='datareport', + name='p_code', + field=models.CharField(blank=True, max_length=32, null=True), + ), + ] diff --git a/src/etools_datamart/apps/mart/prp/models.py b/src/etools_datamart/apps/mart/prp/models.py index c3d7ff18a..e19322179 100644 --- a/src/etools_datamart/apps/mart/prp/models.py +++ b/src/etools_datamart/apps/mart/prp/models.py @@ -434,6 +434,8 @@ class DataReport(PrpDataMartModel): total_cumulative_progress = models.CharField(max_length=2048, blank=True, null=True) achievement_in_reporting_period = models.CharField(max_length=2048, blank=True, null=True) disaggregation = JSONField(blank=True, null=True) + p_code = models.CharField(max_length=32, blank=True, null=True) + admin_level = models.SmallIntegerField(null=True) loader = DataReportLoader() @@ -468,7 +470,6 @@ class Options: 'report_status': 'indicator_report.reportable.report_status', 'means_of_verification': 'indicator_report.reportable.means_of_verification', 'locations': '-', - 'locations_data': 'i', 'report_number': 'indicator_report.progress_report.report_number', 'due_date': 'indicator_report.progress_report.due_date', 'reporting_period_start_date': 'indicator_report.progress_report.start_date', @@ -482,6 +483,8 @@ class Options: 'calculation_method_across_location': 'indicator_report.reportable.blueprint.calculation_formula_across_locations', 'calculation_method_across_reporting_periods': 'indicator_report.reportable.blueprint.calculation_formula_across_periods', 'current_location': 'location.title', + 'p_code': 'location.p_code', + 'admin_level': 'location.type.admin_level', 'previous_location_progress': 'previous_location_data.title', 'total_cumulative_progress_in_location': 'N/A', 'total_cumulative_progress': '-', diff --git a/src/etools_datamart/apps/mart/rapidpro/loader.py b/src/etools_datamart/apps/mart/rapidpro/loader.py index 20c84d3d5..fc000caaf 100644 --- a/src/etools_datamart/apps/mart/rapidpro/loader.py +++ b/src/etools_datamart/apps/mart/rapidpro/loader.py @@ -1,5 +1,6 @@ import inspect +from django.conf import settings from django.core.exceptions import ObjectDoesNotExist from django.db.models import ForeignKey from django.utils import timezone @@ -95,6 +96,13 @@ def get_values(self, record: TembaObject): else: raise Exception("Invalid field name or mapping '%s:%s'" % (dm_field_name, resolver)) + # enforce field size limit + try: + ret[dm_field_name] = ret[dm_field_name][:settings.FIELD_SIZE_LIMIT] + except TypeError: + # not subscriptable so ignoring + pass + return ret def on_start(self, run_type): diff --git a/src/etools_datamart/apps/multitenant/postgresql/public.sqldump b/src/etools_datamart/apps/multitenant/postgresql/public.sqldump index b70c4f6e8..240942053 100644 Binary files a/src/etools_datamart/apps/multitenant/postgresql/public.sqldump and b/src/etools_datamart/apps/multitenant/postgresql/public.sqldump differ diff --git a/src/etools_datamart/apps/multitenant/postgresql/tenant1.sql b/src/etools_datamart/apps/multitenant/postgresql/tenant1.sql index 713ab2007..301d1771c 100644 --- a/src/etools_datamart/apps/multitenant/postgresql/tenant1.sql +++ b/src/etools_datamart/apps/multitenant/postgresql/tenant1.sql @@ -3,7 +3,7 @@ -- -- Dumped from database version 9.6.3 --- Dumped by pg_dump version 11.7 +-- Dumped by pg_dump version 12.2 SET statement_timeout = 0; SET lock_timeout = 0; @@ -25,8 +25,6 @@ CREATE SCHEMA [[schema]]; SET default_tablespace = ''; -SET default_with_oids = false; - -- -- Name: action_points_actionpoint; Type: TABLE; Schema: [[schema]]; Owner: - -- @@ -333,7 +331,7 @@ CREATE TABLE [[schema]].audit_engagement ( po_item_id integer, shared_ip_with character varying(20)[] NOT NULL, exchange_rate numeric(20,2) NOT NULL, - currency_of_report character varying(4) + currency_of_report character varying(5) ); @@ -2504,7 +2502,8 @@ CREATE TABLE [[schema]].partners_intervention ( in_amendment boolean NOT NULL, reference_number_year integer, activation_letter character varying(1024), - termination_doc character varying(1024) + termination_doc character varying(1024), + cfei_number character varying(150) ); @@ -2764,7 +2763,7 @@ CREATE TABLE [[schema]].partners_interventionbudget ( total numeric(20,2) NOT NULL, intervention_id integer, total_local numeric(20,2) NOT NULL, - currency character varying(4) NOT NULL + currency character varying(5) NOT NULL ); @@ -2960,7 +2959,11 @@ CREATE TABLE [[schema]].partners_partnerorganization ( basis_for_risk_rating character varying(50) NOT NULL, manually_blocked boolean NOT NULL, outstanding_dct_amount_6_to_9_months_usd numeric(20,2), - outstanding_dct_amount_more_than_9_months_usd numeric(20,2) + outstanding_dct_amount_more_than_9_months_usd numeric(20,2), + highest_risk_rating_name character varying(150) NOT NULL, + highest_risk_rating_type character varying(150) NOT NULL, + psea_assessment_date timestamp with time zone, + sea_risk_rating_name character varying(150) NOT NULL ); @@ -3033,7 +3036,8 @@ CREATE TABLE [[schema]].partners_partnerstaffmember ( partner_id integer NOT NULL, active boolean NOT NULL, created timestamp with time zone NOT NULL, - modified timestamp with time zone NOT NULL + modified timestamp with time zone NOT NULL, + user_id integer ); @@ -5825,14 +5829,13 @@ ALTER TABLE ONLY [[schema]].unicef_snapshot_activity ALTER COLUMN id SET DEFAULT -- Data for Name: action_points_actionpoint; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].action_points_actionpoint VALUES (1, '2017-09-15 19:08:45.166603+00', '2020-04-02 17:58:33.299088+00', 'open', 'first action', '2017-09-30', NULL, 13345, 13345, 13345, NULL, NULL, NULL, NULL, NULL, 46, NULL, NULL, false, 434, NULL, NULL, 'UAT/2017/1/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (2, '2017-09-15 19:08:45.223519+00', '2020-04-02 17:58:33.300625+00', 'open', 'second action', '2017-09-30', NULL, 13345, 13345, 13345, NULL, NULL, NULL, NULL, NULL, 46, NULL, NULL, false, 434, NULL, NULL, 'UAT/2017/2/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (3, '2017-10-23 21:01:29.344069+00', '2020-04-02 17:58:33.301817+00', 'open', 'TESTING E.MAILS', '2017-12-03', NULL, 14764, 14764, 14764, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 436, NULL, NULL, 'UAT/2017/3/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (4, '2017-09-15 19:08:45.269564+00', '2020-04-02 17:58:33.302967+00', 'completed', 'action point from trip 579', '2017-09-30', '2017-09-15 04:00:00.315+00', 13345, 2, 13345, NULL, NULL, NULL, NULL, NULL, 46, NULL, NULL, false, 434, NULL, NULL, 'UAT/2017/4/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (5, '2017-09-15 19:10:18.261104+00', '2020-04-02 17:58:33.304596+00', 'completed', 'action point from trip 579', '2017-09-30', '2017-09-15 04:00:00.315+00', 13345, 2, 13345, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 435, NULL, NULL, 'UAT/2017/5/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (6, '2018-10-04 06:14:12.117941+00', '2020-04-02 17:58:33.3063+00', 'open', 'testing', '2018-10-04', NULL, 123, 123, 123, NULL, NULL, NULL, NULL, 2, NULL, 11, NULL, false, NULL, NULL, NULL, 'UAT/2018/6/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (7, '2018-10-04 06:28:44.572713+00', '2020-04-02 17:58:33.30791+00', 'open', 'test nik1', '2018-10-12', NULL, 123, 123, 123, NULL, NULL, NULL, NULL, 2, NULL, 5, NULL, false, NULL, NULL, NULL, 'UAT/2018/7/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (8, '2019-05-20 12:15:11.783097+00', '2020-04-02 17:58:33.309548+00', 'open', '4 Recommendations and action points for follow up +INSERT INTO [[schema]].action_points_actionpoint VALUES (1, '2017-09-15 19:08:45.166603+00', '2019-12-05 17:23:03.247488+00', 'open', 'first action', '2017-09-30', NULL, 13345, 13345, 13345, NULL, NULL, NULL, NULL, NULL, 46, NULL, NULL, false, 434, NULL, NULL, 'UAT/2017/1/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (2, '2017-09-15 19:08:45.223519+00', '2019-12-05 17:23:03.25459+00', 'open', 'second action', '2017-09-30', NULL, 13345, 13345, 13345, NULL, NULL, NULL, NULL, NULL, 46, NULL, NULL, false, 434, NULL, NULL, 'UAT/2017/2/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (3, '2017-10-23 21:01:29.344069+00', '2019-12-05 17:23:03.258752+00', 'open', 'TESTING E.MAILS', '2017-12-03', NULL, 14764, 14764, 14764, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 436, NULL, NULL, 'UAT/2017/3/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (4, '2017-09-15 19:08:45.269564+00', '2019-12-05 17:23:03.26271+00', 'completed', 'action point from trip 579', '2017-09-30', '2017-09-15 04:00:00.315+00', 13345, 2, 13345, NULL, NULL, NULL, NULL, NULL, 46, NULL, NULL, false, 434, NULL, NULL, 'UAT/2017/4/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (5, '2017-09-15 19:10:18.261104+00', '2019-12-05 17:23:03.266867+00', 'completed', 'action point from trip 579', '2017-09-30', '2017-09-15 04:00:00.315+00', 13345, 2, 13345, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, 435, NULL, NULL, 'UAT/2017/5/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (6, '2018-10-04 06:14:12.117941+00', '2019-12-05 17:23:03.279679+00', 'open', 'testing', '2018-10-04', NULL, 123, 123, 123, NULL, NULL, NULL, NULL, 2, NULL, 11, NULL, false, NULL, NULL, NULL, 'UAT/2018/6/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (8, '2019-05-20 12:15:11.783097+00', '2019-12-05 17:23:03.289353+00', 'open', '4 Recommendations and action points for follow up • HLSS should follow up the issue for M&E tools with UNICEF • amoxicillin syrups should be provided to the site for medical complication issue • HLSS should provide palate for keeping the supplies in all the site @@ -5841,10 +5844,14 @@ INSERT INTO [[schema]].action_points_actionpoint VALUES (8, '2019-05-20 12:15:11 Ensure appetite test is conducted in all the sites during OTP services provision Reorient staff and provide continuous support on the admission and discharge criteria Ensure all required information is recorded in the OTP treatment cards On going HLSS', '2019-05-10', NULL, 25789, 23436, 25789, 97, NULL, 67, NULL, 2, 228, 3, NULL, false, 493, NULL, NULL, 'UAT/2019/8/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (9, '2019-05-23 12:35:33.502345+00', '2020-04-02 17:58:33.311224+00', 'open', 'Testing w/ Nik', '2019-05-25', NULL, 14764, 123, 14764, 120, NULL, NULL, NULL, 2, 229, 5, NULL, false, NULL, NULL, NULL, 'UAT/2019/9/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (10, '2019-05-30 08:05:15.427158+00', '2020-04-02 17:58:33.312964+00', 'open', 'test', '2019-05-30', NULL, 2702, 2702, 2702, 18, NULL, 67, NULL, 2, 228, 9, NULL, false, 497, NULL, NULL, 'UAT/2019/10/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (11, '2019-06-06 13:33:26.628459+00', '2020-04-02 17:58:33.314604+00', 'open', 'test', '2019-06-27', NULL, 123, 189023, 123, NULL, NULL, NULL, NULL, 2, NULL, 4, NULL, false, 498, NULL, NULL, 'UAT/2019/11/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (12, '2019-06-06 13:34:16.073584+00', '2020-04-02 17:58:33.316255+00', 'open', 'test 2', '2019-06-19', NULL, 123, 189023, 123, NULL, NULL, NULL, NULL, 2, NULL, 4, NULL, false, 498, NULL, NULL, 'UAT/2019/12/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (9, '2019-05-23 12:35:33.502345+00', '2019-12-05 17:23:03.298038+00', 'open', 'Testing w/ Nik', '2019-05-25', NULL, 14764, 123, 14764, 120, NULL, NULL, NULL, 2, 229, 5, NULL, false, NULL, NULL, NULL, 'UAT/2019/9/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (13, '2019-12-09 19:41:38.428086+00', '2019-12-09 19:41:38.573429+00', 'open', 'Test description', '2019-12-12', NULL, 19232, 19232, 19232, 60, NULL, 67, NULL, 2, 228, 3, NULL, true, NULL, NULL, NULL, 'UAT/2019/13/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (11, '2019-06-06 13:33:26.628459+00', '2019-12-05 17:23:03.30616+00', 'open', 'test', '2019-06-27', NULL, 123, 189023, 123, NULL, NULL, NULL, NULL, 2, NULL, 4, NULL, false, 498, NULL, NULL, 'UAT/2019/11/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (12, '2019-06-06 13:34:16.073584+00', '2019-12-05 17:23:03.310375+00', 'open', 'test 2', '2019-06-19', NULL, 123, 189023, 123, NULL, NULL, NULL, NULL, 2, NULL, 4, NULL, false, 498, NULL, NULL, 'UAT/2019/12/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (10, '2019-05-30 08:05:15.427158+00', '2019-12-05 17:50:13.693951+00', 'open', 'test', '2019-05-30', NULL, 2702, 2702, 2702, 18, NULL, 67, NULL, 2, 228, 9, NULL, false, 497, NULL, NULL, 'UAT/2019/10/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (7, '2018-10-04 06:28:44.572713+00', '2019-12-05 17:53:01.034637+00', 'open', 'test nik1', '2018-10-12', NULL, 123, 123, 123, NULL, NULL, NULL, NULL, 2, NULL, 5, NULL, false, NULL, NULL, NULL, 'UAT/2018/7/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (14, '2019-12-09 19:44:37.504667+00', '2019-12-09 19:44:37.984952+00', 'open', 'Another test', '2019-12-13', NULL, 19232, 123, 19232, 60, NULL, 68, 4623, 2, 228, 7, NULL, false, NULL, NULL, NULL, 'UAT/2019/14/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (15, '2019-12-17 14:43:06.796527+00', '2019-12-17 14:43:06.93741+00', 'open', 'sadsada', '2019-12-17', NULL, 19323, 19323, 19323, NULL, NULL, 68, 4623, 2, 228, 11, NULL, false, NULL, NULL, NULL, 'UAT/2019/15/APD', NULL); -- @@ -5903,6 +5910,9 @@ INSERT INTO [[schema]].actstream_action VALUES (79, '2027', 'changed', NULL, '54 -- Data for Name: attachments_attachmentflat; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].attachments_attachmentflat VALUES (99, '', '', '', '', '', '/api/v2/attachments/file/99/', 'Robert Avram', 99, 'Screen_Shot_2020-01-20_at_3.59.49_PM.png', '', '', '', NULL, '2020-01-23 21:55:31.931493+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (100, '', '', '', '', '', '/api/v2/attachments/file/100/', 'Robert Avram', 100, 'Screen_Shot_2020-01-23_at_2.38.36_PM.png', '', '', '', NULL, '2020-01-23 21:55:34.155104+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (101, '', '', '', '', '', '/api/v2/attachments/file/101/', 'Robert Avram', 101, 'Screen_Shot_2019-11-26_at_7.10.11_PM.png', '', '', '', NULL, '2020-01-23 21:56:04.720276+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (2, 'Adult Basic Community Org', 'Bilateral / Multilateral', '', '', 'Core Values Assessment', '/api/v2/attachments/file/2/', '', 2, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (13, 'DEPARTMENT OF EDUCATIONAL PLANNING AND TRAINING', 'Government', '2500201643', '', 'Core Values Assessment', '/api/v2/attachments/file/13/', '', 13, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (8, 'Chiild Protection Society ', 'Civil Society Organization', '', '', 'Core Values Assessment', '/api/v2/attachments/file/8/', '', 8, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); @@ -5997,6 +6007,9 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (92, '', '', '', '', 'O INSERT INTO [[schema]].attachments_attachmentflat VALUES (93, '', '', '', '', 'Overall Report', '/api/v2/attachments/file/93/', '', 93, 'etoolslogo_4.jpg', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D2%26next%3D%252Ftpm%252Fvisits%252F9%252Fdetails', 'Third Party Monitoring', NULL, '2019-07-20 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (94, 'AGENCY FOR TECH COORDINATION AND DEV ACTED', 'Civil Society Organization', '2500221381', 'UAT/PCA2015146/PD201567-1', 'Report', '/api/v2/attachments/file/94/', '', 94, 'etoolslogo_4.jpg', 'UAT/PCA2015146', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D2%26next%3D%252Ftpm%252Fvisits%252F10%252Fdetails', 'Third Party Monitoring', 67, '2019-07-20 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (96, '', '', '', '', '', '/api/v2/attachments/file/96/', 'Robert Avram', 96, 'Screen_Shot_2019-05-16_at_11.08.29_AM.png', '', '', '', NULL, '2019-10-04 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (97, 'AGENCY FOR TECH COORDINATION AND DEV ACTED', 'Civil Society Organization', '2500221381', 'UAT/PCA2015146/PD201968', '', '/api/v2/attachments/file/97/', 'Zachary D Adams', 97, 'Screen_Shot_2019-12-04_at_3.37.59_PM.png', 'UAT/PCA2015146', '/api/v2/interventions/68/', 'Partnership Management Portal', 68, '2019-12-09 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (98, 'AGENCY FOR TECH COORDINATION AND DEV ACTED', 'Civil Society Organization', '2500221381', 'UAT/PCA2015146/PD201968', 'Progress Report', '/api/v2/attachments/file/98/', 'Zachary D Adams', 98, 'Screen_Shot_2019-12-04_at_3.37.59_PM_0QVkws7.png', 'UAT/PCA2015146', '', 'Partnership Management Portal', 68, '2019-12-09 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (102, '', '', '', '', '', '/api/v2/attachments/file/102/', 'Robert Avram', 102, 'Screen_Shot_2019-11-26_at_7.12.17_PM.png', '', '', '', NULL, '2020-01-23 21:56:04.782397+00'); -- @@ -6636,46 +6649,54 @@ INSERT INTO [[schema]].django_migrations VALUES (747, 'psea', '0011_indicator_ra INSERT INTO [[schema]].django_migrations VALUES (748, 'audit', '0018_auto_20191008_2235', '2019-11-08 16:56:31.484265+00'); INSERT INTO [[schema]].django_migrations VALUES (749, 'psea', '0012_auto_20191004_1752', '2019-11-08 16:56:31.623009+00'); INSERT INTO [[schema]].django_migrations VALUES (750, 'tpm', '0008_auto_20191016_1312', '2019-11-08 16:56:32.978894+00'); -INSERT INTO [[schema]].django_migrations VALUES (751, 'partners', '0039_auto_20191106_1345', '2020-04-02 17:58:27.831085+00'); -INSERT INTO [[schema]].django_migrations VALUES (752, 'field_monitoring_settings', '0001_initial_20191113', '2020-04-02 17:58:29.838972+00'); -INSERT INTO [[schema]].django_migrations VALUES (753, 'field_monitoring_planning', '0001_initial_20191113', '2020-04-02 17:58:30.691161+00'); -INSERT INTO [[schema]].django_migrations VALUES (754, 'field_monitoring_planning', '0002_auto_20191119_1503', '2020-04-02 17:58:31.852985+00'); -INSERT INTO [[schema]].django_migrations VALUES (755, 'users', '0013_auto_20191010_1621', '2020-04-02 17:58:32.198674+00'); -INSERT INTO [[schema]].django_migrations VALUES (756, 'reports', '0020_office', '2020-04-02 17:58:32.285226+00'); -INSERT INTO [[schema]].django_migrations VALUES (757, 'reports', '0021_auto_20191011_1201', '2020-04-02 17:58:32.644601+00'); -INSERT INTO [[schema]].django_migrations VALUES (758, 'action_points', '0011_actionpoint_reference_number', '2020-04-02 17:58:33.410868+00'); -INSERT INTO [[schema]].django_migrations VALUES (759, 'action_points', '0012_auto_20191011_1303', '2020-04-02 17:58:33.873065+00'); -INSERT INTO [[schema]].django_migrations VALUES (760, 'action_points', '0013_actionpoint_monitoring_activity', '2020-04-02 17:58:34.179837+00'); -INSERT INTO [[schema]].django_migrations VALUES (761, 'attachments', '0016_auto_20190708_1607', '2020-04-02 17:58:34.412311+00'); -INSERT INTO [[schema]].django_migrations VALUES (762, 'attachments', '0017_attachmentflat_created_timestamp', '2020-04-02 17:58:35.041528+00'); -INSERT INTO [[schema]].django_migrations VALUES (763, 'attachments', '0018_remove_attachmentflat_created', '2020-04-02 17:58:35.672214+00'); -INSERT INTO [[schema]].django_migrations VALUES (764, 'reports', '0022_userprofileoffice', '2020-04-02 17:58:35.897281+00'); -INSERT INTO [[schema]].django_migrations VALUES (765, 'reports', '0023_auto_20191014_1546', '2020-04-02 17:58:48.301959+00'); -INSERT INTO [[schema]].django_migrations VALUES (766, 'reports', '0024_auto_20191122_1559', '2020-04-02 17:58:48.618508+00'); -INSERT INTO [[schema]].django_migrations VALUES (767, 'audit', '0019_engagement_users_notified', '2020-04-02 17:58:49.133381+00'); -INSERT INTO [[schema]].django_migrations VALUES (768, 'audit', '0020_auto_20191125_2045', '2020-04-02 17:58:49.715869+00'); -INSERT INTO [[schema]].django_migrations VALUES (769, 'categories', '0005_auto_20191126_1133', '2020-04-02 17:58:49.916471+00'); -INSERT INTO [[schema]].django_migrations VALUES (770, 'field_monitoring_data_collection', '0001_initial_20191113', '2020-04-02 17:58:51.605952+00'); -INSERT INTO [[schema]].django_migrations VALUES (771, 'field_monitoring_data_collection', '0002_auto_20191116_1045', '2020-04-02 17:58:52.089506+00'); -INSERT INTO [[schema]].django_migrations VALUES (772, 'field_monitoring_planning', '0003_monitoringactivityactionpoint', '2020-04-02 17:58:52.147139+00'); -INSERT INTO [[schema]].django_migrations VALUES (773, 'field_monitoring_planning', '0004_auto_20191204_0804', '2020-04-02 17:58:53.055862+00'); -INSERT INTO [[schema]].django_migrations VALUES (774, 'field_monitoring_planning', '0005_auto_20191211_1414', '2020-04-02 17:58:53.376615+00'); -INSERT INTO [[schema]].django_migrations VALUES (775, 'field_monitoring_planning', '0006_monitoringactivity_report_reject_reason', '2020-04-02 17:58:53.680735+00'); -INSERT INTO [[schema]].django_migrations VALUES (776, 'field_monitoring_planning', '0007_monitoringactivity_number', '2020-04-02 17:58:54.262412+00'); -INSERT INTO [[schema]].django_migrations VALUES (777, 'field_monitoring_settings', '0002_method_use_information_source', '2020-04-02 17:58:54.410402+00'); -INSERT INTO [[schema]].django_migrations VALUES (778, 'field_monitoring_settings', '0003_method_short_name', '2020-04-02 17:58:54.59056+00'); -INSERT INTO [[schema]].django_migrations VALUES (779, 'field_monitoring_settings', '0004_globalconfig', '2020-04-02 17:58:54.733469+00'); -INSERT INTO [[schema]].django_migrations VALUES (780, 'field_monitoring_settings', '0005_auto_20191211_0903', '2020-04-02 17:58:54.816356+00'); -INSERT INTO [[schema]].django_migrations VALUES (781, 'field_monitoring_settings', '0006_auto_20191212_1257', '2020-04-02 17:58:55.101647+00'); -INSERT INTO [[schema]].django_migrations VALUES (782, 'field_monitoring_settings', '0007_auto_20200219_1036', '2020-04-02 17:58:55.372378+00'); -INSERT INTO [[schema]].django_migrations VALUES (783, 'partners', '0040_auto_20191011_1429', '2020-04-02 17:58:55.908134+00'); -INSERT INTO [[schema]].django_migrations VALUES (784, 'partners', '0041_auto_20191209_2039', '2020-04-02 17:58:56.886646+00'); -INSERT INTO [[schema]].django_migrations VALUES (785, 'reports', '0025_auto_20191220_2022', '2020-04-02 17:58:57.112026+00'); -INSERT INTO [[schema]].django_migrations VALUES (786, 't2f', '0016_auto_20191011_1348', '2020-04-02 17:58:57.499747+00'); -INSERT INTO [[schema]].django_migrations VALUES (787, 'tpm', '0009_auto_20191014_1304', '2020-04-02 17:58:58.021261+00'); -INSERT INTO [[schema]].django_migrations VALUES (788, 'tpm', '0010_auto_20191029_1826', '2020-04-02 17:58:58.531936+00'); -INSERT INTO [[schema]].django_migrations VALUES (789, 'unicef_attachments', '0004_filetype_group', '2020-04-02 17:58:58.655025+00'); -INSERT INTO [[schema]].django_migrations VALUES (790, 'unicef_attachments', '0005_auto_20190705_1746', '2020-04-02 17:58:59.143583+00'); +INSERT INTO [[schema]].django_migrations VALUES (751, 'users', '0013_auto_20191010_1621', '2019-12-05 17:23:01.892903+00'); +INSERT INTO [[schema]].django_migrations VALUES (752, 'reports', '0020_office', '2019-12-05 17:23:02.016366+00'); +INSERT INTO [[schema]].django_migrations VALUES (753, 'reports', '0021_auto_20191011_1201', '2019-12-05 17:23:02.102769+00'); +INSERT INTO [[schema]].django_migrations VALUES (754, 'action_points', '0011_actionpoint_reference_number', '2019-12-05 17:23:03.345568+00'); +INSERT INTO [[schema]].django_migrations VALUES (755, 'action_points', '0012_auto_20191011_1303', '2019-12-05 17:23:04.358039+00'); +INSERT INTO [[schema]].django_migrations VALUES (756, 'attachments', '0016_auto_20190708_1607', '2019-12-05 17:23:04.606124+00'); +INSERT INTO [[schema]].django_migrations VALUES (757, 'reports', '0022_userprofileoffice', '2019-12-05 17:23:05.217489+00'); +INSERT INTO [[schema]].django_migrations VALUES (758, 'reports', '0023_auto_20191014_1546', '2019-12-05 17:23:36.32252+00'); +INSERT INTO [[schema]].django_migrations VALUES (759, 'reports', '0024_auto_20191122_1559', '2019-12-05 17:23:36.689165+00'); +INSERT INTO [[schema]].django_migrations VALUES (760, 'audit', '0019_engagement_users_notified', '2019-12-05 17:23:37.059829+00'); +INSERT INTO [[schema]].django_migrations VALUES (761, 'audit', '0020_auto_20191125_2045', '2019-12-05 17:23:37.786066+00'); +INSERT INTO [[schema]].django_migrations VALUES (762, 'partners', '0039_auto_20191106_1345', '2019-12-05 17:23:38.054434+00'); +INSERT INTO [[schema]].django_migrations VALUES (763, 'partners', '0040_auto_20191011_1429', '2019-12-05 17:23:39.329388+00'); +INSERT INTO [[schema]].django_migrations VALUES (764, 't2f', '0016_auto_20191011_1348', '2019-12-05 17:23:40.034203+00'); +INSERT INTO [[schema]].django_migrations VALUES (765, 'tpm', '0009_auto_20191014_1304', '2019-12-05 17:23:40.545054+00'); +INSERT INTO [[schema]].django_migrations VALUES (766, 'tpm', '0010_auto_20191029_1826', '2019-12-05 17:23:41.076012+00'); +INSERT INTO [[schema]].django_migrations VALUES (767, 'unicef_attachments', '0004_filetype_group', '2019-12-05 17:23:41.195099+00'); +INSERT INTO [[schema]].django_migrations VALUES (768, 'unicef_attachments', '0005_auto_20190705_1746', '2019-12-05 17:23:41.935217+00'); +INSERT INTO [[schema]].django_migrations VALUES (769, 'attachments', '0017_attachmentflat_created_timestamp', '2020-01-10 18:06:07.694061+00'); +INSERT INTO [[schema]].django_migrations VALUES (770, 'attachments', '0018_remove_attachmentflat_created', '2020-01-10 18:06:08.221687+00'); +INSERT INTO [[schema]].django_migrations VALUES (771, 'partners', '0041_auto_20191209_2039', '2020-01-10 18:06:08.879909+00'); +INSERT INTO [[schema]].django_migrations VALUES (772, 'reports', '0025_auto_20191220_2022', '2020-01-10 18:06:08.987433+00'); +INSERT INTO [[schema]].django_migrations VALUES (773, 'field_monitoring_settings', '0001_initial_20191113', '2020-03-06 19:11:14.916658+00'); +INSERT INTO [[schema]].django_migrations VALUES (774, 'field_monitoring_planning', '0001_initial_20191113', '2020-03-06 19:11:16.030646+00'); +INSERT INTO [[schema]].django_migrations VALUES (775, 'field_monitoring_planning', '0002_auto_20191119_1503', '2020-03-06 19:11:17.148965+00'); +INSERT INTO [[schema]].django_migrations VALUES (776, 'action_points', '0013_actionpoint_monitoring_activity', '2020-03-06 19:11:17.380169+00'); +INSERT INTO [[schema]].django_migrations VALUES (777, 'categories', '0005_auto_20191126_1133', '2020-03-06 19:11:17.47566+00'); +INSERT INTO [[schema]].django_migrations VALUES (778, 'field_monitoring_data_collection', '0001_initial_20191113', '2020-03-06 19:11:18.867828+00'); +INSERT INTO [[schema]].django_migrations VALUES (779, 'field_monitoring_data_collection', '0002_auto_20191116_1045', '2020-03-06 19:11:19.379465+00'); +INSERT INTO [[schema]].django_migrations VALUES (780, 'field_monitoring_planning', '0003_monitoringactivityactionpoint', '2020-03-06 19:11:19.438477+00'); +INSERT INTO [[schema]].django_migrations VALUES (781, 'field_monitoring_planning', '0004_auto_20191204_0804', '2020-03-06 19:11:20.070978+00'); +INSERT INTO [[schema]].django_migrations VALUES (782, 'field_monitoring_planning', '0005_auto_20191211_1414', '2020-03-06 19:11:20.298442+00'); +INSERT INTO [[schema]].django_migrations VALUES (783, 'field_monitoring_planning', '0006_monitoringactivity_report_reject_reason', '2020-03-06 19:11:20.536717+00'); +INSERT INTO [[schema]].django_migrations VALUES (784, 'field_monitoring_planning', '0007_monitoringactivity_number', '2020-03-06 19:11:20.962066+00'); +INSERT INTO [[schema]].django_migrations VALUES (785, 'field_monitoring_settings', '0002_method_use_information_source', '2020-03-06 19:11:21.072484+00'); +INSERT INTO [[schema]].django_migrations VALUES (786, 'field_monitoring_settings', '0003_method_short_name', '2020-03-06 19:11:21.178934+00'); +INSERT INTO [[schema]].django_migrations VALUES (787, 'field_monitoring_settings', '0004_globalconfig', '2020-03-06 19:11:21.258572+00'); +INSERT INTO [[schema]].django_migrations VALUES (788, 'field_monitoring_settings', '0005_auto_20191211_0903', '2020-03-06 19:11:21.355416+00'); +INSERT INTO [[schema]].django_migrations VALUES (789, 'field_monitoring_settings', '0006_auto_20191212_1257', '2020-03-06 19:11:21.845121+00'); +INSERT INTO [[schema]].django_migrations VALUES (790, 'field_monitoring_settings', '0007_auto_20200219_1036', '2020-03-06 19:11:22.160216+00'); +INSERT INTO [[schema]].django_migrations VALUES (791, 'audit', '0021_auto_20200729_2123', '2020-09-24 15:23:14.92246+00'); +INSERT INTO [[schema]].django_migrations VALUES (792, 'partners', '0042_auto_20200414_1439', '2020-09-24 15:23:15.514156+00'); +INSERT INTO [[schema]].django_migrations VALUES (793, 'partners', '0043_auto_20200729_2123', '2020-09-24 15:23:15.774755+00'); +INSERT INTO [[schema]].django_migrations VALUES (794, 'partners', '0044_auto_20200914_1428', '2020-09-24 15:23:16.044669+00'); +INSERT INTO [[schema]].django_migrations VALUES (795, 'users', '0014_auto_20200611_1747', '2020-09-24 15:23:16.257031+00'); +INSERT INTO [[schema]].django_migrations VALUES (796, 'users', '0015_auto_20200924_1453', '2020-11-03 18:57:59.531838+00'); +INSERT INTO [[schema]].django_migrations VALUES (797, 'partners', '0045_partnerstaffmember_user', '2020-11-03 18:57:59.86012+00'); +INSERT INTO [[schema]].django_migrations VALUES (798, 'partners', '0046_auto_20200924_1453', '2020-11-03 18:57:59.966965+00'); -- @@ -7097,7 +7118,8 @@ INSERT INTO [[schema]].funds_grant VALUES (22, 'NON-GRANT (GC)', 50, NULL, '', ' -- INSERT INTO [[schema]].hact_aggregatehact VALUES (1, '2018-02-15 19:31:46.570589+00', '2018-12-31 04:00:59.534836+00', 2018, '"{\"assurance_activities\": {\"programmatic_visits\": {\"completed\": 0, \"min_required\": 0}, \"spot_checks\": {\"completed\": 0, \"min_required\": 0, \"follow_up\": 0}, \"scheduled_audit\": 0, \"special_audit\": 0, \"micro_assessment\": 0, \"missing_micro_assessment\": 0}, \"assurance_coverage\": {\"coverage_by_number_of_ips\": [[\"Coverage by number of IPs\", \"Count\"], [\"Without Assurance\", 0], [\"Partially Met Requirements\", 0], [\"Met Requirements\", 0]], \"coverage_by_cash_transfer\": [[\"Coverage by Cash Transfer (USD) (Total)\", \"Count\"], [\"Without Assurance\", 0.0], [\"Partially Met Requirements\", 0.0], [\"Met Requirements\", 0.0]], \"table\": [{\"label\": \"Active Partners\", \"value\": 0}, {\"label\": \"IPs without required PV\", \"value\": 0}, {\"label\": \"IPs without required SC\", \"value\": 0}, {\"label\": \"IPs without required assurance\", \"value\": 0}]}, \"financial_findings\": [{\"name\": \"Total Audited Expenditure\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Total Financial Findings\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Refunds\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Additional Supporting Documentation Received\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Justification Provided and Accepted\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Impairment\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Outstanding current year (Requires Follow-up)\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Outstanding prior year\", \"value\": 0.0, \"highlighted\": true}], \"financial_findings_numbers\": [{\"name\": \"Number of High Priority Findings\", \"value\": 0}, {\"name\": \"Number of Medium Priority Findings\", \"value\": 0}, {\"name\": \"Number of Low Priority Findings\", \"value\": 0}, {\"name\": \"Audit Opinion\", \"value\": [{\"name\": \"qualified\", \"value\": 0}, {\"name\": \"unqualified\", \"value\": 0}, {\"name\": \"denial\", \"value\": 0}, {\"name\": \"adverse\", \"value\": 0}]}], \"charts\": {\"cash_transfers_amounts\": [[\"Risk Rating\", \"Not Required\", \"Low\", \"Medium\", \"Significant\", \"High\", \"Number of IPs\"], [\"$0-50,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0], [\"$50,001-100,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0], [\"$100,001-350,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0], [\"$350,001-500,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0], [\">$500,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0]], \"cash_transfers_risk_ratings\": [[\"Risk Rating\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of IPs\"], [\"Not Required\", null, \"#D8D8D8\", 0], [\"Low\", null, \"#2BB0F2\", 0], [\"Medium\", null, \"#FECC02\", 0], [\"Significant\", null, \"#F05656\", 0], [\"High\", null, \"#751010\", 0]], \"cash_transfers_partner_type\": [[\"Partner Type\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of Partners\"], [\"CSO\", null, \"#FECC02\", 0], [\"GOV\", null, \"#F05656\", 0]], \"spot_checks_completed\": [[\"Completed by\", \"Count\"], [\"Staff\", 0], [\"Service Providers\", 0]]}}"'); -INSERT INTO [[schema]].hact_aggregatehact VALUES (2, '2019-01-01 04:01:00.24745+00', '2019-11-15 04:05:22.763442+00', 2019, '"{\"assurance_activities\": {\"programmatic_visits\": {\"completed\": 0, \"min_required\": 0}, \"spot_checks\": {\"completed\": 0, \"required\": 0, \"follow_up\": 0}, \"scheduled_audit\": 0, \"special_audit\": 0, \"micro_assessment\": 0, \"missing_micro_assessment\": 0}, \"assurance_coverage\": {\"coverage_by_number_of_ips\": [[\"Coverage by number of IPs\", \"Count\"], [\"Without Assurance\", 0], [\"Partially Met Requirements\", 0], [\"Met Requirements\", 0]], \"coverage_by_cash_transfer\": [[\"Coverage by Cash Transfer (USD) (Total)\", \"Count\"], [\"Without Assurance\", 0.0], [\"Partially Met Requirements\", 0.0], [\"Met Requirements\", 0.0]], \"table\": [{\"label\": \"Partners\", \"value\": 0}, {\"label\": \"IPs without required PV\", \"value\": 0}, {\"label\": \"IPs without required SC\", \"value\": 0}, {\"label\": \"IPs without required assurance\", \"value\": 0}]}, \"financial_findings\": [{\"name\": \"Total Audited Expenditure\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Total Financial Findings\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Refunds\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Additional Supporting Documentation Received\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Justification Provided and Accepted\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Impairment\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Outstanding current year (Requires Follow-up)\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Outstanding prior year\", \"value\": 0.0, \"highlighted\": true}], \"financial_findings_numbers\": [{\"name\": \"Number of High Priority Findings\", \"value\": 0}, {\"name\": \"Number of Medium Priority Findings\", \"value\": 0}, {\"name\": \"Number of Low Priority Findings\", \"value\": 0}, {\"name\": \"Audit Opinion\", \"value\": [{\"name\": \"qualified\", \"value\": 0}, {\"name\": \"unqualified\", \"value\": 0}, {\"name\": \"denial\", \"value\": 0}, {\"name\": \"adverse\", \"value\": 0}]}], \"charts\": {\"cash_transfers_amounts\": [[\"Risk Rating\", \"Not Required\", \"Low\", \"Medium\", \"Significant\", \"High\", \"Number of IPs\"], [\"$0-50,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0], [\"$50,001-100,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0], [\"$100,001-350,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0], [\"$350,001-500,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0], [\">$500,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0]], \"cash_transfers_risk_ratings\": [[\"Risk Rating\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of IPs\"], [\"Not Required\", null, \"#D8D8D8\", 0], [\"Low\", null, \"#2BB0F2\", 0], [\"Medium\", null, \"#FECC02\", 0], [\"Significant\", null, \"#F05656\", 0], [\"High\", null, \"#751010\", 0]], \"cash_transfers_partner_type\": [[\"Partner Type\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of Partners\"], [\"CSO\", null, \"#FECC02\", 0], [\"GOV\", null, \"#F05656\", 0]], \"spot_checks_completed\": [[\"Completed by\", \"Count\"], [\"Staff\", 0], [\"Service Providers\", 0]]}}"'); +INSERT INTO [[schema]].hact_aggregatehact VALUES (3, '2020-01-01 04:05:21.900021+00', '2020-04-21 04:02:25.096109+00', 2020, '"{\"assurance_activities\": {\"programmatic_visits\": {\"completed\": 0, \"min_required\": 0}, \"spot_checks\": {\"completed\": 0, \"required\": 0, \"follow_up\": 0}, \"scheduled_audit\": 0, \"special_audit\": 0, \"micro_assessment\": 0, \"missing_micro_assessment\": 0}, \"assurance_coverage\": {\"coverage_by_number_of_ips\": [[\"Coverage by number of IPs\", \"Count\"], [\"Without Assurance\", 0], [\"Partially Met Requirements\", 0], [\"Met Requirements\", 0]], \"coverage_by_cash_transfer\": [[\"Coverage by Cash Transfer (USD) (Total)\", \"Count\"], [\"Without Assurance\", 0.0], [\"Partially Met Requirements\", 0.0], [\"Met Requirements\", 0.0]], \"table\": [{\"label\": \"Partners\", \"value\": 0}, {\"label\": \"IPs without required PV\", \"value\": 0}, {\"label\": \"IPs without required SC\", \"value\": 0}, {\"label\": \"IPs without required assurance\", \"value\": 0}]}, \"financial_findings\": [{\"name\": \"Total Audited Expenditure\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Total Financial Findings\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Refunds\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Additional Supporting Documentation Received\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Justification Provided and Accepted\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Impairment\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Outstanding current year (Requires Follow-up)\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Outstanding prior year\", \"value\": 0.0, \"highlighted\": true}], \"financial_findings_numbers\": [{\"name\": \"Number of High Priority Findings\", \"value\": 0}, {\"name\": \"Number of Medium Priority Findings\", \"value\": 0}, {\"name\": \"Number of Low Priority Findings\", \"value\": 0}, {\"name\": \"Audit Opinion\", \"value\": [{\"name\": \"qualified\", \"value\": 0}, {\"name\": \"unqualified\", \"value\": 0}, {\"name\": \"denial\", \"value\": 0}, {\"name\": \"adverse\", \"value\": 0}]}], \"charts\": {\"cash_transfers_amounts\": [[\"Risk Rating\", \"Not Required\", \"Low\", \"Medium\", \"Significant\", \"High\", \"Number of IPs\"], [\"$0-50,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0], [\"$50,001-100,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0], [\"$100,001-350,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0], [\"$350,001-500,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0], [\">$500,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0]], \"cash_transfers_risk_ratings\": [[\"Risk Rating\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of IPs\"], [\"Not Required\", null, \"#D8D8D8\", 0], [\"Low\", null, \"#2BB0F2\", 0], [\"Medium\", null, \"#FECC02\", 0], [\"Significant\", null, \"#F05656\", 0], [\"High\", null, \"#751010\", 0]], \"cash_transfers_partner_type\": [[\"Partner Type\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of Partners\"], [\"CSO\", null, \"#FECC02\", 0], [\"GOV\", null, \"#F05656\", 0]], \"spot_checks_completed\": [[\"Completed by\", \"Count\"], [\"Staff\", 0], [\"Service Providers\", 0]]}}"'); +INSERT INTO [[schema]].hact_aggregatehact VALUES (2, '2019-01-01 04:01:00.24745+00', '2020-01-02 17:12:49.544675+00', 2019, '"{\"assurance_activities\": {\"programmatic_visits\": {\"completed\": 3, \"min_required\": 0}, \"spot_checks\": {\"completed\": 0, \"required\": 0, \"follow_up\": 0}, \"scheduled_audit\": 0, \"special_audit\": 0, \"micro_assessment\": 0, \"missing_micro_assessment\": 0}, \"assurance_coverage\": {\"coverage_by_number_of_ips\": [[\"Coverage by number of IPs\", \"Count\"], [\"Without Assurance\", 0], [\"Partially Met Requirements\", 0], [\"Met Requirements\", 0]], \"coverage_by_cash_transfer\": [[\"Coverage by Cash Transfer (USD) (Total)\", \"Count\"], [\"Without Assurance\", 0.0], [\"Partially Met Requirements\", 0.0], [\"Met Requirements\", 0.0]], \"table\": [{\"label\": \"Partners\", \"value\": 0}, {\"label\": \"IPs without required PV\", \"value\": 0}, {\"label\": \"IPs without required SC\", \"value\": 0}, {\"label\": \"IPs without required assurance\", \"value\": 0}]}, \"financial_findings\": [{\"name\": \"Total Audited Expenditure\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Total Financial Findings\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Refunds\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Additional Supporting Documentation Received\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Justification Provided and Accepted\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Impairment\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Outstanding current year (Requires Follow-up)\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Outstanding prior year\", \"value\": 0.0, \"highlighted\": true}], \"financial_findings_numbers\": [{\"name\": \"Number of High Priority Findings\", \"value\": 0}, {\"name\": \"Number of Medium Priority Findings\", \"value\": 0}, {\"name\": \"Number of Low Priority Findings\", \"value\": 0}, {\"name\": \"Audit Opinion\", \"value\": [{\"name\": \"qualified\", \"value\": 0}, {\"name\": \"unqualified\", \"value\": 0}, {\"name\": \"denial\", \"value\": 0}, {\"name\": \"adverse\", \"value\": 0}]}], \"charts\": {\"cash_transfers_amounts\": [[\"Risk Rating\", \"Not Required\", \"Low\", \"Medium\", \"Significant\", \"High\", \"Number of IPs\"], [\"$0-50,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0], [\"$50,001-100,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0], [\"$100,001-350,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0], [\"$350,001-500,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0], [\">$500,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0]], \"cash_transfers_risk_ratings\": [[\"Risk Rating\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of IPs\"], [\"Not Required\", null, \"#D8D8D8\", 0], [\"Low\", null, \"#2BB0F2\", 0], [\"Medium\", null, \"#FECC02\", 0], [\"Significant\", null, \"#F05656\", 0], [\"High\", null, \"#751010\", 0]], \"cash_transfers_partner_type\": [[\"Partner Type\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of Partners\"], [\"CSO\", null, \"#FECC02\", 0], [\"GOV\", null, \"#F05656\", 0]], \"spot_checks_completed\": [[\"Completed by\", \"Count\"], [\"Staff\", 0], [\"Service Providers\", 0]]}}"'); -- @@ -12046,13 +12068,16 @@ INSERT INTO [[schema]].partners_filetype VALUES (48, 'Other'); -- Data for Name: partners_intervention; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].partners_intervention VALUES (67, '2019-04-02 05:36:14.839343+00', '2019-05-31 13:42:00.309296+00', 'PD', 'UAT/PCA2015146/PD201567-1', 'Test', 'signed', '2016-10-28', '2017-04-02', '2016-10-01', NULL, NULL, '', '2016-10-06', '2016-10-04', NULL, 146, 171, 2702, '', 1, false, '{}', true, 2015, '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (67, '2019-04-02 05:36:14.839343+00', '2019-05-31 13:42:00.309296+00', 'PD', 'UAT/PCA2015146/PD201567-1', 'Test', 'signed', '2016-10-28', '2017-04-02', '2016-10-01', NULL, NULL, '', '2016-10-06', '2016-10-04', NULL, 146, 171, 2702, '', 1, false, '{}', true, 2015, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (69, '2020-02-04 21:35:37.260062+00', '2020-02-04 21:35:37.27027+00', 'PD', 'UAT/PCA2015146/PD202069', 'sdfd', 'draft', NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, 146, NULL, NULL, '', 1, false, '{}', false, 2020, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (68, '2019-12-09 19:32:37.224482+00', '2019-12-09 19:40:27.579431+00', 'PD', 'UAT/PCA2015146/PD201968', 'Test doc', 'signed', '2019-12-09', '2019-12-12', '2019-12-09', NULL, NULL, '', '2019-12-08', '2019-12-09', NULL, 146, 171, 123, '', 1, false, '{}', false, 2019, '', '', ''); -- -- Data for Name: partners_intervention_flat_locations; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (1, 68, 4623); -- @@ -12060,6 +12085,7 @@ INSERT INTO [[schema]].partners_intervention VALUES (67, '2019-04-02 05:36:14.83 -- INSERT INTO [[schema]].partners_intervention_offices VALUES (51, 67, 2); +INSERT INTO [[schema]].partners_intervention_offices VALUES (52, 68, 2); -- @@ -12067,12 +12093,15 @@ INSERT INTO [[schema]].partners_intervention_offices VALUES (51, 67, 2); -- INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (57, 67, 171); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (58, 68, 171); -- -- Data for Name: partners_intervention_sections; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].partners_intervention_sections VALUES (4, 68, 13); +INSERT INTO [[schema]].partners_intervention_sections VALUES (5, 68, 7); INSERT INTO [[schema]].partners_intervention_sections VALUES (3, 67, 6); @@ -12081,6 +12110,7 @@ INSERT INTO [[schema]].partners_intervention_sections VALUES (3, 67, 6); -- INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (58, 67, 2702); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (59, 68, 19232); -- @@ -12095,6 +12125,7 @@ INSERT INTO [[schema]].partners_interventionamendment VALUES (34, '2019-05-31 13 -- INSERT INTO [[schema]].partners_interventionattachment VALUES (40, '', 67, 48, '2019-05-13 13:37:20.375921+00', '2019-05-13 13:37:20.376441+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (41, '', 68, 43, '2019-12-09 19:36:46.025142+00', '2019-12-09 19:36:46.025142+00', true); -- @@ -12102,6 +12133,8 @@ INSERT INTO [[schema]].partners_interventionattachment VALUES (40, '', 67, 48, ' -- INSERT INTO [[schema]].partners_interventionbudget VALUES (53, '2019-04-02 05:36:15.823546+00', '2019-04-02 05:39:24.288425+00', 0.00, 0.00, 0.00, 11.00, 111.00, 0.00, 0.00, 67, 122.00, 'MMK'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (54, '2019-12-09 19:32:38.341173+00', '2019-12-09 19:32:38.341173+00', 0.00, 0.00, 0.00, 10.00, 10.00, 10.00, 0.00, 68, 30.00, 'MMK'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (55, '2020-02-04 21:35:37.700247+00', '2020-02-04 21:35:37.700247+00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 69, 0.00, 'MMK'); -- @@ -12121,6 +12154,7 @@ INSERT INTO [[schema]].partners_interventionbudget VALUES (53, '2019-04-02 05:36 -- INSERT INTO [[schema]].partners_interventionresultlink VALUES (46, 60, 67, '2019-05-31 13:42:11.095211+00', '2019-05-31 13:42:11.095834+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (47, 60, 68, '2019-12-09 19:37:12.148718+00', '2019-12-09 19:37:12.148718+00'); -- @@ -12128,86 +12162,87 @@ INSERT INTO [[schema]].partners_interventionresultlink VALUES (46, 60, 67, '2019 -- INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (46, 46, 35); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (47, 47, 35); -- -- Data for Name: partners_partnerorganization; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].partners_partnerorganization VALUES (46, 'Civil Society Organization', 'Partner46', 'CRDSA', '', 'Address46', 'email46@nowhere.org', '46', '46', NULL, '', '', NULL, 'Academic Institution', false, '', NULL, true, false, 46.00, 46.00, false, 'City 46', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.580206+00', 46.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (36, 'Civil Society Organization', 'Partner36', 'CPS', '', 'Address36', 'email36@nowhere.org', '36', '36', NULL, '', 'high', NULL, 'National', false, '', NULL, true, false, 36.00, 36.00, false, 'City 36', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.582254+00', 36.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (28, 'Civil Society Organisation', 'Partner28', 'Dc Org', '', 'Address28', 'email28@nowhere.org', '28', '28', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 28.00, 28.00, false, 'City 28', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.584525+00', 28.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (35, 'Civil Society Organisation', 'Partner35', 'CPS', '', 'Address35', 'email35@nowhere.org', '35', '35', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 35.00, 35.00, false, 'City 35', '', '', '{UNFPA,UNDP}', '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.586619+00', 35.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (178, 'Civil Society Organization', 'Partner178', '', '', 'Address178', 'email178@nowhere.org', '178', '178', NULL, '', 'Low', NULL, 'International', true, '', '2013-12-18', true, true, 178.00, 178.00, false, 'City 178', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.588789+00', 178.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (118, 'Government', 'Partner118', '', '', 'Address118', 'email118@nowhere.org', '118', '118', NULL, '', '', NULL, NULL, true, '', NULL, true, true, 118.00, 118.00, false, 'City 118', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.59099+00', 118.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (83, 'Government', 'Partner83', '', '', 'Address83', 'email83@nowhere.org', '83', '83', NULL, '', 'High', NULL, NULL, true, 'High Risk Assumed', '2015-01-01', true, true, 83.00, 83.00, false, 'City 83', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.593164+00', 83.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (183, 'Government', 'Partner183', '', '', 'Address183', 'email183@nowhere.org', '183', '183', NULL, '', 'Not Required', NULL, NULL, true, '', NULL, true, true, 183.00, 183.00, false, 'City 183', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.595301+00', 183.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (189, 'Government', 'Partner189', '', '', 'Address189', 'email189@nowhere.org', '189', '189', NULL, '', 'Not Required', NULL, NULL, true, 'Micro Assessment', NULL, true, true, 189.00, 189.00, false, 'City 189', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.597484+00', 189.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (184, 'Government', 'Partner184', '', '', 'Address184', 'email184@nowhere.org', '184', '184', NULL, '', 'High', NULL, NULL, true, 'High Risk Assumed', '2016-03-31', true, true, 184.00, 184.00, false, 'City 184', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.599673+00', 184.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (202, 'Government', 'Partner202', '', '', 'Address202', 'email202@nowhere.org', '202', '202', NULL, '', 'Not Required', NULL, NULL, true, '', NULL, true, true, 202.00, 202.00, false, 'City 202', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.601806+00', 202.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (158, 'Government', 'Partner158', '', '', 'Address158', 'email158@nowhere.org', '158', '158', NULL, '', 'Not Required', NULL, NULL, true, '', NULL, true, true, 158.00, 158.00, false, 'City 158', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.603938+00', 158.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (47, 'Government', 'Partner47', 'Govt Test', '', 'Address47', 'email47@nowhere.org', '47', '47', NULL, '', '', NULL, NULL, false, '', NULL, true, false, 47.00, 47.00, false, 'City 47', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.626024+00', 47.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (148, 'Government', 'Partner148', '', '', 'Address148', 'email148@nowhere.org', '148', '148', NULL, '', 'Not Required', NULL, NULL, true, '', NULL, true, true, 148.00, 148.00, false, 'City 148', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.606102+00', 148.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (154, 'Government', 'Partner154', '', '', 'Address154', 'email154@nowhere.org', '154', '154', NULL, '', 'Not Required', NULL, NULL, true, 'Micro Assessment', NULL, true, true, 154.00, 154.00, false, 'City 154', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.608224+00', 154.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (56, 'Civil Society Organization', 'Partner56', 'EaB', '', 'Address56', 'email56@nowhere.org', '56', '56', NULL, '', '', NULL, 'National', false, '', NULL, true, false, 56.00, 56.00, false, 'City 56', '', '', '{UNDP}', '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.610618+00', 56.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (52, 'Civil Society Organization', 'Partner52', 'Edu DRC', '', 'Address52', 'email52@nowhere.org', '52', '52', NULL, '', '', NULL, 'International', false, '', NULL, true, false, 52.00, 52.00, false, 'City 52', '', '', '{UNDP}', '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.612818+00', 52.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (61, 'Civil Society Organization', 'Partner61', 'ETM', '', 'Address61', 'email61@nowhere.org', '61', '61', NULL, '', '', NULL, 'National', false, '', NULL, true, false, 61.00, 61.00, false, 'City 61', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.614917+00', 61.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (48, 'Civil Society Organization', 'Partner48', 'FAB DRC', '', 'Address48', 'email48@nowhere.org', '48', '48', NULL, '', '', NULL, 'International', false, '', NULL, true, false, 48.00, 48.00, false, 'City 48', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.61705+00', 48.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (181, 'Government', 'Partner181', '', '', 'Address181', 'email181@nowhere.org', '181', '181', NULL, '', 'Not Required', NULL, NULL, true, 'Micro Assessment', NULL, true, true, 181.00, 181.00, false, 'City 181', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.619121+00', 181.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (43, 'Civil Society Organisation', 'Partner43', '', '', 'Address43', 'email43@nowhere.org', '43', '43', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 43.00, 43.00, false, 'City 43', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.621436+00', 43.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (199, 'Government', 'Partner199', '', '', 'Address199', 'email199@nowhere.org', '199', '199', NULL, '', 'High', NULL, NULL, true, '', NULL, true, true, 199.00, 199.00, false, 'City 199', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.623685+00', 199.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (31, 'Civil Society Organisation', 'Partner31', 'ICO TP', '', 'Address31', 'email31@nowhere.org', '31', '31', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 31.00, 31.00, false, 'City 31', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.628299+00', 31.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (32, 'Government', 'Partner32', 'UPW', '', 'Address32', 'email32@nowhere.org', '32', '32', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 32.00, 32.00, false, 'City 32', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.645456+00', 32.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (34, 'Government', 'Partner34', 'MOWB', '', 'Address34', 'email34@nowhere.org', '34', '34', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 34.00, 34.00, false, 'City 34', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.647888+00', 34.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (126, 'Civil Society Organization', 'Partner126', '', '', 'Address126', 'email126@nowhere.org', '126', '126', NULL, '', 'Medium', NULL, 'National', true, '', '2010-06-30', true, true, 126.00, 126.00, false, 'City 126', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.650439+00', 126.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (180, 'Government', 'Partner180', '', '', 'Address180', 'email180@nowhere.org', '180', '180', NULL, '', 'Not Required', NULL, NULL, true, 'Micro Assessment', NULL, true, true, 180.00, 180.00, false, 'City 180', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.653029+00', 180.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (10, 'UN Agency', 'Partner10', 'NRSP', '', 'Address10', 'email10@nowhere.org', '10', '10', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 10.00, 10.00, false, 'City 10', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.655533+00', 10.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (157, 'Civil Society Organization', 'Partner157', '', '', 'Address157', 'email157@nowhere.org', '157', '157', NULL, '', 'Significant', NULL, 'National', true, '', '2010-06-30', true, true, 157.00, 157.00, false, 'City 157', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.657969+00', 157.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (229, 'Civil Society Organization', 'Partner229', '', '', 'Address229', 'email229@nowhere.org', '229', '229', NULL, NULL, 'Low', '2018-04-09', 'International', true, 'Micro Assessment', '2018-06-22', false, false, 229.00, 229.00, false, 'City 229', '240', '00100', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-02-11 07:57:50.537013+00', '2020-04-02 17:58:56.660507+00', 229.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (41, 'Civil Society Organisation', 'Partner41', 'PO2', '', 'Address41', 'email41@nowhere.org', '41', '41', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 41.00, 41.00, false, 'City 41', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.663008+00', 41.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (60, 'Civil Society Organization', 'Partner60', 'PFF', '', 'Address60', 'email60@nowhere.org', '60', '60', NULL, '', '', NULL, 'International', false, '', NULL, true, false, 60.00, 60.00, false, 'City 60', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.665454+00', 60.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (11, 'Civil Society Organization', 'Partner11', 'PPB', '', 'Address11', 'email11@nowhere.org', '11', '11', NULL, '', 'high', NULL, 'Community Based Organization', false, '', NULL, true, false, 11.00, 11.00, false, 'City 11', '', '', '{}', '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.668033+00', 11.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (192, 'Civil Society Organization', 'Partner192', '', '', 'Address192', 'email192@nowhere.org', '192', '192', NULL, '', 'Medium', NULL, 'National', true, '', '2010-06-30', true, true, 192.00, 192.00, false, 'City 192', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.670528+00', 192.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (59, 'Civil Society Organization', 'Partner59', '', '', 'Address59', 'email59@nowhere.org', '59', '59', NULL, '', '', NULL, 'International', false, '', NULL, true, false, 59.00, 59.00, false, 'City 59', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.675471+00', 59.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (53, 'Civil Society Organization', 'Partner53', '', '', 'Address53', 'email53@nowhere.org', '53', '53', NULL, '', '', NULL, 'International', false, '', NULL, true, false, 53.00, 53.00, false, 'City 53', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.677866+00', 53.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (121, 'Civil Society Organization', 'Partner121', '', '', 'Address121', 'email121@nowhere.org', '121', '121', NULL, '', 'Not Required', NULL, 'International', true, 'Micro Assessment', NULL, true, true, 121.00, 121.00, false, 'City 121', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.680892+00', 121.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (55, 'Civil Society Organization', 'Partner55', 'RTP', '', 'Address55', 'email55@nowhere.org', '55', '55', NULL, '', '', NULL, 'National', false, '', NULL, true, false, 55.00, 55.00, false, 'City 55', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.685377+00', 55.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (25, 'Civil Society Organisation', 'Partner25', 'StC', '', 'Address25', 'email25@nowhere.org', '25', '25', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 25.00, 25.00, false, 'City 25', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.690334+00', 25.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (26, 'Civil Society Organisation', 'Partner26', 'Save', '', 'Address26', 'email26@nowhere.org', '26', '26', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 26.00, 26.00, false, 'City 26', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.695075+00', 26.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (38, 'Civil Society Organisation', 'Partner38', 'Shafaq', '', 'Address38', 'email38@nowhere.org', '38', '38', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 38.00, 38.00, false, 'City 38', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.699797+00', 38.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (152, 'Government', 'Partner152', '', '', 'Address152', 'email152@nowhere.org', '152', '152', NULL, '', 'Not Required', NULL, NULL, true, '', NULL, true, true, 152.00, 152.00, false, 'City 152', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.704523+00', 152.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (172, 'Government', 'Partner172', '', '', 'Address172', 'email172@nowhere.org', '172', '172', NULL, '', 'Not Required', NULL, NULL, true, 'Micro Assessment', NULL, true, true, 172.00, 172.00, false, 'City 172', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.709611+00', 172.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (150, 'Civil Society Organization', 'Partner150', '', '', 'Address150', 'email150@nowhere.org', '150', '150', NULL, '', 'Medium', '2013-07-25', 'International', true, '', '2010-07-31', true, true, 150.00, 150.00, false, 'City 150', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.714766+00', 150.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (39, 'Civil Society Organisation', 'Partner39', 'Test3', '', 'Address39', 'email39@nowhere.org', '39', '39', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 39.00, 39.00, false, 'City 39', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.719749+00', 39.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (45, 'Civil Society Organization', 'Partner45', 'test1', '', 'Address45', 'email45@nowhere.org', '45', '45', NULL, '', '', NULL, 'National', false, '', NULL, true, false, 45.00, 45.00, false, 'City 45', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.724534+00', 45.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (102, 'Civil Society Organization', 'Partner102', '', '', 'Address102', 'email102@nowhere.org', '102', '102', NULL, '', 'Significant', NULL, 'Community Based Organization', true, '', '2010-06-30', true, true, 102.00, 102.00, false, 'City 102', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.729457+00', 102.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (197, 'Civil Society Organization', 'Partner197', '', '', 'Address197', 'email197@nowhere.org', '197', '197', NULL, '', 'Not Required', NULL, 'Community Based Organization', true, '', NULL, true, true, 197.00, 197.00, false, 'City 197', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.734407+00', 197.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (186, 'Civil Society Organization', 'Partner186', '', '', 'Address186', 'email186@nowhere.org', '186', '186', NULL, '', 'Not Required', NULL, 'National', true, '', NULL, true, true, 186.00, 186.00, false, 'City 186', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.739392+00', 186.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (165, 'Civil Society Organization', 'Partner165', '', '', 'Address165', 'email165@nowhere.org', '165', '165', NULL, '', 'Not Required', NULL, 'Community Based Organization', true, '', NULL, true, true, 165.00, 165.00, false, 'City 165', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.744261+00', 165.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (37, 'Civil Society Organisation', 'Partner37', '', '', 'Address37', 'email37@nowhere.org', '37', '37', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 37.00, 37.00, false, 'City 37', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.749199+00', 37.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (62, 'Civil Society Organization', 'Partner62', '', '', 'Address62', 'email62@nowhere.org', '62', '62', NULL, '', '', NULL, 'National', false, '', NULL, true, false, 62.00, 62.00, false, 'City 62', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.753929+00', 62.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (33, 'Civil Society Organisation', 'Partner33', 'UPW', '', 'Address33', 'email33@nowhere.org', '33', '33', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 33.00, 33.00, false, 'City 33', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.758836+00', 33.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (175, 'Government', 'Partner175', '', '', 'Address175', 'email175@nowhere.org', '175', '175', NULL, '', 'High', NULL, NULL, true, '', NULL, true, true, 175.00, 175.00, false, 'City 175', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.763639+00', 175.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (190, 'Government', 'Partner190', '', '', 'Address190', 'email190@nowhere.org', '190', '190', NULL, '', 'Not Required', NULL, NULL, true, '', NULL, true, true, 190.00, 190.00, false, 'City 190', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.797359+00', 190.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (187, 'Civil Society Organization', 'Partner187', '', '', 'Address187', 'email187@nowhere.org', '187', '187', NULL, '', 'Not Required', '2016-03-29', 'National', true, 'Micro Assessment', '2016-03-29', true, true, 187.00, 187.00, false, 'City 187', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.568365+00', 187.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (2, 'Bilateral / Multilateral', 'Partner2', 'ABCD', '', 'Address2', 'email2@nowhere.org', '2', '2', NULL, '', 'high', NULL, 'International', false, '', NULL, true, false, 2.00, 2.00, false, 'City 2', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.57059+00', 2.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (228, 'Civil Society Organization', 'Partner228', '', '', 'Address228', 'email228@nowhere.org', '228', '228', NULL, 'ATC', 'High', '2013-07-10', 'International', true, 'High Risk Assumed', '2017-01-24', false, false, 228.00, 228.00, false, 'City 228', '234', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 1, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 1}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.572145+00', 228.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (153, 'Civil Society Organization', 'Partner153', '', '', 'Address153', 'email153@nowhere.org', '153', '153', NULL, '', 'Not Required', NULL, 'International', true, '', NULL, true, true, 153.00, 153.00, false, 'City 153', 'Thailand', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.573746+00', 153.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (54, 'Civil Society Organization', 'Partner54', 'AFDA_n', '', 'Address54', 'email54@nowhere.org', '54', '54', NULL, '', '', NULL, 'National', false, '', NULL, true, false, 54.00, 54.00, false, 'City 54', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.575977+00', 54.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (44, 'Civil Society Organization', 'Partner44', 'APO', '', 'Address44', 'email44@nowhere.org', '44', '44', NULL, '', 'high', NULL, 'National', false, '', NULL, true, false, 44.00, 44.00, false, 'City 44', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.578068+00', 44.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (149, 'Government', 'Partner149', '', '', 'Address149', 'email149@nowhere.org', '149', '149', NULL, '', 'High', NULL, NULL, true, '', NULL, true, true, 149.00, 149.00, false, 'City 149', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.63059+00', 149.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (161, 'Government', 'Partner161', '', '', 'Address161', 'email161@nowhere.org', '161', '161', NULL, '', 'Not Required', NULL, NULL, true, 'Micro Assessment', NULL, true, true, 161.00, 161.00, false, 'City 161', 'Myanmar', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.632997+00', 161.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (30, 'Bi-Lateral Organisation', 'Partner30', '12345', '', 'Address30', 'email30@nowhere.org', '30', '30', 12345, '12345', 'high', NULL, NULL, false, '', NULL, true, false, 30.00, 30.00, false, 'City 30', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.635558+00', 30.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (14, 'Civil Society Organization', 'Partner14', 'MoeT', '', 'Address14', 'email14@nowhere.org', '14', '14', NULL, 'The best ministry in the world', 'high', NULL, 'National', false, '', NULL, true, false, 14.00, 14.00, false, 'City 14', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.638208+00', 14.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (29, 'Government', 'Partner29', 'MoE2', '', 'Address29', 'email29@nowhere.org', '29', '29', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 29.00, 29.00, false, 'City 29', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.640668+00', 29.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (20, 'Government', 'Partner20', 'MoE', '', 'Address20', 'email20@nowhere.org', '20', '20', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 20.00, 20.00, false, 'City 20', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.643093+00', 20.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (57, 'Government', 'Partner57', '', '', 'Address57', 'email57@nowhere.org', '57', '57', NULL, '', '', NULL, NULL, false, '', NULL, true, false, 57.00, 57.00, false, 'City 57', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.673097+00', 57.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (42, 'Civil Society Organisation', 'Partner42', 'US Fund', '', 'Address42', 'email42@nowhere.org', '42', '42', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 42.00, 42.00, false, 'City 42', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.768478+00', 42.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (22, 'Civil Society Organisation', 'Partner22', 'WT', '', 'Address22', 'email22@nowhere.org', '22', '22', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 22.00, 22.00, false, 'City 22', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.773492+00', 22.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (21, 'Civil Society Organisation', 'Partner21', 'ET', '', 'Address21', 'email21@nowhere.org', '21', '21', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 21.00, 21.00, false, 'City 21', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.778324+00', 21.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (24, 'Civil Society Organisation', 'Partner24', 'WT', '', 'Address24', 'email24@nowhere.org', '24', '24', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 24.00, 24.00, false, 'City 24', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.783091+00', 24.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (23, 'Civil Society Organisation', 'Partner23', 'WT', '', 'Address23', 'email23@nowhere.org', '23', '23', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 23.00, 23.00, false, 'City 23', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.787757+00', 23.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (27, 'Civil Society Organisation', 'Partner27', 'XXX', '', 'Address27', 'email27@nowhere.org', '27', '27', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 27.00, 27.00, false, 'City 27', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 17:54:12.809984+00', '2020-04-02 17:58:56.7926+00', 27.00, NULL, NULL, '', false, NULL, NULL); +INSERT INTO [[schema]].partners_partnerorganization VALUES (153, 'Civil Society Organization', 'Partner153', '', '', 'Address153', 'email153@nowhere.org', '153', '153', NULL, '', 'Not Required', NULL, 'International', true, '', NULL, true, true, 153.00, 153.00, false, 'City 153', 'Thailand', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.601289+00', 153.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (36, 'Civil Society Organization', 'Partner36', 'CPS', '', 'Address36', 'email36@nowhere.org', '36', '36', NULL, '', 'high', NULL, 'National', false, '', NULL, true, false, 36.00, 36.00, false, 'City 36', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.639378+00', 36.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (35, 'Civil Society Organisation', 'Partner35', 'CPS', '', 'Address35', 'email35@nowhere.org', '35', '35', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 35.00, 35.00, false, 'City 35', '', '', '{UNFPA,UNDP}', '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.660235+00', 35.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (183, 'Government', 'Partner183', '', '', 'Address183', 'email183@nowhere.org', '183', '183', NULL, '', 'Not Required', NULL, NULL, true, '', NULL, true, true, 183.00, 183.00, false, 'City 183', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.698584+00', 183.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (202, 'Government', 'Partner202', '', '', 'Address202', 'email202@nowhere.org', '202', '202', NULL, '', 'Not Required', NULL, NULL, true, '', NULL, true, true, 202.00, 202.00, false, 'City 202', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.729452+00', 202.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (154, 'Government', 'Partner154', '', '', 'Address154', 'email154@nowhere.org', '154', '154', NULL, '', 'Not Required', NULL, NULL, true, 'Micro Assessment', NULL, true, true, 154.00, 154.00, false, 'City 154', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.759138+00', 154.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (61, 'Civil Society Organization', 'Partner61', 'ETM', '', 'Address61', 'email61@nowhere.org', '61', '61', NULL, '', '', NULL, 'National', false, '', NULL, true, false, 61.00, 61.00, false, 'City 61', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.813463+00', 61.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (199, 'Government', 'Partner199', '', '', 'Address199', 'email199@nowhere.org', '199', '199', NULL, '', 'High', NULL, NULL, true, '', NULL, true, true, 199.00, 199.00, false, 'City 199', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.853075+00', 199.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (187, 'Civil Society Organization', 'Partner187', '', '', 'Address187', 'email187@nowhere.org', '187', '187', NULL, '', 'Not Required', '2016-03-29', 'National', true, 'Micro Assessment', '2016-03-29', true, true, 187.00, 187.00, false, 'City 187', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.569259+00', 187.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (44, 'Civil Society Organization', 'Partner44', 'APO', '', 'Address44', 'email44@nowhere.org', '44', '44', NULL, '', 'high', NULL, 'National', false, '', NULL, true, false, 44.00, 44.00, false, 'City 44', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.620603+00', 44.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (149, 'Government', 'Partner149', '', '', 'Address149', 'email149@nowhere.org', '149', '149', NULL, '', 'High', NULL, NULL, true, '', NULL, true, true, 149.00, 149.00, false, 'City 149', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.883166+00', 149.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (30, 'Bi-Lateral Organisation', 'Partner30', '12345', '', 'Address30', 'email30@nowhere.org', '30', '30', 12345, '12345', 'high', NULL, NULL, false, '', NULL, true, false, 30.00, 30.00, false, 'City 30', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.902579+00', 30.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (20, 'Government', 'Partner20', 'MoE', '', 'Address20', 'email20@nowhere.org', '20', '20', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 20.00, 20.00, false, 'City 20', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.933264+00', 20.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (126, 'Civil Society Organization', 'Partner126', '', '', 'Address126', 'email126@nowhere.org', '126', '126', NULL, '', 'Medium', NULL, 'National', true, '', '2010-06-30', true, true, 126.00, 126.00, false, 'City 126', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.961333+00', 126.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (229, 'Civil Society Organization', 'Partner229', '', '', 'Address229', 'email229@nowhere.org', '229', '229', NULL, NULL, 'Low', '2018-04-09', 'International', true, 'Micro Assessment', '2018-06-22', false, false, 229.00, 229.00, false, 'City 229', '240', '00100', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2019-02-11 07:57:50.537013+00', '2020-02-04 20:59:21.005654+00', 229.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (60, 'Civil Society Organization', 'Partner60', 'PFF', '', 'Address60', 'email60@nowhere.org', '60', '60', NULL, '', '', NULL, 'International', false, '', NULL, true, false, 60.00, 60.00, false, 'City 60', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.025482+00', 60.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (59, 'Civil Society Organization', 'Partner59', '', '', 'Address59', 'email59@nowhere.org', '59', '59', NULL, '', '', NULL, 'International', false, '', NULL, true, false, 59.00, 59.00, false, 'City 59', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.067167+00', 59.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (121, 'Civil Society Organization', 'Partner121', '', '', 'Address121', 'email121@nowhere.org', '121', '121', NULL, '', 'Not Required', NULL, 'International', true, 'Micro Assessment', NULL, true, true, 121.00, 121.00, false, 'City 121', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.088532+00', 121.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (172, 'Government', 'Partner172', '', '', 'Address172', 'email172@nowhere.org', '172', '172', NULL, '', 'Not Required', NULL, NULL, true, 'Micro Assessment', NULL, true, true, 172.00, 172.00, false, 'City 172', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.159624+00', 172.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (150, 'Civil Society Organization', 'Partner150', '', '', 'Address150', 'email150@nowhere.org', '150', '150', NULL, '', 'Medium', '2013-07-25', 'International', true, '', '2010-07-31', true, true, 150.00, 150.00, false, 'City 150', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.17079+00', 150.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (102, 'Civil Society Organization', 'Partner102', '', '', 'Address102', 'email102@nowhere.org', '102', '102', NULL, '', 'Significant', NULL, 'Community Based Organization', true, '', '2010-06-30', true, true, 102.00, 102.00, false, 'City 102', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.199491+00', 102.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (62, 'Civil Society Organization', 'Partner62', '', '', 'Address62', 'email62@nowhere.org', '62', '62', NULL, '', '', NULL, 'National', false, '', NULL, true, false, 62.00, 62.00, false, 'City 62', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.285895+00', 62.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (21, 'Civil Society Organisation', 'Partner21', 'ET', '', 'Address21', 'email21@nowhere.org', '21', '21', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 21.00, 21.00, false, 'City 21', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.337411+00', 21.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (2, 'Bilateral / Multilateral', 'Partner2', 'ABCD', '', 'Address2', 'email2@nowhere.org', '2', '2', NULL, '', 'high', NULL, 'International', false, '', NULL, true, false, 2.00, 2.00, false, 'City 2', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.581272+00', 2.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (228, 'Civil Society Organization', 'Partner228', '', '', 'Address228', 'email228@nowhere.org', '228', '228', NULL, 'ATC', 'High', '2013-07-10', 'International', true, 'High Risk Assumed', '2017-01-24', false, false, 228.00, 228.00, false, 'City 228', '234', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.591817+00', 228.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (54, 'Civil Society Organization', 'Partner54', 'AFDA_n', '', 'Address54', 'email54@nowhere.org', '54', '54', NULL, '', '', NULL, 'National', false, '', NULL, true, false, 54.00, 54.00, false, 'City 54', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.611321+00', 54.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (46, 'Civil Society Organization', 'Partner46', 'CRDSA', '', 'Address46', 'email46@nowhere.org', '46', '46', NULL, '', '', NULL, 'Academic Institution', false, '', NULL, true, false, 46.00, 46.00, false, 'City 46', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.630208+00', 46.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (28, 'Civil Society Organisation', 'Partner28', 'Dc Org', '', 'Address28', 'email28@nowhere.org', '28', '28', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 28.00, 28.00, false, 'City 28', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.650335+00', 28.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (178, 'Civil Society Organization', 'Partner178', '', '', 'Address178', 'email178@nowhere.org', '178', '178', NULL, '', 'Low', NULL, 'International', true, '', '2013-12-18', true, true, 178.00, 178.00, false, 'City 178', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.669501+00', 178.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (83, 'Government', 'Partner83', '', '', 'Address83', 'email83@nowhere.org', '83', '83', NULL, '', 'High', NULL, NULL, true, 'High Risk Assumed', '2015-01-01', true, true, 83.00, 83.00, false, 'City 83', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.679299+00', 83.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (118, 'Government', 'Partner118', '', '', 'Address118', 'email118@nowhere.org', '118', '118', NULL, '', '', NULL, NULL, true, '', NULL, true, true, 118.00, 118.00, false, 'City 118', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.689233+00', 118.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (189, 'Government', 'Partner189', '', '', 'Address189', 'email189@nowhere.org', '189', '189', NULL, '', 'Not Required', NULL, NULL, true, 'Micro Assessment', NULL, true, true, 189.00, 189.00, false, 'City 189', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.709947+00', 189.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (184, 'Government', 'Partner184', '', '', 'Address184', 'email184@nowhere.org', '184', '184', NULL, '', 'High', NULL, NULL, true, 'High Risk Assumed', '2016-03-31', true, true, 184.00, 184.00, false, 'City 184', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.719343+00', 184.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (158, 'Government', 'Partner158', '', '', 'Address158', 'email158@nowhere.org', '158', '158', NULL, '', 'Not Required', NULL, NULL, true, '', NULL, true, true, 158.00, 158.00, false, 'City 158', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.739483+00', 158.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (148, 'Government', 'Partner148', '', '', 'Address148', 'email148@nowhere.org', '148', '148', NULL, '', 'Not Required', NULL, NULL, true, '', NULL, true, true, 148.00, 148.00, false, 'City 148', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.749786+00', 148.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (56, 'Civil Society Organization', 'Partner56', 'EaB', '', 'Address56', 'email56@nowhere.org', '56', '56', NULL, '', '', NULL, 'National', false, '', NULL, true, false, 56.00, 56.00, false, 'City 56', '', '', '{UNDP}', '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.768906+00', 56.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (52, 'Civil Society Organization', 'Partner52', 'Edu DRC', '', 'Address52', 'email52@nowhere.org', '52', '52', NULL, '', '', NULL, 'International', false, '', NULL, true, false, 52.00, 52.00, false, 'City 52', '', '', '{UNDP}', '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.778624+00', 52.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (48, 'Civil Society Organization', 'Partner48', 'FAB DRC', '', 'Address48', 'email48@nowhere.org', '48', '48', NULL, '', '', NULL, 'International', false, '', NULL, true, false, 48.00, 48.00, false, 'City 48', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.822932+00', 48.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (181, 'Government', 'Partner181', '', '', 'Address181', 'email181@nowhere.org', '181', '181', NULL, '', 'Not Required', NULL, NULL, true, 'Micro Assessment', NULL, true, true, 181.00, 181.00, false, 'City 181', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.834042+00', 181.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (43, 'Civil Society Organisation', 'Partner43', '', '', 'Address43', 'email43@nowhere.org', '43', '43', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 43.00, 43.00, false, 'City 43', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.843076+00', 43.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (47, 'Government', 'Partner47', 'Govt Test', '', 'Address47', 'email47@nowhere.org', '47', '47', NULL, '', '', NULL, NULL, false, '', NULL, true, false, 47.00, 47.00, false, 'City 47', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.863017+00', 47.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (31, 'Civil Society Organisation', 'Partner31', 'ICO TP', '', 'Address31', 'email31@nowhere.org', '31', '31', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 31.00, 31.00, false, 'City 31', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.873468+00', 31.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (161, 'Government', 'Partner161', '', '', 'Address161', 'email161@nowhere.org', '161', '161', NULL, '', 'Not Required', NULL, NULL, true, 'Micro Assessment', NULL, true, true, 161.00, 161.00, false, 'City 161', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.892627+00', 161.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (14, 'Civil Society Organization', 'Partner14', 'MoeT', '', 'Address14', 'email14@nowhere.org', '14', '14', NULL, 'The best ministry in the world', 'high', NULL, 'National', false, '', NULL, true, false, 14.00, 14.00, false, 'City 14', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.912883+00', 14.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (29, 'Government', 'Partner29', 'MoE2', '', 'Address29', 'email29@nowhere.org', '29', '29', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 29.00, 29.00, false, 'City 29', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.923464+00', 29.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (32, 'Government', 'Partner32', 'UPW', '', 'Address32', 'email32@nowhere.org', '32', '32', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 32.00, 32.00, false, 'City 32', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.9424+00', 32.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (34, 'Government', 'Partner34', 'MOWB', '', 'Address34', 'email34@nowhere.org', '34', '34', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 34.00, 34.00, false, 'City 34', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.952087+00', 34.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (180, 'Government', 'Partner180', '', '', 'Address180', 'email180@nowhere.org', '180', '180', NULL, '', 'Not Required', NULL, NULL, true, 'Micro Assessment', NULL, true, true, 180.00, 180.00, false, 'City 180', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.970854+00', 180.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (10, 'UN Agency', 'Partner10', 'NRSP', '', 'Address10', 'email10@nowhere.org', '10', '10', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 10.00, 10.00, false, 'City 10', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.985361+00', 10.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (157, 'Civil Society Organization', 'Partner157', '', '', 'Address157', 'email157@nowhere.org', '157', '157', NULL, '', 'Significant', NULL, 'National', true, '', '2010-06-30', true, true, 157.00, 157.00, false, 'City 157', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:20.994983+00', 157.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (41, 'Civil Society Organisation', 'Partner41', 'PO2', '', 'Address41', 'email41@nowhere.org', '41', '41', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 41.00, 41.00, false, 'City 41', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.015308+00', 41.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (11, 'Civil Society Organization', 'Partner11', 'PPB', '', 'Address11', 'email11@nowhere.org', '11', '11', NULL, '', 'high', NULL, 'Community Based Organization', false, '', NULL, true, false, 11.00, 11.00, false, 'City 11', '', '', '{}', '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.035546+00', 11.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (192, 'Civil Society Organization', 'Partner192', '', '', 'Address192', 'email192@nowhere.org', '192', '192', NULL, '', 'Medium', NULL, 'National', true, '', '2010-06-30', true, true, 192.00, 192.00, false, 'City 192', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.046286+00', 192.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (57, 'Government', 'Partner57', '', '', 'Address57', 'email57@nowhere.org', '57', '57', NULL, '', '', NULL, NULL, false, '', NULL, true, false, 57.00, 57.00, false, 'City 57', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.057103+00', 57.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (53, 'Civil Society Organization', 'Partner53', '', '', 'Address53', 'email53@nowhere.org', '53', '53', NULL, '', '', NULL, 'International', false, '', NULL, true, false, 53.00, 53.00, false, 'City 53', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.078832+00', 53.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (55, 'Civil Society Organization', 'Partner55', 'RTP', '', 'Address55', 'email55@nowhere.org', '55', '55', NULL, '', '', NULL, 'National', false, '', NULL, true, false, 55.00, 55.00, false, 'City 55', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.098701+00', 55.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (25, 'Civil Society Organisation', 'Partner25', 'StC', '', 'Address25', 'email25@nowhere.org', '25', '25', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 25.00, 25.00, false, 'City 25', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.114591+00', 25.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (26, 'Civil Society Organisation', 'Partner26', 'Save', '', 'Address26', 'email26@nowhere.org', '26', '26', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 26.00, 26.00, false, 'City 26', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.124182+00', 26.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (38, 'Civil Society Organisation', 'Partner38', 'Shafaq', '', 'Address38', 'email38@nowhere.org', '38', '38', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 38.00, 38.00, false, 'City 38', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.136682+00', 38.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (39, 'Civil Society Organisation', 'Partner39', 'Test3', '', 'Address39', 'email39@nowhere.org', '39', '39', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 39.00, 39.00, false, 'City 39', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.180837+00', 39.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (45, 'Civil Society Organization', 'Partner45', 'test1', '', 'Address45', 'email45@nowhere.org', '45', '45', NULL, '', '', NULL, 'National', false, '', NULL, true, false, 45.00, 45.00, false, 'City 45', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.190484+00', 45.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (197, 'Civil Society Organization', 'Partner197', '', '', 'Address197', 'email197@nowhere.org', '197', '197', NULL, '', 'Not Required', NULL, 'Community Based Organization', true, '', NULL, true, true, 197.00, 197.00, false, 'City 197', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.208421+00', 197.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (186, 'Civil Society Organization', 'Partner186', '', '', 'Address186', 'email186@nowhere.org', '186', '186', NULL, '', 'Not Required', NULL, 'National', true, '', NULL, true, true, 186.00, 186.00, false, 'City 186', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.246651+00', 186.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (165, 'Civil Society Organization', 'Partner165', '', '', 'Address165', 'email165@nowhere.org', '165', '165', NULL, '', 'Not Required', NULL, 'Community Based Organization', true, '', NULL, true, true, 165.00, 165.00, false, 'City 165', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.259416+00', 165.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (37, 'Civil Society Organisation', 'Partner37', '', '', 'Address37', 'email37@nowhere.org', '37', '37', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 37.00, 37.00, false, 'City 37', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.274741+00', 37.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (42, 'Civil Society Organisation', 'Partner42', 'US Fund', '', 'Address42', 'email42@nowhere.org', '42', '42', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 42.00, 42.00, false, 'City 42', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.31595+00', 42.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (22, 'Civil Society Organisation', 'Partner22', 'WT', '', 'Address22', 'email22@nowhere.org', '22', '22', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 22.00, 22.00, false, 'City 22', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.327921+00', 22.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (24, 'Civil Society Organisation', 'Partner24', 'WT', '', 'Address24', 'email24@nowhere.org', '24', '24', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 24.00, 24.00, false, 'City 24', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.34655+00', 24.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (23, 'Civil Society Organisation', 'Partner23', 'WT', '', 'Address23', 'email23@nowhere.org', '23', '23', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 23.00, 23.00, false, 'City 23', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.357941+00', 23.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (27, 'Civil Society Organisation', 'Partner27', 'XXX', '', 'Address27', 'email27@nowhere.org', '27', '27', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 27.00, 27.00, false, 'City 27', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.367088+00', 27.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (190, 'Government', 'Partner190', '', '', 'Address190', 'email190@nowhere.org', '190', '190', NULL, '', 'Not Required', NULL, NULL, true, '', NULL, true, true, 190.00, 190.00, false, 'City 190', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.376728+00', 190.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (152, 'Government', 'Partner152', '', '', 'Address152', 'email152@nowhere.org', '152', '152', NULL, '', 'Not Required', NULL, NULL, true, '', NULL, true, true, 152.00, 152.00, false, 'City 152', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.146731+00', 152.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (33, 'Civil Society Organisation', 'Partner33', 'UPW', '', 'Address33', 'email33@nowhere.org', '33', '33', NULL, '', 'high', NULL, NULL, false, '', NULL, true, false, 33.00, 33.00, false, 'City 33', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.296416+00', 33.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (175, 'Government', 'Partner175', '', '', 'Address175', 'email175@nowhere.org', '175', '175', NULL, '', 'High', NULL, NULL, true, '', NULL, true, true, 175.00, 175.00, false, 'City 175', 'Myanmar', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 17:54:12.809984+00', '2020-02-04 20:59:21.305809+00', 175.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); -- @@ -12220,87 +12255,87 @@ INSERT INTO [[schema]].partners_partnerorganization VALUES (27, 'Civil Society O -- Data for Name: partners_partnerstaffmember; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (171, 'test', 'Test', 'Test', 'test@test.crom', NULL, 228, true, '2019-04-02 05:34:54.882+00', '2019-04-02 05:34:54.882631+00'); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (171, 'test', 'Test', 'Test', 'test@test.crom', NULL, 228, true, '2019-04-02 05:34:54.882+00', '2020-11-03 18:57:59.908797+00', 285645); -- -- Data for Name: partners_plannedengagement; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].partners_plannedengagement VALUES (74, '2019-02-11 07:57:50.566744+00', '2019-02-11 07:57:50.567302+00', 0, 0, 0, 0, false, false, 229, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (1, '2018-03-15 17:54:42.806283+00', '2018-12-31 13:12:16.647398+00', 0, 0, 0, 0, false, false, 187, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (2, '2018-03-15 17:54:42.826507+00', '2018-12-31 13:12:16.661603+00', 0, 0, 0, 0, false, false, 2, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (3, '2018-03-15 17:54:42.846735+00', '2018-12-31 13:12:16.676515+00', 0, 0, 0, 0, false, false, 228, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (4, '2018-03-15 17:54:42.867697+00', '2018-12-31 13:12:16.691349+00', 0, 0, 0, 0, false, false, 153, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (5, '2018-03-15 17:54:42.88733+00', '2018-12-31 13:12:16.706334+00', 0, 0, 0, 0, false, false, 54, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (6, '2018-03-15 17:54:42.907553+00', '2018-12-31 13:12:16.721258+00', 0, 0, 0, 0, false, false, 44, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (7, '2018-03-15 17:54:42.927789+00', '2018-12-31 13:12:16.735449+00', 0, 0, 0, 0, false, false, 46, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (8, '2018-03-15 17:54:42.948204+00', '2018-12-31 13:12:16.749812+00', 0, 0, 0, 0, false, false, 36, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (9, '2018-03-15 17:54:42.968278+00', '2018-12-31 13:12:16.764338+00', 0, 0, 0, 0, false, false, 28, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (10, '2018-03-15 17:54:42.988887+00', '2018-12-31 13:12:16.778359+00', 0, 0, 0, 0, false, false, 35, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (11, '2018-03-15 17:54:43.012127+00', '2018-12-31 13:12:16.792342+00', 0, 0, 0, 0, false, false, 178, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (13, '2018-03-15 17:54:43.052017+00', '2018-12-31 13:12:16.806344+00', 0, 0, 0, 0, false, false, 83, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (12, '2018-03-15 17:54:43.031828+00', '2018-12-31 13:12:16.821373+00', 0, 0, 0, 0, false, false, 118, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (14, '2018-03-15 17:54:43.071765+00', '2018-12-31 13:12:16.836369+00', 0, 0, 0, 0, false, false, 183, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (15, '2018-03-15 17:54:43.091752+00', '2018-12-31 13:12:16.851575+00', 0, 0, 0, 0, false, false, 189, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (16, '2018-03-15 17:54:43.111727+00', '2018-12-31 13:12:16.86597+00', 0, 0, 0, 0, false, false, 184, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (17, '2018-03-15 17:54:43.131871+00', '2018-12-31 13:12:16.881354+00', 0, 0, 0, 0, false, false, 202, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (18, '2018-03-15 17:54:43.152087+00', '2018-12-31 13:12:16.895505+00', 0, 0, 0, 0, false, false, 158, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (19, '2018-03-15 17:54:43.174105+00', '2018-12-31 13:12:16.910628+00', 0, 0, 0, 0, false, false, 148, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (20, '2018-03-15 17:54:43.197667+00', '2018-12-31 13:12:16.925032+00', 0, 0, 0, 0, false, false, 154, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (21, '2018-03-15 17:54:43.217888+00', '2018-12-31 13:12:16.939417+00', 0, 0, 0, 0, false, false, 56, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (22, '2018-03-15 17:54:43.238083+00', '2018-12-31 13:12:16.954341+00', 0, 0, 0, 0, false, false, 52, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (23, '2018-03-15 17:54:43.257793+00', '2018-12-31 13:12:16.968497+00', 0, 0, 0, 0, false, false, 61, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (24, '2018-03-15 17:54:43.277536+00', '2018-12-31 13:12:16.983015+00', 0, 0, 0, 0, false, false, 48, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (25, '2018-03-15 17:54:43.297664+00', '2018-12-31 13:12:16.997812+00', 0, 0, 0, 0, false, false, 181, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (26, '2018-03-15 17:54:43.318048+00', '2018-12-31 13:12:17.012916+00', 0, 0, 0, 0, false, false, 43, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (27, '2018-03-15 17:54:43.338638+00', '2018-12-31 13:12:17.027438+00', 0, 0, 0, 0, false, false, 199, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (28, '2018-03-15 17:54:43.359004+00', '2018-12-31 13:12:17.041186+00', 0, 0, 0, 0, false, false, 47, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (29, '2018-03-15 17:54:43.379091+00', '2018-12-31 13:12:17.056854+00', 0, 0, 0, 0, false, false, 31, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (30, '2018-03-15 17:54:43.400039+00', '2018-12-31 13:12:17.071326+00', 0, 0, 0, 0, false, false, 149, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (31, '2018-03-15 17:54:43.419727+00', '2018-12-31 13:12:17.086166+00', 0, 0, 0, 0, false, false, 161, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (32, '2018-03-15 17:54:43.43965+00', '2018-12-31 13:12:17.100161+00', 0, 0, 0, 0, false, false, 30, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (33, '2018-03-15 17:54:43.459418+00', '2018-12-31 13:12:17.114263+00', 0, 0, 0, 0, false, false, 14, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (34, '2018-03-15 17:54:43.480004+00', '2018-12-31 13:12:17.128547+00', 0, 0, 0, 0, false, false, 29, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (35, '2018-03-15 17:54:43.499807+00', '2018-12-31 13:12:17.143334+00', 0, 0, 0, 0, false, false, 20, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (36, '2018-03-15 17:54:43.519364+00', '2018-12-31 13:12:17.157433+00', 0, 0, 0, 0, false, false, 32, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (37, '2018-03-15 17:54:43.540269+00', '2018-12-31 13:12:17.171626+00', 0, 0, 0, 0, false, false, 34, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (38, '2018-03-15 17:54:43.561277+00', '2018-12-31 13:12:17.186324+00', 0, 0, 0, 0, false, false, 126, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (39, '2018-03-15 17:54:43.58065+00', '2018-12-31 13:12:17.200437+00', 0, 0, 0, 0, false, false, 180, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (40, '2018-03-15 17:54:43.60636+00', '2018-12-31 13:12:17.215386+00', 0, 0, 0, 0, false, false, 10, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (41, '2018-03-15 17:54:43.626254+00', '2018-12-31 13:12:17.23236+00', 0, 0, 0, 0, false, false, 157, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (42, '2018-03-15 17:54:43.646118+00', '2018-12-31 13:12:17.247443+00', 0, 0, 0, 0, false, false, 41, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (43, '2018-03-15 17:54:43.666333+00', '2018-12-31 13:12:17.2627+00', 0, 0, 0, 0, false, false, 60, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (44, '2018-03-15 17:54:43.686424+00', '2018-12-31 13:12:17.277629+00', 0, 0, 0, 0, false, false, 11, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (45, '2018-03-15 17:54:43.707822+00', '2018-12-31 13:12:17.292525+00', 0, 0, 0, 0, false, false, 192, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (46, '2018-03-15 17:54:43.727531+00', '2018-12-31 13:12:17.306914+00', 0, 0, 0, 0, false, false, 57, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (47, '2018-03-15 17:54:43.747395+00', '2018-12-31 13:12:17.321355+00', 0, 0, 0, 0, false, false, 59, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (48, '2018-03-15 17:54:43.76759+00', '2018-12-31 13:12:17.336457+00', 0, 0, 0, 0, false, false, 53, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (49, '2018-03-15 17:54:43.787386+00', '2018-12-31 13:12:17.351043+00', 0, 0, 0, 0, false, false, 121, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (50, '2018-03-15 17:54:43.807057+00', '2018-12-31 13:12:17.367026+00', 0, 0, 0, 0, false, false, 55, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (51, '2018-03-15 17:54:43.827558+00', '2018-12-31 13:12:17.38209+00', 0, 0, 0, 0, false, false, 25, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (52, '2018-03-15 17:54:43.848115+00', '2018-12-31 13:12:17.396341+00', 0, 0, 0, 0, false, false, 26, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (53, '2018-03-15 17:54:43.868606+00', '2018-12-31 13:12:17.410415+00', 0, 0, 0, 0, false, false, 38, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (54, '2018-03-15 17:54:43.888683+00', '2018-12-31 13:12:17.426854+00', 0, 0, 0, 0, false, false, 152, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (55, '2018-03-15 17:54:43.916654+00', '2018-12-31 13:12:17.441337+00', 0, 0, 0, 0, false, false, 172, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (56, '2018-03-15 17:54:43.93639+00', '2018-12-31 13:12:17.455439+00', 0, 0, 0, 0, false, false, 150, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (57, '2018-03-15 17:54:43.955641+00', '2018-12-31 13:12:17.470371+00', 0, 0, 0, 0, false, false, 39, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (58, '2018-03-15 17:54:43.981912+00', '2018-12-31 13:12:17.484039+00', 0, 0, 0, 0, false, false, 45, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (59, '2018-03-15 17:54:44.001755+00', '2018-12-31 13:12:17.497996+00', 0, 0, 0, 0, false, false, 102, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (60, '2018-03-15 17:54:44.025542+00', '2018-12-31 13:12:17.51244+00', 0, 0, 0, 0, false, false, 197, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (61, '2018-03-15 17:54:44.04561+00', '2018-12-31 13:12:17.526651+00', 0, 0, 0, 0, false, false, 186, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (62, '2018-03-15 17:54:44.065454+00', '2018-12-31 13:12:17.540806+00', 0, 0, 0, 0, false, false, 165, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (63, '2018-03-15 17:54:44.088869+00', '2018-12-31 13:12:17.555002+00', 0, 0, 0, 0, false, false, 37, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (64, '2018-03-15 17:54:44.108491+00', '2018-12-31 13:12:17.569172+00', 0, 0, 0, 0, false, false, 62, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (65, '2018-03-15 17:54:44.130662+00', '2018-12-31 13:12:17.58344+00', 0, 0, 0, 0, false, false, 33, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (66, '2018-03-15 17:54:44.151275+00', '2018-12-31 13:12:17.597914+00', 0, 0, 0, 0, false, false, 175, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (67, '2018-03-15 17:54:44.170839+00', '2018-12-31 13:12:17.611984+00', 0, 0, 0, 0, false, false, 42, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (68, '2018-03-15 17:54:44.191935+00', '2018-12-31 13:12:17.626942+00', 0, 0, 0, 0, false, false, 22, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (69, '2018-03-15 17:54:44.21184+00', '2018-12-31 13:12:17.64131+00', 0, 0, 0, 0, false, false, 21, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (70, '2018-03-15 17:54:44.233022+00', '2018-12-31 13:12:17.655248+00', 0, 0, 0, 0, false, false, 24, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (71, '2018-03-15 17:54:44.253479+00', '2018-12-31 13:12:17.669289+00', 0, 0, 0, 0, false, false, 23, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (72, '2018-03-15 17:54:44.273591+00', '2018-12-31 13:12:17.683096+00', 0, 0, 0, 0, false, false, 27, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (73, '2018-03-15 17:54:44.294539+00', '2018-12-31 13:12:17.69829+00', 0, 0, 0, 0, false, false, 190, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (1, '2018-03-15 17:54:42.806283+00', '2019-12-31 03:40:24.879219+00', 0, 0, 0, 0, false, false, 187, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (2, '2018-03-15 17:54:42.826507+00', '2019-12-31 03:40:24.894521+00', 0, 0, 0, 0, false, false, 2, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (3, '2018-03-15 17:54:42.846735+00', '2019-12-31 03:40:24.913101+00', 0, 0, 0, 0, false, false, 228, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (4, '2018-03-15 17:54:42.867697+00', '2019-12-31 03:40:24.930117+00', 0, 0, 0, 0, false, false, 153, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (5, '2018-03-15 17:54:42.88733+00', '2019-12-31 03:40:24.9451+00', 0, 0, 0, 0, false, false, 54, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (6, '2018-03-15 17:54:42.907553+00', '2019-12-31 03:40:24.964625+00', 0, 0, 0, 0, false, false, 44, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (7, '2018-03-15 17:54:42.927789+00', '2019-12-31 03:40:24.980333+00', 0, 0, 0, 0, false, false, 46, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (8, '2018-03-15 17:54:42.948204+00', '2019-12-31 03:40:24.996954+00', 0, 0, 0, 0, false, false, 36, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (9, '2018-03-15 17:54:42.968278+00', '2019-12-31 03:40:25.011111+00', 0, 0, 0, 0, false, false, 28, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (10, '2018-03-15 17:54:42.988887+00', '2019-12-31 03:40:25.026333+00', 0, 0, 0, 0, false, false, 35, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (11, '2018-03-15 17:54:43.012127+00', '2019-12-31 03:40:25.041766+00', 0, 0, 0, 0, false, false, 178, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (12, '2018-03-15 17:54:43.031828+00', '2019-12-31 03:40:25.062828+00', 0, 0, 0, 0, false, false, 118, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (13, '2018-03-15 17:54:43.052017+00', '2019-12-31 03:40:25.081407+00', 0, 0, 0, 0, false, false, 83, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (14, '2018-03-15 17:54:43.071765+00', '2019-12-31 03:40:25.103491+00', 0, 0, 0, 0, false, false, 183, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (15, '2018-03-15 17:54:43.091752+00', '2019-12-31 03:40:25.126372+00', 0, 0, 0, 0, false, false, 189, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (74, '2019-02-11 07:57:50.566744+00', '2019-12-31 03:40:25.54937+00', 0, 0, 0, 0, false, false, 229, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (46, '2018-03-15 17:54:43.727531+00', '2019-12-31 03:40:25.646615+00', 0, 0, 0, 0, false, false, 57, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (47, '2018-03-15 17:54:43.747395+00', '2019-12-31 03:40:25.66655+00', 0, 0, 0, 0, false, false, 59, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (48, '2018-03-15 17:54:43.76759+00', '2019-12-31 03:40:25.680833+00', 0, 0, 0, 0, false, false, 53, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (49, '2018-03-15 17:54:43.787386+00', '2019-12-31 03:40:25.694884+00', 0, 0, 0, 0, false, false, 121, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (50, '2018-03-15 17:54:43.807057+00', '2019-12-31 03:40:25.708803+00', 0, 0, 0, 0, false, false, 55, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (51, '2018-03-15 17:54:43.827558+00', '2019-12-31 03:40:25.72767+00', 0, 0, 0, 0, false, false, 25, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (52, '2018-03-15 17:54:43.848115+00', '2019-12-31 03:40:25.741911+00', 0, 0, 0, 0, false, false, 26, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (53, '2018-03-15 17:54:43.868606+00', '2019-12-31 03:40:25.758552+00', 0, 0, 0, 0, false, false, 38, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (54, '2018-03-15 17:54:43.888683+00', '2019-12-31 03:40:25.77407+00', 0, 0, 0, 0, false, false, 152, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (55, '2018-03-15 17:54:43.916654+00', '2019-12-31 03:40:25.789035+00', 0, 0, 0, 0, false, false, 172, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (56, '2018-03-15 17:54:43.93639+00', '2019-12-31 03:40:25.803776+00', 0, 0, 0, 0, false, false, 150, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (57, '2018-03-15 17:54:43.955641+00', '2019-12-31 03:40:25.81763+00', 0, 0, 0, 0, false, false, 39, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (58, '2018-03-15 17:54:43.981912+00', '2019-12-31 03:40:25.832701+00', 0, 0, 0, 0, false, false, 45, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (59, '2018-03-15 17:54:44.001755+00', '2019-12-31 03:40:25.846257+00', 0, 0, 0, 0, false, false, 102, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (60, '2018-03-15 17:54:44.025542+00', '2019-12-31 03:40:25.860692+00', 0, 0, 0, 0, false, false, 197, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (61, '2018-03-15 17:54:44.04561+00', '2019-12-31 03:40:25.874855+00', 0, 0, 0, 0, false, false, 186, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (62, '2018-03-15 17:54:44.065454+00', '2019-12-31 03:40:25.889462+00', 0, 0, 0, 0, false, false, 165, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (63, '2018-03-15 17:54:44.088869+00', '2019-12-31 03:40:25.904342+00', 0, 0, 0, 0, false, false, 37, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (64, '2018-03-15 17:54:44.108491+00', '2019-12-31 03:40:25.92409+00', 0, 0, 0, 0, false, false, 62, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (65, '2018-03-15 17:54:44.130662+00', '2019-12-31 03:40:25.944539+00', 0, 0, 0, 0, false, false, 33, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (66, '2018-03-15 17:54:44.151275+00', '2019-12-31 03:40:25.959367+00', 0, 0, 0, 0, false, false, 175, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (67, '2018-03-15 17:54:44.170839+00', '2019-12-31 03:40:25.973855+00', 0, 0, 0, 0, false, false, 42, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (68, '2018-03-15 17:54:44.191935+00', '2019-12-31 03:40:25.988181+00', 0, 0, 0, 0, false, false, 22, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (69, '2018-03-15 17:54:44.21184+00', '2019-12-31 03:40:26.002876+00', 0, 0, 0, 0, false, false, 21, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (70, '2018-03-15 17:54:44.233022+00', '2019-12-31 03:40:26.026894+00', 0, 0, 0, 0, false, false, 24, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (71, '2018-03-15 17:54:44.253479+00', '2019-12-31 03:40:26.043484+00', 0, 0, 0, 0, false, false, 23, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (72, '2018-03-15 17:54:44.273591+00', '2019-12-31 03:40:26.062632+00', 0, 0, 0, 0, false, false, 27, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (73, '2018-03-15 17:54:44.294539+00', '2019-12-31 03:40:26.07805+00', 0, 0, 0, 0, false, false, 190, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (16, '2018-03-15 17:54:43.111727+00', '2019-12-31 03:40:25.145462+00', 0, 0, 0, 0, false, false, 184, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (17, '2018-03-15 17:54:43.131871+00', '2019-12-31 03:40:25.160582+00', 0, 0, 0, 0, false, false, 202, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (18, '2018-03-15 17:54:43.152087+00', '2019-12-31 03:40:25.174405+00', 0, 0, 0, 0, false, false, 158, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (19, '2018-03-15 17:54:43.174105+00', '2019-12-31 03:40:25.189552+00', 0, 0, 0, 0, false, false, 148, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (20, '2018-03-15 17:54:43.197667+00', '2019-12-31 03:40:25.203523+00', 0, 0, 0, 0, false, false, 154, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (21, '2018-03-15 17:54:43.217888+00', '2019-12-31 03:40:25.21948+00', 0, 0, 0, 0, false, false, 56, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (22, '2018-03-15 17:54:43.238083+00', '2019-12-31 03:40:25.242117+00', 0, 0, 0, 0, false, false, 52, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (23, '2018-03-15 17:54:43.257793+00', '2019-12-31 03:40:25.256652+00', 0, 0, 0, 0, false, false, 61, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (24, '2018-03-15 17:54:43.277536+00', '2019-12-31 03:40:25.270966+00', 0, 0, 0, 0, false, false, 48, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (25, '2018-03-15 17:54:43.297664+00', '2019-12-31 03:40:25.285758+00', 0, 0, 0, 0, false, false, 181, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (26, '2018-03-15 17:54:43.318048+00', '2019-12-31 03:40:25.301532+00', 0, 0, 0, 0, false, false, 43, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (27, '2018-03-15 17:54:43.338638+00', '2019-12-31 03:40:25.316497+00', 0, 0, 0, 0, false, false, 199, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (28, '2018-03-15 17:54:43.359004+00', '2019-12-31 03:40:25.33116+00', 0, 0, 0, 0, false, false, 47, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (29, '2018-03-15 17:54:43.379091+00', '2019-12-31 03:40:25.34563+00', 0, 0, 0, 0, false, false, 31, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (30, '2018-03-15 17:54:43.400039+00', '2019-12-31 03:40:25.360598+00', 0, 0, 0, 0, false, false, 149, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (31, '2018-03-15 17:54:43.419727+00', '2019-12-31 03:40:25.375975+00', 0, 0, 0, 0, false, false, 161, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (32, '2018-03-15 17:54:43.43965+00', '2019-12-31 03:40:25.393907+00', 0, 0, 0, 0, false, false, 30, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (33, '2018-03-15 17:54:43.459418+00', '2019-12-31 03:40:25.408561+00', 0, 0, 0, 0, false, false, 14, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (34, '2018-03-15 17:54:43.480004+00', '2019-12-31 03:40:25.427692+00', 0, 0, 0, 0, false, false, 29, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (35, '2018-03-15 17:54:43.499807+00', '2019-12-31 03:40:25.445421+00', 0, 0, 0, 0, false, false, 20, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (36, '2018-03-15 17:54:43.519364+00', '2019-12-31 03:40:25.462163+00', 0, 0, 0, 0, false, false, 32, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (37, '2018-03-15 17:54:43.540269+00', '2019-12-31 03:40:25.476466+00', 0, 0, 0, 0, false, false, 34, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (38, '2018-03-15 17:54:43.561277+00', '2019-12-31 03:40:25.490467+00', 0, 0, 0, 0, false, false, 126, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (39, '2018-03-15 17:54:43.58065+00', '2019-12-31 03:40:25.504434+00', 0, 0, 0, 0, false, false, 180, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (40, '2018-03-15 17:54:43.60636+00', '2019-12-31 03:40:25.519025+00', 0, 0, 0, 0, false, false, 10, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (41, '2018-03-15 17:54:43.626254+00', '2019-12-31 03:40:25.534837+00', 0, 0, 0, 0, false, false, 157, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (42, '2018-03-15 17:54:43.646118+00', '2019-12-31 03:40:25.564362+00', 0, 0, 0, 0, false, false, 41, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (43, '2018-03-15 17:54:43.666333+00', '2019-12-31 03:40:25.578934+00', 0, 0, 0, 0, false, false, 60, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (44, '2018-03-15 17:54:43.686424+00', '2019-12-31 03:40:25.595441+00', 0, 0, 0, 0, false, false, 11, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (45, '2018-03-15 17:54:43.707822+00', '2019-12-31 03:40:25.62154+00', 0, 0, 0, 0, false, false, 192, 0); -- @@ -12321,6 +12356,7 @@ INSERT INTO [[schema]].psea_answer VALUES (5, '2019-11-13 16:30:57.899636+00', ' INSERT INTO [[schema]].psea_answer VALUES (6, '2019-11-13 16:31:01.59418+00', '2019-11-13 16:31:01.59418+00', '', 5, 4, 3); INSERT INTO [[schema]].psea_answer VALUES (7, '2019-11-13 16:31:04.609665+00', '2019-11-13 16:31:04.609665+00', '', 5, 5, 3); INSERT INTO [[schema]].psea_answer VALUES (8, '2019-11-13 16:31:07.882319+00', '2019-11-13 16:31:07.882319+00', '', 5, 6, 3); +INSERT INTO [[schema]].psea_answer VALUES (9, '2020-01-23 21:56:30.07261+00', '2020-01-23 21:56:30.07261+00', '', 3, 4, 2); -- @@ -12335,9 +12371,9 @@ INSERT INTO [[schema]].psea_answerevidence VALUES (2, '2019-10-04 17:54:09.85715 -- Data for Name: psea_assessment; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].psea_assessment VALUES (3, '2019-11-08 17:06:10.985936+00', '2020-01-23 21:56:30.102831+00', 'UAT/2019PSEA3', NULL, NULL, 'in_progress', 228); INSERT INTO [[schema]].psea_assessment VALUES (2, '2019-10-09 21:28:12.201803+00', '2019-10-09 21:28:12.229025+00', 'UAT/2019PSEA2', NULL, '2019-10-24', 'draft', 228); INSERT INTO [[schema]].psea_assessment VALUES (1, '2019-10-04 17:48:33.280451+00', '2019-10-04 17:54:34.415078+00', 'UAT/2019PSEA1', NULL, NULL, 'in_progress', 228); -INSERT INTO [[schema]].psea_assessment VALUES (3, '2019-11-08 17:06:10.985936+00', '2019-11-08 17:08:14.576776+00', 'UAT/2019PSEA3', NULL, NULL, 'in_progress', 228); INSERT INTO [[schema]].psea_assessment VALUES (4, '2019-11-08 21:18:56.796312+00', '2019-11-08 21:19:07.916232+00', 'UAT/2019PSEA4', NULL, NULL, 'in_progress', 229); INSERT INTO [[schema]].psea_assessment VALUES (5, '2019-11-13 16:29:35.259213+00', '2019-11-13 16:31:28.759345+00', 'UAT/2019PSEA5', 18, '2019-11-13', 'final', 229); @@ -12387,42 +12423,52 @@ INSERT INTO [[schema]].psea_assessor VALUES (5, '2019-11-13 16:30:39.255256+00', -- Data for Name: psea_evidence; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].psea_evidence VALUES (1, '2019-10-04 17:30:17.570634+00', '2019-10-04 17:30:17.570645+00', 'Code of Conduct', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (2, '2019-10-04 17:30:17.577354+00', '2019-10-04 17:30:17.577364+00', 'PSEA Policy', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (3, '2019-10-04 17:30:17.583764+00', '2019-10-04 17:30:17.583773+00', 'Other (please specify)', true, true); -INSERT INTO [[schema]].psea_evidence VALUES (4, '2019-10-04 17:30:17.59074+00', '2019-10-04 17:30:17.590769+00', 'Relevant human resources policies', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (5, '2019-10-04 17:30:17.597021+00', '2019-10-04 17:30:17.59703+00', 'Recruitment procedure (e.g. screening of candidates)', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (6, '2019-10-04 17:30:17.603334+00', '2019-10-04 17:30:17.603344+00', 'ToR (e.g. PSEA-related responsibilities)', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (7, '2019-10-04 17:30:17.609328+00', '2019-10-04 17:30:17.609338+00', 'Contracts/partnership agreements', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (8, '2019-10-04 17:30:17.615731+00', '2019-10-04 17:30:17.615745+00', 'Training Agenda', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (9, '2019-10-04 17:30:17.622317+00', '2019-10-04 17:30:17.622327+00', 'Attendance sheets', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (10, '2019-10-04 17:30:17.628606+00', '2019-10-04 17:30:17.628622+00', 'Communication materials', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (11, '2019-10-04 17:30:17.635278+00', '2019-10-04 17:30:17.635289+00', 'Needs assessments', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (12, '2019-10-04 17:30:17.641373+00', '2019-10-04 17:30:17.641397+00', 'Risk assessments', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (13, '2019-10-04 17:30:17.64764+00', '2019-10-04 17:30:17.647659+00', 'M&E framework', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (14, '2019-10-04 17:30:17.654373+00', '2019-10-04 17:30:17.654388+00', 'Description of reporting mechanism(s)', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (15, '2019-10-04 17:30:17.661357+00', '2019-10-04 17:30:17.661375+00', 'Whistleblower policy', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (16, '2019-10-04 17:30:17.668386+00', '2019-10-04 17:30:17.668402+00', 'List of service providers', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (17, '2019-10-04 17:30:17.675447+00', '2019-10-04 17:30:17.675464+00', 'Referral form for survivors of GBV/SEA', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (18, '2019-10-04 17:30:17.682807+00', '2019-10-04 17:30:17.682826+00', 'Name(s) of possible investigator(s)', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (19, '2019-10-04 17:30:17.689942+00', '2019-10-04 17:30:17.689958+00', 'Dedicated resources for investigation(s) and/or commitment of partner for support', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (20, '2019-10-04 17:30:17.697382+00', '2019-10-04 17:30:17.697398+00', 'PSEA investigation policy/procedure', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (21, '2019-10-04 17:30:17.704776+00', '2019-10-04 17:30:17.704822+00', 'Documentation of standard procedure', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (22, '2019-10-04 17:30:17.712355+00', '2019-10-04 17:30:17.712372+00', 'Annual training plan', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (23, '2019-10-04 17:30:17.719847+00', '2019-10-04 17:30:17.719864+00', 'Description of referral process for survivors of GBV/SEA', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (24, '2019-10-04 17:30:17.727222+00', '2019-10-04 17:30:17.72724+00', 'Written process for review of SEA allegations', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (1, '2019-10-04 17:29:37.528+00', '2019-10-04 17:29:37.528+00', 'Code of Conduct', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (2, '2019-10-04 17:29:37.535+00', '2019-10-04 17:29:37.535+00', 'PSEA Policy', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (3, '2019-10-04 17:29:37.542+00', '2019-10-04 17:29:37.542+00', 'Other (please specify)', true, true); +INSERT INTO [[schema]].psea_evidence VALUES (4, '2019-10-04 17:29:37.549+00', '2019-10-04 17:29:37.549+00', 'Relevant human resources policies', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (5, '2019-10-04 17:29:37.556+00', '2019-10-04 17:29:37.556+00', 'Recruitment procedure (e.g. screening of candidates)', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (6, '2019-10-04 17:29:37.563+00', '2019-10-04 17:29:37.563+00', 'ToR (e.g. PSEA-related responsibilities)', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (7, '2019-10-04 17:29:37.57+00', '2019-10-04 17:29:37.57+00', 'Contracts/partnership agreements', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (8, '2019-10-04 17:29:37.577+00', '2019-10-04 17:29:37.577+00', 'Training Agenda', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (9, '2019-10-04 17:29:37.584+00', '2019-10-04 17:29:37.584+00', 'Attendance sheets', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (10, '2019-10-04 17:29:37.591+00', '2019-10-04 17:29:37.591+00', 'Communication materials', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (11, '2019-10-04 17:29:37.598+00', '2019-10-04 17:29:37.598+00', 'Needs assessments', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (12, '2019-10-04 17:29:37.604+00', '2019-10-04 17:29:37.604+00', 'Risk assessments', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (13, '2019-10-04 17:29:37.611+00', '2019-10-04 17:29:37.611+00', 'M&E framework', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (14, '2019-10-04 17:29:37.617+00', '2019-10-04 17:29:37.617+00', 'Description of reporting mechanism(s)', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (15, '2019-10-04 17:29:37.625+00', '2019-10-04 17:29:37.625+00', 'Whistleblower policy', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (16, '2019-10-04 17:29:37.633+00', '2019-10-04 17:29:37.633+00', 'List of service providers', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (17, '2019-10-04 17:29:37.641+00', '2019-10-04 17:29:37.641+00', 'Referral form for survivors of GBV/SEA', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (18, '2019-10-04 17:29:37.648+00', '2019-10-04 17:29:37.648+00', 'Name(s) of possible investigator(s)', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (19, '2019-10-04 17:29:37.655+00', '2019-10-04 17:29:37.655+00', 'Dedicated resources for investigation(s) and/or commitment of partner for support', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (20, '2019-10-04 17:29:37.663+00', '2019-10-04 17:29:37.663+00', 'PSEA investigation policy/procedure', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (21, '2019-10-04 17:29:37.67+00', '2019-10-04 17:29:37.67+00', 'Documentation of standard procedure', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (22, '2019-10-04 17:29:37.678+00', '2019-10-04 17:29:37.678+00', 'Annual training plan', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (23, '2019-10-04 17:29:37.686+00', '2019-10-04 17:29:37.686+00', 'Description of referral process for survivors of GBV/SEA', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (24, '2019-10-04 17:29:37.693+00', '2019-10-04 17:29:37.693+00', 'Written process for review of SEA allegations', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (25, '2020-01-17 16:12:21.712+00', '2020-01-17 16:12:21.712+00', 'PSEA awareness-raising plan', false, true); -- -- Data for Name: psea_indicator; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].psea_indicator VALUES (1, '2019-10-04 17:30:17.734439+00', '2019-10-04 17:30:17.734456+00', 'Core Standard 1: Organizational Policy', 'An organizational policy exists and is signed by all personnel (see: PSEA Toolkit Section 4.2.1. Policies). (Note that the policy may exist as part of a code of conduct and/or a comprehensive SEA policy.)', true, 1, ''); -INSERT INTO [[schema]].psea_indicator VALUES (2, '2019-10-04 17:30:17.772602+00', '2019-10-04 17:30:17.772621+00', 'Core Standard 2: Organizational Management and HR Systems', 'The organization’s management and HR systems account for PSEA (see : PSEA Toolkit Section 4.2.2. Procedures).', true, 2, ''); -INSERT INTO [[schema]].psea_indicator VALUES (3, '2019-10-04 17:30:17.805284+00', '2019-10-04 17:30:17.805305+00', 'Core Standard 3: Mandatory Training', 'The organization holds mandatory trainings for personnel on the organization’s SEA policy and procedures (see : PSEA Toolkit Section 4.3.1. Training). (Note this training can be delivered online or in-person.)', true, 3, ''); -INSERT INTO [[schema]].psea_indicator VALUES (4, '2019-10-04 17:30:17.838738+00', '2019-10-04 17:30:17.838757+00', 'Core Standard 4: Reporting', 'The organization has mechanisms and procedures for personnel, beneficiaries and communities, including children, to report SEA allegations that comply with core standards for reporting (i.e. safety, confidentiality, transparency, accessibility) and ensures that beneficiaries are aware of these (see PSEA Toolkit Section 4.3.2. Awareness-raising and Section 5.2. Reporting Mechanisms).', true, 4, ''); -INSERT INTO [[schema]].psea_indicator VALUES (5, '2019-10-04 17:30:17.871607+00', '2019-10-04 17:30:17.871626+00', 'Core Standard 5: Assistance and Referrals', 'The organization has a system to ensure survivors of SEA, including children, receive immediate professional assistance, referring them to relevant service providers (see PSEA Toolkit Section 6.2. Assistance and Referrals).', true, 5, ''); -INSERT INTO [[schema]].psea_indicator VALUES (6, '2019-10-04 17:30:17.904569+00', '2019-10-04 17:30:17.90459+00', 'Core Standard 6: Investigations', 'The organization has a process and plan for ensuring investigation into SEA allegations involving its personnel (see PSEA Toolkit Section 7.2. Investigation Procedures).', true, 6, ''); +INSERT INTO [[schema]].psea_indicator VALUES (1, '2019-10-04 17:29:37.7+00', '2020-01-17 15:56:49.785+00', 'Core Standard 1: Organizational Policy', 'Refer: PSEA Toolkit Section 4.2.1. Policies.
Required 1: An organizational policy on PSEA exists and describes appropriate standards of conduct, other preventive measures, reporting, monitoring, investigation and corrective measures.
(UN IP Protocol para 15 & Annex A.4)', true, 1, ''); +INSERT INTO [[schema]].psea_indicator VALUES (2, '2019-10-04 17:29:37.734+00', '2020-01-17 16:18:50.755+00', 'Core Standard 2: Organizational Management and HR Systems', 'Refer: PSEA Toolkit Section 4.2.2. Procedures +Required 1: The organization’s contracts and partnership agreements include a standard clause requiring contractors, suppliers, consultants and sub-partners to commit to a zero-tolerance policy on SEA and to take measures to prevent and respond to SEA. +Required 2: There is a systematic vetting procedure in place for job candidates (e.g. reference checks, police records, Google searches) in accordance with local laws regarding employment, privacy and data protection, including checking for prior involvement in SEA. +(UN IP Protocol para 11; 15; & Annex A.1, A.2)', true, 2, ''); +INSERT INTO [[schema]].psea_indicator VALUES (3, '2019-10-04 17:29:37.765+00', '2020-01-17 16:09:07.966+00', 'Core Standard 3: Mandatory Training', 'Refer PSEA Toolkit Section 4.3.1. Training +Required 1: The organization holds mandatory trainings for all personnel on the organization’s SEA policy and procedures and the training includes 1) a definition of SEA (that is aligned with the UN''s definition); 2) a prohibition of SEA; and 3) actions that personnel are required to take (i.e. prompt reporting of allegations and referral of survivors). +(UN IP Protocol para 17 & Annex A.5)', true, 3, ''); +INSERT INTO [[schema]].psea_indicator VALUES (4, '2019-10-04 17:29:37.795+00', '2020-01-17 16:13:32.26+00', 'Core Standard 4: Reporting', 'Refer PSEA Toolkit Section 4.3.2. Awareness-raising and Section 5.2. Reporting Mechanisms +Required 1: The organization has mechanisms and procedures for personnel, beneficiaries and communities, including children, to report SEA allegations that comply with core standards for reporting (i.e. safety, confidentiality, transparency, accessibility) and ensures that beneficiaries are aware of these.
(UN IP Protocol para 19 & Annex A.3)', true, 4, ''); +INSERT INTO [[schema]].psea_indicator VALUES (5, '2019-10-04 17:29:37.826+00', '2020-01-17 16:17:14.743+00', 'Core Standard 5: Assistance and Referrals', 'Refer PSEA Toolkit Section 6.2. Assistance and Referrals +Required 1:The organization has a system to ensure survivors of SEA, including children, receive immediate professional assistance, referring them to qualified service providers.
(UN IP Protocol para 22.d.)', true, 5, ''); +INSERT INTO [[schema]].psea_indicator VALUES (6, '2019-10-04 17:29:37.857+00', '2020-01-17 16:18:03.295+00', 'Core Standard 6: Investigations', 'Refer PSEA Toolkit Section 7.2. Investigation Procedures). +Required 1: The organization has a process for investigation of allegations of SEA and can provide evidence that it has appropriately dealt with past SEA allegations, if any, through investigation and corrective action. +(UN IP Protocol para 20, 22.a., & Annex A.6)', true, 6, ''); -- @@ -12452,6 +12498,8 @@ INSERT INTO [[schema]].psea_indicator_evidences VALUES (20, 6, 19); INSERT INTO [[schema]].psea_indicator_evidences VALUES (21, 6, 24); INSERT INTO [[schema]].psea_indicator_evidences VALUES (22, 6, 3); INSERT INTO [[schema]].psea_indicator_evidences VALUES (23, 6, 20); +INSERT INTO [[schema]].psea_indicator_evidences VALUES (24, 4, 25); +INSERT INTO [[schema]].psea_indicator_evidences VALUES (25, 4, 10); -- @@ -12482,9 +12530,9 @@ INSERT INTO [[schema]].psea_indicator_ratings VALUES (18, 6, 3); -- Data for Name: psea_rating; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].psea_rating VALUES (1, '2019-10-04 17:30:17.544952+00', '2019-10-04 17:30:17.544964+00', 'Absent', 1, true); -INSERT INTO [[schema]].psea_rating VALUES (2, '2019-10-04 17:30:17.557934+00', '2019-10-04 17:30:17.557945+00', 'Progressing', 2, true); -INSERT INTO [[schema]].psea_rating VALUES (3, '2019-10-04 17:30:17.564203+00', '2019-10-04 17:30:17.564214+00', 'Adeq[[schema]]e', 3, true); +INSERT INTO [[schema]].psea_rating VALUES (1, '2019-10-04 17:29:37.497+00', '2019-10-04 17:29:37.497+00', 'Absent', 1, true); +INSERT INTO [[schema]].psea_rating VALUES (2, '2019-10-04 17:29:37.513+00', '2019-10-04 17:29:37.513+00', 'Progressing', 2, true); +INSERT INTO [[schema]].psea_rating VALUES (3, '2019-10-04 17:29:37.52+00', '2019-10-04 17:29:37.52+00', 'Adeq[[schema]]e', 3, true); -- @@ -12608,6 +12656,7 @@ INSERT INTO [[schema]].reports_indicator VALUES (29, 'Report29', 'indicator 2', -- INSERT INTO [[schema]].reports_lowerresult VALUES (36, 'test', '67-1', 46, '2019-05-31 13:42:17.929452+00', '2019-05-31 13:42:17.991389+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (37, 'testt', '68-1', 47, '2019-12-09 19:37:44.565877+00', '2019-12-09 19:37:44.565877+00'); -- @@ -13131,6 +13180,9 @@ INSERT INTO [[schema]].t2f_itineraryitem VALUES (509, 'UNICEF Lebanon office - S INSERT INTO [[schema]].t2f_itineraryitem VALUES (510, 'LOST Center, Bednayel - Street of the Institute - Sahl', 'LOST Center, Bednayel - Street of the Institute - Sahl', '2019-09-12', '2019-09-12', false, 'Car', NULL, 656, 1); INSERT INTO [[schema]].t2f_itineraryitem VALUES (499, '633', '3 UN', '2019-05-12', '2019-05-13', true, 'Rail', 816, 637, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (500, '3 UN', '633', '2019-05-13', '2019-05-14', false, '', 803, 637, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (513, 'Tijuana', 'Mexicali', '2019-11-22', '2019-11-22', false, '', NULL, 662, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (514, 'Mexicali', 'Tijuana', '2019-11-22', '2019-11-22', false, '', NULL, 662, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (515, 'Malabo', 'Akurenam', '2019-06-26', '2019-06-28', true, '', NULL, 664, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (501, 'Aweil Center, NBeG-South Sudan', 'Aweil West, NBeG-South Sudan', '2019-06-24', '2019-06-24', true, 'Car', NULL, 646, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (502, 'Aweil West, NBeG-South Sudan', 'Aweil Center, NBeG-South Sudan', '2019-06-28', '2019-06-28', true, 'Car', NULL, 646, 1); INSERT INTO [[schema]].t2f_itineraryitem VALUES (503, 'Diffa', 'Goudoumaria', '2019-09-17', '2019-09-17', true, 'Car', NULL, 654, 0); @@ -13183,6 +13235,7 @@ INSERT INTO [[schema]].t2f_travel VALUES (621, '2019-02-13 07:14:24.771289+00', INSERT INTO [[schema]].t2f_travel VALUES (622, '2019-02-14 03:00:54.102535+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2019-03-03', '2019-03-07', 'Assess & monitor PPY training and school visit to assess school governance & management practices.', '', false, false, '2019/604', false, NULL, 0.0000, false, NULL, NULL, NULL, 132, NULL, NULL, 176622, NULL, NULL, 4); INSERT INTO [[schema]].t2f_travel VALUES (623, '2019-02-19 13:30:22.668936+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', NULL, NULL, '', '', false, false, '2019/605', false, NULL, 0.0000, false, NULL, NULL, NULL, 132, NULL, NULL, 178393, NULL, NULL, 5); INSERT INTO [[schema]].t2f_travel VALUES (582, '2017-10-24 13:53:06.31379+00', NULL, NULL, '2017-10-24 13:53:06.37454+00', NULL, NULL, '', '', '', '', '', 'submitted', '2017-10-25', '2017-10-25', 'And', '', false, false, '2017/564', false, NULL, 0.0000, false, NULL, NULL, NULL, 132, 2, 4124, 625, '2017-10-24 13:53:06.374549+00', NULL, NULL); +INSERT INTO [[schema]].t2f_travel VALUES (662, '2019-11-21 20:17:10.997383+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2019-11-22', '2019-11-22', 'Transportation of colleagues', '', false, false, '2019/644', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 2, 16445, 243678, NULL, NULL, 13); INSERT INTO [[schema]].t2f_travel VALUES (580, '2017-09-15 19:09:41.723906+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2017-08-28', '2017-08-29', 'wat', '', false, false, '2017/562', false, NULL, 0.0000, false, NULL, NULL, NULL, 132, 2, 2, 13345, NULL, NULL, NULL); INSERT INTO [[schema]].t2f_travel VALUES (581, '2017-10-23 19:01:56.662391+00', NULL, NULL, '2017-10-23 19:02:16.487622+00', NULL, '2017-10-23 21:01:29.493978+00', '', '', '', '', '', 'approved', '2017-12-02', '2017-12-04', 'TEST ACTION POOINT', '', false, false, '2017/563', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 132, 2, 14764, 1576, '2017-10-23 19:02:16.48763+00', NULL, NULL); INSERT INTO [[schema]].t2f_travel VALUES (583, '2017-11-01 13:40:00.210808+00', NULL, NULL, '2017-11-01 13:40:00.28797+00', NULL, NULL, '', '', '', '', '', 'submitted', '2017-10-31', '2017-10-31', 'test', '', false, false, '2017/565', false, NULL, 0.0000, false, NULL, NULL, NULL, 132, 2, 3195, 2702, '2017-11-01 13:40:00.28798+00', NULL, NULL); @@ -13228,6 +13281,7 @@ INSERT INTO [[schema]].t2f_travel VALUES (657, '2019-09-11 16:13:52.214955+00', INSERT INTO [[schema]].t2f_travel VALUES (658, '2019-09-25 06:27:46.810001+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', NULL, '2019-09-26', '', '', false, false, '2019/640', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, NULL, NULL, 178387, NULL, NULL, NULL); INSERT INTO [[schema]].t2f_travel VALUES (579, '2017-08-22 20:17:55.965468+00', '2017-08-22 20:19:24.976792+00', NULL, NULL, NULL, NULL, '', '', '', 'test', '', 'completed', '2017-08-23', '2017-08-26', 'test', '', false, false, '2017/561', false, NULL, 0.0000, false, NULL, NULL, NULL, 132, 2, 3467, 3195, NULL, NULL, NULL); INSERT INTO [[schema]].t2f_travel VALUES (661, '2019-11-06 15:26:43.071021+00', NULL, '2019-11-06 15:28:25.288788+00', NULL, NULL, NULL, '', '', '', '', '', 'cancelled', '2019-11-12', '2019-11-18', 'Revue a mi-parcours', '', false, false, '2019/643', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, NULL, NULL, 234455, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (663, '2019-12-09 18:35:00.212834+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2019-12-10', '2019-12-14', 'test', '', false, false, '2019/645', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 2, 123, 19232, NULL, NULL, 2); INSERT INTO [[schema]].t2f_travel VALUES (659, '2019-10-07 05:16:56.784362+00', NULL, NULL, NULL, NULL, NULL, '', '', '', 'Places Visited / Persons Met Polio FO UNICEF Staff 3rd Party Training Staff, Concerned Field and Partner Staff at relevant Health Facilities. @@ -13268,6 +13322,10 @@ During my visits Ms. Ada along with two more DPCR staff visited for MP improveme 4. Some of the documents were not labeled by title/headings Most of the things were very trivial mistakes, not having major impact on quality of campaign. It is recommended that UC staff including must be properly oriented on MP during training, UPEC chairman seemed to be very receptive, should be oriented on that fact that when endorsing MP should for all eth components and quality of MP before signing it mechanically. It seems that proper protocol for MP Validation is not communicated to Monitors. It is recommended that all the monitors designated must be using same yardstick for eval[[schema]]ion and scoring for standardization. The method must be relevant and predictive for good quality camping and not only for documentation. - It is seen that in CBV areas, instead of using Micro census TP covered during last campaign recorded on From 2B, they are using actual updated micro census population for this campaign which is updated before each campaign and reflect the actual target age population of the area (which seems to a good practice and must accepted). It must also be kept in mind that this needs to be added with some coverages from previous camping for data in Form 2B is available, which are not part of Microcensus. These are: Children Covered in Street, Guest Children Covered, School children, Fixed and PTP coverages and children who were recorded as missed.', '', 'planned', '2019-01-16', '2019-01-18', 'Support Peshawar Pre-Campaign Activities', '', false, false, '2019/641', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, NULL, 207468, 7344, NULL, NULL, NULL); +INSERT INTO [[schema]].t2f_travel VALUES (664, '2019-12-16 10:07:33.47494+00', NULL, NULL, NULL, NULL, NULL, '', '', '', 'See attached.', '', 'planned', '2019-06-26', '2019-06-28', 'Programmatic Visit of ASAMA', '', false, false, '2019/646', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, NULL, NULL, 247705, NULL, NULL, 4); +INSERT INTO [[schema]].t2f_travel VALUES (665, '2020-01-08 16:51:46.173176+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-01-14', '2020-01-15', 'Retiro de planeación estratégica 2020', '', false, false, '2020/647', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, NULL, NULL, 252875, NULL, NULL, 5); +INSERT INTO [[schema]].t2f_travel VALUES (666, '2020-02-19 16:02:55.058177+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-10-05', '2020-10-08', 'ICT regional meeting', '', true, false, '2020/648', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 2, 15945, 1627, NULL, NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (667, '2020-03-04 09:41:58.967507+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-03-08', '2020-03-14', 'Support state and LGA level training for IMOP', '', false, false, '2020/649', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, NULL, NULL, 257969, NULL, NULL, NULL); INSERT INTO [[schema]].t2f_travel VALUES (643, '2019-06-06 13:36:28.134719+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2019-06-06', '2019-06-13', 'tests', '', false, false, '2019/625', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 2, 189023, 123, NULL, NULL, 4); INSERT INTO [[schema]].t2f_travel VALUES (638, '2019-05-20 11:17:56.740927+00', NULL, NULL, '2019-05-20 12:04:04.613502+00', NULL, NULL, '', '', '', 'Progress/Achievements of the target In all the three (03) nutrition sites visited (OTPs); nutrition services were being provided to the vulnerable children under the age of five years and pregnant and lactating women. @@ -13379,6 +13437,10 @@ INSERT INTO [[schema]].t2f_travelactivity VALUES (509, 'Programmatic Visit', '20 INSERT INTO [[schema]].t2f_travelactivity VALUES (510, 'Programmatic Visit', '2019-03-05', 228, 67, 123, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (511, 'Technical Support', '2019-01-16', NULL, NULL, 7344, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (512, 'Programmatic Visit', '2019-10-22', NULL, NULL, 22479, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (513, 'Advocacy', '2019-12-11', 228, 67, 19232, 60); +INSERT INTO [[schema]].t2f_travelactivity VALUES (514, 'Programmatic Visit', '2019-12-16', NULL, NULL, 247705, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (515, 'Staff Development', '2020-01-14', NULL, NULL, 252875, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (516, 'Technical Support', '2020-03-09', NULL, NULL, 257969, NULL); -- @@ -13395,6 +13457,7 @@ INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (387, 488, 4625); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (388, 490, 4623); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (389, 500, 4628); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (390, 504, 4551); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (391, 513, 4624); -- @@ -13481,6 +13544,10 @@ INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (552, 508, 655); INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (553, 509, 656); INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (554, 510, 657); INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (555, 511, 659); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (557, 513, 663); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (558, 514, 664); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (559, 515, 665); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (560, 516, 667); -- @@ -13492,6 +13559,7 @@ INSERT INTO [[schema]].t2f_travelattachment VALUES (94, 'Other', 'vp.pdf', 'trav INSERT INTO [[schema]].t2f_travelattachment VALUES (95, 'Report', 'PMV FMWASD 2018.pdf', 'travels/[[schema]]/595/PMV_FMWASD_2018.pdf', 595); INSERT INTO [[schema]].t2f_travelattachment VALUES (96, 'Cleareance Doc', 'trp report mialy febroary.doc', 'travels/[[schema]]/623/trp_report_mialy_febroary.doc', 623); INSERT INTO [[schema]].t2f_travelattachment VALUES (98, 'Other', '1-Peshawar Pre Campaign Support 16 -18 Jan 2019.pdf', 'travels/[[schema]]/659/1-Peshawar_Pre_Campaign_Support_16_-18_Jan_2019.pdf', 659); +INSERT INTO [[schema]].t2f_travelattachment VALUES (99, 'Other', 'Visita Programática Formación FINAL.doc', 'travels/[[schema]]/664/Visita_Programática_Formación_FINAL.doc', 664); -- @@ -13655,6 +13723,7 @@ INSERT INTO [[schema]].unicef_attachments_attachment VALUES (71, '2018-03-29 09: INSERT INTO [[schema]].unicef_attachments_attachment VALUES (72, '2018-03-29 09:41:22.346246+00', '2018-12-11 01:22:28.082926+00', '', '', 72, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (73, '2018-03-29 09:41:22.440277+00', '2018-12-11 01:22:28.146778+00', '', '', 73, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (74, '2018-03-29 09:44:30.361469+00', '2018-12-11 01:26:02.087219+00', '', '', 24, 'partners_assessment_report', 70, 36, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (99, '2020-01-23 21:55:31.931493+00', '2020-01-23 21:55:31.931493+00', 'public/files/unknown/tmp/Screen_Shot_2020-01-20_at_3.59.49_PM.png', '', NULL, '', NULL, NULL, 2); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (2, '2018-03-29 09:41:17.13205+00', '2018-12-11 01:22:23.012856+00', '', '', 2, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (81, '2019-04-02 05:35:20.318641+00', '2019-04-02 05:35:55.607813+00', 'public/files/unknown/tmp/etoolslogo_4.jpg', '', 146, 'partners_agreement', 72, 34, 2702); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (83, '2019-04-05 16:58:36.734244+00', '2019-04-05 16:58:36.743174+00', 'public/files/tpm/tpmvisit/visit_report_attachments/4/auditor_troubleshoot', '', 4, 'visit_report_attachments', 96, 31, NULL); @@ -13669,7 +13738,11 @@ INSERT INTO [[schema]].unicef_attachments_attachment VALUES (91, '2019-07-20 19: INSERT INTO [[schema]].unicef_attachments_attachment VALUES (92, '2019-07-20 19:59:15.497872+00', '2019-07-20 19:59:15.509905+00', 'public/files/tpm/tpmvisit/visit_attachments/9/etoolslogo_4.jpg', '', 9, 'visit_attachments', 96, 18, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (93, '2019-07-20 20:07:15.622238+00', '2019-07-20 20:07:15.634294+00', 'public/files/tpm/tpmvisit/visit_report_attachments/9/etoolslogo_4.jpg', '', 9, 'visit_report_attachments', 96, 33, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (94, '2019-07-20 20:14:20.972708+00', '2019-07-20 20:14:20.973063+00', 'public/files/tpm/tpmactivity/activity_report/10/etoolslogo_4.jpg', '', 10, 'activity_report', 261, 19, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (97, '2019-12-09 19:35:03.846918+00', '2019-12-09 19:35:07.172377+00', 'public/files/unknown/tmp/Screen_Shot_2019-12-04_at_3.37.59_PM.png', '', 68, 'partners_intervention_signed_pd', 151, NULL, 19232); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (100, '2020-01-23 21:55:34.155104+00', '2020-01-23 21:55:34.155104+00', 'public/files/unknown/tmp/Screen_Shot_2020-01-23_at_2.38.36_PM.png', '', NULL, '', NULL, NULL, 2); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (98, '2019-12-09 19:36:44.729605+00', '2019-12-09 19:36:46.055353+00', 'public/files/unknown/tmp/Screen_Shot_2019-12-04_at_3.37.59_PM_0QVkws7.png', '', 41, 'partners_intervention_attachment', 156, NULL, 19232); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (96, '2019-10-04 17:54:30.048529+00', '2019-10-04 17:54:30.048529+00', 'public/files/unknown/tmp/Screen_Shot_2019-05-16_at_11.08.29_AM.png', '', 1, 'psea_answer', 293, 35, 2); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (101, '2020-01-23 21:56:04.720276+00', '2020-01-23 21:56:04.720276+00', 'public/files/unknown/tmp/Screen_Shot_2019-11-26_at_7.10.11_PM.png', '', 9, 'psea_answer', 293, 42, 2); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1, '2018-03-29 09:41:17.064218+00', '2018-12-11 01:22:22.943892+00', '', '', 1, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (28, '2018-03-29 09:41:19.293705+00', '2018-12-11 01:22:24.981805+00', '', '', 28, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (32, '2018-03-29 09:41:19.54269+00', '2018-12-11 01:22:25.260387+00', 'partners/core_values/WebInspectGenerated_AxDn3D2.txt', '', 32, 'partners_partner_assessment', 275, 35, NULL); @@ -13680,6 +13753,7 @@ INSERT INTO [[schema]].unicef_attachments_attachment VALUES (77, '2018-03-29 09: INSERT INTO [[schema]].unicef_attachments_attachment VALUES (78, '2018-03-29 09:44:30.798666+00', '2018-12-11 01:26:02.391607+00', '', '', 32, 'partners_assessment_report', 70, 36, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (79, '2018-03-29 09:44:30.864894+00', '2018-12-11 01:26:02.462003+00', '[[schema]]/file_attachments/partner_organizations/35/assesments/None/Test_PCA.docx', '', 33, 'partners_assessment_report', 70, 36, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (80, '2018-03-29 09:44:30.938639+00', '2018-12-11 01:26:02.529068+00', '[[schema]]/file_attachments/partner_organizations/11/assesments/None/Travel_Health_Questionnaire.doc', '', 34, 'partners_assessment_report', 70, 36, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (102, '2020-01-23 21:56:04.782397+00', '2020-01-23 21:56:04.782397+00', 'public/files/unknown/tmp/Screen_Shot_2019-11-26_at_7.12.17_PM.png', '', 9, 'psea_answer', 293, 60, 2); -- @@ -13699,57 +13773,60 @@ INSERT INTO [[schema]].unicef_attachments_attachmentlink VALUES (1, 7, 82, 261); -- Data for Name: unicef_attachments_filetype; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (17, 2, 'workplan', 'Workplan', 'audit_engagement', '{audit_engagement}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (9, 3, 'face_form', 'FACE form', 'audit_engagement', '{audit_engagement}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (8, 4, 'ice_form', 'ICE', 'audit_engagement', '{audit_engagement}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (10, 5, 'other', 'Other', 'audit_engagement', '{audit_engagement}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (11, 0, 'report', 'Report', 'audit_report', '{audit_report}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (9, 3, 'face_form', 'FACE form', 'audit_engagement', '{audit_engagement}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (17, 2, 'workplan', 'Workplan', 'audit_engagement', '{audit_engagement}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (14, 1, 'other', 'Other', 'audit_report', '{audit_report}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (52, 0, 'psea_investigation_policy_procedure', 'PSEA investigation policy/procedure', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (51, 0, 'dedicated_resources_for_investigations', 'Dedicated resources for investigation(s)', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (50, 0, 'names_of_possible_investigators', 'Name(s) of possible investigator(s)', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (49, 0, 'referral_form_for_survivors_of_gbv_sea', 'Referral form for survivors of GBV/SEA', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (48, 0, 'list_of_service_providers', 'List of service providers', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (47, 0, 'whistleblower_policy', 'Whistleblower policy', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (46, 0, 'description_of_reporting_mechanisms', 'Description of reportings mechanism(s)', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (45, 0, 'm_e_framework', 'M&E framework', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (44, 0, 'risk_assessments', 'Risk assessments', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (43, 0, 'needs_assessments', 'Needs assessments', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (42, 0, 'communication_materials', 'Communication materials', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (41, 0, 'attendance_sheets', 'Attendance sheets', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (40, 0, 'training_agenda', 'Training Agenda', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (39, 0, 'contracts_partnership_agreements', 'Contracts/partnership agreements', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (38, 0, 'tor', 'ToR', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (10, 5, 'other', 'Other', '', '{audit_engagement,audit_report,tpm,tpm_report,tpm_partner,tpm_report_attachments}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (11, 0, 'report', 'Report', 'audit_report', '{audit_report,tpm_report}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (34, 0, 'code_of_conduct', 'Code of Conduct', 'psea_answer', '{psea_answer}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (35, 0, 'psea_policy', 'PSEA Policy', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (37, 0, 'recruitment_procedure', 'Recruitment procedure', 'psea_answer', '{psea_answer}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (36, 0, 'relevant_human_resources_policies', 'Relevant human resources policies', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (37, 0, 'recruitment_procedure', 'Recruitment procedure', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (38, 0, 'tor', 'ToR', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (39, 0, 'contracts_partnership_agreements', 'Contracts/partnership agreements', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (40, 0, 'training_agenda', 'Training Agenda', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (41, 0, 'attendance_sheets', 'Attendance sheets', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (42, 0, 'communication_materials', 'Communication materials', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (43, 0, 'needs_assessments', 'Needs assessments', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (44, 0, 'risk_assessments', 'Risk assessments', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (45, 0, 'm_e_framework', 'M&E framework', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (46, 0, 'description_of_reporting_mechanisms', 'Description of reportings mechanism(s)', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (47, 0, 'whistleblower_policy', 'Whistleblower policy', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (48, 0, 'list_of_service_providers', 'List of service providers', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (49, 0, 'referral_form_for_survivors_of_gbv_sea', 'Referral form for survivors of GBV/SEA', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (50, 0, 'names_of_possible_investigators', 'Name(s) of possible investigator(s)', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (51, 0, 'dedicated_resources_for_investigations', 'Dedicated resources for investigation(s)', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (52, 0, 'psea_investigation_policy_procedure', 'PSEA investigation policy/procedure', 'psea_answer', '{psea_answer}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (57, 0, 'written_process_for_review_of_sea', 'Written process for review of SEA', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (56, 0, 'description_of_referral_process_for_survivors_of_gbvsea', 'Description of referral process for survivors of GBV/SEA', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (55, 0, 'annual_training_plan', 'Annual training plan', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (54, 0, 'documentation_of_standard_procedure', 'Documentation of standard procedure', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (53, 0, 'other', 'Other', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (58, 0, 'sop', 'SOP', 'fm_common', NULL); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (59, 1, 'other', 'Other', 'fm_common', NULL); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (60, 0, 'psea_awareness_raising_plan', 'PSEA awareness-raising plan', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (18, 7, 'other', 'Other', 'tpm', '{tpm}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (29, 16, 'other', 'Other', 'tpm_partner', '{tpm_partner}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (19, 0, 'report', 'Report', 'tpm_report', '{tpm_report}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (24, 11, 'other', 'Other', 'tpm_report', '{tpm_report}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (32, 3, 'other', 'Other', 'tpm_report_attachments', '{tpm_report_attachments}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (1, 0, 'programme_document', 'FACE', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (2, 1, 'supply_manual_list', 'Progress report', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (3, 2, 'unicef_trip_report_action_point_report', 'Partnership review', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (4, 3, 'partner_report', 'Final Partnership Review', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (5, 4, 'previous_trip_reports', 'Correspondence', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (6, 5, 'training_materials', 'Supply/Distribution Plan', 'tpm', '{tpm}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (7, 6, 'tors', 'Workplan', 'tpm', '{tpm}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (18, 7, 'other', 'Other', 'tpm', '{tpm}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (7, 6, 'tors', 'Workplan', '', '{tpm,audit_engagement}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (22, 9, 'signed_pd/ssfa', 'Signed PD/SSFA', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (23, 10, 'prc_submission', 'PRC Submission', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (25, 12, 'terms_of_reference', 'Terms of Reference', 'tpm_partner', '{tpm_partner}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (26, 13, 'training_material', 'Training Material', 'tpm_partner', '{tpm_partner}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (27, 14, 'contract', 'Contract', 'tpm_partner', '{tpm_partner}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (28, 15, 'questionnaires', 'Questionnaires', 'tpm_partner', '{tpm_partner}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (29, 16, 'other', 'Other', 'tpm_partner', '{tpm_partner}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (19, 0, 'report', 'Report', 'tpm_report', '{tpm_report}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (24, 11, 'other', 'Other', 'tpm_report', '{tpm_report}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (33, 0, 'overall_report', 'Overall Report', 'tpm_report_attachments', '{tpm_report_attachments}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (30, 1, 'picture_dataset', 'Picture Dataset', 'tpm_report_attachments', '{tpm_report_attachments}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (31, 2, 'questionnaire', 'Questionnaire', 'tpm_report_attachments', '{tpm_report_attachments}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (32, 3, 'other', 'Other', 'tpm_report_attachments', '{tpm_report_attachments}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (33, 0, 'overall_report', 'Overall Report', 'tpm_report_attachments', '{tpm_report_attachments}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (53, 0, 'other', 'Other', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (54, 0, 'documentation_of_standard_procedure', 'Documentation of standard procedure', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (55, 0, 'annual_training_plan', 'Annual training plan', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (56, 0, 'description_of_referral_process_for_survivors_of_gbvsea', 'Description of referral process for survivors of GBV/SEA', 'psea_answer', '{psea_answer}'); -- @@ -13767,17 +13844,28 @@ INSERT INTO [[schema]].unicef_snapshot_activity VALUES (17, '2019-05-30 08:05:15 INSERT INTO [[schema]].unicef_snapshot_activity VALUES (8, '2019-04-02 05:35:55.601444+00', '2019-04-02 05:35:55.603132+00', '146', 'update', '{"id": 146, "end": "2017-09-17", "start": "2016-09-17", "status": "draft", "partner": 228, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 171, "agreement_number": "UAT/PCA2015146", "country_programme": 1, "attached_agreement": "", "authorized_officers": [171], "reference_number_year": 2015, "signed_by_unicef_date": "2015-04-02", "signed_by_partner_date": "2015-04-02", "special_conditions_pca": false}', '{"start": {"after": "2016-09-17", "before": "None"}, "partner_manager": {"after": 171, "before": "None"}, "agreement_number": {"after": "UAT/PCA2015146", "before": "UAT/PCA2019146"}, "authorized_officers": {"after": [171], "before": []}, "reference_number_year": {"after": 2015, "before": 2019}, "signed_by_unicef_date": {"after": "2015-04-02", "before": "None"}, "signed_by_partner_date": {"after": "2015-04-02", "before": "None"}}', 2702, 72); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (9, '2019-04-02 05:36:15.758738+00', '2019-04-02 05:36:15.760526+00', '67', 'create', '{"id": 67, "end": "None", "frs": [], "start": "None", "title": "Test", "number": "UAT/PCA2015146/PD201567", "status": "draft", "offices": [], "metadata": {}, "sections": [], "agreement": 146, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [], "partner_focal_points": [], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2015, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 2702, 151); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (18, '2019-06-06 13:33:26.829216+00', '2019-06-06 13:33:26.831535+00', '11', 'create', '{"id": 11, "author": 123, "office": 2, "status": "open", "history": [], "partner": "None", "section": 4, "category": "None", "comments": [], "due_date": "2019-06-27", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 123, "assigned_to": 189023, "description": "test", "intervention": "None", "tpm_activity": "None", "high_priority": false, "travel_activity": 498, "date_of_completion": "None"}', '{}', 123, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (20, '2019-12-05 17:50:14.007888+00', '2019-12-05 17:50:14.007888+00', '10', 'update', '{"id": 10, "author": 2702, "office": 2, "status": "open", "history": [17], "partner": 228, "section": 9, "category": "None", "comments": [], "due_date": "2019-05-30", "location": "None", "cp_output": 18, "engagement": "None", "key_events": [], "assigned_by": 2702, "assigned_to": 2702, "description": "test", "intervention": 67, "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 497, "reference_number": "UAT/2019/10/APD", "date_of_completion": "None"}', '{}', 2647, 270); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (12, '2019-04-02 05:39:09.607587+00', '2019-04-02 05:39:09.608096+00', '67', 'update', '{"id": 67, "end": "2017-04-02", "frs": [], "start": "2016-10-28", "title": "Test", "number": "UAT/PCA2015146/PD201567", "status": "draft", "offices": [], "metadata": {}, "sections": [6], "agreement": 146, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [], "partner_focal_points": [], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2015, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{"end": {"after": "2017-04-02", "before": "None"}, "start": {"after": "2016-10-28", "before": "None"}, "sections": {"after": [6], "before": []}}', 2702, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (22, '2019-12-09 19:32:38.283469+00', '2019-12-09 19:32:38.283469+00', '68', 'create', '{"id": 68, "end": "None", "frs": [], "start": "None", "title": "Test doc", "number": "UAT/PCA2015146/PD201968", "status": "draft", "offices": [2], "metadata": {}, "sections": [13, 7], "agreement": 146, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [4623], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [19232], "partner_focal_points": [171], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 19232, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (24, '2019-12-09 19:36:54.027132+00', '2019-12-09 19:36:54.027132+00', '68', 'update', '{"id": 68, "end": "None", "frs": [], "start": "None", "title": "Test doc", "number": "UAT/PCA2015146/PD201968", "status": "draft", "offices": [2], "metadata": {}, "sections": [13, 7], "agreement": 146, "amendments": [], "attachments": [41], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [4623], "planned_visits": [], "review_date_prc": "None", "submission_date": "2019-12-09", "termination_doc": "", "population_focus": "None", "unicef_signatory": 123, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [19232], "partner_focal_points": [171], "signed_pd_attachment": [97], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-08", "reporting_requirements": [], "signed_by_partner_date": "2019-12-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 171}', '{}', 19232, 151); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (13, '2019-04-02 05:39:24.201819+00', '2019-04-02 05:39:24.202579+00', '67', 'update', '{"id": 67, "end": "2017-04-02", "frs": [], "start": "2016-10-28", "title": "Test", "number": "UAT/PCA2015146/PD201567", "status": "draft", "offices": [], "metadata": {}, "sections": [6], "agreement": 146, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [], "partner_focal_points": [], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2015, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 2702, 151); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (14, '2019-04-02 05:40:46.25282+00', '2019-04-02 05:40:46.253185+00', '67', 'update', '{"id": 67, "end": "2017-04-02", "frs": [], "start": "2016-10-28", "title": "Test", "number": "UAT/PCA2015146/PD201567", "status": "draft", "offices": [2], "metadata": {}, "sections": [6], "agreement": 146, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "None", "submission_date": "2016-10-01", "termination_doc": "", "population_focus": "None", "unicef_signatory": 2702, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [2702], "partner_focal_points": [171], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2015, "signed_by_unicef_date": "2016-10-06", "reporting_requirements": [], "signed_by_partner_date": "2016-10-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 171}', '{"offices": {"after": [2], "before": []}, "submission_date": {"after": "2016-10-01", "before": "None"}, "unicef_signatory": {"after": 2702, "before": "None"}, "unicef_focal_points": {"after": [2702], "before": []}, "partner_focal_points": {"after": [171], "before": []}, "signed_by_unicef_date": {"after": "2016-10-06", "before": "None"}, "signed_by_partner_date": {"after": "2016-10-04", "before": "None"}, "partner_authorized_officer_signatory": {"after": 171, "before": "None"}}', 2702, 151); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (19, '2019-06-06 13:34:16.472463+00', '2019-06-06 13:34:16.476335+00', '12', 'create', '{"id": 12, "author": 123, "office": 2, "status": "open", "history": [], "partner": "None", "section": 4, "category": "None", "comments": [], "due_date": "2019-06-19", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 123, "assigned_to": 189023, "description": "test 2", "intervention": "None", "tpm_activity": "None", "high_priority": false, "travel_activity": 498, "date_of_completion": "None"}', '{}', 123, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (21, '2019-12-05 17:53:01.080216+00', '2019-12-05 17:53:01.080216+00', '7', 'update', '{"id": 7, "author": 123, "office": 2, "status": "open", "history": [3], "partner": "None", "section": 5, "category": "None", "comments": [], "due_date": "2018-10-12", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 123, "assigned_to": 123, "description": "test nik1", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "reference_number": "UAT/2018/7/APD", "date_of_completion": "None"}', '{}', 2647, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (23, '2019-12-09 19:35:07.166756+00', '2019-12-09 19:35:07.166756+00', '68', 'update', '{"id": 68, "end": "None", "frs": [], "start": "None", "title": "Test doc", "number": "UAT/PCA2015146/PD201968", "status": "draft", "offices": [2], "metadata": {}, "sections": [13, 7], "agreement": 146, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [4623], "planned_visits": [], "review_date_prc": "None", "submission_date": "2019-12-09", "termination_doc": "", "population_focus": "None", "unicef_signatory": 123, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [19232], "partner_focal_points": [171], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-08", "reporting_requirements": [], "signed_by_partner_date": "2019-12-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 171}', '{"submission_date": {"after": "2019-12-09", "before": "None"}, "unicef_signatory": {"after": 123, "before": "None"}, "signed_by_unicef_date": {"after": "2019-12-08", "before": "None"}, "signed_by_partner_date": {"after": "2019-12-09", "before": "None"}, "partner_authorized_officer_signatory": {"after": 171, "before": "None"}}', 19232, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (25, '2019-12-09 19:39:11.316512+00', '2019-12-09 19:39:11.316512+00', '68', 'update', '{"id": 68, "end": "None", "frs": [], "start": "None", "title": "Test doc", "number": "UAT/PCA2015146/PD201968", "status": "draft", "offices": [2], "metadata": {}, "sections": [13, 7], "agreement": 146, "amendments": [], "attachments": [41], "in_amendment": false, "result_links": [47], "document_type": "PD", "contingency_pd": false, "flat_locations": [4623], "planned_visits": [], "review_date_prc": "None", "submission_date": "2019-12-09", "termination_doc": "", "population_focus": "None", "unicef_signatory": 123, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [19232], "partner_focal_points": [171], "signed_pd_attachment": [97], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-08", "reporting_requirements": [], "signed_by_partner_date": "2019-12-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 171}', '{}', 19232, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (30, '2019-12-17 14:43:07.173359+00', '2019-12-17 14:43:07.173359+00', '15', 'create', '{"id": 15, "author": 19323, "office": 2, "status": "open", "history": [], "partner": 228, "section": 11, "category": "None", "comments": [], "due_date": "2019-12-17", "location": 4623, "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 19323, "assigned_to": 19323, "description": "sadsada", "intervention": 68, "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "reference_number": "UAT/2019/15/APD", "date_of_completion": "None"}', '{}', 19323, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (27, '2019-12-09 19:40:27.348517+00', '2019-12-09 19:40:27.348517+00', '68', 'update', '{"id": 68, "end": "2019-12-12", "frs": [], "start": "2019-12-09", "title": "Test doc", "number": "UAT/PCA2015146/PD201968", "status": "draft", "offices": [2], "metadata": {}, "sections": [13, 7], "agreement": 146, "amendments": [], "attachments": [41], "in_amendment": false, "result_links": [47], "document_type": "PD", "contingency_pd": false, "flat_locations": [4623], "planned_visits": [], "review_date_prc": "None", "submission_date": "2019-12-09", "termination_doc": "", "population_focus": "None", "unicef_signatory": 123, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [19232], "partner_focal_points": [171], "signed_pd_attachment": [97], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-08", "reporting_requirements": [], "signed_by_partner_date": "2019-12-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 171}', '{"end": {"after": "2019-12-12", "before": "None"}, "start": {"after": "2019-12-09", "before": "None"}}', 19232, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (28, '2019-12-09 19:41:38.609521+00', '2019-12-09 19:41:38.609521+00', '13', 'create', '{"id": 13, "author": 19232, "office": 2, "status": "open", "history": [], "partner": 228, "section": 3, "category": "None", "comments": [], "due_date": "2019-12-12", "location": "None", "cp_output": 60, "engagement": "None", "key_events": [], "assigned_by": 19232, "assigned_to": 19232, "description": "Test description", "intervention": 67, "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": "None", "reference_number": "UAT/2019/13/APD", "date_of_completion": "None"}', '{}', 19232, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (31, '2020-02-04 21:35:37.659654+00', '2020-02-04 21:35:37.659654+00', '69', 'create', '{"id": 69, "end": "None", "frs": [], "start": "None", "title": "sdfd", "number": "UAT/PCA2015146/PD202069", "status": "draft", "offices": [], "metadata": {}, "sections": [], "agreement": 146, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [], "partner_focal_points": [], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 2, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (29, '2019-12-09 19:44:38.038164+00', '2019-12-09 19:44:38.038164+00', '14', 'create', '{"id": 14, "author": 19232, "office": 2, "status": "open", "history": [], "partner": 228, "section": 7, "category": "None", "comments": [], "due_date": "2019-12-13", "location": 4623, "cp_output": 60, "engagement": "None", "key_events": [], "assigned_by": 19232, "assigned_to": 123, "description": "Another test", "intervention": 68, "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "reference_number": "UAT/2019/14/APD", "date_of_completion": "None"}', '{}', 19232, 270); -- -- Name: action_points_actionpoint_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].action_points_actionpoint_id_seq', 12, true); +SELECT pg_catalog.setval('[[schema]].action_points_actionpoint_id_seq', 15, true); -- @@ -13812,7 +13900,7 @@ SELECT pg_catalog.setval('[[schema]].actstream_follow_id_seq', 1, false); -- Name: attachments_attachmentflat_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].attachments_attachmentflat_id_seq', 96, true); +SELECT pg_catalog.setval('[[schema]].attachments_attachmentflat_id_seq', 102, true); -- @@ -13945,7 +14033,7 @@ SELECT pg_catalog.setval('[[schema]].django_comments_id_seq', 5, true); -- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].django_migrations_id_seq', 790, true); +SELECT pg_catalog.setval('[[schema]].django_migrations_id_seq', 798, true); -- @@ -14148,7 +14236,7 @@ SELECT pg_catalog.setval('[[schema]].funds_grant_id_seq', 206, true); -- Name: hact_aggregatehact_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].hact_aggregatehact_id_seq', 2, true); +SELECT pg_catalog.setval('[[schema]].hact_aggregatehact_id_seq', 3, true); -- @@ -14260,42 +14348,42 @@ SELECT pg_catalog.setval('[[schema]].partners_filetype_id_seq', 48, true); -- Name: partners_intervention_flat_locations_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_intervention_flat_locations_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].partners_intervention_flat_locations_id_seq', 1, true); -- -- Name: partners_intervention_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_intervention_id_seq', 67, true); +SELECT pg_catalog.setval('[[schema]].partners_intervention_id_seq', 69, true); -- -- Name: partners_intervention_offices_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_intervention_offices_id_seq', 51, true); +SELECT pg_catalog.setval('[[schema]].partners_intervention_offices_id_seq', 52, true); -- -- Name: partners_intervention_partner_focal_points_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_intervention_partner_focal_points_id_seq', 57, true); +SELECT pg_catalog.setval('[[schema]].partners_intervention_partner_focal_points_id_seq', 58, true); -- -- Name: partners_intervention_sections_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_intervention_sections_id_seq', 3, true); +SELECT pg_catalog.setval('[[schema]].partners_intervention_sections_id_seq', 5, true); -- -- Name: partners_intervention_unicef_focal_points_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_intervention_unicef_focal_points_id_seq', 58, true); +SELECT pg_catalog.setval('[[schema]].partners_intervention_unicef_focal_points_id_seq', 59, true); -- @@ -14309,14 +14397,14 @@ SELECT pg_catalog.setval('[[schema]].partners_interventionamendment_id_seq', 34, -- Name: partners_interventionattachment_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_interventionattachment_id_seq', 40, true); +SELECT pg_catalog.setval('[[schema]].partners_interventionattachment_id_seq', 41, true); -- -- Name: partners_interventionbudget_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_interventionbudget_id_seq', 53, true); +SELECT pg_catalog.setval('[[schema]].partners_interventionbudget_id_seq', 55, true); -- @@ -14337,14 +14425,14 @@ SELECT pg_catalog.setval('[[schema]].partners_interventionreportingperiod_id_seq -- Name: partners_interventionresultlink_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_interventionresultlink_id_seq', 46, true); +SELECT pg_catalog.setval('[[schema]].partners_interventionresultlink_id_seq', 47, true); -- -- Name: partners_interventionresultlink_ram_indicators_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_interventionresultlink_ram_indicators_id_seq', 46, true); +SELECT pg_catalog.setval('[[schema]].partners_interventionresultlink_ram_indicators_id_seq', 47, true); -- @@ -14386,7 +14474,7 @@ SELECT pg_catalog.setval('[[schema]].partners_workspacefiletype_id_seq', 1, fals -- Name: psea_answer_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].psea_answer_id_seq', 8, true); +SELECT pg_catalog.setval('[[schema]].psea_answer_id_seq', 9, true); -- @@ -14435,14 +14523,14 @@ SELECT pg_catalog.setval('[[schema]].psea_assessor_id_seq', 5, true); -- Name: psea_evidence_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].psea_evidence_id_seq', 24, true); +SELECT pg_catalog.setval('[[schema]].psea_evidence_id_seq', 25, true); -- -- Name: psea_indicator_evidences_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].psea_indicator_evidences_id_seq', 23, true); +SELECT pg_catalog.setval('[[schema]].psea_indicator_evidences_id_seq', 25, true); -- @@ -14526,7 +14614,7 @@ SELECT pg_catalog.setval('[[schema]].reports_indicatorblueprint_id_seq', 33, tru -- Name: reports_lowerresult_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].reports_lowerresult_id_seq', 36, true); +SELECT pg_catalog.setval('[[schema]].reports_lowerresult_id_seq', 37, true); -- @@ -14624,42 +14712,42 @@ SELECT pg_catalog.setval('[[schema]].t2f_iteneraryitem_airlines_id_seq', 116, tr -- Name: t2f_iteneraryitem_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].t2f_iteneraryitem_id_seq', 512, true); +SELECT pg_catalog.setval('[[schema]].t2f_iteneraryitem_id_seq', 515, true); -- -- Name: t2f_travel_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].t2f_travel_id_seq', 661, true); +SELECT pg_catalog.setval('[[schema]].t2f_travel_id_seq', 667, true); -- -- Name: t2f_travelactivity_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].t2f_travelactivity_id_seq', 512, true); +SELECT pg_catalog.setval('[[schema]].t2f_travelactivity_id_seq', 516, true); -- -- Name: t2f_travelactivity_locations_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].t2f_travelactivity_locations_id_seq', 390, true); +SELECT pg_catalog.setval('[[schema]].t2f_travelactivity_locations_id_seq', 391, true); -- -- Name: t2f_travelactivity_travels_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].t2f_travelactivity_travels_id_seq', 556, true); +SELECT pg_catalog.setval('[[schema]].t2f_travelactivity_travels_id_seq', 560, true); -- -- Name: t2f_travelattachment_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].t2f_travelattachment_id_seq', 98, true); +SELECT pg_catalog.setval('[[schema]].t2f_travelattachment_id_seq', 99, true); -- @@ -14701,7 +14789,7 @@ SELECT pg_catalog.setval('[[schema]].tpm_tpmvisitreportrejectcomment_id_seq', 1, -- Name: unicef_attachments_attachment_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].unicef_attachments_attachment_id_seq', 96, true); +SELECT pg_catalog.setval('[[schema]].unicef_attachments_attachment_id_seq', 102, true); -- @@ -14722,14 +14810,14 @@ SELECT pg_catalog.setval('[[schema]].unicef_attachments_attachmentlink_id_seq', -- Name: unicef_attachments_filetype_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].unicef_attachments_filetype_id_seq', 57, true); +SELECT pg_catalog.setval('[[schema]].unicef_attachments_filetype_id_seq', 60, true); -- -- Name: unicef_snapshot_activity_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].unicef_snapshot_activity_id_seq', 19, true); +SELECT pg_catalog.setval('[[schema]].unicef_snapshot_activity_id_seq', 31, true); -- @@ -15844,6 +15932,14 @@ ALTER TABLE ONLY [[schema]].partners_partnerstaffmember ADD CONSTRAINT partners_partnerstaffmember_pkey PRIMARY KEY (id); +-- +-- Name: partners_partnerstaffmember partners_partnerstaffmember_user_id_key; Type: CONSTRAINT; Schema: [[schema]]; Owner: - +-- + +ALTER TABLE ONLY [[schema]].partners_partnerstaffmember + ADD CONSTRAINT partners_partnerstaffmember_user_id_key UNIQUE (user_id); + + -- -- Name: partners_plannedengagement partners_plannedengagement_partner_id_key; Type: CONSTRAINT; Schema: [[schema]]; Owner: - -- @@ -19850,6 +19946,14 @@ ALTER TABLE ONLY [[schema]].partners_partnerplannedvisits ADD CONSTRAINT partners_partner_id_dde73d25_fk_partners_partnerorganization_id FOREIGN KEY (partner_id) REFERENCES [[schema]].partners_partnerorganization(id) DEFERRABLE INITIALLY DEFERRED; +-- +-- Name: partners_partnerstaffmember partners_partnerstaffmember_user_id_08ef0077_fk_auth_user_id; Type: FK CONSTRAINT; Schema: [[schema]]; Owner: - +-- + +ALTER TABLE ONLY [[schema]].partners_partnerstaffmember + ADD CONSTRAINT partners_partnerstaffmember_user_id_08ef0077_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + -- -- Name: psea_answer psea_answer_assessment_id_6aa9c055_fk_psea_assessment_id; Type: FK CONSTRAINT; Schema: [[schema]]; Owner: - -- diff --git a/src/etools_datamart/apps/multitenant/postgresql/tenant2.sql b/src/etools_datamart/apps/multitenant/postgresql/tenant2.sql index a254e76aa..9edfbd7f1 100644 --- a/src/etools_datamart/apps/multitenant/postgresql/tenant2.sql +++ b/src/etools_datamart/apps/multitenant/postgresql/tenant2.sql @@ -3,7 +3,7 @@ -- -- Dumped from database version 9.6.3 --- Dumped by pg_dump version 11.7 +-- Dumped by pg_dump version 12.2 SET statement_timeout = 0; SET lock_timeout = 0; @@ -25,8 +25,6 @@ CREATE SCHEMA [[schema]]; SET default_tablespace = ''; -SET default_with_oids = false; - -- -- Name: action_points_actionpoint; Type: TABLE; Schema: [[schema]]; Owner: - -- @@ -333,7 +331,7 @@ CREATE TABLE [[schema]].audit_engagement ( po_item_id integer, shared_ip_with character varying(20)[] NOT NULL, exchange_rate numeric(20,2) NOT NULL, - currency_of_report character varying(4) + currency_of_report character varying(5) ); @@ -2504,7 +2502,8 @@ CREATE TABLE [[schema]].partners_intervention ( in_amendment boolean NOT NULL, reference_number_year integer, activation_letter character varying(1024), - termination_doc character varying(1024) + termination_doc character varying(1024), + cfei_number character varying(150) ); @@ -2764,7 +2763,7 @@ CREATE TABLE [[schema]].partners_interventionbudget ( total numeric(20,2) NOT NULL, intervention_id integer, total_local numeric(20,2) NOT NULL, - currency character varying(4) NOT NULL + currency character varying(5) NOT NULL ); @@ -2960,7 +2959,11 @@ CREATE TABLE [[schema]].partners_partnerorganization ( basis_for_risk_rating character varying(50) NOT NULL, manually_blocked boolean NOT NULL, outstanding_dct_amount_6_to_9_months_usd numeric(20,2), - outstanding_dct_amount_more_than_9_months_usd numeric(20,2) + outstanding_dct_amount_more_than_9_months_usd numeric(20,2), + highest_risk_rating_name character varying(150) NOT NULL, + highest_risk_rating_type character varying(150) NOT NULL, + psea_assessment_date timestamp with time zone, + sea_risk_rating_name character varying(150) NOT NULL ); @@ -3033,7 +3036,8 @@ CREATE TABLE [[schema]].partners_partnerstaffmember ( active boolean NOT NULL, partner_id integer NOT NULL, created timestamp with time zone NOT NULL, - modified timestamp with time zone NOT NULL + modified timestamp with time zone NOT NULL, + user_id integer ); @@ -5825,33 +5829,49 @@ ALTER TABLE ONLY [[schema]].unicef_snapshot_activity ALTER COLUMN id SET DEFAULT -- Data for Name: action_points_actionpoint; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].action_points_actionpoint VALUES (1, '2019-06-17 11:23:51.954954+00', '2020-04-02 17:19:27.840232+00', 'open', 'Agree with Youth Center and Municipal council on the location and modality of implementation for the Youth Center', '2019-06-30', NULL, 11490, 23564, 11490, 223, NULL, 89, NULL, 201, 73, 2, NULL, false, 65, NULL, NULL, 'LIB/2019/1/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (3, '2019-08-21 13:32:27.613597+00', '2020-04-02 17:19:27.842771+00', 'open', 'Discuss with partner possibility to integrate different subjects in awareness sessions, to address the needs of the children -in this school.', '2019-09-15', NULL, 17817, 17817, 17817, 108, NULL, 75, NULL, 201, 81, 1, NULL, false, 69, NULL, NULL, 'LIB/2019/3/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (4, '2019-08-26 08:30:23.783093+00', '2020-04-02 17:19:27.844682+00', 'open', 'Introduce partner to requirements of reporting + HACT to improve quality of progress/weekly and required reports, and to build capacity of the scouts troop in providing efficiently collected data.', '2019-08-28', NULL, 17817, 17817, 17817, 216, NULL, 100, NULL, 201, 86, 1, NULL, false, 73, NULL, NULL, 'LIB/2019/4/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (5, '2019-08-26 08:44:19.422765+00', '2020-04-02 17:19:27.84664+00', 'completed', 'provide technical support to Noor Alhayat and supporting them in discussing with school staff to clear out harmful objects from playgrounds and discuss other CP concerns', '2018-11-05', '2019-08-26 08:52:23.671408+00', 17817, 17817, 17817, 216, NULL, 75, NULL, 201, 81, 1, NULL, false, 74, NULL, NULL, 'LIB/2019/5/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (6, '2019-08-26 09:09:59.975751+00', '2020-04-02 17:19:27.848434+00', 'completed', '1-Provide technical support to Alnahla regarding the appropriate use ECD kits for children under 6 years old. +INSERT INTO [[schema]].action_points_actionpoint VALUES (32, '2020-02-18 07:13:54.244307+00', '2020-02-18 07:13:54.409207+00', 'open', '1-Standardize the curriculum to all centres, as it will be more adequate to develop and follow up. +2-For English Language classes we suggest having a curriculum and not keep it general topics based on the teacher’s knowledge. +3- we recommend the age group classes are split into three categories (6-9), (10,13) and (14,17). +3-Strengthen the capacity of the teachers by conducting a teacher’s follow up training (including pre and post-test) on child protection/classroom management/ positive reinforcement. +4-Add (different levels) of Education with in the same ages group category. +5- Add posters/colours to the centre/ classes (more child friendly).', '2020-05-03', NULL, 247375, 247300, 247375, 220, NULL, 102, NULL, 201, 23, 2, NULL, false, 122, NULL, NULL, 'LIB/2020/32/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (3, '2019-08-21 13:32:27.613597+00', '2020-03-09 08:45:28.309889+00', 'completed', 'Discuss with partner possibility to integrate different subjects in awareness sessions, to address the needs of the children +in this school.', '2019-09-15', '2020-03-09 08:45:28.309915+00', 17817, 17817, 17817, 108, NULL, 75, NULL, 201, 81, 1, NULL, false, 69, NULL, NULL, 'LIB/2019/3/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (1, '2019-06-17 11:23:51.954954+00', '2019-12-05 17:12:11.142616+00', 'open', 'Agree with Youth Center and Municipal council on the location and modality of implementation for the Youth Center', '2019-06-30', NULL, 11490, 23564, 11490, 223, NULL, 89, NULL, 201, 73, 2, NULL, false, 65, NULL, NULL, 'LIB/2019/1/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (4, '2019-08-26 08:30:23.783093+00', '2019-12-05 17:12:11.153529+00', 'open', 'Introduce partner to requirements of reporting + HACT to improve quality of progress/weekly and required reports, and to build capacity of the scouts troop in providing efficiently collected data.', '2019-08-28', NULL, 17817, 17817, 17817, 216, NULL, 100, NULL, 201, 86, 1, NULL, false, 73, NULL, NULL, 'LIB/2019/4/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (5, '2019-08-26 08:44:19.422765+00', '2019-12-05 17:12:11.157388+00', 'completed', 'provide technical support to Noor Alhayat and supporting them in discussing with school staff to clear out harmful objects from playgrounds and discuss other CP concerns', '2018-11-05', '2019-08-26 08:52:23.671408+00', 17817, 17817, 17817, 216, NULL, 75, NULL, 201, 81, 1, NULL, false, 74, NULL, NULL, 'LIB/2019/5/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (6, '2019-08-26 09:09:59.975751+00', '2019-12-05 17:12:11.165096+00', 'completed', '1-Provide technical support to Alnahla regarding the appropriate use ECD kits for children under 6 years old. 2-For school/Alnahla to join efforts and clear WASH facilities from harmful objects that have been observed duirng programmatic visit. 3-Social workers to be involved more in activities with children to promote pro-active support and sustainability of activities', '2018-11-01', '2019-08-26 09:17:57.244338+00', 17817, 17817, 17817, 108, NULL, 66, NULL, 201, 13, 1, NULL, false, 75, NULL, NULL, 'LIB/2019/6/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (7, '2019-08-26 09:25:12.326175+00', '2020-04-02 17:19:27.850322+00', 'completed', '1-Provide technical support to Noor alhayat and conduct discussion with school staff about possible ways to keep bathrooms clean (suggestions on involving parents to support in this) +INSERT INTO [[schema]].action_points_actionpoint VALUES (7, '2019-08-26 09:25:12.326175+00', '2019-12-05 17:12:11.168681+00', 'completed', '1-Provide technical support to Noor alhayat and conduct discussion with school staff about possible ways to keep bathrooms clean (suggestions on involving parents to support in this) 2- Noor alhayat to support in managing the clearing of playground.', '2018-12-15', '2019-08-26 09:33:01.758592+00', 17817, 17817, 17817, 108, NULL, 75, NULL, 201, 81, 1, NULL, false, 76, NULL, NULL, 'LIB/2019/7/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (8, '2019-08-26 12:27:11.151817+00', '2020-04-02 17:19:27.852121+00', 'completed', 'explore possibility of establishing a CFS in the clinic where noor alhayat conducted activities and contributed to the UNICEF vaccination campaign 2018', '2018-12-17', '2019-08-26 12:43:08.84788+00', 17817, 17817, 17817, 108, NULL, 75, NULL, 201, 81, 1, NULL, false, 77, NULL, NULL, 'LIB/2019/8/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (9, '2019-08-26 12:39:39.335658+00', '2020-04-02 17:19:27.854819+00', 'completed', '1-Improve quality of documentation (photo quality) and noor alhayat to have signed approvals from parents to use Photos in reports or a human-interest story +INSERT INTO [[schema]].action_points_actionpoint VALUES (8, '2019-08-26 12:27:11.151817+00', '2019-12-05 17:12:11.17264+00', 'completed', 'explore possibility of establishing a CFS in the clinic where noor alhayat conducted activities and contributed to the UNICEF vaccination campaign 2018', '2018-12-17', '2019-08-26 12:43:08.84788+00', 17817, 17817, 17817, 108, NULL, 75, NULL, 201, 81, 1, NULL, false, 77, NULL, NULL, 'LIB/2019/8/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (9, '2019-08-26 12:39:39.335658+00', '2019-12-05 17:12:11.177343+00', 'completed', '1-Improve quality of documentation (photo quality) and noor alhayat to have signed approvals from parents to use Photos in reports or a human-interest story 2-Improve technical expertise in approaching parents/caregivers with constructive information on CP concerns children face. (provide support to noor alhayat to build capacity)', '2019-07-29', '2019-08-26 12:48:28.448938+00', 17817, 17817, 17817, 108, NULL, 75, NULL, 201, 81, 1, NULL, false, 78, NULL, NULL, 'LIB/2019/9/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (10, '2019-09-07 23:33:24.447083+00', '2020-04-02 17:19:27.856859+00', 'completed', 'Advocacy to vaccinate every child coming for immunization and minimize Missed Opportunity for immunization. +INSERT INTO [[schema]].action_points_actionpoint VALUES (10, '2019-09-07 23:33:24.447083+00', '2019-12-05 17:12:11.1822+00', 'completed', 'Advocacy to vaccinate every child coming for immunization and minimize Missed Opportunity for immunization. Advocacy to have temperature log on each refrigerator', '2019-05-01', '2019-09-07 23:37:05.611064+00', 176084, 176084, 176084, 208, NULL, NULL, NULL, 201, 5, 4, NULL, true, 80, NULL, NULL, 'LIB/2019/10/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (11, '2019-09-24 10:45:00.163658+00', '2020-04-02 17:19:27.858852+00', 'open', 'Visibility items to be installed in the center', '2018-11-29', NULL, 29294, 13654, 29294, NULL, NULL, 80, NULL, 209, 37, 34, NULL, false, 104, NULL, NULL, 'LIB/2019/11/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (12, '2019-09-24 10:48:25.715322+00', '2020-04-02 17:19:27.860822+00', 'open', 'Coordination for the transfer of laptops from Alnahla to Multaqana', '2018-11-29', NULL, 29294, 29294, 29294, 56, NULL, 80, NULL, 201, 37, 1, NULL, true, 104, NULL, NULL, 'LIB/2019/12/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (13, '2019-09-24 10:56:12.719689+00', '2020-04-02 17:19:27.862806+00', 'open', 'Changes in the PSS room to be more child friendly', '2018-11-29', NULL, 29294, 29294, 29294, 56, NULL, 17, NULL, 201, 37, 1, NULL, false, 104, NULL, NULL, 'LIB/2019/13/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (14, '2019-10-01 13:55:46.652898+00', '2020-04-02 17:19:27.864782+00', 'open', 'Education specialist to get in touch with the INTERSOS and review the schedule and curriculum for the non-formal education to allow larger number of classes for the migrant and children in a priority manner', '2019-10-31', NULL, 29294, 1497, 29294, 185, NULL, NULL, NULL, 209, NULL, 2, NULL, false, 106, NULL, NULL, 'LIB/2019/14/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (15, '2019-10-01 13:58:11.145914+00', '2020-04-02 17:19:27.866766+00', 'open', 'Child protection officer to engage with INTERSOS to review safety and security measure that are installed in the center', '2019-10-15', NULL, 29294, 29294, 29294, 216, NULL, NULL, NULL, 201, NULL, 1, NULL, true, 106, NULL, NULL, 'LIB/2019/15/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (16, '2019-10-01 13:59:42.494782+00', '2020-04-02 17:19:27.868653+00', 'open', 'Child protection specialist to agree with INTERSOS on what the provision would be to make the access to the children with disabilities easier', '2019-10-20', NULL, 29294, 17635, 29294, 216, NULL, NULL, NULL, 209, NULL, 1, NULL, false, 106, NULL, NULL, 'LIB/2019/16/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (17, '2019-10-01 14:01:04.270695+00', '2020-04-02 17:19:27.870578+00', 'open', 'Child protection and education specialist to engage with INTERSOS and find ways and strategies to increase the utilization of the center by migrants and refugees -A dedicated discussion with the Youth team may be of help, to see how the youth volunteers could be of support to mobilize greater number of children', '2019-10-20', NULL, 29294, 17635, 29294, 216, NULL, NULL, NULL, 209, NULL, 1, NULL, false, 106, NULL, NULL, 'LIB/2019/17/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (18, '2019-10-01 14:02:10.019717+00', '2020-04-02 17:19:27.872603+00', 'open', 'Child protection Specialist to discuss with the management of INTERSOS to ensure that there is a mature center manager is always assigned to be able to address any issues linked to the staff management and safety of the children', '2019-10-20', NULL, 29294, 17635, 29294, 56, NULL, NULL, NULL, 209, NULL, 1, NULL, false, 106, NULL, NULL, 'LIB/2019/18/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (19, '2019-10-01 14:03:17.971033+00', '2020-04-02 17:19:27.874519+00', 'open', 'Child protection officer to engage with INTERSOS team to be mobilize young artists to create art work within the themes relevant to UNICEF', '2019-10-31', NULL, 29294, 29294, 29294, 36, NULL, NULL, NULL, 201, NULL, 1, NULL, false, 106, NULL, NULL, 'LIB/2019/19/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (20, '2019-10-01 14:04:31.689968+00', '2020-04-02 17:19:27.876524+00', 'open', 'Child protection officer to organize study tour of other partners to witness specific activities that are organize by INTERSOS team in their center . Before this happens, it will be important to have a discussion at the management level of how an overall capacity building of national partners will be done by INTERSOS in line with the PD signed with UNICEF', '2019-10-31', NULL, 29294, 29294, 29294, 216, NULL, NULL, NULL, 201, NULL, 1, NULL, false, 106, NULL, NULL, 'LIB/2019/20/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (21, '2019-10-09 17:24:53.971261+00', '2020-04-02 17:19:27.878466+00', 'open', 'Continue follow up on construction of the septic tanks to complete imminently', '2019-10-17', NULL, 14488, 8563, 14488, 208, NULL, 5, NULL, 201, 6, 3, 128, false, NULL, NULL, NULL, 'LIB/2019/21/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (11, '2019-09-24 10:45:00.163658+00', '2019-12-05 17:12:11.186263+00', 'open', 'Visibility items to be installed in the center', '2018-11-29', NULL, 29294, 13654, 29294, NULL, NULL, 80, NULL, 209, 37, 34, NULL, false, 104, NULL, NULL, 'LIB/2019/11/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (12, '2019-09-24 10:48:25.715322+00', '2019-12-05 17:12:11.190398+00', 'open', 'Coordination for the transfer of laptops from Alnahla to Multaqana', '2018-11-29', NULL, 29294, 29294, 29294, 56, NULL, 80, NULL, 201, 37, 1, NULL, true, 104, NULL, NULL, 'LIB/2019/12/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (13, '2019-09-24 10:56:12.719689+00', '2019-12-05 17:12:11.194651+00', 'open', 'Changes in the PSS room to be more child friendly', '2018-11-29', NULL, 29294, 29294, 29294, 56, NULL, 17, NULL, 201, 37, 1, NULL, false, 104, NULL, NULL, 'LIB/2019/13/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (14, '2019-10-01 13:55:46.652898+00', '2019-12-05 17:12:11.203753+00', 'open', 'Education specialist to get in touch with the INTERSOS and review the schedule and curriculum for the non-formal education to allow larger number of classes for the migrant and children in a priority manner', '2019-10-31', NULL, 29294, 1497, 29294, 185, NULL, NULL, NULL, 209, NULL, 2, NULL, false, 106, NULL, NULL, 'LIB/2019/14/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (15, '2019-10-01 13:58:11.145914+00', '2019-12-05 17:12:11.210194+00', 'open', 'Child protection officer to engage with INTERSOS to review safety and security measure that are installed in the center', '2019-10-15', NULL, 29294, 29294, 29294, 216, NULL, NULL, NULL, 201, NULL, 1, NULL, true, 106, NULL, NULL, 'LIB/2019/15/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (16, '2019-10-01 13:59:42.494782+00', '2019-12-05 17:12:11.214037+00', 'open', 'Child protection specialist to agree with INTERSOS on what the provision would be to make the access to the children with disabilities easier', '2019-10-20', NULL, 29294, 17635, 29294, 216, NULL, NULL, NULL, 209, NULL, 1, NULL, false, 106, NULL, NULL, 'LIB/2019/16/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (17, '2019-10-01 14:01:04.270695+00', '2019-12-05 17:12:11.221532+00', 'completed', 'Child protection and education specialist to engage with INTERSOS and find ways and strategies to increase the utilization of the center by migrants and refugees +A dedicated discussion with the Youth team may be of help, to see how the youth volunteers could be of support to mobilize greater number of children', '2019-10-20', '2019-11-28 10:34:29.019097+00', 29294, 17635, 29294, 216, NULL, NULL, NULL, 209, NULL, 1, NULL, false, 106, NULL, NULL, 'LIB/2019/17/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (18, '2019-10-01 14:02:10.019717+00', '2019-12-05 17:12:11.225733+00', 'open', 'Child protection Specialist to discuss with the management of INTERSOS to ensure that there is a mature center manager is always assigned to be able to address any issues linked to the staff management and safety of the children', '2019-10-20', NULL, 29294, 17635, 29294, 56, NULL, NULL, NULL, 209, NULL, 1, NULL, false, 106, NULL, NULL, 'LIB/2019/18/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (19, '2019-10-01 14:03:17.971033+00', '2019-12-05 17:12:11.230082+00', 'open', 'Child protection officer to engage with INTERSOS team to be mobilize young artists to create art work within the themes relevant to UNICEF', '2019-10-31', NULL, 29294, 29294, 29294, 36, NULL, NULL, NULL, 201, NULL, 1, NULL, false, 106, NULL, NULL, 'LIB/2019/19/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (20, '2019-10-01 14:04:31.689968+00', '2019-12-05 17:12:11.233979+00', 'open', 'Child protection officer to organize study tour of other partners to witness specific activities that are organize by INTERSOS team in their center . Before this happens, it will be important to have a discussion at the management level of how an overall capacity building of national partners will be done by INTERSOS in line with the PD signed with UNICEF', '2019-10-31', NULL, 29294, 29294, 29294, 216, NULL, NULL, NULL, 201, NULL, 1, NULL, false, 106, NULL, NULL, 'LIB/2019/20/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (21, '2019-10-09 17:24:53.971261+00', '2019-12-05 17:12:11.237759+00', 'open', 'Continue follow up on construction of the septic tanks to complete imminently', '2019-10-17', NULL, 14488, 8563, 14488, 208, NULL, 5, NULL, 201, 6, 3, 128, false, NULL, NULL, NULL, 'LIB/2019/21/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (22, '2019-12-02 13:25:01.740087+00', '2019-12-05 17:12:11.241635+00', 'open', 'S\GBV training for partner staff, and messages to be shared with partner to be displayed in the center', '2019-12-20', NULL, 29294, 17817, 29294, 216, NULL, 80, NULL, 201, 37, 1, NULL, false, 115, NULL, NULL, 'LIB/2019/22/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (23, '2019-12-02 13:28:02.115452+00', '2019-12-05 17:12:11.245828+00', 'open', 'Education output to be re-assessed and a visit to the center by Education colleagues to check the classes and curriculum.', '2019-12-31', NULL, 29294, 1497, 29294, 185, NULL, 80, NULL, 209, 37, 2, NULL, false, 115, NULL, NULL, 'LIB/2019/23/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (24, '2019-12-02 13:29:16.440276+00', '2019-12-05 17:12:11.249704+00', 'open', 'establisment of community complaint mechanism.', '2019-12-15', NULL, 29294, 29294, 29294, 216, NULL, 80, NULL, 201, 37, 1, NULL, false, 115, NULL, NULL, 'LIB/2019/24/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (25, '2019-12-02 14:04:48.571329+00', '2019-12-05 17:12:11.253466+00', 'open', 'Child protection Officer to agree with INTERSOS on what the provision would be to make the access to the children with disabilities easier', '2020-01-31', NULL, 29294, 200131, 29294, 216, NULL, NULL, NULL, 209, 89, 1, NULL, false, 116, NULL, NULL, 'LIB/2019/25/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (26, '2019-12-02 14:05:45.739559+00', '2019-12-05 17:12:11.257745+00', 'open', 'Child Protection officer to discuss with INTERSOS way forward for care givers sessions timings and innovative ideas to attract them to attend', '2020-01-31', NULL, 29294, 200131, 29294, 216, NULL, NULL, NULL, 209, 89, 1, NULL, false, 116, NULL, NULL, 'LIB/2019/26/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (27, '2019-12-02 14:06:55.876779+00', '2019-12-05 17:12:11.261769+00', 'open', 'Include child protection FP in any upcoming trainings with INGOs and UN', '2020-01-31', NULL, 29294, 200131, 29294, 216, NULL, NULL, NULL, 209, 89, 1, NULL, false, 116, NULL, NULL, 'LIB/2019/27/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (28, '2019-12-02 14:07:53.384635+00', '2019-12-05 17:12:11.266285+00', 'open', 'Map the services available and display them in the center', '2020-01-31', NULL, 29294, 200131, 29294, 216, NULL, NULL, NULL, 209, 89, 1, NULL, false, 116, NULL, NULL, 'LIB/2019/28/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (29, '2019-12-02 14:09:11.061284+00', '2019-12-05 17:12:11.27013+00', 'open', 'PSEA training for the staff, and assigning a focal point for PSEA, and provide PSEA materials and advice on feedback mechanism', '2020-01-31', NULL, 29294, 200131, 29294, 216, NULL, NULL, NULL, 209, 89, 1, NULL, false, 116, NULL, NULL, 'LIB/2019/29/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (30, '2019-12-02 14:12:16.871296+00', '2019-12-05 17:12:11.27431+00', 'open', 'Child protection officer to set with INTERSOS community feedback mechanism', '2020-01-31', NULL, 29294, 200131, 29294, 216, NULL, NULL, NULL, 209, 89, 1, NULL, false, 116, NULL, NULL, 'LIB/2019/30/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (31, '2019-12-02 14:13:46.265914+00', '2019-12-05 17:12:11.278974+00', 'open', 'Display CP messages in the center .', '2019-12-09', NULL, 29294, 29294, 29294, 216, NULL, NULL, NULL, 201, 89, 1, NULL, false, 116, NULL, NULL, 'LIB/2019/31/APD', NULL); -- @@ -6010,6 +6030,23 @@ INSERT INTO [[schema]].activities_activity VALUES (158, '2019-05-02', NULL, 89, INSERT INTO [[schema]].activities_activity VALUES (159, '2019-06-03', NULL, 89, 73); INSERT INTO [[schema]].activities_activity VALUES (160, '2019-07-20', NULL, 89, 73); INSERT INTO [[schema]].activities_activity VALUES (161, '2019-08-31', NULL, 89, 73); +INSERT INTO [[schema]].activities_activity VALUES (162, '2019-11-24', NULL, 89, 73); +INSERT INTO [[schema]].activities_activity VALUES (163, '2019-11-25', NULL, 89, 73); +INSERT INTO [[schema]].activities_activity VALUES (164, '2019-11-21', NULL, 100, 86); +INSERT INTO [[schema]].activities_activity VALUES (165, '2019-11-24', NULL, 85, 1); +INSERT INTO [[schema]].activities_activity VALUES (166, '2019-11-28', NULL, 100, 86); +INSERT INTO [[schema]].activities_activity VALUES (167, '2019-11-25', 108, 75, 81); +INSERT INTO [[schema]].activities_activity VALUES (168, '2019-12-22', NULL, 89, 73); +INSERT INTO [[schema]].activities_activity VALUES (169, '2019-12-24', 208, NULL, 93); +INSERT INTO [[schema]].activities_activity VALUES (170, '2019-12-29', NULL, 80, 37); +INSERT INTO [[schema]].activities_activity VALUES (171, '2019-12-30', NULL, 80, 37); +INSERT INTO [[schema]].activities_activity VALUES (172, '2019-12-31', NULL, 80, 37); +INSERT INTO [[schema]].activities_activity VALUES (173, '2020-01-27', 216, 102, 23); +INSERT INTO [[schema]].activities_activity VALUES (174, '2020-01-27', 216, 102, 23); +INSERT INTO [[schema]].activities_activity VALUES (175, '2020-01-15', 220, NULL, 95); +INSERT INTO [[schema]].activities_activity VALUES (180, '2020-01-28', 216, 95, 87); +INSERT INTO [[schema]].activities_activity VALUES (181, '2020-01-29', 216, 95, 87); +INSERT INTO [[schema]].activities_activity VALUES (179, '2020-02-03', 216, 104, 89); -- @@ -6146,7 +6183,23 @@ INSERT INTO [[schema]].activities_activity_locations VALUES (269, 159, 1925); INSERT INTO [[schema]].activities_activity_locations VALUES (270, 160, 1909); INSERT INTO [[schema]].activities_activity_locations VALUES (141, 101, 1929); INSERT INTO [[schema]].activities_activity_locations VALUES (271, 160, 1925); +INSERT INTO [[schema]].activities_activity_locations VALUES (273, 162, 2150); +INSERT INTO [[schema]].activities_activity_locations VALUES (275, 164, 1832); +INSERT INTO [[schema]].activities_activity_locations VALUES (276, 164, 1898); +INSERT INTO [[schema]].activities_activity_locations VALUES (279, 166, 1840); +INSERT INTO [[schema]].activities_activity_locations VALUES (280, 166, 1914); +INSERT INTO [[schema]].activities_activity_locations VALUES (283, 168, 1925); INSERT INTO [[schema]].activities_activity_locations VALUES (149, 102, 1929); +INSERT INTO [[schema]].activities_activity_locations VALUES (284, 169, 1979); +INSERT INTO [[schema]].activities_activity_locations VALUES (285, 170, 1962); +INSERT INTO [[schema]].activities_activity_locations VALUES (286, 170, 1906); +INSERT INTO [[schema]].activities_activity_locations VALUES (287, 170, 1898); +INSERT INTO [[schema]].activities_activity_locations VALUES (290, 172, 1915); +INSERT INTO [[schema]].activities_activity_locations VALUES (291, 172, 1919); +INSERT INTO [[schema]].activities_activity_locations VALUES (292, 173, 1900); +INSERT INTO [[schema]].activities_activity_locations VALUES (294, 175, 2590); +INSERT INTO [[schema]].activities_activity_locations VALUES (299, 180, 1895); +INSERT INTO [[schema]].activities_activity_locations VALUES (301, 181, 1896); INSERT INTO [[schema]].activities_activity_locations VALUES (160, 103, 1915); INSERT INTO [[schema]].activities_activity_locations VALUES (169, 104, 1919); INSERT INTO [[schema]].activities_activity_locations VALUES (175, 105, 1942); @@ -6178,6 +6231,15 @@ INSERT INTO [[schema]].activities_activity_locations VALUES (260, 150, 1898); INSERT INTO [[schema]].activities_activity_locations VALUES (263, 153, 1925); INSERT INTO [[schema]].activities_activity_locations VALUES (265, 155, 1920); INSERT INTO [[schema]].activities_activity_locations VALUES (272, 161, 1942); +INSERT INTO [[schema]].activities_activity_locations VALUES (274, 163, 1920); +INSERT INTO [[schema]].activities_activity_locations VALUES (277, 165, 1832); +INSERT INTO [[schema]].activities_activity_locations VALUES (278, 165, 1898); +INSERT INTO [[schema]].activities_activity_locations VALUES (281, 167, 1897); +INSERT INTO [[schema]].activities_activity_locations VALUES (282, 167, 1970); +INSERT INTO [[schema]].activities_activity_locations VALUES (288, 171, 1920); +INSERT INTO [[schema]].activities_activity_locations VALUES (289, 171, 1910); +INSERT INTO [[schema]].activities_activity_locations VALUES (293, 174, 1900); +INSERT INTO [[schema]].activities_activity_locations VALUES (298, 179, 1895); -- @@ -6341,20 +6403,101 @@ INSERT INTO [[schema]].actstream_action VALUES (229, '4890', 'changed', NULL, '5 -- Data for Name: attachments_attachmentflat; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].attachments_attachmentflat VALUES (842, '', '', '', '', '', '/api/v2/attachments/file/842/', 'Mohamed Elmejrab', 842, 'NRC_-_PCA.pdf', '', '', '', NULL, '2019-01-23 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (26, '', '', '2300061550', '', 'Core Values Assessment', '/api/v2/attachments/file/26/', '', 26, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (670, '', '', '', '', '', '/api/v2/attachments/file/670/', 'Mohamed Elmejrab', 670, '', '', '', '', NULL, '2018-10-16 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (811, '', '', '', '', '', '/api/v2/attachments/file/811/', 'Mohamed Elmejrab', 811, 'A.02._STACO_Amendment_-_Minutes_of_Meeting.pdf', '', '', '', NULL, '2018-12-18 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (812, '', '', '', '', '', '/api/v2/attachments/file/812/', 'Mohamed Elmejrab', 812, 'A.02._STACO_Amendment_-_Minutes_of_Meeting_sqPlnN1.pdf', '', '', '', NULL, '2018-12-18 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (813, '', '', '', '', '', '/api/v2/attachments/file/813/', 'Mohamed Elmejrab', 813, 'A.02._STACO_Amendment_-_Minutes_of_Meeting_Z2xhDsn.pdf', '', '', '', NULL, '2018-12-18 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (675, '', '', '', '', '', '/api/v2/attachments/file/675/', 'Mohamed Elmejrab', 675, 'multakana_legal_2_1EoRuhT.pdf', '', '', '', NULL, '2018-10-16 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (909, '', '', '', '', '', '/api/v2/attachments/file/909/', 'Turkia Ben Saoud', 909, 'Progress_report_2.pdf', '', '', '', NULL, '2019-04-03 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (910, '', '', '', '', '', '/api/v2/attachments/file/910/', 'Turkia Ben Saoud', 910, 'Progress_report_2_uv2RXoB.pdf', '', '', '', NULL, '2019-04-03 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (883, '', '', '', '', '', '/api/v2/attachments/file/883/', 'Mohamed Elmejrab', 883, 'NRC_-_PCA_oxvK3WL.pdf', '', '', '', NULL, '2019-03-04 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (430, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA201702/PD201601', 'Other', '/api/v2/attachments/file/430/', '', 430, 'Submission_Form.pdf', 'LIB/PCA201734', '', 'Partnership Management Portal', 2, '2018-03-30 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (948, '', '', '', '', '', '/api/v2/attachments/file/948/', 'Muna Fathi Khalifa Garamalli', 948, 'Alsafwa_SSFA_sigend.pdf', '', '', '', NULL, '2019-05-26 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (981, '', '', '', '', '', '/api/v2/attachments/file/981/', 'Alla Almsri', 981, 'Detailed_Budget_-_Scouts.pdf', '', '', '', NULL, '2019-06-12 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (977, '', '', '', '', '', '/api/v2/attachments/file/977/', 'Muna Fathi Khalifa Garamalli', 977, 'Alsafwa_SSFA_sigend_dJ75MDQ.pdf', '', '', '', NULL, '2019-05-28 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1162, 'MULTAKANA CENTER', 'Civil Society Organization', '2500236298', 'LIB/PCA2018122/PD201880-2', 'Final Partnership Review', '/api/v2/attachments/file/1162/', 'Inaam Elbasir', 1162, 'final_review_multaqana.pdf', 'LIB/PCA2018122', '', 'Partnership Management Portal', 80, '2020-01-13 08:25:49.420886+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1165, 'MINISTRY OF SOCIAL AFFAIRS OF LIBYA', 'Government', '2500240877', '', '', '/api/v2/attachments/file/1165/', 'Turkia Ben Saoud', 1165, 'MoSA_end_of_year_review_of_AWP_2019_signed.pdf', '', '', 'Partnership Management Portal', NULL, '2020-01-13 10:24:24.240966+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1169, '', '', '', '', '', '/api/v2/attachments/file/1169/', 'Barbara Pellegrini', 1169, '20191010_amendment_PD_Sections_4.1_and_4.3.pdf', '', '', '', NULL, '2020-01-13 14:38:31.494611+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1171, 'CESVI COOPERAZIONE E SVILUPPO CESVI', 'Civil Society Organization', '2500235018', 'LIB/PCA2019133/PD2019102-2', '', '/api/v2/attachments/file/1171/', 'Barbara Pellegrini', 1171, 'Cesvi__Baity_signed_and_stamped_f3BXky4.pdf', 'LIB/PCA2019133', '', 'Partnership Management Portal', 102, '2020-01-14 09:26:52.914651+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1172, 'NORWEGIAN REFUGEE COUNCIL', 'Civil Society Organization', '2500233986', 'LIB/PCA2019137/PD201987-1', '', '/api/v2/attachments/file/1172/', 'Mohamed Elmejrab', 1172, 'NRC-UNICEF_NCE_signed.pdf', 'LIB/PCA2019137', '', 'Partnership Management Portal', 87, '2020-01-14 10:51:18.74042+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1176, 'EKRAA ASSEMBLY FOR DEVELOPMENT AND EDUCATION', 'Civil Society Organization', '2500233196', '', '', '/api/v2/attachments/file/1176/', 'Yahia Mostafa Taher Elrayes', 1176, 'Ekraa_PD.pdf', 'LIB/PCA2019144', '/api/v2/partners/6/', 'Partnership Management Portal', NULL, '2020-01-15 12:54:01.349055+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1178, 'INTERSOS', 'Civil Society Organization', '2500240867', '', '', '/api/v2/attachments/file/1178/', 'Barbara Pellegrini', 1178, '5202_-_INTERSOS_-_UNICEF_-_Libya_2019_-_Budget_002.pdf', 'LIB/PCA2019153', '/api/v2/partners/8/', 'Partnership Management Portal', NULL, '2020-01-16 11:49:56.269873+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1180, 'AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT', 'Civil Society Organization', '2500220006', 'LIB/PCA2019155/PD2019107', '', '/api/v2/attachments/file/1180/', 'Barbara Pellegrini', 1180, 'PD_signed_DIaqUI9.pdf', 'LIB/PCA2019155', '/api/v2/interventions/107/', 'Partnership Management Portal', 107, '2020-01-16 15:23:51.475682+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1183, 'AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT', 'Civil Society Organization', '2500220006', 'LIB/PCA2019155/PD2019106', 'Other', '/api/v2/attachments/file/1183/', 'Barbara Pellegrini', 1183, 'acted_legal_agreement_UmfnvIW.pdf', 'LIB/PCA2019155', '', 'Partnership Management Portal', 106, '2020-01-16 16:32:18.50165+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1185, '', '', '', '', 'Overall Report', '/api/v2/attachments/file/1185/', '', 1185, '29-12-2019-_BF_report_Abou_Slim.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F78%252Fdetails', 'Third Party Monitoring', NULL, '2020-01-19 07:45:42.333464+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1193, 'BREEZES LIBYA', 'Civil Society Organization', '2500233211', 'LIB/PCA2019147/PD201992', 'Other', '/api/v2/attachments/file/1193/', 'Amel Markus', 1193, 'Breezes_Budget_Final.pdf', 'LIB/PCA2019147', '', 'Partnership Management Portal', 92, '2020-01-20 11:00:08.170393+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1194, 'NOOR ALHAYAT CHARITY ASSOCIATION', 'Civil Society Organization', '2500238760', 'LIB/PCA2018117/PD201875-4', 'Final Partnership Review', '/api/v2/attachments/file/1194/', 'Turkia Ben Saoud', 1194, 'JPR_NACA_2019.pdf', 'LIB/PCA2018117', '', 'Partnership Management Portal', 75, '2020-01-23 12:00:46.760939+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1196, 'AFAQ FOUNDATION FOR RIGHTS AND DEVELOPMENT', 'Civil Society Organization', '2500238136', 'LIB/PCA2019146/PD201994', 'Other', '/api/v2/attachments/file/1196/', 'Amel Markus', 1196, 'Q1_Liquidation_Progress_report_-signed.pdf', 'LIB/PCA2019146', '', 'Partnership Management Portal', 94, '2020-01-26 07:26:18.187626+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1203, 'AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT', 'Civil Society Organization', '2500220006', 'LIB/PCA2019155/PD2019106', 'Other', '/api/v2/attachments/file/1203/', 'Barbara Pellegrini', 1203, 'PD_signed_247cCy7.pdf', 'LIB/PCA2019155', '', 'Partnership Management Portal', 106, '2020-01-30 09:53:14.767482+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1204, 'CESVI COOPERAZIONE E SVILUPPO CESVI', 'Civil Society Organization', '2500235018', 'LIB/PCA2019133/PD2019102-2', 'Other', '/api/v2/attachments/file/1204/', 'Barbara Pellegrini', 1204, 'amendment_CESVI_signed.pdf', 'LIB/PCA2019133', '', 'Partnership Management Portal', 102, '2020-02-11 12:40:21.554599+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1209, '', '', '', '', '', '/api/v2/attachments/file/1209/', 'Amel Markus', 1209, 'PCA_Amendment_English_2019_NRC_signed_DR-21-2.pdf', '', '', '', NULL, '2020-02-24 07:35:18.572193+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1253, '', '', '', '', '', '/api/v2/attachments/file/1253/', 'Amel Markus', 1253, 'NRC_Amendment_Annex_G._Signed.pdf', '', '', '', NULL, '2020-04-21 07:50:18.627617+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1213, '', '', '', '', '', '/api/v2/attachments/file/1213/', 'Amel Markus', 1213, 'PCA_Amendment_English_2019_NRC_signed_by_the_SRep.pdf', '', '', '', NULL, '2020-02-26 13:41:31.410294+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1215, 'BREEZES LIBYA', 'Civil Society Organization', '2500233211', 'LIB/PCA2019147/PD201992-1', '', '/api/v2/attachments/file/1215/', 'Amel Markus', 1215, 'Breezes_PD_Amendment__both_signed.pdf', 'LIB/PCA2019147', '', 'Partnership Management Portal', 92, '2020-02-27 07:01:54.522158+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1217, 'AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT', 'Civil Society Organization', '2500220006', 'LIB/PCA2019155/PD2019106-1', '', '/api/v2/attachments/file/1217/', 'Barbara Pellegrini', 1217, 'annex_G_ACTED_signed_kooOHFo.pdf', 'LIB/PCA2019155', '', 'Partnership Management Portal', 106, '2020-03-02 08:52:46.224248+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1218, '', '', '', '', '', '/api/v2/attachments/file/1218/', 'Turkia Ben Saoud', 1218, 'PCA_legal_agreement_IRC_SIGNED_irc_WWx4jRb_By10dOW.pdf', '', '', '', NULL, '2020-03-02 14:33:52.208182+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1220, 'SCOUTS AND GUIDES HAY ALANDALUS TROOP', 'Civil Society Organization', '2500240112', 'LIB/PCA2019150/PD2019100-1', 'Other', '/api/v2/attachments/file/1220/', 'Turkia Ben Saoud', 1220, 'Scouts_Annex_G_signed.pdf', 'LIB/PCA2019150', '', 'Partnership Management Portal', 100, '2020-03-03 10:39:22.551779+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1223, 'SCOUTS AND GUIDES HAY ALANDALUS TROOP', 'Civil Society Organization', '2500240112', 'LIB/PCA2019150/PD2019100-1', 'Other', '/api/v2/attachments/file/1223/', 'Turkia Ben Saoud', 1223, 'Partner_declaration_Form_Scouts_ENG_signed.pdf', 'LIB/PCA2019150', '', 'Partnership Management Portal', 100, '2020-03-03 14:45:49.955245+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1224, '', '', '', '', '', '/api/v2/attachments/file/1224/', 'Barbara Pellegrini', 1224, '05._Annex_I_Joint_Partnership_Review.pdf', '', '', '', NULL, '2020-03-06 13:47:42.13231+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1228, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA2019124/PD2020109', 'Other', '/api/v2/attachments/file/1228/', 'Turkia Ben Saoud', 1228, 'PD_Essafa_2020_final_signed_iuLNze2.pdf', 'LIB/PCA2019124', '', 'Partnership Management Portal', 109, '2020-03-15 12:15:20.74063+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1229, 'CESVI COOPERAZIONE E SVILUPPO CESVI', 'Civil Society Organization', '2500235018', 'LIB/PCA2019133/PD2019102-2', 'Other', '/api/v2/attachments/file/1229/', 'Barbara Pellegrini', 1229, 'CESVI_UNICEF_CASH_SOPs_final_.pdf', 'LIB/PCA2019133', '', 'Partnership Management Portal', 102, '2020-03-17 10:53:47.623787+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1230, 'NORWEGIAN REFUGEE COUNCIL', 'Civil Society Organization', '2500233986', 'LIB/PCA2019137/PD201987-2', '', '/api/v2/attachments/file/1230/', 'Amel Markus', 1230, 'NRC-PD_amendment_-signed.pdf', 'LIB/PCA2019137', '', 'Partnership Management Portal', 87, '2020-03-23 10:57:57.337674+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1232, '', '', '', '', '', '/api/v2/attachments/file/1232/', 'Soraia Abu Monassar', 1232, '3F_NCE_SRep_signature.pdf', '', '', '', NULL, '2020-03-25 12:01:44.331918+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1234, '', '', '', '', '', '/api/v2/attachments/file/1234/', 'Barbara Pellegrini', 1234, 'amendment_form_28feb_PD_signed_with_dates.pdf', '', '', '', NULL, '2020-03-26 14:04:51.08581+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1237, '', '', '', '', '', '/api/v2/attachments/file/1237/', 'May Nabous', 1237, 'LIB_PCA2020156-LIBYAN_RED_CRESCENT_SOCIETY_2.pdf', '', '', '', NULL, '2020-04-02 09:48:08.713628+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1239, '', '', '', '', '', '/api/v2/attachments/file/1239/', 'May Nabous', 1239, 'Program_Doc..pdf', '', '', '', NULL, '2020-04-03 12:43:34.065655+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1241, '', '', '', '', '', '/api/v2/attachments/file/1241/', 'May Nabous', 1241, 'Program_Doc._Lm6Hrw3.pdf', '', '', '', NULL, '2020-04-05 08:34:50.702469+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1163, 'MULTAKANA CENTER', 'Civil Society Organization', '2500236298', 'LIB/PCA2018122/PD201880-2', 'Other', '/api/v2/attachments/file/1163/', 'Inaam Elbasir', 1163, 'ammendment_multaqana.pdf', 'LIB/PCA2018122', '', 'Partnership Management Portal', 80, '2020-01-13 08:26:15.615907+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1166, '', '', '', '', '', '/api/v2/attachments/file/1166/', 'Turkia Ben Saoud', 1166, 'MoSA_agreement_letter_1.pdf', '', '', '', NULL, '2020-01-13 10:25:16.010073+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1170, 'CESVI COOPERAZIONE E SVILUPPO CESVI', 'Civil Society Organization', '2500235018', 'LIB/PCA2019133/PD2019102-1', 'Other', '/api/v2/attachments/file/1170/', 'Barbara Pellegrini', 1170, 'CESVI_PCA_2019-2020_KsblG9f_eO0lReo.pdf', 'LIB/PCA2019133', '', 'Partnership Management Portal', 102, '2020-01-13 14:49:23.652857+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1173, 'ALTADAMON FOR REHABILITATION AND PSYCOSOCIAL SUPPORT', 'Civil Society Organization', '2500238342', '', 'FACE form', '/api/v2/attachments/file/1173/', 'Nayroz Alnaemi', 1173, 'FACE_79_Altadamon_Liquidation_SVMwe0U.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Fap%252Fspot-checks%252F21%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-01-14 11:08:19.971236+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1177, 'BREEZES LIBYA', 'Civil Society Organization', '2500233211', '', '', '/api/v2/attachments/file/1177/', 'Yahia Mostafa Taher Elrayes', 1177, 'Breezes_signed-stamped_PD_QlIpJud_KCVEifB.pdf', 'LIB/PCA2019147', '/api/v2/partners/7/', 'Partnership Management Portal', NULL, '2020-01-15 12:56:31.977179+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1179, 'CESVI COOPERAZIONE E SVILUPPO CESVI', 'Civil Society Organization', '2500235018', '', '', '/api/v2/attachments/file/1179/', 'Barbara Pellegrini', 1179, 'Cesvi__Baity_signed_and_stamped_Q0MNFCm.pdf', 'LIB/PCA2019133', '/api/v2/partners/9/', 'Partnership Management Portal', NULL, '2020-01-16 11:53:49.708665+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1181, 'AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT', 'Civil Society Organization', '2500220006', 'LIB/PCA2019155/PD2019107', 'Other', '/api/v2/attachments/file/1181/', 'Barbara Pellegrini', 1181, 'PD_signed_ASrvemg.pdf', 'LIB/PCA2019155', '', 'Partnership Management Portal', 107, '2020-01-16 15:25:12.869644+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1184, 'AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT', 'Civil Society Organization', '2500220006', 'LIB/PCA2019155/PD2019106', 'Other', '/api/v2/attachments/file/1184/', 'Barbara Pellegrini', 1184, 'PD_budget_Final.pdf', 'LIB/PCA2019155', '', 'Partnership Management Portal', 106, '2020-01-16 16:32:29.554786+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1186, '', '', '', '', 'Overall Report', '/api/v2/attachments/file/1186/', '', 1186, '29-12-2019-_TPM_report_Abou_Slim.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F78%252Fdetails', 'Third Party Monitoring', NULL, '2020-01-19 07:46:34.602755+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1195, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA2019124/PD201985', 'Final Partnership Review', '/api/v2/attachments/file/1195/', 'Turkia Ben Saoud', 1195, 'Essafa_JPR_2019_SIGNED_FINALIZED.pdf', 'LIB/PCA2019124', '', 'Partnership Management Portal', 85, '2020-01-23 12:01:29.769953+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1197, '', '', '', '', '', '/api/v2/attachments/file/1197/', 'Amel Markus', 1197, 'Prog.2.pdf', '', '', '', NULL, '2020-01-26 07:26:52.997521+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1205, '', '', '', '', '', '/api/v2/attachments/file/1205/', 'Yahia Mostafa Taher Elrayes', 1205, 'PD_-_Scouts_TdcX2fL.pdf', '', '', '', NULL, '2020-02-11 15:02:07.6268+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1211, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA2019124/PD2020109', '', '/api/v2/attachments/file/1211/', 'Turkia Ben Saoud', 1211, 'PD_Essafa_2020_final_signed.pdf', 'LIB/PCA2019124', '/api/v2/interventions/109/', 'Partnership Management Portal', 109, '2020-02-25 14:01:19.647935+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1214, 'NORWEGIAN REFUGEE COUNCIL', 'Civil Society Organization', '2500233986', '', '', '/api/v2/attachments/file/1214/', 'Amel Markus', 1214, 'PCA_Amendment_English_2019_NRC_signed_by_the_SRep_eB5FMrS.pdf', 'LIB/PCA2019137', '/api/v2/partners/11/', 'Partnership Management Portal', NULL, '2020-02-26 13:54:10.173484+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1216, 'BREEZES LIBYA', 'Civil Society Organization', '2500233211', 'LIB/PCA2019147/PD201992-1', '', '/api/v2/attachments/file/1216/', 'Amel Markus', 1216, 'Programme_Document_Eng_2019_Breezes-_Amendment.docx', 'LIB/PCA2019147', '', 'Partnership Management Portal', 92, '2020-02-27 07:02:19.51701+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1219, 'INTERNATIONAL RESCUE COMMITTEE', 'Civil Society Organization', '2500240795', 'LIB/PCA2019152/PD2019103', 'Other', '/api/v2/attachments/file/1219/', 'Turkia Ben Saoud', 1219, 'PCA_legal_agreement_IRC_SIGNED_irc_WWx4jRb_FIMcMtp.pdf', 'LIB/PCA2019152', '', 'Partnership Management Portal', 103, '2020-03-02 14:34:20.226761+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1221, 'SCOUTS AND GUIDES HAY ALANDALUS TROOP', 'Civil Society Organization', '2500240112', 'LIB/PCA2019150/PD2019100-1', 'Other', '/api/v2/attachments/file/1221/', 'Turkia Ben Saoud', 1221, 'Scouts_Annex_G_signed_03ZNyj9.pdf', 'LIB/PCA2019150', '', 'Partnership Management Portal', 100, '2020-03-03 10:39:48.934402+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1225, 'AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT', 'Civil Society Organization', '2500220006', 'LIB/PCA2019155/PD2019106-1', 'Other', '/api/v2/attachments/file/1225/', 'Barbara Pellegrini', 1225, 'acted_legal_agreement_Dwk0JyI.pdf', 'LIB/PCA2019155', '', 'Partnership Management Portal', 106, '2020-03-06 13:47:52.082586+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1231, 'NORWEGIAN REFUGEE COUNCIL', 'Civil Society Organization', '2500233986', 'LIB/PCA2019137/PD201987-2', 'Other', '/api/v2/attachments/file/1231/', 'Amel Markus', 1231, 'NRC_UNICEF_Annex_C_PD_with_changes_23-3-2020.docx', 'LIB/PCA2019137', '', 'Partnership Management Portal', 87, '2020-03-23 11:01:03.881049+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1233, 'FREE FIELDS FOUNDATION', 'Civil Society Organization', '2500240179', 'LIB/PCA2019149/PD201995-1', '', '/api/v2/attachments/file/1233/', 'Soraia Abu Monassar', 1233, '3F_NCE_SRep_signature_aayid0M.pdf', 'LIB/PCA2019149', '', 'Partnership Management Portal', 95, '2020-03-25 12:04:04.912092+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1235, 'INTERSOS', 'Civil Society Organization', '2500240867', 'LIB/PCA2019153/PD2019104-3', '', '/api/v2/attachments/file/1235/', 'Barbara Pellegrini', 1235, 'feb2020_PD_signed.pdf', 'LIB/PCA2019153', '', 'Partnership Management Portal', 104, '2020-03-26 14:05:22.365136+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1238, '', '', '', '', '', '/api/v2/attachments/file/1238/', 'May Nabous', 1238, 'PCA_legal_Doc.pdf', '', '', '', NULL, '2020-04-02 11:42:59.736542+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1240, '', '', '', '', '', '/api/v2/attachments/file/1240/', 'May Nabous', 1240, 'Program_Doc._emR7ite.pdf', '', '', '', NULL, '2020-04-03 12:44:07.483197+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1242, '', '', '', '', '', '/api/v2/attachments/file/1242/', 'May Nabous', 1242, 'Program_Doc._GDhlfTU.pdf', '', '', '', NULL, '2020-04-05 09:41:53.969125+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1245, '', '', '', '', '', '/api/v2/attachments/file/1245/', 'May Nabous', 1245, 'PCA_legal_Doc_zQ7qTz9.pdf', '', '', '', NULL, '2020-04-06 15:23:15.618687+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1247, '', '', '', '', '', '/api/v2/attachments/file/1247/', 'Inaam Elbasir', 1247, 'Multaqana_HD_final.pdf', '', '', '', NULL, '2020-04-07 10:22:02.125558+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1250, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', 'LIB/PCA2019130/PD2020111', '', '/api/v2/attachments/file/1250/', 'Mohammed Ali Mohammed Husayn', 1250, 'LS_PCARC_submission_signed_002.pdf', 'LIB/PCA2019130', '/api/v2/interventions/111/', 'Partnership Management Portal', 111, '2020-04-14 12:51:26.076+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1252, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', 'LIB/PCA2019130/PD2020111', '', '/api/v2/attachments/file/1252/', 'Mohammed Ali Mohammed Husayn', 1252, 'Signed_PCA_LSO_2020_SX2nfLO.pdf', 'LIB/PCA2019130', '/api/v2/interventions/111/', 'Partnership Management Portal', 111, '2020-04-15 11:04:18.823145+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (676, 'MULTAKANA CENTER', 'Civil Society Organization', '2500236298', '', 'Code of Conduct', '/api/v2/attachments/file/676/', 'Mohamed Elmejrab', 676, 'multakana_legal_2_JCuWp0c.pdf', 'LIB/PCA2018122', '/api/v2/agreements/122/', 'Partnership Management Portal', NULL, '2018-10-16 09:36:24.892924+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1210, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA2019124/PD2020109', '', '/api/v2/attachments/file/1210/', 'Turkia Ben Saoud', 1210, 'Essafa_Annex_G_-_Signed.pdf', 'LIB/PCA2019124', '/api/v2/interventions/109/', 'Partnership Management Portal', 109, '2020-02-25 14:00:37.086661+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1164, 'MULTAKANA CENTER', 'Civil Society Organization', '2500236298', 'LIB/PCA2018122/PD201880-3', '', '/api/v2/attachments/file/1164/', 'Inaam Elbasir', 1164, 'ammendment_multaqana_agQFOAb.pdf', 'LIB/PCA2018122', '', 'Partnership Management Portal', 80, '2020-01-13 08:48:10.905612+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1167, 'MINISTRY OF SOCIAL AFFAIRS OF LIBYA', 'Government', '2500240877', '', '', '/api/v2/attachments/file/1167/', 'Turkia Ben Saoud', 1167, 'MoSA_agreement_letter_1_2LIPOzD.pdf', '', '', 'Partnership Management Portal', NULL, '2020-01-13 10:25:45.131354+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1174, 'CESVI COOPERAZIONE E SVILUPPO CESVI', 'Civil Society Organization', '2500235018', '', 'FACE form', '/api/v2/attachments/file/1174/', 'Nayroz Alnaemi', 1174, 'FACE_124_CESVI_Liquidation_1_VmImAk2.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Fap%252Fspot-checks%252F22%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-01-14 11:16:18.047201+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1182, 'AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT', 'Civil Society Organization', '2500220006', 'LIB/PCA2019155/PD2019107', 'Other', '/api/v2/attachments/file/1182/', 'Barbara Pellegrini', 1182, 'acted_legal_agreement.pdf', 'LIB/PCA2019155', '', 'Partnership Management Portal', 107, '2020-01-16 15:25:33.38444+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1187, '', '', '', '', 'Overall Report', '/api/v2/attachments/file/1187/', '', 1187, '29-12-2019-_TPM_report_Janzour_NJILA_Recovered.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F78%252Fdetails', 'Third Party Monitoring', NULL, '2020-01-19 07:46:50.382205+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1198, 'AFAQ FOUNDATION FOR RIGHTS AND DEVELOPMENT', 'Civil Society Organization', '2500238136', 'LIB/PCA2019146/PD201994', 'Other', '/api/v2/attachments/file/1198/', 'Amel Markus', 1198, 'Prog_Report_Q_2.pdf', 'LIB/PCA2019146', '', 'Partnership Management Portal', 94, '2020-01-26 07:28:03.839977+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1206, '', '', '', '', '', '/api/v2/attachments/file/1206/', 'Yahia Mostafa Taher Elrayes', 1206, 'PD_-_Scouts_jXQgBxf.pdf', '', '', '', NULL, '2020-02-11 15:03:49.653269+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1212, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA2019124/PD2020109', 'Other', '/api/v2/attachments/file/1212/', 'Turkia Ben Saoud', 1212, 'Essafa_Final_Budget_2020.pdf', 'LIB/PCA2019124', '', 'Partnership Management Portal', 109, '2020-02-25 14:02:04.795689+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1222, 'SCOUTS AND GUIDES HAY ALANDALUS TROOP', 'Civil Society Organization', '2500240112', 'LIB/PCA2019150/PD2019100-1', 'Other', '/api/v2/attachments/file/1222/', 'Turkia Ben Saoud', 1222, 'PCA_-_Scouts_SIGNED.pdf', 'LIB/PCA2019150', '', 'Partnership Management Portal', 100, '2020-03-03 10:40:10.673377+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1226, 'AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT', 'Civil Society Organization', '2500220006', 'LIB/PCA2019155/PD2019106-1', 'Other', '/api/v2/attachments/file/1226/', 'Barbara Pellegrini', 1226, 'Attachment_I__II_-_Partner_Declaration_and_Profile_Signed.pdf', 'LIB/PCA2019155', '', 'Partnership Management Portal', 106, '2020-03-06 13:50:12.828905+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1236, 'INTERSOS', 'Civil Society Organization', '2500240867', 'LIB/PCA2019153/PD2019104-4', '', '/api/v2/attachments/file/1236/', 'Barbara Pellegrini', 1236, 'amendment_form_28feb_PD_signed_with_dates_UmGcqW0.pdf', 'LIB/PCA2019153', '', 'Partnership Management Portal', 104, '2020-03-26 15:15:39.418574+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1243, '', '', '', '', '', '/api/v2/attachments/file/1243/', 'May Nabous', 1243, 'Program_Doc._15rbef3.pdf', '', '', '', NULL, '2020-04-05 09:42:57.566216+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1246, 'LIBYAN RED CRESCENT SOCIETY', 'Civil Society Organization', '2500238097', '', '', '/api/v2/attachments/file/1246/', 'May Nabous', 1246, 'PCA_legal_Doc_TWQ0KGw.pdf', 'LIB/PCA2020156', '/api/v2/agreements/156/', 'Partnership Management Portal', NULL, '2020-04-06 15:25:56.986384+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1248, 'MULTAKANA CENTER', 'Civil Society Organization', '2500236298', 'LIB/PCA2019126/HPD2020110', 'Other', '/api/v2/attachments/file/1248/', 'Inaam Elbasir', 1248, 'Multaqana_HD_final_7HOmfSy.pdf', 'LIB/PCA2019126', '', 'Partnership Management Portal', 110, '2020-04-07 10:22:18.175256+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1251, '', '', '', '', '', '/api/v2/attachments/file/1251/', 'Mohammed Ali Mohammed Husayn', 1251, 'Signed_PCA_LSO_2020.pdf', '', '', '', NULL, '2020-04-14 12:54:02.212327+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1254, 'NORWEGIAN REFUGEE COUNCIL', 'Civil Society Organization', '2500233986', 'LIB/PCA2019137/PD201987-2', 'Other', '/api/v2/attachments/file/1254/', 'Amel Markus', 1254, 'NRC_Amendment_Annex_G._Signed_itovmUm.pdf', 'LIB/PCA2019137', '', 'Partnership Management Portal', 87, '2020-04-21 07:50:34.097698+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1168, 'MINISTRY OF SOCIAL AFFAIRS OF LIBYA', 'Government', '2500240877', '', '', '/api/v2/attachments/file/1168/', 'Turkia Ben Saoud', 1168, 'MoSA_Signed_Workplan.pdf', '', '', 'Partnership Management Portal', NULL, '2020-01-13 10:28:32.168358+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1175, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', '', 'FACE form', '/api/v2/attachments/file/1175/', 'Nayroz Alnaemi', 1175, 'FACE_110_Essafa_Liquidation_7NCENPN.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Fap%252Fspot-checks%252F23%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-01-14 11:23:59.977888+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1188, '', '', '', '', 'Overall Report', '/api/v2/attachments/file/1188/', '', 1188, '29-12-2019-BF_report_Janzour_NJILA.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F78%252Fdetails', 'Third Party Monitoring', NULL, '2020-01-19 07:47:07.29029+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1199, 'BREEZES LIBYA', 'Civil Society Organization', '2500233211', 'LIB/PCA2019147/PD201992', 'Progress Report', '/api/v2/attachments/file/1199/', 'Amel Markus', 1199, 'Standard_Quarterly_Progress_Report_Q1.pdf', 'LIB/PCA2019147', '', 'Partnership Management Portal', 92, '2020-01-26 07:31:20.482725+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1207, '', '', '', '', '', '/api/v2/attachments/file/1207/', 'Yahia Mostafa Taher Elrayes', 1207, 'Authorized_officer_new_email.docx', '', '', '', NULL, '2020-02-11 15:06:51.508318+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1227, 'AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT', 'Civil Society Organization', '2500220006', 'LIB/PCA2019155/PD2019106-1', 'Other', '/api/v2/attachments/file/1227/', 'Barbara Pellegrini', 1227, 'Attachments_-_Partner_Declaration_documents.pdf', 'LIB/PCA2019155', '', 'Partnership Management Portal', 106, '2020-03-06 13:50:35.100472+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1244, 'LIBYAN RED CRESCENT SOCIETY', 'Civil Society Organization', '2500238097', 'LIB/PCA2020156/PD2020108', '', '/api/v2/attachments/file/1244/', 'May Nabous', 1244, 'Program_Doc._7p7KlH1.pdf', 'LIB/PCA2020156', '/api/v2/interventions/108/', 'Partnership Management Portal', 108, '2020-04-05 09:45:48.613874+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1249, 'AL MOBADR ORGANIZATION FOR DEVELOPMENT AND CAPACITY BUILDING', 'Civil Society Organization', '2500237369', 'LIB/PCA2019141/PD201989-1', 'Final Partnership Review', '/api/v2/attachments/file/1249/', 'Farah Ogbi', 1249, 'Final_Partnership_Review_-_Almobader.pdf', 'LIB/PCA2019141', '', 'Partnership Management Portal', 89, '2020-04-07 10:59:59.435625+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1189, '', '', '', '', 'Overall Report', '/api/v2/attachments/file/1189/', '', 1189, '31-12-2019-_BF_report_Al_Zawiya.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F78%252Fdetails', 'Third Party Monitoring', NULL, '2020-01-19 07:47:26.263413+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1200, 'BREEZES LIBYA', 'Civil Society Organization', '2500233211', 'LIB/PCA2019147/PD201992', 'Progress Report', '/api/v2/attachments/file/1200/', 'Amel Markus', 1200, 'Standard_Quarterly_Progress_Report_Q2.pdf', 'LIB/PCA2019147', '', 'Partnership Management Portal', 92, '2020-01-26 07:32:00.893457+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1208, 'SCOUTS AND GUIDES HAY ALANDALUS TROOP', 'Civil Society Organization', '2500240112', '', '', '/api/v2/attachments/file/1208/', 'Yahia Mostafa Taher Elrayes', 1208, 'PD_-_Scouts_o9YMZI7.pdf', 'LIB/PCA2019150', '/api/v2/partners/10/', 'Partnership Management Portal', NULL, '2020-02-11 15:07:14.597712+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1190, '', '', '', '', 'Overall Report', '/api/v2/attachments/file/1190/', '', 1190, '31-12-2019-_TPM_report_AL_Zawiya.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F78%252Fdetails', 'Third Party Monitoring', NULL, '2020-01-19 07:47:44.833081+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1201, 'EKRAA ASSEMBLY FOR DEVELOPMENT AND EDUCATION', 'Civil Society Organization', '2500233196', 'LIB/PCA2019144/PD201990', 'Progress Report', '/api/v2/attachments/file/1201/', 'Amel Markus', 1201, 'Standard_Quarterly_Progress_Report_Q1.docx', 'LIB/PCA2019144', '', 'Partnership Management Portal', 90, '2020-01-26 07:55:33.4734+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1191, '', '', '', '', 'Overall Report', '/api/v2/attachments/file/1191/', '', 1191, 'BF_report_Tariq_Al_Seka_reviewed_002.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F78%252Fdetails', 'Third Party Monitoring', NULL, '2020-01-19 07:51:08.435638+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1202, 'NORWEGIAN REFUGEE COUNCIL', 'Civil Society Organization', '2500233986', 'LIB/PCA2019137/PD201987-1', 'Progress Report', '/api/v2/attachments/file/1202/', 'Amel Markus', 1202, 'Certified-_NRC_Progress_Report-_Q1.pdf', 'LIB/PCA2019137', '', 'Partnership Management Portal', 87, '2020-01-26 07:59:44.573806+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1192, '', '', '', '', 'Overall Report', '/api/v2/attachments/file/1192/', '', 1192, 'TPM_report_Tariq_Al_Seka.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F78%252Fdetails', 'Third Party Monitoring', NULL, '2020-01-19 07:51:33.483536+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1141, '', '', '', '', '', '/api/v2/attachments/file/1141/', 'Muna Fathi Khalifa Garamalli', 1141, 'Afaq_PD_cW4Olcc.PDF', '', '', '', NULL, '2019-12-22 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (558, 'AFAQ FOUNDATION FOR RIGHTS AND DEVELOPMENT', 'Civil Society Organization', '2500238136', 'LIB/PCA2018115/PD201870', 'Correspondence', '/api/v2/attachments/file/558/', '', 558, '01._MoM.pdf', 'LIB/PCA2018115', '', 'Partnership Management Portal', 70, '2018-05-25 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (837, 'NOOR ALHAYAT CHARITY ASSOCIATION', 'Civil Society Organization', '2500238760', '', 'Signed Agreement', '/api/v2/attachments/file/837/', 'Mohamed Elmejrab', 837, 'Noor_Alhayat_PCA_2019-2020.pdf', 'LIB/PCA2019136', '/api/v2/agreements/136/', 'Partnership Management Portal', NULL, '2019-01-15 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (809, '', '', '', '', '', '/api/v2/attachments/file/809/', 'Mohamed Elmejrab', 809, 'A.01._STACO_Amendment_-_Annex_G._PRC_Submission.pdf', '', '', '', NULL, '2018-12-18 00:00:00+00'); @@ -6367,11 +6510,11 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (543, 'ALTADAMON FOR RE INSERT INTO [[schema]].attachments_attachmentflat VALUES (544, 'ALTADAMON FOR REHABILITATION AND PSYCOSOCIAL SUPPORT', 'Civil Society Organization', '2500238342', 'LIB/PCA2018114/PD201869', 'Other', '/api/v2/attachments/file/544/', '', 544, 'Al_tadamon_-_Mandotory_form.pdf', 'LIB/PCA2018114', '', 'Partnership Management Portal', 69, '2018-05-04 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (373, 'EKRAA ASSEMBLY FOR DEVELOPMENT AND EDUCATION', 'Civil Society Organization', '2500233196', 'LIB/PCA201707/PD201858-1', 'Other', '/api/v2/attachments/file/373/', '', 373, '09._Partner_Registration_Certificate.pdf', 'LIB/PCA201743', '', 'Partnership Management Portal', 58, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (461, 'LIBYAN ASSOCIATION FOR YOUTH AND DEVELOPMENT', 'Civil Society Organization', '2500235600', 'LIB/PCA201704/PD201704-2', 'Other', '/api/v2/attachments/file/461/', '', 461, '04._Annex_G_Submission_Form.pdf', 'LIB/PCA201740', '', 'Partnership Management Portal', 11, '2018-03-30 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (1101, '', '', '', '', '', '/api/v2/attachments/file/1101/', 'Inaam Elbasir', 1101, 'Reference_Doc_5_Annex_G_PRC_Review_1final23091.pdf', '', '', '', NULL, '2019-10-24 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (466, 'LIBYAN ASSOCIATION FOR YOUTH AND DEVELOPMENT', 'Civil Society Organization', '2500235600', 'LIB/PCA201704/PD201704-2', 'Other', '/api/v2/attachments/file/466/', '', 466, '09._Consept_Note.pdf', 'LIB/PCA201740', '', 'Partnership Management Portal', 11, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (560, 'AFAQ FOUNDATION FOR RIGHTS AND DEVELOPMENT', 'Civil Society Organization', '2500238136', 'LIB/PCA2018115/PD201870', 'Correspondence', '/api/v2/attachments/file/560/', '', 560, '05._PRC_Signature_Emails.pdf', 'LIB/PCA2018115', '', 'Partnership Management Portal', 70, '2018-05-25 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (550, 'LIBYAN ASSOCIATION FOR YOUTH AND DEVELOPMENT', 'Civil Society Organization', '2500235600', 'LIB/PCA201704/PD201704-2', 'Other', '/api/v2/attachments/file/550/', '', 550, 'بنك_النيجر_002.pdf', 'LIB/PCA201740', '', 'Partnership Management Portal', 11, '2018-05-10 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (541, 'ALTADAMON FOR REHABILITATION AND PSYCOSOCIAL SUPPORT', 'Civil Society Organization', '2500238342', 'LIB/PCA2018114/PD201869', 'Other', '/api/v2/attachments/file/541/', '', 541, 'Mandatory_Information.pdf', 'LIB/PCA2018114', '', 'Partnership Management Portal', 69, '2018-05-04 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1157, '', '', '', '', '', '/api/v2/attachments/file/1157/', 'Nayroz Alnaemi', 1157, 'FACE_82_Multakana_Liquidation_1.pdf', '', '', '', NULL, '2019-12-31 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (539, 'ALTADAMON FOR REHABILITATION AND PSYCOSOCIAL SUPPORT', 'Civil Society Organization', '2500238342', 'LIB/PCA2018114/PD201869', 'Other', '/api/v2/attachments/file/539/', '', 539, 'Annex_F-Templates_for_Direct_Selection.pdf', 'LIB/PCA2018114', '', 'Partnership Management Portal', 69, '2018-05-04 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (540, 'ALTADAMON FOR REHABILITATION AND PSYCOSOCIAL SUPPORT', 'Civil Society Organization', '2500238342', 'LIB/PCA2018114/PD201869', 'Other', '/api/v2/attachments/file/540/', '', 540, 'Approved_budget.pdf', 'LIB/PCA2018114', '', 'Partnership Management Portal', 69, '2018-05-04 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (553, 'LIBYAN ASSOCIATION FOR YOUTH AND DEVELOPMENT', 'Civil Society Organization', '2500235600', 'LIB/PCA201704/PD201704-2', 'Other', '/api/v2/attachments/file/553/', '', 553, 'PD_-_Summary_of_Changes_002_t4Q6FkE.docx', 'LIB/PCA201740', '', 'Partnership Management Portal', 11, '2018-05-24 00:00:00+00'); @@ -6380,6 +6523,7 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (554, 'LIBYAN ASSOCIATI INSERT INTO [[schema]].attachments_attachmentflat VALUES (549, 'LIBYAN ASSOCIATION FOR YOUTH AND DEVELOPMENT', 'Civil Society Organization', '2500235600', 'LIB/PCA201704/PD201704-2', 'Other', '/api/v2/attachments/file/549/', '', 549, 'PD_-_Summary_of_Changes_002.docx', 'LIB/PCA201740', '', 'Partnership Management Portal', 11, '2018-05-10 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (546, 'EKRAA ASSEMBLY FOR DEVELOPMENT AND EDUCATION', 'Civil Society Organization', '2500233196', 'LIB/PCA201707/PD201858-1', 'Other', '/api/v2/attachments/file/546/', '', 546, 'PD_-_Summary_of_Changes_002.docx', 'LIB/PCA201743', '', 'Partnership Management Portal', 58, '2018-05-09 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (557, 'AFAQ FOUNDATION FOR RIGHTS AND DEVELOPMENT', 'Civil Society Organization', '2500238136', 'LIB/PCA2018115/PD201870', 'Signed PD/SSFA', '/api/v2/attachments/file/557/', '', 557, '02._Annex_C_Program_Document.pdf', 'LIB/PCA2018115', '/api/v2/interventions/70/', 'Partnership Management Portal', 70, '2018-05-25 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (842, '', '', '', '', '', '/api/v2/attachments/file/842/', 'Mohamed Elmejrab', 842, 'NRC_-_PCA.pdf', '', '', '', NULL, '2019-01-23 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (576, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201862-1', 'Report', '/api/v2/attachments/file/576/', '', 576, '18-01-21-Emdad-WASH-Salim-Elshourfi-School-Sirte-LV.pdf', 'LIB/PCA2018113', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F5%252Fdetails', 'Third Party Monitoring', 62, '2018-06-06 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (631, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA201702/PD201867-1', 'Report', '/api/v2/attachments/file/631/', 'Ricardo Adelgardi', 631, '18-06-25-ESSAFA-CP-HQVisit-Tripoli-HA.pdf', 'LIB/PCA201734', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F8%252Fdetails', 'Third Party Monitoring', 67, '2018-07-02 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (666, '', '', '', '', '', '/api/v2/attachments/file/666/', 'Mohamed Elmejrab', 666, 'Al_Nahla_request_for_NCE.PDF', '', '', '', NULL, '2018-10-02 00:00:00+00'); @@ -6389,8 +6533,8 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (573, 'INSTITUTE FOR EC INSERT INTO [[schema]].attachments_attachmentflat VALUES (571, 'INSTITUTE FOR ECONOMICS AND PEACE', 'Civil Society Organization', '2500238223', 'LIB/PCA2018111/PD201860', 'Other', '/api/v2/attachments/file/571/', '', 571, '08._Implementing_Partner_Information_Mandatory_Form.pdf', 'LIB/PCA2018111', '', 'Partnership Management Portal', 60, '2018-06-05 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (570, 'INSTITUTE FOR ECONOMICS AND PEACE', 'Civil Society Organization', '2500238223', 'LIB/PCA2018111/PD201860', 'Other', '/api/v2/attachments/file/570/', '', 570, '09._Partner_Registration_Certificate_c3kiu1g.pdf', 'LIB/PCA2018111', '', 'Partnership Management Portal', 60, '2018-06-05 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (57, 'SHAIK TAHIR AZZAWI CHARITY ORGANIZATION', 'Civil Society Organization', '2500231352', '', 'Core Values Assessment', '/api/v2/attachments/file/57/', '', 57, '07._Annex_E_Partner_Declaration_FormSHAIK_TAHIR_AZZAWI_CHARITY_ORGANIZATION.pdf', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (676, 'MULTAKANA CENTER', 'Civil Society Organization', '2500236298', '', 'Signed Agreement', '/api/v2/attachments/file/676/', 'Mohamed Elmejrab', 676, '', 'LIB/PCA2018122', '/api/v2/agreements/122/', 'Partnership Management Portal', NULL, '2018-10-16 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (826, 'MULTAKANA CENTER', 'Civil Society Organization', '2500236298', '', 'Signed Agreement', '/api/v2/attachments/file/826/', 'Mohamed Elmejrab', 826, 'Multakana_PCA_2019-2020.pdf', 'LIB/PCA2019126', '/api/v2/agreements/126/', 'Partnership Management Portal', NULL, '2019-01-13 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (26, '', '', '2300061550', '', 'Core Values Assessment', '/api/v2/attachments/file/26/', '', 26, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (637, 'NOOR ALHAYAT CHARITY ASSOCIATION', 'Civil Society Organization', '2500238760', '', 'Signed Agreement', '/api/v2/attachments/file/637/', '', 637, '', 'LIB/PCA2018117', '/api/v2/agreements/117/', 'Partnership Management Portal', NULL, '2018-07-31 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (572, 'INSTITUTE FOR ECONOMICS AND PEACE', 'Civil Society Organization', '2500238223', 'LIB/PCA2018111/PD201860', 'Other', '/api/v2/attachments/file/572/', '', 572, '06._Annex_F_Direct_Selection_Form.pdf', 'LIB/PCA2018111', '', 'Partnership Management Portal', 60, '2018-06-05 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (536, 'ALTADAMON FOR REHABILITATION AND PSYCOSOCIAL SUPPORT', 'Civil Society Organization', '2500238342', '', 'Signed Agreement', '/api/v2/attachments/file/536/', '', 536, 'Legal_document.pdf', 'LIB/PCA2018114', '/api/v2/agreements/114/', 'Partnership Management Portal', NULL, '2018-05-04 00:00:00+00'); @@ -6398,6 +6542,7 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (644, 'CESVI COOPERAZIO INSERT INTO [[schema]].attachments_attachmentflat VALUES (567, 'AFAQ FOUNDATION FOR RIGHTS AND DEVELOPMENT', 'Civil Society Organization', '2500238136', 'LIB/PCA2018115/PD201870', 'Other', '/api/v2/attachments/file/567/', '', 567, '14._PCALIBYAEDU201719_All_Documents.pdf', 'LIB/PCA2018115', '', 'Partnership Management Portal', 70, '2018-05-25 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (574, 'INSTITUTE FOR ECONOMICS AND PEACE', 'Civil Society Organization', '2500238223', 'LIB/PCA2018111/PD201860', 'Other', '/api/v2/attachments/file/574/', '', 574, '03._Detaild_Budget_mvmuPKe.pdf', 'LIB/PCA2018111', '', 'Partnership Management Portal', 60, '2018-06-05 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (575, 'INSTITUTE FOR ECONOMICS AND PEACE', 'Civil Society Organization', '2500238223', 'LIB/PCA2018111/PD201860', 'Correspondence', '/api/v2/attachments/file/575/', '', 575, '01._MoM_jXEqUNJ.pdf', 'LIB/PCA2018111', '', 'Partnership Management Portal', 60, '2018-06-05 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (670, '', '', '', '', '', '/api/v2/attachments/file/670/', 'Mohamed Elmejrab', 670, '', '', '', '', NULL, '2018-10-16 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (563, 'AFAQ FOUNDATION FOR RIGHTS AND DEVELOPMENT', 'Civil Society Organization', '2500238136', 'LIB/PCA2018115/PD201870', 'Other', '/api/v2/attachments/file/563/', '', 563, '09._Bank_Account.pdf', 'LIB/PCA2018115', '', 'Partnership Management Portal', 70, '2018-05-25 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (565, 'AFAQ FOUNDATION FOR RIGHTS AND DEVELOPMENT', 'Civil Society Organization', '2500238136', 'LIB/PCA2018115/PD201870', 'Other', '/api/v2/attachments/file/565/', '', 565, '11._Annex_Schools_List_in_Sebratha.pdf', 'LIB/PCA2018115', '', 'Partnership Management Portal', 70, '2018-05-25 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (566, 'AFAQ FOUNDATION FOR RIGHTS AND DEVELOPMENT', 'Civil Society Organization', '2500238136', 'LIB/PCA2018115/PD201870', 'Other', '/api/v2/attachments/file/566/', '', 566, '12._Afaq_Organogram.pdf', 'LIB/PCA2018115', '', 'Partnership Management Portal', 70, '2018-05-25 00:00:00+00'); @@ -6419,7 +6564,6 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (649, 'SHAIK TAHIR AZZA INSERT INTO [[schema]].attachments_attachmentflat VALUES (645, 'CESVI COOPERAZIONE E SVILUPPO CESVI', 'Civil Society Organization', '2500235018', 'LIB/PCA201716/PD201865', 'Report', '/api/v2/attachments/file/645/', '', 645, 'CESVI_-_update_on_missing_visits.docx', 'LIB/PCA201755', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F10%252Fdetails', 'Third Party Monitoring', 65, '2018-08-14 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (587, 'ALNAHLA ORGANIZATION FOR EDUCATION AWARENESS AND FAMILY AFFAIRS', 'Civil Society Organization', '2500231802', 'LIB/PCA201717/PD201866-1', 'Report', '/api/v2/attachments/file/587/', '', 587, '18-01-09-Alnahla-CP-Janzour-Abtaal-Alhijara-School-LV.pdf', 'LIB/PCA201756', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F2%252Fdetails', 'Third Party Monitoring', 66, '2018-06-07 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (588, 'ALNAHLA ORGANIZATION FOR EDUCATION AWARENESS AND FAMILY AFFAIRS', 'Civil Society Organization', '2500231802', 'LIB/PCA201717/PD201866-1', 'Report', '/api/v2/attachments/file/588/', '', 588, '18-01-09-Alnahla-CP-Alghiran-Algharbeya-School-Alseraj-LV.pdf', 'LIB/PCA201756', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F2%252Fdetails', 'Third Party Monitoring', 66, '2018-06-07 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (85, 'LIBYA WOMEN S UNION TRIPOLI', 'Civil Society Organization', '2500236520', 'LIB/SSFA201705/SSFA201703', 'Signed PD/SSFA', '/api/v2/attachments/file/85/', '', 85, '02.Letterhead.pdf', 'LIB/SSFA201741', '/api/v2/interventions/17/', 'Partnership Management Portal', 17, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (646, 'CESVI COOPERAZIONE E SVILUPPO CESVI', 'Civil Society Organization', '2500235018', 'LIB/PCA201716/PD201865', 'Report', '/api/v2/attachments/file/646/', '', 646, 'CESVI_-_update_on_missing_visits.docx', 'LIB/PCA201755', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F10%252Fdetails', 'Third Party Monitoring', 65, '2018-08-14 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (628, 'ITALIAN COUNCIL FOR REFUGEES', 'Civil Society Organization', '2500232640', 'LIB/PCA201712/PD201872', 'Partnership Review', '/api/v2/attachments/file/628/', '', 628, 'Annex_I.pdf', 'LIB/PCA201750', '', 'Partnership Management Portal', 72, '2018-06-09 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (629, 'ITALIAN COUNCIL FOR REFUGEES', 'Civil Society Organization', '2500232640', 'LIB/PCA201712/PD201872', 'Other', '/api/v2/attachments/file/629/', '', 629, 'Detailed_Budget.pdf', 'LIB/PCA201750', '', 'Partnership Management Portal', 72, '2018-06-09 00:00:00+00'); @@ -6444,8 +6588,10 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (43, 'INSTITUTE FOR ECO INSERT INTO [[schema]].attachments_attachmentflat VALUES (44, 'INTERNATIONAL MEDICAL CORPS LIBYA', 'Civil Society Organization', '2500235121', '', 'Core Values Assessment', '/api/v2/attachments/file/44/', '', 44, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (52, 'MINES ADVISORY GROUP (MAG)', 'Civil Society Organization', '2300059510', '', 'Core Values Assessment', '/api/v2/attachments/file/52/', '', 52, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (657, 'SHAIK TAHIR AZZAWI CHARITY ORGANIZATION', 'Civil Society Organization', '2500231352', 'LIB/PCA201710/PD201774', 'Other', '/api/v2/attachments/file/657/', '', 657, '08._PD201774_-_Ministry_of_Education_Letter.pdf', 'LIB/PCA201748', '', 'Partnership Management Portal', 74, '2018-08-15 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (811, '', '', '', '', '', '/api/v2/attachments/file/811/', 'Mohamed Elmejrab', 811, 'A.02._STACO_Amendment_-_Minutes_of_Meeting.pdf', '', '', '', NULL, '2018-12-18 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (25, '', '', '2300028024', '', 'Core Values Assessment', '/api/v2/attachments/file/25/', '', 25, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (652, 'SHAIK TAHIR AZZAWI CHARITY ORGANIZATION', 'Civil Society Organization', '2500231352', 'LIB/PCA201710/PD201774', 'Other', '/api/v2/attachments/file/652/', '', 652, '03._PD201774_-_Detailed_Budget.pdf', 'LIB/PCA201748', '', 'Partnership Management Portal', 74, '2018-08-15 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (85, 'LIBYA WOMEN S UNION TRIPOLI', 'Civil Society Organization', '2500236520', 'LIB/SSFA201705/SSFA201703', 'Signed PD/SSFA', '/api/v2/attachments/file/85/', '', 85, '02.Letterhead.pdf', 'LIB/SSFA201741', '/api/v2/interventions/17/', 'Partnership Management Portal', 17, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (606, 'ASSOCIATION KOUDOURATI', 'Civil Society Organization', '2500237271', 'LIB/SSFA201719', 'Report', '/api/v2/attachments/file/606/', '', 606, '18-01-02-Quddraty-Quddraty-Centre-Sirte-LV.docx', 'LIB/SSFA201790', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F1%252Fdetails', 'Third Party Monitoring', 57, '2018-06-07 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (59, 'THE INTERNATIONAL FOUNDATION FOR CHILD AND WOMEN RIGHTS', 'Civil Society Organization', '2500230439', '', 'Core Values Assessment', '/api/v2/attachments/file/59/', '', 59, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (63, 'BREEZES LIBYA', 'Civil Society Organization', '2500233211', '', 'Assessment Report', '/api/v2/attachments/file/63/', '', 63, 'UNICEF_Libya_Breezes_-_Micro-assessment_report_-_final.pdf', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); @@ -6473,9 +6619,9 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (70, 'EMDAD CHARITY SOC INSERT INTO [[schema]].attachments_attachmentflat VALUES (320, 'CESVI COOPERAZIONE E SVILUPPO CESVI', 'Civil Society Organization', '2500235018', 'LIB/PCA201716/PD201865', 'Other', '/api/v2/attachments/file/320/', '', 320, '11._PCA_Legal_Agreement.pdf', 'LIB/PCA201755', '', 'Partnership Management Portal', 65, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (323, 'SHAIK TAHIR AZZAWI CHARITY ORGANIZATION', 'Civil Society Organization', '2500231352', 'LIB/PCA201710/SHPD201864', 'Other', '/api/v2/attachments/file/323/', '', 323, '07._Implementing_Partner_Information_Mandatory_Form.pdf', 'LIB/PCA201748', '', 'Partnership Management Portal', 64, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (324, 'SHAIK TAHIR AZZAWI CHARITY ORGANIZATION', 'Civil Society Organization', '2500231352', 'LIB/PCA201710/SHPD201864', 'Other', '/api/v2/attachments/file/324/', '', 324, '03._Detaild_Budget.pdf', 'LIB/PCA201748', '', 'Partnership Management Portal', 64, '2018-03-30 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (812, '', '', '', '', '', '/api/v2/attachments/file/812/', 'Mohamed Elmejrab', 812, 'A.02._STACO_Amendment_-_Minutes_of_Meeting_sqPlnN1.pdf', '', '', '', NULL, '2018-12-18 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (54, 'NATIONAL CENTRE OF DISEASE CONTROL', 'Government', '2500235812', '', 'Core Values Assessment', '/api/v2/attachments/file/54/', '', 54, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (56, 'ORGANIZATION FOR PEACE AND DEVELOPMENT', 'Civil Society Organization', '2500236521', '', 'Core Values Assessment', '/api/v2/attachments/file/56/', '', 56, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (456, 'BREEZES LIBYA', 'Civil Society Organization', '2500233211', 'LIB/PCA201713/PD201705', 'Other', '/api/v2/attachments/file/456/', '', 456, 'Detaild_Budget.pdf', 'LIB/PCA201752', '', 'Partnership Management Portal', 14, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (71, 'LIBYAN RED CRESCENT SOCIETY', 'Civil Society Organization', '2500238097', 'LIB/PCA2018112/PD201861', 'PRC Review', '/api/v2/attachments/file/71/', '', 71, '04._Annex_G_Submission_Form.pdf', 'LIB/PCA2018112', '/api/v2/interventions/61/', 'Partnership Management Portal', 61, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (73, 'INSTITUTE FOR ECONOMICS AND PEACE', 'Civil Society Organization', '2500238223', 'LIB/PCA2018111/PD201860', 'PRC Review', '/api/v2/attachments/file/73/', '', 73, '04._Annex_G_Submission_Form_fpJafER.pdf', 'LIB/PCA2018111', '/api/v2/interventions/60/', 'Partnership Management Portal', 60, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (75, 'AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT', 'Civil Society Organization', '2500220006', 'LIB/PCA2018109/PD201859', 'PRC Review', '/api/v2/attachments/file/75/', '', 75, '04._Annex_G_Submission_Form_wV1uP8n.pdf', 'LIB/PCA2018109', '/api/v2/interventions/59/', 'Partnership Management Portal', 59, '2018-03-29 00:00:00+00'); @@ -6497,6 +6643,7 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (681, '', '', '', '', ' INSERT INTO [[schema]].attachments_attachmentflat VALUES (97, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/SSFA201709/SSFA201702', 'Signed PD/SSFA', '/api/v2/attachments/file/97/', '', 97, '02._Letterhead.pdf', 'LIB/SSFA201746', '/api/v2/interventions/9/', 'Partnership Management Portal', 9, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (91, 'BREEZES LIBYA', 'Civil Society Organization', '2500233211', 'LIB/PCA201713/PD201705', 'Signed PD/SSFA', '/api/v2/attachments/file/91/', '', 91, 'Annex_C_Program_Document.pdf', 'LIB/PCA201752', '/api/v2/interventions/14/', 'Partnership Management Portal', 14, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (92, 'BOY SCOUTS OF LIBYA. AL KISHAFAH', 'Civil Society Organization', '2500220005', 'LIB/PCA201708/PD201713', 'PRC Review', '/api/v2/attachments/file/92/', '', 92, 'MoM_and_recomendation_Letter_SCOUTS_rBtNQKl.pdf', 'LIB/PCA201744', '/api/v2/interventions/13/', 'Partnership Management Portal', 13, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (889, '', '', '', '', '', '/api/v2/attachments/file/889/', 'Mohamed Elmejrab', 889, 'Al_Mobadr_Detailed_Budget.pdf', '', '', '', NULL, '2019-03-05 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (100, 'SHAIK TAHIR AZZAWI CHARITY ORGANIZATION', 'Civil Society Organization', '2500231352', 'LIB/PCA201710/PD201702', 'PRC Review', '/api/v2/attachments/file/100/', '', 100, 'Annex_G_Submission_Form.pdf', 'LIB/PCA201748', '/api/v2/interventions/7/', 'Partnership Management Portal', 7, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (103, 'ITALIAN COUNCIL FOR REFUGEES', 'Civil Society Organization', '2500232640', 'LIB/PCA201712/PD201701', 'Signed PD/SSFA', '/api/v2/attachments/file/103/', '', 103, 'CIR_PME.pdf', 'LIB/PCA201750', '/api/v2/interventions/6/', 'Partnership Management Portal', 6, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (310, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201862-1', 'Other', '/api/v2/attachments/file/310/', '', 310, '06._Amended_Contruction_Agreement.pdf', 'LIB/PCA2018113', '', 'Partnership Management Portal', 62, '2018-03-30 00:00:00+00'); @@ -6518,6 +6665,7 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (309, 'EMDAD CHARITY SO INSERT INTO [[schema]].attachments_attachmentflat VALUES (360, 'AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT', 'Civil Society Organization', '2500220006', 'LIB/PCA2018109/PD201859', 'Other', '/api/v2/attachments/file/360/', '', 360, '07._Implementing_Partner_Information_Mandatory_Form.pdf', 'LIB/PCA2018109', '', 'Partnership Management Portal', 59, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (361, 'AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT', 'Civil Society Organization', '2500220006', 'LIB/PCA2018109/PD201859', 'Other', '/api/v2/attachments/file/361/', '', 361, '08._Bank_Account.pdf', 'LIB/PCA2018109', '', 'Partnership Management Portal', 59, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (363, 'AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT', 'Civil Society Organization', '2500220006', 'LIB/PCA2018109/PD201859', 'Other', '/api/v2/attachments/file/363/', '', 363, '10._Memo_Acted_and_Impact.pdf', 'LIB/PCA2018109', '', 'Partnership Management Portal', 59, '2018-03-30 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (813, '', '', '', '', '', '/api/v2/attachments/file/813/', 'Mohamed Elmejrab', 813, 'A.02._STACO_Amendment_-_Minutes_of_Meeting_Z2xhDsn.pdf', '', '', '', NULL, '2018-12-18 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (699, 'MULTAKANA CENTER', 'Civil Society Organization', '2500236298', 'LIB/PCA2018122/PD201880', 'PRC Review', '/api/v2/attachments/file/699/', '', 699, 'Multakana_MoM.pdf', 'LIB/PCA2018122', '/api/v2/interventions/80/', 'Partnership Management Portal', 80, '2018-12-10 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (306, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201862-1', 'Other', '/api/v2/attachments/file/306/', '', 306, '01._MoM_v1xLGkZ.pdf', 'LIB/PCA2018113', '', 'Partnership Management Portal', 62, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (870, '', '', '', '', '', '/api/v2/attachments/file/870/', 'Mohamed Elmejrab', 870, 'Emdad_PCA_2019-2020_CPD.pdf', '', '', '', NULL, '2019-02-25 00:00:00+00'); @@ -6528,7 +6676,6 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (838, '', '', '', '', ' INSERT INTO [[schema]].attachments_attachmentflat VALUES (331, 'SHAIK TAHIR AZZAWI CHARITY ORGANIZATION', 'Civil Society Organization', '2500231352', 'LIB/PCA201710/SHPD201864', 'Other', '/api/v2/attachments/file/331/', '', 331, '02._Annex_C_Program_Document.pdf', 'LIB/PCA201748', '', 'Partnership Management Portal', 64, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (330, 'SHAIK TAHIR AZZAWI CHARITY ORGANIZATION', 'Civil Society Organization', '2500231352', 'LIB/PCA201710/SHPD201864', 'Other', '/api/v2/attachments/file/330/', '', 330, '11._PCA_Legal_Agreement.pdf', 'LIB/PCA201748', '', 'Partnership Management Portal', 64, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (332, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201862-1', 'Other', '/api/v2/attachments/file/332/', '', 332, '01._MoM_QuH0Yk8.pdf', 'LIB/PCA2018113', '', 'Partnership Management Portal', 62, '2018-03-30 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (889, '', '', '', '', '', '/api/v2/attachments/file/889/', 'Mohamed Elmejrab', 889, 'Al_Mobadr_Detailed_Budget.pdf', '', '', '', NULL, '2019-03-05 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (333, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201862-1', 'Other', '/api/v2/attachments/file/333/', '', 333, '03._Detaild_Budget_I83oGMb.pdf', 'LIB/PCA2018113', '', 'Partnership Management Portal', 62, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (334, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201862-1', 'Other', '/api/v2/attachments/file/334/', '', 334, '04._Budget_Self_Health_Care_and_Hygien_Promotion__s9t3Uyy.pdf', 'LIB/PCA2018113', '', 'Partnership Management Portal', 62, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (402, 'ITALIAN COUNCIL FOR REFUGEES', 'Civil Society Organization', '2500232640', 'LIB/PCA201712/PD201701', 'Other', '/api/v2/attachments/file/402/', '', 402, '07._Implementing_Partner_Information_Mandatory_Form.pdf', 'LIB/PCA201750', '', 'Partnership Management Portal', 6, '2018-03-30 00:00:00+00'); @@ -6554,14 +6701,15 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (7, 'AL MOBADR ORGANIZA INSERT INTO [[schema]].attachments_attachmentflat VALUES (674, '', '', '', '', '', '/api/v2/attachments/file/674/', 'Mohamed Elmejrab', 674, 'multakana_legal_2_9HdQgfa.pdf', '', '', '', NULL, '2018-10-16 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (593, 'ALNAHLA ORGANIZATION FOR EDUCATION AWARENESS AND FAMILY AFFAIRS', 'Civil Society Organization', '2500231802', 'LIB/PCA201717/PD201866-1', 'Report', '/api/v2/attachments/file/593/', '', 593, '18-01-21-Alnahla-CP-Janzour-Shohadaa-Ben-RoueenSchool-LV.docx', 'LIB/PCA201756', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F2%252Fdetails', 'Third Party Monitoring', 66, '2018-06-07 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (684, '', '', '', '', '', '/api/v2/attachments/file/684/', 'Jean Mege', 684, 'A.01._Amendment_-_Annex_G._PRC_Submission_BDFAdaZ.pdf', '', '', '', NULL, '2018-11-06 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (31, 'ARYAF INSTITUTION CARE AND CHILD', 'Civil Society Organization', '2500235813', '', 'Core Values Assessment', '/api/v2/attachments/file/31/', '', 31, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (827, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', '', 'Signed Agreement', '/api/v2/attachments/file/827/', 'Mohamed Elmejrab', 827, 'Libyan_Society_PCA_2019-2020.pdf', 'LIB/PCA2019130', '/api/v2/agreements/130/', 'Partnership Management Portal', NULL, '2019-01-13 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (379, 'ASSOCIATION KOUDOURATI', 'Civil Society Organization', '2500237271', 'LIB/SSFA201719', 'Other', '/api/v2/attachments/file/379/', '', 379, 'SSFA_Quddraty_-_Budget_Table.pdf', 'LIB/SSFA201790', '', 'Partnership Management Portal', 57, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (377, 'ASSOCIATION KOUDOURATI', 'Civil Society Organization', '2500237271', 'LIB/SSFA201719', 'Other', '/api/v2/attachments/file/377/', '', 377, 'SSFA_Quddraty_-_Bank_Detail_2.pdf', 'LIB/SSFA201790', '', 'Partnership Management Portal', 57, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (382, 'ASSOCIATION KOUDOURATI', 'Civil Society Organization', '2500237271', 'LIB/SSFA201719', 'Other', '/api/v2/attachments/file/382/', '', 382, 'SSFA_Quddraty_-_Organizations_Biography.pdf', 'LIB/SSFA201790', '', 'Partnership Management Portal', 57, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (383, 'ASSOCIATION KOUDOURATI', 'Civil Society Organization', '2500237271', 'LIB/SSFA201719', 'Other', '/api/v2/attachments/file/383/', '', 383, 'SSFA_Quddraty_-_Organogram.pdf', 'LIB/SSFA201790', '', 'Partnership Management Portal', 57, '2018-03-30 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (447, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA201702/PD201601', 'Other', '/api/v2/attachments/file/447/', '', 447, 'PCA_Annexes.pdf', 'LIB/PCA201734', '', 'Partnership Management Portal', 2, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (388, 'AL MOBADR ORGANIZATION FOR DEVELOPMENT AND CAPACITY BUILDING', 'Civil Society Organization', '2500237369', 'LIB/PCA2018104/PD201856-2', 'Other', '/api/v2/attachments/file/388/', '', 388, '08._Implementing_Partner_Information_Mandatory_Form.pdf', 'LIB/PCA2018104', '', 'Partnership Management Portal', 56, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (389, 'AL MOBADR ORGANIZATION FOR DEVELOPMENT AND CAPACITY BUILDING', 'Civil Society Organization', '2500237369', 'LIB/PCA2018104/PD201856-2', 'Other', '/api/v2/attachments/file/389/', '', 389, '09._Bank_Account.pdf', 'LIB/PCA2018104', '', 'Partnership Management Portal', 56, '2018-03-30 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (675, '', '', '', '', '', '/api/v2/attachments/file/675/', 'Mohamed Elmejrab', 675, 'multakana_legal_2_1EoRuhT.pdf', '', '', '', NULL, '2018-10-16 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (390, 'AL MOBADR ORGANIZATION FOR DEVELOPMENT AND CAPACITY BUILDING', 'Civil Society Organization', '2500237369', 'LIB/PCA2018104/PD201856-2', 'Other', '/api/v2/attachments/file/390/', '', 390, '10._Bank_Confirmation_Letter_.pdf', 'LIB/PCA2018104', '', 'Partnership Management Portal', 56, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (391, 'AL MOBADR ORGANIZATION FOR DEVELOPMENT AND CAPACITY BUILDING', 'Civil Society Organization', '2500237369', 'LIB/PCA2018104/PD201856-2', 'Other', '/api/v2/attachments/file/391/', '', 391, '11._Partner_Registration_Certificate.pdf', 'LIB/PCA2018104', '', 'Partnership Management Portal', 56, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (395, 'ITALIAN COUNCIL FOR REFUGEES', 'Civil Society Organization', '2500232640', 'LIB/PCA201712/PD201701', 'Other', '/api/v2/attachments/file/395/', '', 395, '06._Annex_I_Joint_Partnership_Review.pdf', 'LIB/PCA201750', '', 'Partnership Management Portal', 6, '2018-03-30 00:00:00+00'); @@ -6589,11 +6737,12 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (372, 'EKRAA ASSEMBLY F INSERT INTO [[schema]].attachments_attachmentflat VALUES (393, 'AL MOBADR ORGANIZATION FOR DEVELOPMENT AND CAPACITY BUILDING', 'Civil Society Organization', '2500237369', 'LIB/PCA2018104/PD201856-2', 'Other', '/api/v2/attachments/file/393/', '', 393, '14._Al_Mobader_Internal_Proceedures.pdf', 'LIB/PCA2018104', '', 'Partnership Management Portal', 56, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (460, 'LIBYA WOMEN S UNION TRIPOLI', 'Civil Society Organization', '2500236520', 'LIB/SSFA201705/SSFA201703', 'Other', '/api/v2/attachments/file/460/', '', 460, '05._Annex_F_Direct_Selection_Form.pdf', 'LIB/SSFA201741', '', 'Partnership Management Portal', 17, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (433, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA201702/PD201601', 'Other', '/api/v2/attachments/file/433/', '', 433, 'Minutes_of_the_PCARC_Meeting.pdf', 'LIB/PCA201734', '', 'Partnership Management Portal', 2, '2018-03-30 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (447, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA201702/PD201601', 'Other', '/api/v2/attachments/file/447/', '', 447, 'PCA_Annexes.pdf', 'LIB/PCA201734', '', 'Partnership Management Portal', 2, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (445, 'LIBYAN ASSOCIATION FOR YOUTH AND DEVELOPMENT', 'Civil Society Organization', '2500235600', 'LIB/PCA201704/PD201704-2', 'Other', '/api/v2/attachments/file/445/', '', 445, '00._MoM.pdf', 'LIB/PCA201740', '', 'Partnership Management Portal', 11, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (432, 'SHAIK TAHIR AZZAWI CHARITY ORGANIZATION', 'Civil Society Organization', '2500231352', 'LIB/PCA201710/PD201707', 'Other', '/api/v2/attachments/file/432/', '', 432, '06._Annex_I_Joint_Partnership_Review.pdf', 'LIB/PCA201748', '', 'Partnership Management Portal', 16, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (425, 'SHAIK TAHIR AZZAWI CHARITY ORGANIZATION', 'Civil Society Organization', '2500231352', 'LIB/PCA201710/PD201702', 'Other', '/api/v2/attachments/file/425/', '', 425, 'Detaild_Budget.pdf', 'LIB/PCA201748', '', 'Partnership Management Portal', 7, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (415, 'CHILDREN VISION', 'Civil Society Organization', '2500237096', 'LIB/SSFA201703/SSFA201701', 'Correspondence', '/api/v2/attachments/file/415/', '', 415, '08._Ghadas_Email.pdf', 'LIB/SSFA201738', '', 'Partnership Management Portal', 10, '2018-03-30 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (456, 'BREEZES LIBYA', 'Civil Society Organization', '2500233211', 'LIB/PCA201713/PD201705', 'Other', '/api/v2/attachments/file/456/', '', 456, 'Detaild_Budget.pdf', 'LIB/PCA201752', '', 'Partnership Management Portal', 14, '2018-03-30 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (430, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA201702/PD201601', 'Other', '/api/v2/attachments/file/430/', '', 430, 'Submission_Form.pdf', 'LIB/PCA201734', '', 'Partnership Management Portal', 2, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (506, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', 'LIB/PCA201711/PD201868', 'Other', '/api/v2/attachments/file/506/', '', 506, '03._Detaild_Budget.pdf', 'LIB/PCA201749', '', 'Partnership Management Portal', 68, '2018-04-20 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (451, 'CHILDREN VISION', 'Civil Society Organization', '2500237096', 'LIB/SSFA201703/SSFA201701', 'Other', '/api/v2/attachments/file/451/', '', 451, '04._Annex_E_Partner_Declaration_Form.pdf', 'LIB/SSFA201738', '', 'Partnership Management Portal', 10, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (426, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/SSFA201709/SSFA201702', 'Other', '/api/v2/attachments/file/426/', '', 426, '03._Detailed_Budget.pdf', 'LIB/SSFA201746', '', 'Partnership Management Portal', 9, '2018-03-30 00:00:00+00'); @@ -6612,7 +6761,6 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (443, 'CHILDREN VISION' INSERT INTO [[schema]].attachments_attachmentflat VALUES (444, 'CHILDREN VISION', 'Civil Society Organization', '2500237096', 'LIB/SSFA201703/SSFA201701', 'Other', '/api/v2/attachments/file/444/', '', 444, '10._Registration_Certificate.pdf', 'LIB/SSFA201738', '', 'Partnership Management Portal', 10, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (449, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/SSFA201709/SSFA201702', 'Other', '/api/v2/attachments/file/449/', '', 449, '04._Annex_E_Partner_Declaration_Form.pdf', 'LIB/SSFA201746', '', 'Partnership Management Portal', 9, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (686, '', '', '', '', '', '/api/v2/attachments/file/686/', 'Jean Mege', 686, 'A.01._Amendment_-_Annex_G._PRC_Submission_YlaMqtj.pdf', '', '', '', NULL, '2018-11-06 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (32, 'ASSEBEL FOUNDATION', 'Civil Society Organization', '2500231350', '', 'Core Values Assessment', '/api/v2/attachments/file/32/', '', 32, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (491, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', 'LIB/PCA201711/PD201703', 'Other', '/api/v2/attachments/file/491/', '', 491, '12._Partner_Registration_Certificate.pdf', 'LIB/PCA201749', '', 'Partnership Management Portal', 8, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (481, 'CESVI COOPERAZIONE E SVILUPPO CESVI', 'Civil Society Organization', '2500235018', 'LIB/PCA201716/PD201605', 'Other', '/api/v2/attachments/file/481/', '', 481, 'Minutes_of_the_PCARC_Meeting.pdf', 'LIB/PCA201755', '', 'Partnership Management Portal', 18, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (489, 'CESVI COOPERAZIONE E SVILUPPO CESVI', 'Civil Society Organization', '2500235018', 'LIB/PCA201716/PD201605', 'Other', '/api/v2/attachments/file/489/', '', 489, 'NFR_change_of_cash_transfer_modality.pdf', 'LIB/PCA201755', '', 'Partnership Management Portal', 18, '2018-03-30 00:00:00+00'); @@ -6644,7 +6792,6 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (488, 'CESVI COOPERAZIO INSERT INTO [[schema]].attachments_attachmentflat VALUES (487, 'MULTAKANA CENTER', 'Civil Society Organization', '2500236298', 'LIB/SSFA201706/TempRef:20', 'Other', '/api/v2/attachments/file/487/', '', 487, '3._Annex_F._Direct_Selection.pdf', 'LIB/SSFA201742', '', 'Partnership Management Portal', 20, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (483, 'BREEZES LIBYA', 'Civil Society Organization', '2500233211', 'LIB/PCA201713/PD201705', 'Other', '/api/v2/attachments/file/483/', '', 483, 'Annex_E_Partner_Declaration_Form.pdf', 'LIB/PCA201752', '', 'Partnership Management Portal', 14, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (687, '', '', '', '', '', '/api/v2/attachments/file/687/', 'Jean Mege', 687, 'A.01._Amendment_-_Annex_G._PRC_Submission_QKW8KXp.pdf', '', '', '', NULL, '2018-11-06 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (12, 'BREEZES LIBYA', 'Civil Society Organization', '2500233211', '', 'Signed Agreement', '/api/v2/attachments/file/12/', '', 12, 'PCA_Agreement_5.pdf', 'LIB/PCA201752', '/api/v2/agreements/52/', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (508, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', 'LIB/PCA201711/PD201868', 'Partnership Review', '/api/v2/attachments/file/508/', '', 508, '06._Annex_I_Joint_Partnership_Review.pdf', 'LIB/PCA201749', '', 'Partnership Management Portal', 68, '2018-04-20 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (507, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', 'LIB/PCA201711/PD201868', 'Other', '/api/v2/attachments/file/507/', '', 507, '05._Annex_F_Direct_Selection_Form.pdf', 'LIB/PCA201749', '', 'Partnership Management Portal', 68, '2018-04-20 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (467, 'LIBYAN ASSOCIATION FOR YOUTH AND DEVELOPMENT', 'Civil Society Organization', '2500235600', 'LIB/PCA201704/PD201704-2', 'Other', '/api/v2/attachments/file/467/', '', 467, '10._Internal_System.pdf', 'LIB/PCA201740', '', 'Partnership Management Portal', 11, '2018-03-30 00:00:00+00'); @@ -6654,7 +6801,6 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (509, 'LIBYAN SOCIETY F INSERT INTO [[schema]].attachments_attachmentflat VALUES (522, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA201702/PD201867-1', 'Other', '/api/v2/attachments/file/522/', '', 522, '11._PCA_Legal_Agreement.pdf', 'LIB/PCA201734', '', 'Partnership Management Portal', 67, '2018-04-20 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (500, 'ALNAHLA ORGANIZATION FOR EDUCATION AWARENESS AND FAMILY AFFAIRS', 'Civil Society Organization', '2500231802', 'LIB/PCA201717/PD201606', 'Other', '/api/v2/attachments/file/500/', '', 500, 'PCA_Submission_Form.pdf', 'LIB/PCA201756', '', 'Partnership Management Portal', 19, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (505, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', 'LIB/PCA201711/PD201868', 'Other', '/api/v2/attachments/file/505/', '', 505, '01._MoM.pdf', 'LIB/PCA201749', '', 'Partnership Management Portal', 68, '2018-04-20 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (40, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', '', 'Core Values Assessment', '/api/v2/attachments/file/40/', '', 40, '07._Annex_E_Partner_Declaration_Form.pdf', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (511, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', 'LIB/PCA201711/PD201868', 'Other', '/api/v2/attachments/file/511/', '', 511, '10._Partner_Registration_Certificate.pdf', 'LIB/PCA201749', '', 'Partnership Management Portal', 68, '2018-04-20 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (512, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', 'LIB/PCA201711/PD201868', 'Other', '/api/v2/attachments/file/512/', '', 512, '11._Amendement_PCA_Legal_Agreement.pdf', 'LIB/PCA201749', '', 'Partnership Management Portal', 68, '2018-04-20 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (513, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', 'LIB/PCA201711/PD201868', 'Other', '/api/v2/attachments/file/513/', '', 513, '12._PCA_Legal_Agreement.pdf', 'LIB/PCA201749', '', 'Partnership Management Portal', 68, '2018-04-20 00:00:00+00'); @@ -6673,6 +6819,7 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (530, 'ALNAHLA ORGANIZA INSERT INTO [[schema]].attachments_attachmentflat VALUES (325, 'SHAIK TAHIR AZZAWI CHARITY ORGANIZATION', 'Civil Society Organization', '2500231352', 'LIB/PCA201710/SHPD201864', 'Other', '/api/v2/attachments/file/325/', '', 325, '08._Partner_Registration_Certificate.pdf', 'LIB/PCA201748', '', 'Partnership Management Portal', 64, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (499, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', 'LIB/PCA201711/PD201703', 'Other', '/api/v2/attachments/file/499/', '', 499, '05._Annex_F_Direct_Selection_Form.pdf', 'LIB/PCA201749', '', 'Partnership Management Portal', 8, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (464, 'LIBYAN ASSOCIATION FOR YOUTH AND DEVELOPMENT', 'Civil Society Organization', '2500235600', 'LIB/PCA201704/PD201704-2', 'Other', '/api/v2/attachments/file/464/', '', 464, '07._Implementing_Partner_Information_Mandatory_Form.pdf', 'LIB/PCA201740', '', 'Partnership Management Portal', 11, '2018-03-30 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (909, '', '', '', '', '', '/api/v2/attachments/file/909/', 'Turkia Ben Saoud', 909, 'Progress_report_2.pdf', '', '', '', NULL, '2019-04-03 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (695, '', '', '', '', '', '/api/v2/attachments/file/695/', 'Mohamed Elmejrab', 695, '06.1._Annex_G_Submission_Form_Amendment.pdf', '', '', '', NULL, '2018-12-05 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (535, 'ALTADAMON FOR REHABILITATION AND PSYCOSOCIAL SUPPORT', 'Civil Society Organization', '2500238342', '', 'Core Values Assessment', '/api/v2/attachments/file/535/', '', 535, 'Annex_E._Partner_declaration.pdf', '', '', 'Partnership Management Portal', NULL, '2018-04-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (39, 'EKRAA ASSEMBLY FOR DEVELOPMENT AND EDUCATION', 'Civil Society Organization', '2500233196', '', 'Core Values Assessment', '/api/v2/attachments/file/39/', '', 39, '07._Annex_E_Partner_Declaration_Form_EKRAA.pdf', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); @@ -6702,13 +6849,13 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (677, '', '', '', '', ' INSERT INTO [[schema]].attachments_attachmentflat VALUES (531, 'ALNAHLA ORGANIZATION FOR EDUCATION AWARENESS AND FAMILY AFFAIRS', 'Civil Society Organization', '2500231802', 'LIB/PCA201717/PD201866-1', 'Other', '/api/v2/attachments/file/531/', '', 531, '11._PCA_Legal_Agreement.pdf', 'LIB/PCA201756', '', 'Partnership Management Portal', 66, '2018-04-20 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (532, 'ALNAHLA ORGANIZATION FOR EDUCATION AWARENESS AND FAMILY AFFAIRS', 'Civil Society Organization', '2500231802', 'LIB/PCA201717/PD201866-1', 'Other', '/api/v2/attachments/file/532/', '', 532, '12._PCA_LIBYA_CP_2017_14_All_Documents.pdf', 'LIB/PCA201756', '', 'Partnership Management Portal', 66, '2018-04-20 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (678, 'AL MOBADR ORGANIZATION FOR DEVELOPMENT AND CAPACITY BUILDING', 'Civil Society Organization', '2500237369', 'LIB/PCA2018104/PD201856-2', 'Report', '/api/v2/attachments/file/678/', '', 678, '18-10-13-YOUTH-Almobadr-HQ-visit.pdf', 'LIB/PCA2018104', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F13%252Fdetails', 'Third Party Monitoring', 56, '2018-10-24 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (1096, '', '', '', '', '', '/api/v2/attachments/file/1096/', 'Turkia Ben Saoud', 1096, 'No-cost_extention_NACA_2019_SIGNED_-_Signed_ARG.pdf', '', '', '', NULL, '2019-10-17 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (639, 'CESVI COOPERAZIONE E SVILUPPO CESVI', 'Civil Society Organization', '2500235018', 'LIB/PCA201716/PD201865', 'Report', '/api/v2/attachments/file/639/', '', 639, '18-07-24-CESVI-CP-FMR-TariqAlmatarIDPCamp.pdf', 'LIB/PCA201755', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F10%252Fdetails', 'Third Party Monitoring', 65, '2018-07-31 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (906, 'CESVI COOPERAZIONE E SVILUPPO CESVI', 'Civil Society Organization', '2500235018', 'LIB/PCA201716/PD201865', 'Other', '/api/v2/attachments/file/906/', 'Inaam Elbasir', 906, 'CESVI_-_PD_Amendment_Form_Signed.pdf', 'LIB/PCA201755', '', 'Partnership Management Portal', 65, '2019-03-25 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (556, 'AFAQ FOUNDATION FOR RIGHTS AND DEVELOPMENT', 'Civil Society Organization', '2500238136', 'LIB/PCA2018115/PD201870', 'PRC Review', '/api/v2/attachments/file/556/', '', 556, '04._Annex_G_Submission_Form.pdf', 'LIB/PCA2018115', '/api/v2/interventions/70/', 'Partnership Management Portal', 70, '2018-05-25 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (581, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201862-1', 'Report', '/api/v2/attachments/file/581/', '', 581, '18-01-23-Emdad-WASH-Shuhada-Taqrift-School-Sirte-LV.pdf', 'LIB/PCA2018113', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F5%252Fdetails', 'Third Party Monitoring', 62, '2018-06-06 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (600, 'ALNAHLA ORGANIZATION FOR EDUCATION AWARENESS AND FAMILY AFFAIRS', 'Civil Society Organization', '2500231802', 'LIB/PCA201717/PD201866-1', 'Report', '/api/v2/attachments/file/600/', '', 600, '18-02-11-Alnahla-CP-Janzour-Ammar-Ben-Yaser-School-LMV.pdf', 'LIB/PCA201756', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F2%252Fdetails', 'Third Party Monitoring', 66, '2018-06-07 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (599, 'ALNAHLA ORGANIZATION FOR EDUCATION AWARENESS AND FAMILY AFFAIRS', 'Civil Society Organization', '2500231802', 'LIB/PCA201717/PD201866-1', 'Report', '/api/v2/attachments/file/599/', '', 599, '18-02-08-Alnahla-CP-Mobile-CFS-Daar-Aldheyaa-School-LMV.pdf', 'LIB/PCA201756', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F2%252Fdetails', 'Third Party Monitoring', 66, '2018-06-07 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (35, 'BREEZES LIBYA', 'Civil Society Organization', '2500233211', '', 'Core Values Assessment', '/api/v2/attachments/file/35/', '', 35, 'Annex_E_Partner_Declaration_Form_BREEZE.pdf', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (818, 'SHAIK TAHIR AZZAWI CHARITY ORGANIZATION', 'Civil Society Organization', '2500231352', 'LIB/PCA201710/PD201774-1', 'Other', '/api/v2/attachments/file/818/', 'Mohamed Elmejrab', 818, 'A.03._STACO_Amendment_-_Detailed_Budget_FmS8kFV.pdf', 'LIB/PCA201748', '', 'Partnership Management Portal', 74, '2018-12-18 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (603, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA201702/PD201867-1', 'Report', '/api/v2/attachments/file/603/', '', 603, '18-01-16-ESSAFA-CP-Treatment-Session-Alfellah1-LV.docx', 'LIB/PCA201734', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F4%252Fdetails', 'Third Party Monitoring', 67, '2018-06-07 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (615, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201862-1', 'Report', '/api/v2/attachments/file/615/', '', 615, '18-01-28-Emdad-WASh-Awareness-session-Al-Thawra-Al-Arabia-School-Sirte-LMV.pdf', 'LIB/PCA2018113', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F5%252Fdetails', 'Third Party Monitoring', 62, '2018-06-08 00:00:00+00'); @@ -6729,9 +6876,9 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (20, 'LIBYA WOMEN S UNI INSERT INTO [[schema]].attachments_attachmentflat VALUES (696, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201883-1', 'Signed PD/SSFA', '/api/v2/attachments/file/696/', '', 696, '02._Annex_C_Program_Document.pdf', 'LIB/PCA2018113', '/api/v2/interventions/83/', 'Partnership Management Portal', 83, '2018-12-06 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (705, 'NOOR ALHAYAT CHARITY ASSOCIATION', 'Civil Society Organization', '2500238760', 'LIB/PCA2018117/PD201875', 'PRC Review', '/api/v2/attachments/file/705/', '', 705, 'Annex_G._NoorAlhayat_Signed.pdf', 'LIB/PCA2018117', '/api/v2/interventions/75/', 'Partnership Management Portal', 75, '2018-12-10 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (608, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201862-1', 'Report', '/api/v2/attachments/file/608/', '', 608, '18-01-24-Emdad-WASH-Al-Etihad-School-Sirte-LV.pdf', 'LIB/PCA2018113', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F5%252Fdetails', 'Third Party Monitoring', 62, '2018-06-07 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (502, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA201702/PD201867-1', 'Signed PD/SSFA', '/api/v2/attachments/file/502/', '', 502, '02._Annex_C_Program_Document.pdf', 'LIB/PCA201734', '/api/v2/interventions/67/', 'Partnership Management Portal', 67, '2018-04-20 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (609, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201862-1', 'Report', '/api/v2/attachments/file/609/', '', 609, '18-01-25-Emdad-WASH-Al-Shomouk-School-Sirte-LV.pdf', 'LIB/PCA2018113', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F5%252Fdetails', 'Third Party Monitoring', 62, '2018-06-07 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (594, 'ALNAHLA ORGANIZATION FOR EDUCATION AWARENESS AND FAMILY AFFAIRS', 'Civil Society Organization', '2500231802', 'LIB/PCA201717/PD201866-1', 'Report', '/api/v2/attachments/file/594/', '', 594, '18-01-22-Alnahla-CP-Janzour-Alnour-School-LV.docx', 'LIB/PCA201756', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F2%252Fdetails', 'Third Party Monitoring', 66, '2018-06-07 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (948, '', '', '', '', '', '/api/v2/attachments/file/948/', 'Muna Fathi Khalifa Garamalli', 948, 'Alsafwa_SSFA_sigend.pdf', '', '', '', NULL, '2019-05-26 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (622, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201862-1', 'Report', '/api/v2/attachments/file/622/', '', 622, '18-01-28-Emdad-WASH-AS-Abu-Obaida-School-Sirte.pdf', 'LIB/PCA2018113', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F5%252Fdetails', 'Third Party Monitoring', 62, '2018-06-08 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (595, 'ALNAHLA ORGANIZATION FOR EDUCATION AWARENESS AND FAMILY AFFAIRS', 'Civil Society Organization', '2500231802', 'LIB/PCA201717/PD201866-1', 'Report', '/api/v2/attachments/file/595/', '', 595, '18-01-24-Alnahla-Janzour-Fajer-Arous-Albahar-School-LV.docx', 'LIB/PCA201756', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F2%252Fdetails', 'Third Party Monitoring', 66, '2018-06-07 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (597, 'ALNAHLA ORGANIZATION FOR EDUCATION AWARENESS AND FAMILY AFFAIRS', 'Civil Society Organization', '2500231802', 'LIB/PCA201717/PD201866-1', 'Report', '/api/v2/attachments/file/597/', '', 597, '18-02-05-Alnahla-CP-Janzour-Dat-Alsawari-School-LMV.pdf', 'LIB/PCA201756', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F2%252Fdetails', 'Third Party Monitoring', 66, '2018-06-07 00:00:00+00'); @@ -6753,6 +6900,7 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (45, 'ITALIAN COUNCIL F INSERT INTO [[schema]].attachments_attachmentflat VALUES (64, 'ALNAHLA ORGANIZATION FOR EDUCATION AWARENESS AND FAMILY AFFAIRS', 'Civil Society Organization', '2500231802', '', 'Assessment Report', '/api/v2/attachments/file/64/', '', 64, 'UNICEF_Libya_Alnahla_2_-_Micro-assessment_report_-_final.pdf', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (688, 'SHAIK TAHIR AZZAWI CHARITY ORGANIZATION', 'Civil Society Organization', '2500231352', '', 'Agreement Amendment', '/api/v2/attachments/file/688/', '', 688, 'STACO_PSEA_Letter.pdf', 'LIB/PCA201748', '/api/v2/partners/3/', 'Partnership Management Portal', NULL, '2018-11-06 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (700, 'MULTAKANA CENTER', 'Civil Society Organization', '2500236298', 'LIB/PCA2018122/PD201880', 'Signed PD/SSFA', '/api/v2/attachments/file/700/', '', 700, 'Annex_c_multakana_PD.pdf', 'LIB/PCA2018122', '/api/v2/interventions/80/', 'Partnership Management Portal', 80, '2018-12-10 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (502, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA201702/PD201867-1', 'Signed PD/SSFA', '/api/v2/attachments/file/502/', '', 502, '02._Annex_C_Program_Document.pdf', 'LIB/PCA201734', '/api/v2/interventions/67/', 'Partnership Management Portal', 67, '2018-04-20 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (74, 'INSTITUTE FOR ECONOMICS AND PEACE', 'Civil Society Organization', '2500238223', 'LIB/PCA2018111/PD201860', 'Signed PD/SSFA', '/api/v2/attachments/file/74/', '', 74, '02._Annex_C_Program_Document_DwBkHnF.pdf', 'LIB/PCA2018111', '/api/v2/interventions/60/', 'Partnership Management Portal', 60, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (654, 'SHAIK TAHIR AZZAWI CHARITY ORGANIZATION', 'Civil Society Organization', '2500231352', 'LIB/PCA201710/PD201774', 'Other', '/api/v2/attachments/file/654/', '', 654, '05._PD201774_-_Annex_G._Submission_Form.pdf', 'LIB/PCA201748', '', 'Partnership Management Portal', 74, '2018-08-15 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (80, 'AL MOBADR ORGANIZATION FOR DEVELOPMENT AND CAPACITY BUILDING', 'Civil Society Organization', '2500237369', 'LIB/PCA2018104/PD201856-2', 'Signed PD/SSFA', '/api/v2/attachments/file/80/', '', 80, '02._Annex_C_Program_Document.pdf', 'LIB/PCA2018104', '/api/v2/interventions/56/', 'Partnership Management Portal', 56, '2018-03-29 00:00:00+00'); @@ -6780,6 +6928,7 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (101, 'SHAIK TAHIR AZZA INSERT INTO [[schema]].attachments_attachmentflat VALUES (104, 'SHAIK TAHIR AZZAWI CHARITY ORGANIZATION', 'Civil Society Organization', '2500231352', 'LIB/PCA201710/PD201706', 'PRC Review', '/api/v2/attachments/file/104/', '', 104, '04._Annex_G_Submission_Form.pdf', 'LIB/PCA201748', '/api/v2/interventions/5/', 'Partnership Management Portal', 5, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (110, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201862-1', 'PD/SSFA Amendment', '/api/v2/attachments/file/110/', '', 110, '02._Amended_Annex_C_Program_Document_compressed.pdf', 'LIB/PCA2018113', '', 'Partnership Management Portal', 62, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (327, 'SHAIK TAHIR AZZAWI CHARITY ORGANIZATION', 'Civil Society Organization', '2500231352', 'LIB/PCA201710/SHPD201864', 'Other', '/api/v2/attachments/file/327/', '', 327, '10._Annex_2_-_List_of_the_10_schools_in_Musrata.pdf', 'LIB/PCA201748', '', 'Partnership Management Portal', 64, '2018-03-30 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (967, '', '', '', '', '', '/api/v2/attachments/file/967/', 'Muna Fathi Khalifa Garamalli', 967, 'Alsafwa_SSFA_sigend_NzzuHCD.pdf', '', '', '', NULL, '2019-05-28 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (329, 'SHAIK TAHIR AZZAWI CHARITY ORGANIZATION', 'Civil Society Organization', '2500231352', 'LIB/PCA201710/SHPD201864', 'Other', '/api/v2/attachments/file/329/', '', 329, '04._Annex_G_Submission_Form.pdf', 'LIB/PCA201748', '', 'Partnership Management Portal', 64, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (362, 'AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT', 'Civil Society Organization', '2500220006', 'LIB/PCA2018109/PD201859', 'Other', '/api/v2/attachments/file/362/', '', 362, '09._Memo__Impact_Acted_and_Clac.pdf', 'LIB/PCA2018109', '', 'Partnership Management Portal', 59, '2018-03-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (364, 'AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT', 'Civil Society Organization', '2500220006', 'LIB/PCA2018109/PD201859', 'Other', '/api/v2/attachments/file/364/', '', 364, '12._Partner_Registration_Certificate.pdf', 'LIB/PCA2018109', '', 'Partnership Management Portal', 59, '2018-03-30 00:00:00+00'); @@ -6807,7 +6956,6 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (21, 'LIBYAN ASSOCIATIO INSERT INTO [[schema]].attachments_attachmentflat VALUES (22, 'CHILDREN VISION', 'Civil Society Organization', '2500237096', '', 'Signed Agreement', '/api/v2/attachments/file/22/', '', 22, '02._Letterhead.pdf', 'LIB/SSFA201738', '/api/v2/agreements/38/', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (510, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', 'LIB/PCA201711/PD201868', 'Other', '/api/v2/attachments/file/510/', '', 510, '09._Bank_Account.pdf', 'LIB/PCA201749', '', 'Partnership Management Portal', 68, '2018-04-20 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (453, 'CESVI COOPERAZIONE E SVILUPPO CESVI', 'Civil Society Organization', '2500235018', 'LIB/PCA201716/PD201605', 'Correspondence', '/api/v2/attachments/file/453/', '', 453, 'Cesvi_letter_requesting_amendments_budget_Nov_16.pdf', 'LIB/PCA201755', '', 'Partnership Management Portal', 18, '2018-03-30 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (35, 'BREEZES LIBYA', 'Civil Society Organization', '2500233211', '', 'Core Values Assessment', '/api/v2/attachments/file/35/', '', 35, 'Annex_E_Partner_Declaration_Form_BREEZE.pdf', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (665, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', 'LIB/PCA201711/PD201773', 'Partnership Review', '/api/v2/attachments/file/665/', '', 665, '06._Annex_I_Joint_Partnership_Review.pdf', 'LIB/PCA201749', '', 'Partnership Management Portal', 73, '2018-08-28 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (697, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', 'LIB/PCA201711/PD201782-1', 'PRC Review', '/api/v2/attachments/file/697/', '', 697, '04._Annex_G_Submission_Form.pdf', 'LIB/PCA201749', '/api/v2/interventions/82/', 'Partnership Management Portal', 82, '2018-12-06 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (698, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', 'LIB/PCA201711/PD201782-1', 'Signed PD/SSFA', '/api/v2/attachments/file/698/', '', 698, '02._Annex_C_Program_Document.pdf', 'LIB/PCA201749', '/api/v2/interventions/82/', 'Partnership Management Portal', 82, '2018-12-06 00:00:00+00'); @@ -6829,9 +6977,13 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (82, 'MULTAKANA CENTER' INSERT INTO [[schema]].attachments_attachmentflat VALUES (3, 'INSTITUTE FOR ECONOMICS AND PEACE', 'Civil Society Organization', '2500238223', '', 'Signed Agreement', '/api/v2/attachments/file/3/', '', 3, '11._PCA_Legal_Agreement.pdf', 'LIB/PCA2018111', '/api/v2/agreements/111/', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (516, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA201702/PD201867-1', 'Other', '/api/v2/attachments/file/516/', '', 516, '03._Detaild_Budget.pdf', 'LIB/PCA201734', '', 'Partnership Management Portal', 67, '2018-04-20 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (849, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA2019124/PD201985', 'Other', '/api/v2/attachments/file/849/', 'Turkia Ben Saoud', 849, 'Annex_F._Direct_Selection_Form_-_Essafa.pdf', 'LIB/PCA2019124', '', 'Partnership Management Portal', 85, '2019-02-17 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (31, 'ARYAF INSTITUTION CARE AND CHILD', 'Civil Society Organization', '2500235813', '', 'Core Values Assessment', '/api/v2/attachments/file/31/', '', 31, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (32, 'ASSEBEL FOUNDATION', 'Civil Society Organization', '2500231350', '', 'Core Values Assessment', '/api/v2/attachments/file/32/', '', 32, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (12, 'BREEZES LIBYA', 'Civil Society Organization', '2500233211', '', 'Signed Agreement', '/api/v2/attachments/file/12/', '', 12, 'PCA_Agreement_5.pdf', 'LIB/PCA201752', '/api/v2/agreements/52/', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (16, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', '', 'Signed Agreement', '/api/v2/attachments/file/16/', '', 16, 'SSFA_signed.pdf', 'LIB/SSFA201746', '/api/v2/agreements/46/', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (23, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', '', 'Signed Agreement', '/api/v2/attachments/file/23/', '', 23, 'PCA_Agreement.pdf', 'LIB/PCA201734', '/api/v2/agreements/34/', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (335, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201862-1', 'Other', '/api/v2/attachments/file/335/', '', 335, '05._Bill_of_Quantity_of_13_Schools_in_Sirt_FXqcKo2.pdf', 'LIB/PCA2018113', '', 'Partnership Management Portal', 62, '2018-03-30 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (40, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', '', 'Core Values Assessment', '/api/v2/attachments/file/40/', '', 40, '07._Annex_E_Partner_Declaration_Form.pdf', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (41, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', '', 'Core Values Assessment', '/api/v2/attachments/file/41/', '', 41, '07._Annex_E_Partner_Declaration_FormESAFA.pdf', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (46, 'LIBYA HOUSE FOR SCIENCE AND CULTURE', 'Civil Society Organization', '2500235936', '', 'Core Values Assessment', '/api/v2/attachments/file/46/', '', 46, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (49, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', '', 'Core Values Assessment', '/api/v2/attachments/file/49/', '', 49, '07._Annex_E_Partner_Declaration_FormLIBYAN_SOCIETY_FOR_NATIONAL_RECONCILATION_CHARITY_WORK.pdf', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); @@ -6858,7 +7010,6 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (95, 'LIBYAN ASSOCIATIO INSERT INTO [[schema]].attachments_attachmentflat VALUES (577, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201862-1', 'Report', '/api/v2/attachments/file/577/', '', 577, '18-01-21-Emdad-WASH-Omar-Iben-Al-Aas-School-Sirte-LV.pdf', 'LIB/PCA2018113', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F5%252Fdetails', 'Third Party Monitoring', 62, '2018-06-06 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (578, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201862-1', 'Report', '/api/v2/attachments/file/578/', '', 578, '18-01-21-Emdad-Wash-Al-Arbaain-School-Sirte-LV.pdf', 'LIB/PCA2018113', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F5%252Fdetails', 'Third Party Monitoring', 62, '2018-06-06 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (582, 'ALNAHLA ORGANIZATION FOR EDUCATION AWARENESS AND FAMILY AFFAIRS', 'Civil Society Organization', '2500231802', 'LIB/PCA201717/PD201866-1', 'Report', '/api/v2/attachments/file/582/', '', 582, '18-01-07-Alnahla-CP-Abdulmalik-Bin-Marouan-School.pdf', 'LIB/PCA201756', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F2%252Fdetails', 'Third Party Monitoring', 66, '2018-06-07 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (709, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA201702/PD201867-1', 'PD/SSFA Amendment', '/api/v2/attachments/file/709/', '', 709, 'ESSAFA_SIGNED_NFR_october.jpg', 'LIB/PCA201734', '', 'Partnership Management Portal', 67, '2018-12-10 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (586, 'ALNAHLA ORGANIZATION FOR EDUCATION AWARENESS AND FAMILY AFFAIRS', 'Civil Society Organization', '2500231802', 'LIB/PCA201717/PD201866-1', 'Report', '/api/v2/attachments/file/586/', '', 586, '18-01-09-Alnahla-Janzour-Ahfaa-_Almukhtar-School-LV.pdf', 'LIB/PCA201756', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F2%252Fdetails', 'Third Party Monitoring', 66, '2018-06-07 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (591, 'ALNAHLA ORGANIZATION FOR EDUCATION AWARENESS AND FAMILY AFFAIRS', 'Civil Society Organization', '2500231802', 'LIB/PCA201717/PD201866-1', 'Report', '/api/v2/attachments/file/591/', '', 591, '18-01-17-Alnahla-CP-17-Febrayer-School-Janzour-LV.pdf', 'LIB/PCA201756', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F2%252Fdetails', 'Third Party Monitoring', 66, '2018-06-07 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (592, 'ALNAHLA ORGANIZATION FOR EDUCATION AWARENESS AND FAMILY AFFAIRS', 'Civil Society Organization', '2500231802', 'LIB/PCA201717/PD201866-1', 'Report', '/api/v2/attachments/file/592/', '', 592, '18-01-18-Alnahla-Awareness-Session-AbtaalAlhijaraLV.pdf', 'LIB/PCA201756', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F2%252Fdetails', 'Third Party Monitoring', 66, '2018-06-07 00:00:00+00'); @@ -6884,6 +7035,7 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (90, 'BREEZES LIBYA', ' INSERT INTO [[schema]].attachments_attachmentflat VALUES (706, 'EKRAA ASSEMBLY FOR DEVELOPMENT AND EDUCATION', 'Civil Society Organization', '2500233196', 'LIB/PCA201707/PD201678-2', 'PD/SSFA Amendment', '/api/v2/attachments/file/706/', '', 706, 'Education_Ekraa_-_NCE.pdf', 'LIB/PCA201743', '', 'Partnership Management Portal', 78, '2018-12-10 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (707, 'ALNAHLA ORGANIZATION FOR EDUCATION AWARENESS AND FAMILY AFFAIRS', 'Civil Society Organization', '2500231802', 'LIB/PCA201717/PD201866-1', 'PD/SSFA Amendment', '/api/v2/attachments/file/707/', '', 707, 'Signed_NFR_NCE_Al_Nahla_Sep18.pdf', 'LIB/PCA201756', '', 'Partnership Management Portal', 66, '2018-12-10 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (708, 'AL MOBADR ORGANIZATION FOR DEVELOPMENT AND CAPACITY BUILDING', 'Civil Society Organization', '2500237369', 'LIB/PCA2018104/PD201856-2', 'PD/SSFA Amendment', '/api/v2/attachments/file/708/', '', 708, 'YTH_-_Almobadr_NCE.pdf', 'LIB/PCA2018104', '', 'Partnership Management Portal', 56, '2018-12-10 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (709, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA201702/PD201867-1', 'PD/SSFA Amendment', '/api/v2/attachments/file/709/', '', 709, 'ESSAFA_SIGNED_NFR_october.jpg', 'LIB/PCA201734', '', 'Partnership Management Portal', 67, '2018-12-10 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (710, 'EKRAA ASSEMBLY FOR DEVELOPMENT AND EDUCATION', 'Civil Society Organization', '2500233196', 'LIB/PCA201707/PD201678-2', 'PD/SSFA Amendment', '/api/v2/attachments/file/710/', '', 710, 'Ekraa_-_No_Cost_Extension_Oct_2018.pdf', 'LIB/PCA201743', '', 'Partnership Management Portal', 78, '2018-12-10 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (711, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', 'LIB/PCA201711/PD201782-1', 'PD/SSFA Amendment', '/api/v2/attachments/file/711/', '', 711, '02.1._Annex_C_Program_Document_Amemdment.pdf', 'LIB/PCA201749', '', 'Partnership Management Portal', 82, '2018-12-10 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (712, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201883-1', 'PD/SSFA Amendment', '/api/v2/attachments/file/712/', '', 712, '02._Amended_Annex_C_Program_Document.pdf', 'LIB/PCA2018113', '', 'Partnership Management Portal', 83, '2018-12-10 00:00:00+00'); @@ -6905,6 +7057,7 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (727, 'LIBYAN SOCIETY F INSERT INTO [[schema]].attachments_attachmentflat VALUES (728, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', 'LIB/PCA201711/PD201782-1', 'Other', '/api/v2/attachments/file/728/', '', 728, '11._Prices_of_Hygiene_Kit_Contents.pdf', 'LIB/PCA201749', '', 'Partnership Management Portal', 82, '2018-12-10 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (729, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', 'LIB/PCA201711/PD201782-1', 'Other', '/api/v2/attachments/file/729/', '', 729, '12._Partner_Registration_Certificate.pdf', 'LIB/PCA201749', '', 'Partnership Management Portal', 82, '2018-12-10 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (730, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201883-1', 'Correspondence', '/api/v2/attachments/file/730/', '', 730, '01._MoM.pdf', 'LIB/PCA2018113', '', 'Partnership Management Portal', 83, '2018-12-10 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (910, '', '', '', '', '', '/api/v2/attachments/file/910/', 'Turkia Ben Saoud', 910, 'Progress_report_2_uv2RXoB.pdf', '', '', '', NULL, '2019-04-03 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (534, 'LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK', 'Civil Society Organization', '2500232253', 'LIB/PCA201711/PD201868', 'Signed PD/SSFA', '/api/v2/attachments/file/534/', '', 534, '02._Annex_C_Program_Document.pdf', 'LIB/PCA201749', '/api/v2/interventions/68/', 'Partnership Management Portal', 68, '2018-04-23 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (833, '', '', '', '', '', '/api/v2/attachments/file/833/', 'Mohamed Elmejrab', 833, 'CESVI_PCA_2019-2020_st8yhE7.pdf', '', '', '', NULL, '2019-01-13 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (846, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA2019124/PD201985', 'Signed PD/SSFA', '/api/v2/attachments/file/846/', 'Turkia Ben Saoud', 846, 'Annex_C_Elssafa_signed.pdf', 'LIB/PCA2019124', '/api/v2/interventions/85/', 'Partnership Management Portal', 85, '2019-02-17 00:00:00+00'); @@ -6993,6 +7146,7 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (796, 'EKRAA ASSEMBLY F INSERT INTO [[schema]].attachments_attachmentflat VALUES (797, 'EKRAA ASSEMBLY FOR DEVELOPMENT AND EDUCATION', 'Civil Society Organization', '2500233196', 'LIB/PCA201707/PD201678-2', 'Other', '/api/v2/attachments/file/797/', '', 797, '03._Detaild_Budget.pdf', 'LIB/PCA201743', '', 'Partnership Management Portal', 78, '2018-12-10 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (798, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201862-1', 'Final Partnership Review', '/api/v2/attachments/file/798/', '', 798, 'Annex_I._Joint_Partnership_Review.pdf', 'LIB/PCA2018113', '', 'Partnership Management Portal', 62, '2018-12-10 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (799, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201862-1', 'Correspondence', '/api/v2/attachments/file/799/', '', 799, 'Joint_Partnership_Review_MoM.pdf', 'LIB/PCA2018113', '', 'Partnership Management Portal', 62, '2018-12-10 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (883, '', '', '', '', '', '/api/v2/attachments/file/883/', 'Mohamed Elmejrab', 883, 'NRC_-_PCA_oxvK3WL.pdf', '', '', '', NULL, '2019-03-04 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (693, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201876', 'Signed PD/SSFA', '/api/v2/attachments/file/693/', '', 693, 'Annex_C._Programme_Document_zwpR0IO.pdf', 'LIB/PCA2018113', '/api/v2/interventions/76/', 'Partnership Management Portal', 76, '2018-11-26 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (757, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', 'LIB/PCA2018113/PD201876', 'Other', '/api/v2/attachments/file/757/', 'Mohamed Elmejrab', 757, 'Annex_C._Programme_Document.pdf', 'LIB/PCA2018113', '', 'Partnership Management Portal', 76, '2018-12-10 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (847, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA2019124/PD201985', 'Other', '/api/v2/attachments/file/847/', 'Turkia Ben Saoud', 847, 'PCA_legal_essafa_signed_2019.pdf', 'LIB/PCA2019124', '', 'Partnership Management Portal', 85, '2019-02-17 00:00:00+00'); @@ -7099,7 +7253,6 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (960, 'AL SAFWA CHARITY INSERT INTO [[schema]].attachments_attachmentflat VALUES (961, 'AL SAFWA CHARITY ORGANISATION', 'Civil Society Organization', '2500240059', 'LIB/SSFA2019148', 'FACE', '/api/v2/attachments/file/961/', 'Muna Fathi Khalifa Garamalli', 961, 'Alsafwa_Face_signed.pdf', 'LIB/SSFA2019148', '', 'Partnership Management Portal', 93, '2019-05-28 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (962, 'FREE FIELDS FOUNDATION', 'Civil Society Organization', '2500240179', 'LIB/PCA2019149/PD201995', 'Other', '/api/v2/attachments/file/962/', 'Nissrien Issa', 962, 'Annex_E._Partner_Declaration_3F_u6ppiNu.PDF', 'LIB/PCA2019149', '', 'Partnership Management Portal', 95, '2019-05-28 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (984, '', '', '', '', '', '/api/v2/attachments/file/984/', 'Turkia Ben Saoud', 984, 'Annex_C._Programme_Document_-_ELSSAFA_Oct_2018.pdf', '', '', '', NULL, '2019-06-25 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (967, '', '', '', '', '', '/api/v2/attachments/file/967/', 'Muna Fathi Khalifa Garamalli', 967, 'Alsafwa_SSFA_sigend_NzzuHCD.pdf', '', '', '', NULL, '2019-05-28 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (963, 'FREE FIELDS FOUNDATION', 'Civil Society Organization', '2500240179', 'LIB/PCA2019149/PD201995', 'Other', '/api/v2/attachments/file/963/', 'Nissrien Issa', 963, '3F_Financial_Report_and_Audit_2017_ENG.PDF', 'LIB/PCA2019149', '', 'Partnership Management Portal', 95, '2019-05-28 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (964, 'FREE FIELDS FOUNDATION', 'Civil Society Organization', '2500240179', 'LIB/PCA2019149/PD201995', 'Other', '/api/v2/attachments/file/964/', 'Nissrien Issa', 964, '3F_Salary_Scale_2019.pdf', 'LIB/PCA2019149', '', 'Partnership Management Portal', 95, '2019-05-28 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (965, 'FREE FIELDS FOUNDATION', 'Civil Society Organization', '2500240179', 'LIB/PCA2019149/PD201995', 'Partnership Review', '/api/v2/attachments/file/965/', 'Nissrien Issa', 965, 'Annex_E._Partner_Declaration_3F_gBLpMBY.PDF', 'LIB/PCA2019149', '', 'Partnership Management Portal', 95, '2019-05-28 00:00:00+00'); @@ -7131,6 +7284,7 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (969, 'FREE FIELDS FOUN INSERT INTO [[schema]].attachments_attachmentflat VALUES (970, 'FREE FIELDS FOUNDATION', 'Civil Society Organization', '2500240179', 'LIB/PCA2019149/PD201995', 'Other', '/api/v2/attachments/file/970/', 'Nissrien Issa', 970, 'UNICEF_3F_budget.pdf', 'LIB/PCA2019149', '', 'Partnership Management Portal', 95, '2019-05-28 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (971, 'FREE FIELDS FOUNDATION', 'Civil Society Organization', '2500240179', 'LIB/PCA2019149/PD201995', 'Other', '/api/v2/attachments/file/971/', 'Nissrien Issa', 971, 'UNICEF_3F_PCA_agreement_859YsHB.pdf', 'LIB/PCA2019149', '', 'Partnership Management Portal', 95, '2019-05-28 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (972, 'FREE FIELDS FOUNDATION', 'Civil Society Organization', '2500240179', 'LIB/PCA2019149/PD201995', 'Other', '/api/v2/attachments/file/972/', 'Nissrien Issa', 972, 'UNICEF_3F_Siged_Annex_G_X3CpKFR.PDF', 'LIB/PCA2019149', '', 'Partnership Management Portal', 95, '2019-05-28 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (981, '', '', '', '', '', '/api/v2/attachments/file/981/', 'Alla Almsri', 981, 'Detailed_Budget_-_Scouts.pdf', '', '', '', NULL, '2019-06-12 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (986, '', '', '', '', '', '/api/v2/attachments/file/986/', 'Muna Fathi Khalifa Garamalli', 986, 'Programme_Document_Eng_2019_Breezes_revised.docx', '', '', '', NULL, '2019-06-27 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (989, 'BREEZES LIBYA', 'Civil Society Organization', '2500233211', 'LIB/PCA2019147/PD201992', 'PRC Review', '/api/v2/attachments/file/989/', 'Muna Fathi Khalifa Garamalli', 989, 'Programme_Document_Eng_2019_Breezes_revised_IjMKivZ.docx', 'LIB/PCA2019147', '/api/v2/interventions/92/', 'Partnership Management Portal', 92, '2019-06-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (992, 'CESVI COOPERAZIONE E SVILUPPO CESVI', 'Civil Society Organization', '2500235018', 'LIB/PCA201716/PD201865-1', 'Other', '/api/v2/attachments/file/992/', 'Turkia Ben Saoud', 992, 'cesvi_amendmed_document_june_2019_VMKdcFE.pdf', 'LIB/PCA201755', '', 'Partnership Management Portal', 65, '2019-07-02 00:00:00+00'); @@ -7157,6 +7311,7 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (973, 'FREE FIELDS FOUN INSERT INTO [[schema]].attachments_attachmentflat VALUES (974, '', '', '', '', '', '/api/v2/attachments/file/974/', 'Nissrien Issa', 974, 'UNICEF_3F_Siged_Annex_G_1MqUZVc.PDF', '', '', '', NULL, '2019-05-28 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (975, 'FREE FIELDS FOUNDATION', 'Civil Society Organization', '2500240179', 'LIB/PCA2019149/PD201995', 'PRC Review', '/api/v2/attachments/file/975/', 'Nissrien Issa', 975, 'UNICEF_3F_Siged_Annex_G_ARytYJL.PDF', 'LIB/PCA2019149', '/api/v2/interventions/95/', 'Partnership Management Portal', 95, '2019-05-28 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (976, 'FREE FIELDS FOUNDATION', 'Civil Society Organization', '2500240179', 'LIB/PCA2019149/PD201995', 'Signed PD/SSFA', '/api/v2/attachments/file/976/', 'Nissrien Issa', 976, 'UNICEF_3F_Signed_PD_-_Annex_C_SkMCAT6.PDF', 'LIB/PCA2019149', '/api/v2/interventions/95/', 'Partnership Management Portal', 95, '2019-05-28 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (977, '', '', '', '', '', '/api/v2/attachments/file/977/', 'Muna Fathi Khalifa Garamalli', 977, 'Alsafwa_SSFA_sigend_dJ75MDQ.pdf', '', '', '', NULL, '2019-05-28 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (978, 'AL SAFWA CHARITY ORGANISATION', 'Civil Society Organization', '2500240059', 'LIB/SSFA2019148', 'Signed PD/SSFA', '/api/v2/attachments/file/978/', 'Muna Fathi Khalifa Garamalli', 978, 'Alsafwa_SSFA_sigend_qz5x8lu.pdf', 'LIB/SSFA2019148', '/api/v2/interventions/93/', 'Partnership Management Portal', 93, '2019-05-28 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (982, 'SCOUTS AND GUIDES HAY ALANDALUS TROOP', 'Civil Society Organization', '2500240112', 'LIB/PCA2019150/PD2019100', 'Other', '/api/v2/attachments/file/982/', 'Alla Almsri', 982, 'Detailed_Budget_-_Scouts_Ha2zp17.pdf', 'LIB/PCA2019150', '', 'Partnership Management Portal', 100, '2019-06-12 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (987, '', '', '', '', '', '/api/v2/attachments/file/987/', 'Muna Fathi Khalifa Garamalli', 987, 'Breezes_signed-stamped_PD.pdf', '', '', '', NULL, '2019-06-27 00:00:00+00'); @@ -7201,7 +7356,6 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (1069, 'INTERNATIONAL R INSERT INTO [[schema]].attachments_attachmentflat VALUES (1070, 'INTERNATIONAL RESCUE COMMITTEE', 'Civil Society Organization', '2500240795', 'LIB/PCA2019152/PD2019103', 'Other', '/api/v2/attachments/file/1070/', 'Turkia Ben Saoud', 1070, 'IRC_Registration_Libya_2019_4cvGR8B.jpg', 'LIB/PCA2019152', '', 'Partnership Management Portal', 103, '2019-10-10 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (1071, 'FREE FIELDS FOUNDATION', 'Civil Society Organization', '2500240179', 'LIB/PCA2019149/PD201995', 'Other', '/api/v2/attachments/file/1071/', 'Soraia Abu Monassar', 1071, 'Standard_Quarterly_Progress_Report_3F_UNICEF_signed_ZJ7ryEH.pdf', 'LIB/PCA2019149', '', 'Partnership Management Portal', 95, '2019-10-11 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (1077, 'FREE FIELDS FOUNDATION', 'Civil Society Organization', '2500240179', 'LIB/PCA2019149/PD201995', 'FACE', '/api/v2/attachments/file/1077/', 'Mohamed Elmejrab', 1077, 'Approved_Scanned_3F_FACE_1_reporitng_FACE_2_request_19092019.pdf', 'LIB/PCA2019149', '', 'Partnership Management Portal', 95, '2019-10-14 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (1098, 'NOOR ALHAYAT CHARITY ASSOCIATION', 'Civil Society Organization', '2500238760', 'LIB/PCA2018117/PD201875-4', '', '/api/v2/attachments/file/1098/', 'Turkia Ben Saoud', 1098, 'No-cost_extention_NACA_2019_SIGNED_-_Signed_ARG_YhgTp9l.pdf', 'LIB/PCA2018117', '', 'Partnership Management Portal', 75, '2019-10-17 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (1072, 'NOOR ALHAYAT CHARITY ASSOCIATION', 'Civil Society Organization', '2500238760', 'LIB/PCA2018117/PD201875-3', 'Report', '/api/v2/attachments/file/1072/', '', 1072, '17-09-2019_-_FMR_-_Child_Protection_-_NOOR_ALHAYAT_CHARITY_ASSOCIATION_-_Tripoli_1_9UcxQyY.pdf', 'LIB/PCA2018117', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F55%252Fdetails', 'Third Party Monitoring', 75, '2019-10-12 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (1073, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA2019124/PD201985', 'Report', '/api/v2/attachments/file/1073/', '', 1073, '17-09-19_-_FMR_-_Child_Protection_-_Essafa_Center_for_Mental_Health_-_Tripoli.pdf', 'LIB/PCA2019124', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F53%252Fdetails', 'Third Party Monitoring', 85, '2019-10-12 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (1074, 'NOOR ALHAYAT CHARITY ASSOCIATION', 'Civil Society Organization', '2500238760', 'LIB/PCA2018117/PD201875-3', 'Report', '/api/v2/attachments/file/1074/', '', 1074, '07-09-2019_-_FMR_-_Child_Protection_-_NOOR_ALHAYAT_CHARITY_ASSOCIATION_-_Ain_Zara.pdf', 'LIB/PCA2018117', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F52%252Fdetails', 'Third Party Monitoring', 75, '2019-10-12 00:00:00+00'); @@ -7220,12 +7374,16 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (1087, 'NOOR ALHAYAT CH INSERT INTO [[schema]].attachments_attachmentflat VALUES (1088, 'AL MOBADR ORGANIZATION FOR DEVELOPMENT AND CAPACITY BUILDING', 'Civil Society Organization', '2500237369', 'LIB/PCA2019141/PD201989-1', 'Report', '/api/v2/attachments/file/1088/', '', 1088, 'Zintan-_May.docx', 'LIB/PCA2019141', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F66%252Fdetails', 'Third Party Monitoring', 89, '2019-10-16 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (1089, 'AL MOBADR ORGANIZATION FOR DEVELOPMENT AND CAPACITY BUILDING', 'Civil Society Organization', '2500237369', 'LIB/PCA2019141/PD201989-1', 'Report', '/api/v2/attachments/file/1089/', '', 1089, 'Zintan_-June.docx', 'LIB/PCA2019141', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F67%252Fdetails', 'Third Party Monitoring', 89, '2019-10-16 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (1090, 'AL MOBADR ORGANIZATION FOR DEVELOPMENT AND CAPACITY BUILDING', 'Civil Society Organization', '2500237369', 'LIB/PCA2019141/PD201989-1', 'Report', '/api/v2/attachments/file/1090/', '', 1090, 'Progress_Report-_consultant_17.docx', 'LIB/PCA2019141', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F68%252Fdetails', 'Third Party Monitoring', 89, '2019-10-16 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1122, 'SCOUTS AND GUIDES HAY ALANDALUS TROOP', 'Civil Society Organization', '2500240112', 'LIB/PCA2019150/PD2019100-1', '', '/api/v2/attachments/file/1122/', 'Turkia Ben Saoud', 1122, 'scouts_signed_amendment_october_9th_H1D2krx.pdf', 'LIB/PCA2019150', '', 'Partnership Management Portal', 100, '2019-12-01 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (1091, 'AL MOBADR ORGANIZATION FOR DEVELOPMENT AND CAPACITY BUILDING', 'Civil Society Organization', '2500237369', 'LIB/PCA2019141/PD201989-1', 'Report', '/api/v2/attachments/file/1091/', '', 1091, 'Progress_Report-_consultant_17_x5XxVwD.docx', 'LIB/PCA2019141', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F68%252Fdetails', 'Third Party Monitoring', 89, '2019-10-16 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (1094, 'AL MOBADR ORGANIZATION FOR DEVELOPMENT AND CAPACITY BUILDING', 'Civil Society Organization', '2500237369', 'LIB/PCA2019141/PD201989-1', 'Report', '/api/v2/attachments/file/1094/', '', 1094, 'al_bayda_july_report.docx', 'LIB/PCA2019141', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F65%252Fdetails', 'Third Party Monitoring', 89, '2019-10-16 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (1095, 'AL MOBADR ORGANIZATION FOR DEVELOPMENT AND CAPACITY BUILDING', 'Civil Society Organization', '2500237369', 'LIB/PCA2019141/PD201989-1', 'Report', '/api/v2/attachments/file/1095/', '', 1095, 'al_bayda_june_report.docx', 'LIB/PCA2019141', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F65%252Fdetails', 'Third Party Monitoring', 89, '2019-10-16 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (1100, '', '', '', '', '', '/api/v2/attachments/file/1100/', 'Inaam Elbasir', 1100, 'INTERSOS_UNICEF_EOI_-_Baity_Sebha_PD_VF6modified.pdf', '', '', '', NULL, '2019-10-24 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1096, '', '', '', '', '', '/api/v2/attachments/file/1096/', 'Turkia Ben Saoud', 1096, 'No-cost_extention_NACA_2019_SIGNED_-_Signed_ARG.pdf', '', '', '', NULL, '2019-10-17 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1098, 'NOOR ALHAYAT CHARITY ASSOCIATION', 'Civil Society Organization', '2500238760', 'LIB/PCA2018117/PD201875-4', '', '/api/v2/attachments/file/1098/', 'Turkia Ben Saoud', 1098, 'No-cost_extention_NACA_2019_SIGNED_-_Signed_ARG_YhgTp9l.pdf', 'LIB/PCA2018117', '', 'Partnership Management Portal', 75, '2019-10-17 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (1097, 'NOOR ALHAYAT CHARITY ASSOCIATION', 'Civil Society Organization', '2500238760', 'LIB/PCA2018117/PD201875-4', '', '/api/v2/attachments/file/1097/', 'Turkia Ben Saoud', 1097, 'No-cost_extention_NACA_2019_SIGNED_-_Signed_ARG_UKxxPM9.pdf', 'LIB/PCA2018117', '', 'Partnership Management Portal', 75, '2019-10-17 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (1099, 'NOOR ALHAYAT CHARITY ASSOCIATION', 'Civil Society Organization', '2500238760', 'LIB/PCA2018117/PD201875-4', 'Other', '/api/v2/attachments/file/1099/', 'Turkia Ben Saoud', 1099, 'No-cost_extention_NACA_2019_SIGNED_-_Signed_ARG_tImX6PN.pdf', 'LIB/PCA2018117', '', 'Partnership Management Portal', 75, '2019-10-17 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1101, '', '', '', '', '', '/api/v2/attachments/file/1101/', 'Inaam Elbasir', 1101, 'Reference_Doc_5_Annex_G_PRC_Review_1final23091.pdf', '', '', '', NULL, '2019-10-24 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (1102, '', '', '', '', '', '/api/v2/attachments/file/1102/', 'Inaam Elbasir', 1102, 'Reference_Doc_5_Annex_G_PRC_Review_1final23091_JzdObst.pdf', '', '', '', NULL, '2019-10-24 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (1103, '', '', '', '', '', '/api/v2/attachments/file/1103/', 'Inaam Elbasir', 1103, 'INTERSOS_UNICEF_EOI_-_Baity_Sebha_PD_VF6modified_N2k7QBE.pdf', '', '', '', NULL, '2019-10-24 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (1107, 'INTERSOS', 'Civil Society Organization', '2500240867', '', '', '/api/v2/attachments/file/1107/', 'Inaam Elbasir', 1107, 'legal_agreement_Zxah2WQ.pdf', 'LIB/PCA2019153', '/api/v2/agreements/153/', 'Partnership Management Portal', NULL, '2019-10-27 00:00:00+00'); @@ -7241,6 +7399,45 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (1113, 'CESVI COOPERAZI INSERT INTO [[schema]].attachments_attachmentflat VALUES (1114, 'CESVI COOPERAZIONE E SVILUPPO CESVI', 'Civil Society Organization', '2500235018', 'LIB/PCA2019133/PD2019102', 'Other', '/api/v2/attachments/file/1114/', 'Inaam Elbasir', 1114, '201900906_Cesvi_final_Budget.pdf', 'LIB/PCA2019133', '', 'Partnership Management Portal', 102, '2019-10-28 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (1115, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA2019124/PD201985', 'Other', '/api/v2/attachments/file/1115/', 'Turkia Ben Saoud', 1115, 'Essafa_Annex_E.pdf', 'LIB/PCA2019124', '', 'Partnership Management Portal', 85, '2019-10-30 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (1116, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', 'LIB/PCA2019124/PD201985', 'Other', '/api/v2/attachments/file/1116/', 'Turkia Ben Saoud', 1116, 'Annex_E_Partner_Declaration_Profile_and_Due_Diligence_Verification_Eng_2019_-_Elssafa_002adjusted.pdf', 'LIB/PCA2019124', '', 'Partnership Management Portal', 85, '2019-11-05 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1117, '', '', '', '', 'Other', '/api/v2/attachments/file/1117/', '', 1117, 'scouts_signed_amendment_october_10th.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F72%252Fdetails', 'Third Party Monitoring', NULL, '2019-11-19 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1118, '', '', '', '', 'Other', '/api/v2/attachments/file/1118/', '', 1118, 'Annex_C_Elssafa_signed.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F73%252Fdetails', 'Third Party Monitoring', NULL, '2019-11-19 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1119, '', '', '', '', 'Other', '/api/v2/attachments/file/1119/', '', 1119, 'scouts_signed_amendment_october_10th.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F74%252Fdetails', 'Third Party Monitoring', NULL, '2019-11-19 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1120, '', '', '', '', 'Other', '/api/v2/attachments/file/1120/', '', 1120, 'Annex_C_-_Programme_Document_amendment_NACA.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F75%252Fdetails', 'Third Party Monitoring', NULL, '2019-11-19 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1121, '', '', '', '', '', '/api/v2/attachments/file/1121/', 'Turkia Ben Saoud', 1121, 'scouts_signed_amendment_october_9th.pdf', '', '', '', NULL, '2019-12-01 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1123, '', '', '', '', 'Overall Report', '/api/v2/attachments/file/1123/', '', 1123, 'FMR_-_Child_Protection_-_Essafa_Center_for_Mental_Health_-_Tripoli__26112019.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F73%252Fdetails', 'Third Party Monitoring', NULL, '2019-12-04 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1124, '', '', '', '', 'Overall Report', '/api/v2/attachments/file/1124/', '', 1124, '26-11-2019_-_FMR_-_Child_Protection_-_NOOR_ALHAYAT_CHARITY_ASSOCIATION_-_Tripoli__003.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F75%252Fdetails', 'Third Party Monitoring', NULL, '2019-12-04 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1125, 'MULTAKANA CENTER', 'Civil Society Organization', '2500236298', 'LIB/PCA2018122/PD201880-1', '', '/api/v2/attachments/file/1125/', 'Inaam Elbasir', 1125, 'Multakana_PD_ammendment_17032019.docx', 'LIB/PCA2018122', '', 'Partnership Management Portal', 80, '2019-12-08 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1126, 'MULTAKANA CENTER', 'Civil Society Organization', '2500236298', 'LIB/PCA2018122/PD201880-1', 'Other', '/api/v2/attachments/file/1126/', 'Inaam Elbasir', 1126, 'Multakana_PD_ammendment_17032019_EbZAtEd.docx', 'LIB/PCA2018122', '', 'Partnership Management Portal', 80, '2019-12-08 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1128, '', '', '', '', '', '/api/v2/attachments/file/1128/', 'Barbara Pellegrini', 1128, 'Cesvi__Baity_signed_and_stamped_eA1yVon.pdf', '', '', '', NULL, '2019-12-11 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1127, 'MULTAKANA CENTER', 'Civil Society Organization', '2500236298', 'LIB/PCA2018122/PD201880-2', '', '/api/v2/attachments/file/1127/', 'Inaam Elbasir', 1127, 'NCE_Multakana_signed.pdf', 'LIB/PCA2018122', '', 'Partnership Management Portal', 80, '2019-12-10 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1129, 'ALTADAMON FOR REHABILITATION AND PSYCOSOCIAL SUPPORT', 'Civil Society Organization', '2500238342', '', 'Report', '/api/v2/attachments/file/1129/', 'Zeena Karadsheh', 1129, 'Altadamon_for_Rehabilitation_and_Psychosocial_Support-_Spot_Check_Final_Report.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Fap%252Fspot-checks%252F5%252Foverview', 'Financial Assurance (FAM)', NULL, '2019-12-11 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1130, 'INTERSOS', 'Civil Society Organization', '2500240867', 'LIB/PCA2019153/PD2019104-1', '', '/api/v2/attachments/file/1130/', 'Barbara Pellegrini', 1130, 'INTERSOS_UNICEF_EOI_-_Baity_Sebha_PD_VF6modified_A4VGkxy.pdf', 'LIB/PCA2019153', '', 'Partnership Management Portal', 104, '2019-12-11 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1131, 'ALNAHLA ORGANIZATION FOR EDUCATION AWARENESS AND FAMILY AFFAIRS', 'Civil Society Organization', '2500231802', '', 'Report', '/api/v2/attachments/file/1131/', 'Zeena Karadsheh', 1131, 'Alnahla_Organization_-_Spot_Check_Final_Report_.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Fap%252Fspot-checks%252F4%252Foverview', 'Financial Assurance (FAM)', NULL, '2019-12-11 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1132, 'AL MOBADR ORGANIZATION FOR DEVELOPMENT AND CAPACITY BUILDING', 'Civil Society Organization', '2500237369', '', 'Report', '/api/v2/attachments/file/1132/', 'Zeena Karadsheh', 1132, 'Almobadr_Organization_-_Spot_Check_Final_Report.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Fap%252Fspot-checks%252F6%252Foverview', 'Financial Assurance (FAM)', NULL, '2019-12-17 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1133, 'INTERSOS', 'Civil Society Organization', '2500240867', 'LIB/PCA2019153/PD2019104-1', 'Other', '/api/v2/attachments/file/1133/', 'Barbara Pellegrini', 1133, 'INTERSOS_UNICEF_EOI_-_Baity_Sebha_PD_VF6modified_TcbhADq.pdf', 'LIB/PCA2019153', '', 'Partnership Management Portal', 104, '2019-12-17 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1134, 'INTERSOS', 'Civil Society Organization', '2500240867', 'LIB/PCA2019153/PD2019104-2', '', '/api/v2/attachments/file/1134/', 'Barbara Pellegrini', 1134, 'revised.pdf', 'LIB/PCA2019153', '', 'Partnership Management Portal', 104, '2019-12-18 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1135, 'HIGH COMMISSION OF CHILDREN', 'Government', '2500240885', '', '', '/api/v2/attachments/file/1135/', 'Turkia Ben Saoud', 1135, 'HCC_AWP_Review_meeting.pdf', '', '', 'Partnership Management Portal', NULL, '2019-12-18 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1136, 'HIGH COMMISSION OF CHILDREN', 'Government', '2500240885', '', '', '/api/v2/attachments/file/1136/', 'Turkia Ben Saoud', 1136, 'HCC_signed_document_meeting.jpg', '', '', 'Partnership Management Portal', NULL, '2019-12-18 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1137, 'HIGH COMMISSION OF CHILDREN', 'Government', '2500240885', '', '', '/api/v2/attachments/file/1137/', 'Turkia Ben Saoud', 1137, 'Signed_WP_high_committee_of_children_1.pdf', '', '', 'Partnership Management Portal', NULL, '2019-12-18 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1138, 'INTERSOS', 'Civil Society Organization', '2500240867', 'LIB/PCA2019153/PD2019105', '', '/api/v2/attachments/file/1138/', 'Barbara Pellegrini', 1138, 'INTERSOS_UNICEF_EOI_-__Hub_Sabha_PD_VF_20112019_INTERSOS_Signed_ARG_INTERSOS.pdf', 'LIB/PCA2019153', '/api/v2/interventions/105/', 'Partnership Management Portal', 105, '2019-12-19 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1139, 'CESVI COOPERAZIONE E SVILUPPO CESVI', 'Civil Society Organization', '2500235018', 'LIB/PCA2019133/PD2019102-1', '', '/api/v2/attachments/file/1139/', 'Barbara Pellegrini', 1139, 'Cesvi__Baity_signed_and_stamped_sRbN4Ct.pdf', 'LIB/PCA2019133', '', 'Partnership Management Portal', 102, '2019-12-19 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1140, 'CESVI COOPERAZIONE E SVILUPPO CESVI', 'Civil Society Organization', '2500235018', 'LIB/PCA2019133/PD2019102-1', 'Other', '/api/v2/attachments/file/1140/', 'Barbara Pellegrini', 1140, 'Cesvi__Baity_signed_and_stamped_c34Tmkz.pdf', 'LIB/PCA2019133', '', 'Partnership Management Portal', 102, '2019-12-19 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1142, '', '', '', '', 'Other', '/api/v2/attachments/file/1142/', '', 1142, 'WASH_AWP_2019-2020_English-Arabic_Status_Action_Justification.xlsx', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F77%252Fdetails', 'Third Party Monitoring', NULL, '2019-12-23 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1143, 'MULTAKANA CENTER', 'Civil Society Organization', '2500236298', 'LIB/PCA2018122/PD201880-2', 'Other', '/api/v2/attachments/file/1143/', '', 1143, 'DMQ_.docx', 'LIB/PCA2018122', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F78%252Fdetails', 'Third Party Monitoring', 80, '2019-12-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1144, 'MULTAKANA CENTER', 'Civil Society Organization', '2500236298', 'LIB/PCA2018122/PD201880-2', 'Other', '/api/v2/attachments/file/1144/', '', 1144, 'DMQ_.docx', 'LIB/PCA2018122', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Ftpm%252Fvisits%252F78%252Fdetails', 'Third Party Monitoring', 80, '2019-12-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1145, 'AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT', 'Civil Society Organization', '2500220006', '', '', '/api/v2/attachments/file/1145/', 'Inaam Elbasir', 1145, 'LIB_PCA2019155-AGENCE_D_AIDE_A_LA_COOPERATION_TECHNIQUE_ET_AU_DEVELOPPEMENT.pdf', 'LIB/PCA2019155', '/api/v2/agreements/155/', 'Partnership Management Portal', NULL, '2019-12-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1146, 'AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT', 'Civil Society Organization', '2500220006', 'LIB/PCA2019155/PD2019106', '', '/api/v2/attachments/file/1146/', 'Inaam Elbasir', 1146, 'annex_G_ACTED_signed.pdf', 'LIB/PCA2019155', '/api/v2/interventions/106/', 'Partnership Management Portal', 106, '2019-12-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1147, 'AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT', 'Civil Society Organization', '2500220006', 'LIB/PCA2019155/PD2019106', '', '/api/v2/attachments/file/1147/', 'Inaam Elbasir', 1147, 'Partnership_cooporation_agreement.pdf', 'LIB/PCA2019155', '/api/v2/interventions/106/', 'Partnership Management Portal', 106, '2019-12-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1148, 'ALTADAMON FOR REHABILITATION AND PSYCOSOCIAL SUPPORT', 'Civil Society Organization', '2500238342', '', 'FACE form', '/api/v2/attachments/file/1148/', 'Nayroz Alnaemi', 1148, 'FACE_100_Altadamon_Liquidation.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Fap%252Fspot-checks%252F16%252Foverview', 'Financial Assurance (FAM)', NULL, '2019-12-30 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1149, 'ALTADAMON FOR REHABILITATION AND PSYCOSOCIAL SUPPORT', 'Civil Society Organization', '2500238342', '', 'FACE form', '/api/v2/attachments/file/1149/', 'Nayroz Alnaemi', 1149, 'FACE_100_Altadamon_Request_2.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Fap%252Fspot-checks%252F16%252Foverview', 'Financial Assurance (FAM)', NULL, '2019-12-30 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1151, 'MULTAKANA CENTER', 'Civil Society Organization', '2500236298', '', 'FACE form', '/api/v2/attachments/file/1151/', 'Nayroz Alnaemi', 1151, 'FACE_114_Multakana_Liquidation_2.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Fap%252Fspot-checks%252F18%252Foverview', 'Financial Assurance (FAM)', NULL, '2019-12-31 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1150, 'CESVI COOPERAZIONE E SVILUPPO CESVI', 'Civil Society Organization', '2500235018', '', 'FACE form', '/api/v2/attachments/file/1150/', 'Nayroz Alnaemi', 1150, 'FACE_105_CESVI_Liquidation_2.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Fap%252Fspot-checks%252F17%252Foverview', 'Financial Assurance (FAM)', NULL, '2019-12-31 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1154, 'NOOR ALHAYAT CHARITY ASSOCIATION', 'Civil Society Organization', '2500238760', '', 'FACE form', '/api/v2/attachments/file/1154/', 'Nayroz Alnaemi', 1154, 'FACE_75_Noor_Alhayat_Liquidation.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Fap%252Fspot-checks%252F19%252Foverview', 'Financial Assurance (FAM)', NULL, '2019-12-31 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1155, 'EMDAD CHARITY SOCIETY', 'Civil Society Organization', '2500236901', '', 'FACE form', '/api/v2/attachments/file/1155/', 'Nayroz Alnaemi', 1155, 'FACE_128_Emdad_Liquidation.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Fap%252Fspot-checks%252F20%252Foverview', 'Financial Assurance (FAM)', NULL, '2019-12-31 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1158, '', '', '', '', '', '/api/v2/attachments/file/1158/', 'Nayroz Alnaemi', 1158, 'FACE_105_CESVI_Liquidation_2_xrS8dyn.pdf', '', '', '', NULL, '2019-12-31 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1159, 'MULTAKANA CENTER', 'Civil Society Organization', '2500236298', '', 'FACE form', '/api/v2/attachments/file/1159/', 'Nayroz Alnaemi', 1159, 'FACE_82_Multakana_Liquidation.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Fap%252Fspot-checks%252F18%252Foverview', 'Financial Assurance (FAM)', NULL, '2019-12-31 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1160, 'ESSAFA CENTRE FOR MENTAL HEALTH', 'Civil Society Organization', '2500231382', '', 'FACE form', '/api/v2/attachments/file/1160/', 'Nayroz Alnaemi', 1160, 'FACE_97_Essafa_Report.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D48%26next%3D%252Fap%252Fspot-checks%252F15%252Foverview', 'Financial Assurance (FAM)', NULL, '2019-12-31 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (1161, 'AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT', 'Civil Society Organization', '2500220006', 'LIB/PCA2019155/PD2019106', 'Other', '/api/v2/attachments/file/1161/', 'Barbara Pellegrini', 1161, 'PD_signed_NcTuKTM.pdf', 'LIB/PCA2019155', '', 'Partnership Management Portal', 106, '2020-01-08 00:00:00+00'); -- @@ -7259,9 +7456,6 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (1116, 'ESSAFA CENTRE F -- Data for Name: audit_engagement; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].audit_engagement VALUES (15, '2019-09-24 12:56:13.921834+00', '2019-09-24 12:56:13.921834+00', 'partner_contacted', '2019-09-10', 'sc', '2019-10-01', '2019-12-31', 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 1, false, 324, NULL, '{}', 0.00, ''); -INSERT INTO [[schema]].audit_engagement VALUES (6, '2019-03-05 08:21:22.271895+00', '2019-10-22 09:29:09.7784+00', 'partner_contacted', '2018-12-15', 'sc', '2018-03-01', '2018-06-01', 89600.00, '2018-12-30', '2018-12-30', NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 73, false, 73, 182, '{}', 0.00, ''); -INSERT INTO [[schema]].audit_engagement VALUES (5, '2019-03-05 08:15:57.123504+00', '2019-10-22 09:29:33.011887+00', 'partner_contacted', '2018-12-15', 'sc', '2018-04-15', '2018-07-15', 53500.00, '2018-12-30', '2018-12-30', '2019-08-03', NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 79, false, 73, 182, '{}', 0.00, ''); INSERT INTO [[schema]].audit_engagement VALUES (8, '2019-09-22 12:04:12.610237+00', '2019-09-22 12:23:23.098266+00', 'partner_contacted', '2019-09-10', 'sc', '2019-10-01', '2019-12-31', 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 12, false, 324, NULL, '{}', 0.00, ''); INSERT INTO [[schema]].audit_engagement VALUES (9, '2019-09-22 12:29:50.950513+00', '2019-09-22 12:31:57.742339+00', 'cancelled', '2019-09-10', 'sc', '2019-10-01', '2019-12-31', 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2019-09-22', 0.00, 0.00, 0.00, 0.00, 'insert duplication', '', 12, false, 324, NULL, '{}', 0.00, ''); INSERT INTO [[schema]].audit_engagement VALUES (11, '2019-09-22 12:42:51.277742+00', '2019-09-22 12:43:29.543408+00', 'partner_contacted', '2019-09-10', 'sc', '2019-10-01', '2019-12-31', 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 5, false, 324, NULL, '{}', 0.00, ''); @@ -7269,11 +7463,22 @@ INSERT INTO [[schema]].audit_engagement VALUES (12, '2019-09-22 12:54:44.749039+ INSERT INTO [[schema]].audit_engagement VALUES (10, '2019-09-22 12:34:04.087913+00', '2019-09-22 13:03:05.503431+00', 'cancelled', '2019-09-10', 'sc', '2019-10-01', '2019-12-31', 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2019-09-22', 0.00, 0.00, 0.00, 0.00, 'No proper attachment', '', 17, false, 324, NULL, '{}', 0.00, ''); INSERT INTO [[schema]].audit_engagement VALUES (13, '2019-09-22 13:10:45.057372+00', '2019-09-22 13:11:23.37883+00', 'partner_contacted', '2019-09-10', 'sc', '2019-10-01', '2019-12-31', 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 16, false, 324, NULL, '{}', 0.00, ''); INSERT INTO [[schema]].audit_engagement VALUES (14, '2019-09-23 09:29:49.338129+00', '2019-09-23 09:30:30.141704+00', 'partner_contacted', '2019-09-10', 'sc', '2019-10-01', '2019-12-31', 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 6, false, 324, NULL, '{}', 0.00, ''); -INSERT INTO [[schema]].audit_engagement VALUES (4, '2019-03-05 07:59:59.409701+00', '2019-09-23 11:11:34.149166+00', 'partner_contacted', '2018-12-15', 'sc', '2018-09-26', '2018-11-26', 36000.00, '2018-12-30', '2018-12-30', NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 13, false, 73, 182, '{}', 0.00, ''); INSERT INTO [[schema]].audit_engagement VALUES (3, '2019-03-05 07:48:22.169711+00', '2019-09-23 11:14:18.604811+00', 'report_submitted', '2018-12-15', 'sc', '2018-01-26', '2018-03-26', 103753.74, '2018-12-30', '2018-12-30', '2019-06-27', '2019-07-14', '2019-08-01', '2019-09-16', NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 23, false, 73, 182, '{}', 0.71, ''); INSERT INTO [[schema]].audit_engagement VALUES (2, '2019-03-04 15:04:51.998942+00', '2019-09-23 11:15:03.015812+00', 'report_submitted', '2018-12-15', 'sc', '2018-05-07', '2018-08-07', 363027.90, '2018-12-30', '2018-12-30', '2019-07-16', '2019-07-24', '2019-08-07', '2019-09-02', NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 4, false, 73, 182, '{}', 0.71, ''); INSERT INTO [[schema]].audit_engagement VALUES (1, '2019-03-04 14:07:55.748225+00', '2019-09-23 11:16:32.135485+00', 'report_submitted', '2018-12-15', 'sc', '2018-03-22', '2018-06-22', 93896.00, '2018-12-30', '2018-12-30', '2019-05-25', '2019-06-16', '2019-08-01', '2019-09-02', NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 1, false, 73, 182, '{}', 0.71, ''); INSERT INTO [[schema]].audit_engagement VALUES (7, '2019-09-22 11:22:55.450488+00', '2019-10-08 15:17:31.685913+00', 'partner_contacted', '2019-09-10', 'sc', '2019-10-01', '2019-12-31', 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 80, false, 324, NULL, '{}', 0.00, ''); +INSERT INTO [[schema]].audit_engagement VALUES (4, '2019-03-05 07:59:59.409701+00', '2019-12-12 08:12:22.303383+00', 'report_submitted', '2018-12-15', 'sc', '2018-09-26', '2018-11-26', 36000.00, '2018-12-30', '2018-12-30', '2019-10-19', '2019-10-28', '2019-11-13', '2019-12-11', NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 13, false, 73, 182, '{}', 0.00, 'USD'); +INSERT INTO [[schema]].audit_engagement VALUES (5, '2019-03-05 08:15:57.123504+00', '2019-12-12 08:12:29.701674+00', 'report_submitted', '2018-12-15', 'sc', '2018-04-15', '2018-07-15', 53500.00, '2018-12-30', '2018-12-30', '2019-10-08', '2019-11-07', '2019-11-27', '2019-12-11', NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 79, false, 73, 182, '{}', 0.00, 'USD'); +INSERT INTO [[schema]].audit_engagement VALUES (16, '2019-12-30 13:52:37.778759+00', '2020-01-14 10:51:05.866495+00', 'partner_contacted', '2019-09-10', 'sc', '2019-10-01', '2019-12-31', 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 79, false, 324, NULL, '{}', 0.00, ''); +INSERT INTO [[schema]].audit_engagement VALUES (21, '2020-01-14 11:04:31.714697+00', '2020-01-14 11:08:26.948629+00', 'partner_contacted', '2019-09-10', 'sc', '2019-10-01', '2019-12-31', 371500.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 79, false, 324, NULL, '{}', 0.00, ''); +INSERT INTO [[schema]].audit_engagement VALUES (17, '2019-12-30 14:54:10.507939+00', '2020-01-14 11:11:19.431418+00', 'partner_contacted', '2019-09-10', 'sc', '2019-10-01', '2019-12-31', 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 23, false, 324, NULL, '{}', 0.00, ''); +INSERT INTO [[schema]].audit_engagement VALUES (6, '2019-03-05 08:21:22.271895+00', '2019-12-17 08:42:28.401701+00', 'report_submitted', '2018-12-15', 'sc', '2018-03-01', '2018-06-01', 89600.00, '2019-03-21', '2019-03-24', '2019-10-14', '2019-10-28', '2019-11-12', '2019-12-17', NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 73, false, 73, 182, '{}', 0.00, 'USD'); +INSERT INTO [[schema]].audit_engagement VALUES (19, '2019-12-31 08:39:31.005099+00', '2019-12-31 08:42:38.262655+00', 'partner_contacted', '2019-09-10', 'sc', '2019-10-01', '2019-12-31', 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 81, false, 324, NULL, '{}', 0.00, ''); +INSERT INTO [[schema]].audit_engagement VALUES (20, '2019-12-31 09:08:55.50076+00', '2019-12-31 09:09:41.571281+00', 'partner_contacted', '2019-09-10', 'sc', '2019-10-01', '2019-12-31', 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 38, false, 324, NULL, '{}', 0.00, ''); +INSERT INTO [[schema]].audit_engagement VALUES (18, '2019-12-31 08:28:52.741312+00', '2019-12-31 09:24:04.912358+00', 'partner_contacted', '2019-09-10', 'sc', '2019-10-01', '2019-12-31', 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 37, false, 324, NULL, '{}', 0.00, ''); +INSERT INTO [[schema]].audit_engagement VALUES (15, '2019-09-24 12:56:13.921834+00', '2019-12-31 09:57:41.632203+00', 'partner_contacted', '2019-09-10', 'sc', '2019-10-01', '2019-12-31', 0.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 1, false, 324, NULL, '{}', 0.00, ''); +INSERT INTO [[schema]].audit_engagement VALUES (22, '2020-01-14 11:15:31.629333+00', '2020-01-14 11:16:23.646398+00', 'partner_contacted', '2019-09-10', 'sc', '2019-10-01', '2019-12-31', 87685.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 23, false, 324, NULL, '{}', 0.00, ''); +INSERT INTO [[schema]].audit_engagement VALUES (23, '2020-01-14 11:23:31.492275+00', '2020-01-14 11:24:07.508678+00', 'partner_contacted', '2019-09-10', 'sc', '2019-10-01', '2019-12-31', 600116.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 1, false, 324, NULL, '{}', 0.00, ''); -- @@ -7286,6 +7491,11 @@ INSERT INTO [[schema]].audit_engagement_active_pd VALUES (3, 6, 56); INSERT INTO [[schema]].audit_engagement_active_pd VALUES (4, 3, 65); INSERT INTO [[schema]].audit_engagement_active_pd VALUES (5, 5, 69); INSERT INTO [[schema]].audit_engagement_active_pd VALUES (6, 4, 66); +INSERT INTO [[schema]].audit_engagement_active_pd VALUES (7, 16, 69); +INSERT INTO [[schema]].audit_engagement_active_pd VALUES (8, 17, 102); +INSERT INTO [[schema]].audit_engagement_active_pd VALUES (9, 21, 69); +INSERT INTO [[schema]].audit_engagement_active_pd VALUES (10, 22, 102); +INSERT INTO [[schema]].audit_engagement_active_pd VALUES (11, 23, 85); -- @@ -7306,18 +7516,39 @@ INSERT INTO [[schema]].audit_engagement_authorized_officers VALUES (11, 12, 68); INSERT INTO [[schema]].audit_engagement_authorized_officers VALUES (12, 13, 57); INSERT INTO [[schema]].audit_engagement_authorized_officers VALUES (13, 14, 10); INSERT INTO [[schema]].audit_engagement_authorized_officers VALUES (14, 15, 1); +INSERT INTO [[schema]].audit_engagement_authorized_officers VALUES (15, 16, 64); +INSERT INTO [[schema]].audit_engagement_authorized_officers VALUES (16, 17, 18); +INSERT INTO [[schema]].audit_engagement_authorized_officers VALUES (17, 18, 6); +INSERT INTO [[schema]].audit_engagement_authorized_officers VALUES (18, 19, 66); +INSERT INTO [[schema]].audit_engagement_authorized_officers VALUES (19, 20, 15); +INSERT INTO [[schema]].audit_engagement_authorized_officers VALUES (20, 21, 64); +INSERT INTO [[schema]].audit_engagement_authorized_officers VALUES (21, 22, 18); +INSERT INTO [[schema]].audit_engagement_authorized_officers VALUES (22, 23, 1); -- -- Data for Name: audit_engagement_offices; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].audit_engagement_offices VALUES (1, 16, 201); +INSERT INTO [[schema]].audit_engagement_offices VALUES (2, 17, 201); +INSERT INTO [[schema]].audit_engagement_offices VALUES (3, 18, 201); +INSERT INTO [[schema]].audit_engagement_offices VALUES (4, 19, 201); +INSERT INTO [[schema]].audit_engagement_offices VALUES (5, 20, 201); +INSERT INTO [[schema]].audit_engagement_offices VALUES (6, 22, 201); +INSERT INTO [[schema]].audit_engagement_offices VALUES (7, 23, 201); -- -- Data for Name: audit_engagement_sections; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].audit_engagement_sections VALUES (1, 16, 1); +INSERT INTO [[schema]].audit_engagement_sections VALUES (2, 17, 1); +INSERT INTO [[schema]].audit_engagement_sections VALUES (3, 18, 1); +INSERT INTO [[schema]].audit_engagement_sections VALUES (4, 19, 1); +INSERT INTO [[schema]].audit_engagement_sections VALUES (5, 20, 4); +INSERT INTO [[schema]].audit_engagement_sections VALUES (6, 22, 1); -- @@ -7351,6 +7582,7 @@ INSERT INTO [[schema]].audit_engagement_staff_members VALUES (24, 3, 559); INSERT INTO [[schema]].audit_engagement_staff_members VALUES (25, 5, 559); INSERT INTO [[schema]].audit_engagement_staff_members VALUES (27, 7, 453); INSERT INTO [[schema]].audit_engagement_staff_members VALUES (44, 5, 692); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (45, 16, 1358); INSERT INTO [[schema]].audit_engagement_staff_members VALUES (30, 8, 625); INSERT INTO [[schema]].audit_engagement_staff_members VALUES (31, 9, 892); INSERT INTO [[schema]].audit_engagement_staff_members VALUES (32, 10, 890); @@ -7360,15 +7592,29 @@ INSERT INTO [[schema]].audit_engagement_staff_members VALUES (35, 13, 892); INSERT INTO [[schema]].audit_engagement_staff_members VALUES (36, 14, 889); INSERT INTO [[schema]].audit_engagement_staff_members VALUES (37, 15, 890); INSERT INTO [[schema]].audit_engagement_staff_members VALUES (38, 7, 454); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (46, 17, 1358); INSERT INTO [[schema]].audit_engagement_staff_members VALUES (40, 7, 452); INSERT INTO [[schema]].audit_engagement_staff_members VALUES (41, 7, 205); INSERT INTO [[schema]].audit_engagement_staff_members VALUES (42, 7, 149); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (47, 18, 1358); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (48, 19, 1358); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (49, 20, 1358); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (50, 21, 1358); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (51, 22, 1358); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (52, 23, 1358); -- -- Data for Name: audit_engagement_users_notified; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].audit_engagement_users_notified VALUES (1, 16, 23637); +INSERT INTO [[schema]].audit_engagement_users_notified VALUES (2, 17, 17635); +INSERT INTO [[schema]].audit_engagement_users_notified VALUES (3, 19, 23637); +INSERT INTO [[schema]].audit_engagement_users_notified VALUES (4, 20, 12212); +INSERT INTO [[schema]].audit_engagement_users_notified VALUES (5, 21, 11490); +INSERT INTO [[schema]].audit_engagement_users_notified VALUES (6, 22, 23637); +INSERT INTO [[schema]].audit_engagement_users_notified VALUES (7, 23, 11490); -- @@ -7397,6 +7643,10 @@ INSERT INTO [[schema]].audit_finding VALUES (4, 'high', 'insufficient_supporting INSERT INTO [[schema]].audit_finding VALUES (2, 'high', 'poor_record_keeping', 'Receipts and disbursements, related to the project are not booked or posted on accounting system nor a manual bookkeeping. This might increase the possibility of errors and might reduce the reliability of the project financial management.', 'We will consider this to improve our financial work in the future.', NULL, 1); +INSERT INTO [[schema]].audit_finding VALUES (44, 'high', 'insufficient_supporting_documentation', 'During our inspection, we found that the following transactions occurred with missing attendance sheet. +-There is no voucher number for a three-day training costs for 20 participants budgeted at $20/person/day at 4 municipalities, at an amount of 2,203. +-There is no voucher number for Printing, overhead projector lease cost, and stationaries at an amount of 1,412.', 'This is noted and a mechanism will be developed to deal with training courses and workshops in order to set conditions and requirements for each course and to ensure providing related reports, disclosure of attendance and action plans. +Auditor comments: Management should emphasize on the importance of recording and approving the attendance of the participants. Relevant reports should be generated showing the attendance, to identify and investigate cases of unrecorded attendance then take appropriate action.', NULL, 6); INSERT INTO [[schema]].audit_finding VALUES (5, 'low', 'lack_of_bank_reconciliations', 'We have found that the IP does not maintain a separate bank account for UNICEF, neither have project number or donor code to trace the transactions to the bank account, we also found that there is no accounting system to ease the process of reconciling the amounts to the bank statement.', 'There is a separate account number which we sent you.', NULL, 2); INSERT INTO [[schema]].audit_finding VALUES (6, 'low', 'insufficient_supporting_documentation', 'The Supporting documents of the selected sample were not stamped “PAID by UNICEF grant” indicating the project title, it is important to use PAID stamps to avoid duplication of payments or allocating the same expenditure to different projects.', 'UNICEF is indicated by posting UNICEF logo with a written indication that the funding is provided by UNICEF in all documents sent to you.', NULL, 2); INSERT INTO [[schema]].audit_finding VALUES (12, 'high', 'no_proof_of_payment', 'Payment vouchers can be used for a variety of purposes were it covers the control to indicate that an invoice @@ -7424,27 +7674,17 @@ INSERT INTO [[schema]].audit_finding VALUES (18, 'high', 'insufficient_supportin following transactions did not match with the recorded amount shown on the transactions list. Details of the transactions in the report.', 'We will consider this to improve our financial work in the future.', NULL, 1); INSERT INTO [[schema]].audit_finding VALUES (11, 'low', 'lack_of_segregation_of_duties', 'There is no adequate segregation of duties between disbursing the expense and the approval threshold. During our inspection of the selected sample, we found that the following payment was disbursed and approved by the same individual (Finance Manager) as shown below : Finance manager: 750: 24 June 2018', 'These procedures are followed by the approval of the Board of Directors and they are authorized to do so in order to speed the completion and this happened because the batch was delayed in reaching us.', NULL, 2); -INSERT INTO [[schema]].audit_finding VALUES (40, 'low', 'insufficient_supporting_documentation', 'The Supporting documents of the selected sample were not stamped “PAID by UNICEF grant” indicating the project title “Youth Participation and Civic Engagement”, it is important to use PAID stamps to avoid duplication of payments or allocating the same expenditure to different projects', '', NULL, 6); -INSERT INTO [[schema]].audit_finding VALUES (41, 'high', 'insufficient_supporting_documentation', 'Throughout our understanding, we found that the IP subcontracted with four local partners in Libya to carry out the activities of the project. We found that the IP has only prepared one subcontract with one of the local partners. Written contracts help minimize misunderstanding and the occurrence of errors in respect of terms, conditions and right of both.', '', NULL, 6); -INSERT INTO [[schema]].audit_finding VALUES (61, 'high', 'no_supporting_documentation', 'During our inspection, we found that the following transaction occurred with missing attendance sheet and -selection process of the implementing partner. Voucher ID not known, Description: Organization of Training of trainers on - -SLEiDSE social -entrepreneurship approach targeting 20 -facilitators in the Municipality of Zintan, and Amount: 10,000.', '', NULL, 5); INSERT INTO [[schema]].audit_finding VALUES (23, 'high', 'insufficient_supporting_documentation', 'We were unable to trace the supporting documents to the reported expenses due to no voucher numbers documented to each expense. The organization trace the expense through an excel sheet that include protocollo number, description and amount. Having the voucher number not documented can lead to unauthorized payments incurred and unrecorded transactions cannot be identified.', 'Payment voucher with protocol number and signature for authorization of payment will be implemented immediately and all support documents of expenses from July 2018 will accompanied with that. Action will be completed by end of June 2019.', NULL, 3); INSERT INTO [[schema]].audit_finding VALUES (20, 'low', 'other', 'We have found that the IP does not maintain a separate bank account for UNICEF, neither have project number or donor code to trace the transactions to the bank account, we also found that there is no accounting system to ease the process of reconciling the amounts to the bank statement.', 'We will consider this to improve our financial work in the future.', NULL, 1); -INSERT INTO [[schema]].audit_finding VALUES (24, 'high', 'poor_record_keeping', 'We were unable to link the period reported in the FACE Form to the provided supporting documents, therefore we could not examine the cutoff dates for which the supporting documents where provided.', '', NULL, 6); -INSERT INTO [[schema]].audit_finding VALUES (25, 'high', 'poor_record_keeping', 'Receipts and disbursement, related to the project are not booked or posted in accounting system nor a manual bookkeeping. This might increase the possibility of errors and might reduce the reliability of the project financial management.', '', NULL, 6); -INSERT INTO [[schema]].audit_finding VALUES (29, 'high', 'lack_of_bank_reconciliations', 'Almobadr organization does not perform bank reconciliation; therefore, we could not perform reconciliation between the bank statement and supporting documents. Moreover, we could not trace the amounts paid through a bank statement as the IP withdraws a lump sum from the bank once needed and spends it accordingly. In addition, we noted that Almobadr Organization uses the same bank account to manage its financial resources and does not have a special or a designated bank account for each project. This might cause UNICEF funds to be comingled with other funds or used for different purposes.', '', NULL, 6); -INSERT INTO [[schema]].audit_finding VALUES (31, 'high', 'lack_of_bank_reconciliations', 'Payment vouchers can be used for a variety of purposes were it covers the control to indicate that an invoice has been approved for payment according to the authority matrix. During our inspection of the selected sample, we found that Almobadr organization do not use/issue payment vouchers utilized during the process of settling due payments to vendors / suppliers, instead they get the approval on the payment request.', '', NULL, 6); -INSERT INTO [[schema]].audit_finding VALUES (33, 'high', 'insufficient_supporting_documentation', 'We were unable to trace the supporting documents to the reported expenses due to no voucher numbers documented to each expense. The organization trace the expense through the supporting document description and amount. Having the voucher number not documented can lead to unauthorized payments incurred and unrecorded transactions cannot be identified.', '', NULL, 6); -INSERT INTO [[schema]].audit_finding VALUES (34, 'high', 'insufficient_supporting_documentation', 'Almobadr organization does not open a cost center based on the project number and budget line nor manually document the budget line on the supporting documents. Therefore, we could not allocate the expense to the approved detailed budget line.', '', NULL, 6); -INSERT INTO [[schema]].audit_finding VALUES (36, 'high', 'poor_record_keeping', 'We were not able to obtain Almobadr organization Procurement policy to assess whether the supporting documents provided complied with the IP’s procurement procedure and that the supporting documents were reviewed and approved according to Almobadr organization procurement policy.', '', NULL, 6); -INSERT INTO [[schema]].audit_finding VALUES (37, 'high', 'lack_of_bank_reconciliations', 'Almobadr organization does not perform bank reconciliation; therefore, we could not perform reconciliation between the bank statement and supporting documents. Moreover, we could not trace the amounts paid through a bank statement as the IP withdraws a lump sum from the bank once needed and spends it accordingly. In addition, we noted that Almobadr Organization uses the same bank account to manage its financial resources and does not have a special or a designated bank account for each project. This might cause UNICEF funds to be comingled with other funds or used for different purposes.', '', NULL, 6); -INSERT INTO [[schema]].audit_finding VALUES (39, 'low', 'lack_of_audit_trail', 'We could not reconcile the statement of expenditure and ICE report to the approved detailed budget due to difference in activity numbers and difference between the total UNICEF Contributions in the approved detailed budget and statement of expenditure.', '', NULL, 6); +INSERT INTO [[schema]].audit_finding VALUES (34, 'high', 'insufficient_supporting_documentation', 'Almobadr organization does not open a cost center based on the project number and budget line nor manually document the budget line on the supporting documents. Therefore, we could not allocate the expense to the approved detailed budget line.', 'This is well noted.', NULL, 6); +INSERT INTO [[schema]].audit_finding VALUES (36, 'high', 'poor_record_keeping', 'We were not able to obtain Almobadr organization Procurement policy to assess whether the supporting documents provided complied with the IP’s procurement procedure and that the supporting documents were reviewed and approved according to Almobadr organization procurement policy.', 'This is noted. A procurement manual has been prepared as part of Almobadr financial manual.', NULL, 6); +INSERT INTO [[schema]].audit_finding VALUES (24, 'high', 'poor_record_keeping', 'We were unable to link the period reported in the FACE Form to the provided supporting documents, therefore we could not examine the cutoff dates for which the supporting documents where provided.', 'It is now linked through the excel file prepared by the financial accounting company we contracted with, in order to link each action and document with each activity. +UNICEF Comments: +UNICEF concerned section will continue to monitor the progress as reported by partner on this area, as IP has taken action to further enhance.', NULL, 6); +INSERT INTO [[schema]].audit_finding VALUES (31, 'high', 'other', 'Payment vouchers can be used for a variety of purposes were it covers the control to indicate that an invoice has been approved for payment according to the authority matrix. During our inspection of the selected sample, we found that Almobadr organization do not use/issue payment vouchers utilized during the process of settling due payments to vendors / suppliers, instead they get the approval on the payment request.', 'This is well noted. An administrative and financial training has been prepared and will be sent to you for review. +UNICEF Comments: Observation well noted, UNICEF will monitor the progress of the action mentioned above', NULL, 6); INSERT INTO [[schema]].audit_finding VALUES (26, 'high', 'other', 'Payment vouchers can be used for a variety of purposes were it covers the control to indicate that an invoice has been approved for payment according to the authority matrix. During our inspection of the selected sample, we found that CESVI do not use or issue payment vouchers to utilize the process of settling due payments to vendors / suppliers.', 'Payment voucher with protocol number and signature for authorization of payment will be implemented immediately and all support documents of expenses from July 2018 will accompanied with that. Action will be completed by end of June 2019.', NULL, 3); INSERT INTO [[schema]].audit_finding VALUES (32, 'high', 'insufficient_supporting_documentation', 'During our inspection, we have found that the some transactions have missing supporting documents. Details found in the report.', 'Attendance list for Protocol number 22, 23a, 23b and 23c are not in use because they are volunteer and they receive incentive. Timesheet is used only for Payroll staff. The presence of the volunteers has been verified daily by the supervisor. Attendance sheet will be in place anyway from May 2019 for improving accountability.', NULL, 3); @@ -7452,74 +7692,40 @@ INSERT INTO [[schema]].audit_finding VALUES (27, 'low', 'insufficient_supporting INSERT INTO [[schema]].audit_finding VALUES (28, 'low', 'other', 'We found that CESVI used the same bank account to manage its financial resources and did not have a special or a designated bank account for UNICEF until 27 June 2018. This might have caused UNICEF funds to be comingled with other funds or used for different purposes.', 'Dedicated bank account is in force and Cesvi will continue to operate with dedicated bank account.', NULL, 3); INSERT INTO [[schema]].audit_finding VALUES (38, 'low', 'other', 'Through our testing procedures, we found that the below transaction unit price documented in the approved programme work plan and budget differs than the amounts disbursed as stated below. Protocollo Number 2 of description: Payment 6 Laptop (loans for UNICEF) 7831,600 TND. Unit Price Recorded 548 and Unit Price in the approved budget is 450.', 'The unit cost in budget was 450 USD but the market at the moment of the procurement gave 548 USD per unit, and we compensated the higher unit cost buying less units, enough to cover the needs of the project.', NULL, 3); +INSERT INTO [[schema]].audit_finding VALUES (33, 'high', 'insufficient_supporting_documentation', 'We were unable to trace the supporting documents to the reported expenses due to no voucher numbers documented to each expense. The organization trace the expense through the supporting document description and amount. Having the voucher number not documented can lead to unauthorized payments incurred and unrecorded transactions cannot be identified.', 'A sequence number for each action is now provided through the excel file containing the financial books of the payment. +UNICEF Comments: It is good to see that the implementing partner responded to the auditor’s observation by taking immediate action, and the records are now clear. UNICEF will follow up with partner to ensure strengthened capacity in this regard.', NULL, 6); INSERT INTO [[schema]].audit_finding VALUES (42, 'high', 'insufficient_supporting_documentation', 'We were not able to determine the basis of salary calculation for the below transactions, as the employees contracts, timesheets, salary scale and payroll sheets are missing. --There is no voucher number for the Team leader cost with an amount of 4,800 --There is no voucher number for the Operation officer with an amount of 1,600', '', NULL, 6); -INSERT INTO [[schema]].audit_finding VALUES (43, 'high', 'insufficient_supporting_documentation', 'The normal sequence for purchasing goods usually starts with purchase request, once the IP select the most qualified supplier they issue purchase order to the supplier. The supplier then deliver the service and the IP records the transaction based on service completion. An invoice is sent by the supplier which is cross –checked with the purchase order/ agreement. The payment is then made and transferred to the supplier. During our inspection, we noted that Almobadr organization did not follow the sequence properly. --There is no voucher number for the Office internet connection with an amount of 400, where the missing document is Internet invoice. --There is no voucher number for the Establish youth centers with an amount of 36,000, where the missing document is Goods Receipt Note. --There is no voucher number for the Travel and lodging costs in Tunis for the team leader with an amount of 1,600, where the missing document is Goods Receipt Note. --There is no voucher number for the total fees including development with an amount of 4,800, where the missing document is Accommodation, transportation invoice and service of completion “training material and detailed report of workshop”.', '', NULL, 6); -INSERT INTO [[schema]].audit_finding VALUES (44, 'high', 'insufficient_supporting_documentation', 'During our inspection, we found that the following transactions occurred with missing attendance sheet. --There is no voucher number for a three-day training costs for 20 participants budgeted at $20/person/day at 4 municipalities, at an amount of 2,203. --There is no voucher number for Printing, overhead projector lease cost, and stationaries at an amount of 1,412.', '', NULL, 6); +-No Voucher number for the Team leader cost with an amount of 4,800 USD +-No Voucher number for the Operation officer with an amount of 1,600 USD', 'This is noted. A table will be created including compensation and salary grades and ranges.', NULL, 6); +INSERT INTO [[schema]].audit_finding VALUES (30, 'high', 'insufficient_supporting_documentation', 'The normal sequence for purchasing goods usually starts with purchase request, once the IP select the most qualified supplier they issue purchase order to the supplier. The supplier then deliver the service and the IP records the transaction based on service completion. An invoice is sent by the supplier which is cross – checked with the purchase order/ agreement. The payment is then made and transferred to the supplier. + +During our inspection, we found that CESVI did not follow the sequence as described in their procurement procedure for protocollo number 2, 41 and 16. +Details of the missing documents are in the report.', 'All documents will be completed by June 2019.', NULL, 3); INSERT INTO [[schema]].audit_finding VALUES (45, 'high', 'insufficient_supporting_documentation', 'Based on our understanding from management, the main activity for the project is to conduct training by trainers assigned from the local partner. The IP disbursed the below trainers’ fees without any supporting evidence that proofs that they conducted the training. -There is no voucher number for Civil Action Costs, with an amount of 8,900, and supporting documents Payment request and Payment receipt. --There is no voucher number for Project coordinator costs (40% of time) $1,250/m in each municipality including transportation fees and cost of a visit to Tripoli (accommodation and travel costs0029, with an amount of 3,000, and supporting documents Payment request and Payment receipt.', '', NULL, 6); -INSERT INTO [[schema]].audit_finding VALUES (46, 'low', 'other', 'We have inspected the expenditure of the selected items and agreed that these transactions or actions has been classified under the correct heading and subheading on the financial report except for the following sample. --There is no voucher number for Activity 1.4 Printing, overhead projector lease cost, and stationaries, with suggested heading Activity 1.1 Three-day training costs for 20 participants budgeted at $20/person/day at 4 municipalities.', '', NULL, 6); -INSERT INTO [[schema]].audit_finding VALUES (47, 'high', 'poor_record_keeping', 'There is no accounting system for the organization nor the transactions are recorded manually.', '', NULL, 4); -INSERT INTO [[schema]].audit_finding VALUES (48, 'high', 'lack_of_bank_reconciliations', 'Alnahla Organization does not perform bank reconciliations and statements; therefore, we could not perform reconciliation between bank statement and the transaction list.', '', NULL, 4); -INSERT INTO [[schema]].audit_finding VALUES (49, 'low', 'insufficient_supporting_documentation', 'The Supporting document of the selected sample were stamped “PAID from UNICEF grant” but without indicating the project title and code “Transitional Center”, including the stamp title is important to avoid allocating the same expenditure to different projects.', '', NULL, 4); -INSERT INTO [[schema]].audit_finding VALUES (50, 'high', 'insufficient_supporting_documentation', 'Through our testing procedures, we found that the transaction related to transitional center rent has no procurement procedure and gap analysis with the market performed to compare the lowest prices offered to rent a center.', '', NULL, 4); -INSERT INTO [[schema]].audit_finding VALUES (51, 'high', 'insufficient_supporting_documentation', 'Through our testing procedure, we noted that the transaction related to transitional center rent is missing bank transfer.', '', NULL, 4); -INSERT INTO [[schema]].audit_finding VALUES (52, 'high', 'other', 'We were unable to link the period reported in the FACE Form to the provided supporting documents, -therefore we could not examine the cutoff dates for which the supporting documents where provided.', '', NULL, 5); -INSERT INTO [[schema]].audit_finding VALUES (53, 'high', 'poor_record_keeping', 'Receipts and disbursement, related to the project are not booked or posted in accounting system nor a -manual bookkeeping. This might increase the possibility of errors and might reduce the reliability of the -project financial management.', '', NULL, 5); -INSERT INTO [[schema]].audit_finding VALUES (54, 'high', 'lack_of_bank_reconciliations', 'Altadamon does not perform bank reconciliation; therefore, we could not perform reconciliation between the -bank statement and supporting documents. In addition, we noted that Altadamon uses the same bank -account to manage its financial resources and does not have a special or a designated bank account for each -project. This might cause UNICEF funds to be comingled with other funds or used for different purposes.', '', NULL, 5); -INSERT INTO [[schema]].audit_finding VALUES (55, 'high', 'no_proof_of_payment', 'The normal sequence for purchasing goods or rendering a service usually starts with purchase request, once -the IP select the most qualified supplier they issue purchase order to the supplier. The supplier then deliver -the service and the IP records the transaction based on service completion. An invoice is sent by the supplier -which is cross – checked with the purchase order/ agreement. The payment is then made and transferred to -the supplier. -During our inspection, we noted that Altadamon does not issue/use purchase request, purchase order and -payment request.', '', NULL, 5); -INSERT INTO [[schema]].audit_finding VALUES (56, 'high', 'insufficient_supporting_documentation', 'Altadamon does not open a cost center based on the project number and budget line nor manually document -the budget line on the supporting documents. Therefore, we could not allocate the expense to the approved -detailed budget line.', '', NULL, 5); -INSERT INTO [[schema]].audit_finding VALUES (57, 'high', 'insufficient_supporting_documentation', 'We were not able to obtain Altadamon Procurement policy to assess whether the supporting documents -provided complied with the IP’s procurement procedure and that the supporting documents were reviewed -and approved according to Altadamon procurement policy.', '', NULL, 5); +-There is no voucher number for Project coordinator costs (40% of time) $1,250/m in each municipality including transportation fees and cost of a visit to Tripoli (accommodation and travel costs0029, with an amount of 3,000, and supporting documents Payment request and Payment receipt.', 'This is noted and a mechanism will be developed to deal with training courses and workshops in order to set conditions and requirements for each course and to ensure providing related reports, disclosure of attendance and action plans.', NULL, 6); +INSERT INTO [[schema]].audit_finding VALUES (48, 'high', 'lack_of_bank_reconciliations', 'Alnahla Organization does not perform bank reconciliations and statements; therefore, we could not perform reconciliation between bank statement and the transaction list.', 'In the past few months, one of the authorized officials has passed away, and it took some time to cancel his signature. +Auditor Comments: We still recommend the IP to perform bank reconciliations, the statement is an important tool as it detects errors that may have been committed either in cash book or bank statement. Furthermore, it helps in regular monitoring of cash flows.', NULL, 4); +INSERT INTO [[schema]].audit_finding VALUES (49, 'low', 'insufficient_supporting_documentation', 'The Supporting document of the selected sample were stamped “PAID from UNICEF grant” but without indicating the project title and code “Transitional Center”, including the stamp title is important to avoid allocating the same expenditure to different projects.', 'It was not agreed with UNICEF to include the name of the project to the receipt. However, we will take this note of that and will discuss accordingly with UNICEF. +UNICEF Comments: +It was agreed to have the stamp in the future projects.', NULL, 4); +INSERT INTO [[schema]].audit_finding VALUES (52, 'high', 'other', 'We were unable to link the period reported in the FACE Form to the provided supporting documents, therefore we could not examine the cutoff dates for which the supporting documents where provided.', 'Payment dates may vary due to delays in withdrawals and limited payments. +UNICEF Comments: Issue will be solved by ensuring documents submitted have reported period dates included', NULL, 5); INSERT INTO [[schema]].audit_finding VALUES (58, 'low', 'insufficient_supporting_documentation', 'The Supporting documents of the selected sample were not stamped “PAID by UNICEF grant” indicating the project title and code, it is important to use PAID stamps to avoid duplication of payments or allocating the -same expenditure to different projects.', '', NULL, 5); -INSERT INTO [[schema]].audit_finding VALUES (59, 'low', 'no_supporting_documentation', 'For some transactions we did not obtain the sufficient supporting documents as only the payment -voucher was attached. Details found in the report where all Voucher ID''s, Output Numbers, and Amounts are put.', '', NULL, 5); -INSERT INTO [[schema]].audit_finding VALUES (60, 'high', 'no_supporting_documentation', 'During our inspection of the selected sample, we found that the below transaction had missing payment -voucher. Voucher ID not found, Description: Organization of Training of trainers - -on SLEiDSE social -entrepreneurship approach -targeting 20 facilitators in the -Municipality of Zintan., Output: Output 2: young people, -especially those associated with -arms groups, are provided with -skills and opportunities for -economic participation, to -prevent militia involvement and -as societal tool for reintegration, and Amount: 10,000.', '', NULL, 5); -INSERT INTO [[schema]].audit_finding VALUES (62, 'high', 'other', 'We found that there is a difference between the reported expenses in the FACE form with the actual amount -expensed in the supporting documents. Below is the transaction reference: -Description: Organization of Training of -trainers on SLEiDSE social -entrepreneurship approach -targeting 20 facilitators in -the Municipality of Zintan, Amount in FACE Form: 10,000 , Amount per Supporting Documents: 7,722 , and Difference 2,278.', '', NULL, 5); +same expenditure to different projects.', 'No management response obtained. +UNICEF Comments: Unicef responsible officer will communicate with IP to ensure this step is taken.', NULL, 5); +INSERT INTO [[schema]].audit_finding VALUES (56, 'high', 'insufficient_supporting_documentation', 'Altadamon does not open a cost center based on the project number and budget line nor manually document the budget line on the supporting documents. Therefore, we could not allocate the expense to the approved detailed budget line.', 'For the same reasons mentioned earlier. However, we save documents according to the budget classification according to the picture previously sent to you. +Auditor Comments: It is still recommended to open a cost center based on the project number and budget line and document the budget line on the supporting documents.', NULL, 5); +INSERT INTO [[schema]].audit_finding VALUES (47, 'high', 'poor_record_keeping', 'There is no accounting system for the organization nor the transactions are recorded manually.', 'Management Response: Accounting system is very expensive in Libya, and it is beyond the capacity of the organization. We are still trying to gather the amount, yet we didn’t reach. +Auditor Comments: We still recommend the IP to adopt an accounting system. By adopting an accounting system the IP will save time and money due to but not limited to the following: +1- Automating tasks; +2- Reports automatically generated; and +3- Reducing the chance of error. +UNICEF Comments :it was agreed with IP to adopt a financial system, and that it will be added in any future project.', NULL, 4); +INSERT INTO [[schema]].audit_finding VALUES (46, 'low', 'other', 'We have inspected the expenditure of the selected items and agreed that these transactions or actions has been classified under the correct heading and subheading on the financial report except for the following sample. +-There is no voucher number for Activity 1.4 Printing, overhead projector lease cost, and stationaries, with suggested heading Activity 1.1 Three-day training costs for 20 participants budgeted at $20/person/day at 4 municipalities.', 'The classification of the transactions are now being processed by the excel file prepared by the accounting company. +UNICEF Comments: UNICEF concerned sections will follow up on this.', NULL, 6); INSERT INTO [[schema]].audit_finding VALUES (1, 'high', 'poor_record_keeping', 'Receipts and disbursements, related to the project are not booked or posted on accounting system nor a manual bookkeeping. This might increase the possibility of errors and might reduce the reliability of the project financial management.', 'We have a special file for all receipts but we do not have an electronic accounting system because it is very expensive and we are a small organization.', NULL, 2); INSERT INTO [[schema]].audit_finding VALUES (3, 'high', 'poor_record_keeping', 'Payment vouchers can be used for a variety of purposes were it covers the control to indicate that an invoice has been approved for payment according to the authority matrix. During our inspection of the selected sample, we found that Ekraa do not use/issue payment vouchers utilized during the process of settling due payments to vendors / suppliers.', 'We have a financial application form in accordance with our financial procedures and it is approved first before payment order.', NULL, 2); INSERT INTO [[schema]].audit_finding VALUES (10, 'high', 'insufficient_supporting_documentation', 'During our inspection of the selected sample, we found that the following transactions had missing supporting documents as shown below : @@ -7530,11 +7736,61 @@ Reporting and communication officer: 750 Program manager: 1,500', 'There is a cooperative model during the work period of the project and not a contract and it is binding on both parties because the contracts need to be certified by a competent specialist office and the contract costs 50 dinars. The office''s approval and the court''s approval costs 100 dinars totally is 150 dinars, and this cost we cannot cover.', NULL, 2); INSERT INTO [[schema]].audit_finding VALUES (21, 'low', 'insufficient_supporting_documentation', 'We found that there is a difference between the reported expenses in the FACE form with the actual amount expensed in the supporting documents. Moreover, we found that there is no sufficient documentation relating to share cost or cost allocation calculation (If any). Below is the transaction reference: The Raising awareness sessions have an amount in FACE form of 1,500 and an amount as per supporting documents 1,535, with a difference of 35.', 'This value is 1500 dinars and was paid an increase on the bill 35 dinars before Ekraa, because the prices change, and if we do not pay the amount the bill will be less than the value specified.', NULL, 2); -INSERT INTO [[schema]].audit_finding VALUES (30, 'high', 'insufficient_supporting_documentation', 'The normal sequence for purchasing goods usually starts with purchase request, once the IP select the most qualified supplier they issue purchase order to the supplier. The supplier then deliver the service and the IP records the transaction based on service completion. An invoice is sent by the supplier which is cross – checked with the purchase order/ agreement. The payment is then made and transferred to the supplier. - -During our inspection, we found that CESVI did not follow the sequence as described in their procurement procedure for protocollo number 2, 41 and 16. -Details of the missing documents are in the report.', 'All documents will be completed by June 2019.', NULL, 3); INSERT INTO [[schema]].audit_finding VALUES (35, 'low', 'other', 'We have inspected the expenditure of the selected items and agreed that the selected transaction has been classified under the correct heading and subheading on the FACE form except for the following sample. Protocollo number 9 with Allocated Budget Line A.6.1.3 - Team leader education [TOT. 2.978,25 ] and Suggested Heading: A.6.1.5 - Team leader protection [TOT. 2.861,22 ]', 'Comments is correct, the Team leader education should stay in his budget line. The team leaders (education and protection) salaries have been allocated in the wrong line. Being the salaries similar, the impact of the spent per budget line is minimal.', NULL, 3); +INSERT INTO [[schema]].audit_finding VALUES (60, 'high', 'insufficient_supporting_documentation', 'During our inspection of the selected sample, we found that the below transaction had missing payment voucher. +Voucher ID not found, Description: Organization of Training of trainerson SLEiDSE social +entrepreneurship approach targeting 20 facilitators in the Municipality of Zintan. + Output 2 Amount: USD 10,000.', 'Management Response : We are now reviewing the documents and will provide you with any available document. +Auditor comments: No documents were obtained.', NULL, 5); +INSERT INTO [[schema]].audit_finding VALUES (53, 'high', 'poor_record_keeping', 'Receipts and disbursement, related to the project are not booked or posted in accounting system nor a +manual bookkeeping. This might increase the possibility of errors and might reduce the reliability of the +project financial management.', 'Altadamon Organization relied on the same method of maintaining financial transactions in the previous project 2017 under the supervision of Al-Safa Center and supported by UNICEF. Where we save financial transactions in hard copies in a file depending on the budget. After that, we prepare a detailed statement for each quarter showing the financial value received and the mechanism of disbursement according to the terms of the agreement. +Auditor Comments: We still recommend the IP to adopt an accounting system. By adopting an accounting system the IP will save time and money due to but not limited to the following: +1- Automating tasks; +2- Reports automatically generated; and +3- Reducing the chence of error.', NULL, 5); +INSERT INTO [[schema]].audit_finding VALUES (61, 'high', 'no_supporting_documentation', 'During our inspection, we found that the following transaction occurred with missing attendance sheet and selection process of the implementing partner. Voucher ID not known, Description: Organization of Training of trainers on SLEiDSE social +entrepreneurship approach targeting 20 facilitators in the Municipality of Zintan, and Amount: USD 10,000.', 'Management Response: We will send you a list of training session attendance. +The method of selection of the implementing partner has been explained in advance and is through coordination between Altadamon and UNICEF because of the limited number of implementing partners and to ensure the quality of training content. + +Auditor Comment: Attendance sheet were obtained.', NULL, 5); +INSERT INTO [[schema]].audit_finding VALUES (57, 'high', 'insufficient_supporting_documentation', 'We were not able to obtain Altadamon Procurement policy to assess whether the supporting documents provided complied with the IP’s procurement procedure and that the supporting documents were reviewed and approved according to Altadamon procurement policy.', 'Management response: The reasons are explained in the previous listing. +Auditor Comments: The Management should establish a written procurement policies and procedure. The Procurement process should be then approved and circulated to relevant personnel and ensure that they are followed. +UNICEF comments: Efforts will be made to support IP in establishing a written procurement policy and procedure.', NULL, 5); +INSERT INTO [[schema]].audit_finding VALUES (55, 'high', 'poor_record_keeping', 'The normal sequence for purchasing goods or rendering a service usually starts with purchase request, once the IP select the most qualified supplier they issue purchase order to the supplier. The supplier then deliver the service and the IP records the transaction based on service completion. An invoice is sent by the supplier which is cross – checked with the purchase order/ agreement. The payment is then made and transferred to the supplier. +During our inspection, we noted that Altadamon does not issue/use purchase request, purchase order and payment request.', 'Management Response: Expenses are in the form of monthly bonuses and training service. Due to the limited service providers, limited implementation time and some other challenges faced during the project, AlTadamon Organization in coordination with UNICEF supervisors, selects the service providers in terms of the quality of service provided. + +Auditor Comment: The Management should ensure that the procurement procedures are followed. Furthermore, we could not obtain Altadamon procurement policy; therefore, we could not assess whether it complies with Altadamon procurement procedures and thresholds. +The Procurement process should be then approved and circulated to relevant personnel.', NULL, 5); +INSERT INTO [[schema]].audit_finding VALUES (54, 'high', 'lack_of_bank_reconciliations', 'Altadamon does not perform bank reconciliation; therefore, we could not perform reconciliation between the bank statement and supporting documents. In addition, we noted that Altadamon uses the same bank account to manage its financial resources and does not have a special or a designated bank account for each project. This might cause UNICEF funds to be commingled with other funds or used for different purposes.', 'Altadamon Organization does not perform bank reconciliation for the reasons mentioned in the previous comment. +We also want to inform you that this account is dedicated to UNICEF project, as there was no approval by the Central Bank of Tunisia until after reviewing the agreement signed by UNICEF and verifying the source of funding. Also the value of the funds transferred to the account shall not exceed the value of the contract signed with the source of funding. As it is clear to you the amount of requirements and controls placed on non-local organizations in accordance to the Tunasian laws. We are now opening an account inside Libya at Saraya Bank. +Auditor Comments: We still recommend the IP to perform bank reconciliations, the statement is an important tool as it detects errors that may have been committed either in cash book or bank statement. Furthermore, it helps in regular monitoring of cash flows. +UNICEF Comments:An effort will be made to advise implementing partner to open a dedicated account to UNICEF in Libya.', NULL, 5); +INSERT INTO [[schema]].audit_finding VALUES (62, 'high', 'lack_of_audit_trail', 'We found that there is a difference between the reported expenses in the FACE form with the actual amount expensed in the supporting documents. Below is the transaction reference: Description: Organization of Training of trainers on SLEiDSE social entrepreneurship approach targeting 20 facilitators in the Municipality of Zintan, Amount in FACE Form: USD 10,000 , Amount per Supporting Documents: USD 7,722 , and Difference USD 2,278.', 'Management Response: We are reviewing the documents to confirm the difference. +Auditor Comments: No documents or justification were sent. +UNICEF Comments: Unicef will make sure IP keep the needed and appropriate documentation related to HACT framework to avoid gaps in documentation of transactions.', NULL, 5); +INSERT INTO [[schema]].audit_finding VALUES (63, 'high', 'no_supporting_documentation', 'For the below transactions we did not obtain the sufficient supporting documents as only the payment voucher was attached. +Voucher ID 3394 , 3395, 3402, 3407, 3404, 3406, 3405, 3403', 'We are now reviewing the documents related to the outputs mentioned and will provide you with any available document. Altadamon provides specialized psychosocial support services in schools through specialists and social activists. +Auditor Comments: No documents were obtained.', NULL, 5); +INSERT INTO [[schema]].audit_finding VALUES (64, 'low', 'other', 'We found that Alnahla used the same bank account to manage its financial resources and did not have a special or a designated bank account for UNICEF. This might have caused UNICEF funds to be commingled with other funds or used for different purposes', 'Management Response : UNICEF informed us that it is not necessary to have a separate bank account, however the account is only used to have UNICEF funds. +UNICEF Comments : The account is for Alnahla but it''s only receiving UNICEF funds as they do not has any other partnership. For the financial records, they were keeping all the records combined, UNICEF fund expenditures and Alnahla general expenditures. +They were told that they don’t need to have a separate account for UNICEF, as the account was only used for UNICEF fund, however they were advised that if they had another partnership, they will need to have a separate account for it.', NULL, 4); +INSERT INTO [[schema]].audit_finding VALUES (40, 'low', 'insufficient_supporting_documentation', 'The Supporting documents of the selected sample were not stamped “PAID by UNICEF grant” indicating the project title “Youth Participation and Civic Engagement”, it is important to use PAID stamps to avoid duplication of payments or allocating the same expenditure to different projects', 'This is noted. All documents are now stamped PAID by UNICEF. +UNICEF Comments: UNICEF will follow up with partner on this.', NULL, 6); +INSERT INTO [[schema]].audit_finding VALUES (39, 'low', 'lack_of_audit_trail', 'We could not reconcile the statement of expenditure and ICE report to the approved detailed budget due to difference in activity numbers and difference between the total UNICEF Contributions in the approved detailed budget and statement of expenditure.', 'This is noted. Now you can find all activities detailed separately in the excel file. +UNICEF Comments: UNICEF will continue to follow up with partner on this.', NULL, 6); +INSERT INTO [[schema]].audit_finding VALUES (25, 'high', 'poor_record_keeping', 'Receipts and disbursement, related to the project are not booked or posted in accounting system nor a manual bookkeeping. This might increase the possibility of errors and might reduce the reliability of the project financial management.', 'Each document is now recorded and coded in the excel file prepared by the accounting firm we contracted with. +UNICEF Comments: UNICEF concerned section will continue to monitor the progress as reported by partner on this area, as IP has taken action to further enhance.', NULL, 6); +INSERT INTO [[schema]].audit_finding VALUES (29, 'high', 'lack_of_bank_reconciliations', 'Almobadr organization does not perform bank reconciliation; therefore, we could not perform reconciliation between the bank statement and supporting documents. Moreover, we could not trace the amounts paid through a bank statement as the IP withdraws a lump sum from the bank once needed and spends it accordingly. In addition, we noted that Almobadr Organization uses the same bank account to manage its financial resources and does not have a special or a designated bank account for each project. This might cause UNICEF funds to be comingled with other funds or used for different purposes.', 'After preparing the accounting books, it is now possible to keep track of each document and procedure, as if each payment is a separate account and the payment procedures is separate from other accounts. Almobadr has two bank accounts, the first bank account is inside Libya and the second bank account is outside the country, which is allowed in the applicable laws and regulations and we have not been able to make an exception from the Central Bank of Libya to allow us to open an account for the project separately. +UNICEF Comments: UNICEF concerned section will continue support and monitoring of partner to ensure that all transferred funds are liquidated as per the agreed amounts, with the additional narrative reporting provided by partner.', NULL, 6); +INSERT INTO [[schema]].audit_finding VALUES (43, 'high', 'insufficient_supporting_documentation', 'The normal sequence for purchasing goods usually starts with purchase request, once the IP select the most qualified supplier they issue purchase order to the supplier. The supplier then deliver the service and the IP records the transaction based on service completion. An invoice is sent by the supplier which is cross –checked with the purchase order/ agreement. The payment is then made and transferred to the supplier. During our inspection, we noted that Almobadr organization did not follow the sequence properly. +-There is no voucher number for the Office internet connection with an amount of USD 400, the missing document is Internet invoice. +-There is no voucher number for the Establish youth centers with an amount of USD 36,000, the missing document is Goods Receipt Note. +-There is no voucher number for the Travel and lodging costs in Tunis for the team leader with an amount of USD 1,600, the missing document is Goods Receipt Note. +-There is no voucher number for the total fees including development with an amount of USD 4,800, the missing document is Accommodation, transportation invoice and service of completion “training material and detailed report of workshop”.', 'This is noted. Procurement procedures are now included in the financial manual and must be followed. +Auditor Comments: The Management should ensure that the procurement procedures are followed. Furthermore in the absence of the GRN there was no evidence that the goods have been delivered. We could not obtain Almobadr procurement policy; therefore, we could not assess whether it complies with Almobadr procurement procedures and thresholds. +The Procurement process should be then approved and circulated to relevant personnel. +UNICEF Comments: Well noted, UNICEF will monitor the implementation of above action points.', NULL, 6); -- @@ -7736,9 +7992,19 @@ INSERT INTO [[schema]].audit_riskcategory VALUES (38, 6, 'Procurement', 'default -- Data for Name: audit_spotcheck; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].audit_spotcheck VALUES (15, 0.00, 0.00, ''); -INSERT INTO [[schema]].audit_spotcheck VALUES (6, 64715.00, 0.00, ''); -INSERT INTO [[schema]].audit_spotcheck VALUES (5, 22000.00, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (4, 36000.00, 0.00, 'Area (1.9) The IP has an anti-fraud and corruption policies and procedures in place. + +Area (1.10) The IP has a whistle blowing policy in place. Moreover, all employees must complete a signed declaration form to confirm that they respect management policy for all transactions. + +Area (2.1) The IP have a formal policies and procedures in place to develop programmes and plans. + +Area (3.1) The IP performs background verification check for new employees. + +Area (3.6) The IP performs background checks for new staff. + +Area (4.13) Payments are authorized by the Chief Financial Officer and some small payments are authorized by the Finance Manager according to the authority matrix.'); +INSERT INTO [[schema]].audit_spotcheck VALUES (5, 22000.00, 0.00, 'Based on our understanding, we found that there are no micro assessments and spot checks issued prior to this report, therefore we were unable to incorporate it in this report.'); +INSERT INTO [[schema]].audit_spotcheck VALUES (16, 0.00, 0.00, ''); INSERT INTO [[schema]].audit_spotcheck VALUES (8, 0.00, 0.00, ''); INSERT INTO [[schema]].audit_spotcheck VALUES (9, 0.00, 0.00, ''); INSERT INTO [[schema]].audit_spotcheck VALUES (11, 0.00, 0.00, ''); @@ -7746,7 +8012,7 @@ INSERT INTO [[schema]].audit_spotcheck VALUES (12, 0.00, 0.00, ''); INSERT INTO [[schema]].audit_spotcheck VALUES (10, 0.00, 0.00, ''); INSERT INTO [[schema]].audit_spotcheck VALUES (13, 0.00, 0.00, ''); INSERT INTO [[schema]].audit_spotcheck VALUES (14, 0.00, 0.00, ''); -INSERT INTO [[schema]].audit_spotcheck VALUES (4, 36000.00, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (21, 0.00, 0.00, ''); INSERT INTO [[schema]].audit_spotcheck VALUES (3, 25934.00, 0.00, 'Area (1.2) Bank system situation is slightly improved but time to time, the operations with the bank can incur in difficulties. To mitigate the issue, progressively, most of the payments to providers and staff are done from Tunis bank account. In this way, also the flow of money to Libya has been reduced as well the cash payment. Area (1.7) Bank system situation is slightly improved but time to time the operations with the bank can incur in difficulties. To mitigate the issue, progressively, most of the payments to providers and staff are done from Tunis bank account. In this way, also the flow of money to Libya has been reduced as well the cash payment. @@ -7758,7 +8024,15 @@ Area (5.8) From Jan 2018, the two positions has been splitted and two different Area (7.3) A new Procurement Manual has been produced in 2017 and accordingly the procurement above 60.000 euros are approved by HQ.'); INSERT INTO [[schema]].audit_spotcheck VALUES (2, 36379.00, 0.00, 'No changes'); INSERT INTO [[schema]].audit_spotcheck VALUES (1, 30434.00, 0.00, 'Based on our understanding and discussion with management, we found that there are no prior micro assessments and spot checks issued prior to this report, therefore we were unable to incorporate it in this report.'); +INSERT INTO [[schema]].audit_spotcheck VALUES (17, 0.00, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (6, 64715.00, 0.00, 'There are no prior micro assessment and spot checks; this is the first spot check to be conducted for Almobadr organization for Development and capacity Building.'); INSERT INTO [[schema]].audit_spotcheck VALUES (7, 0.00, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (19, 0.00, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (20, 0.00, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (18, 0.00, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (15, 0.00, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (22, 0.00, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (23, 0.00, 0.00, ''); -- @@ -7779,6 +8053,8 @@ INSERT INTO [[schema]].django_comments VALUES (5, '8', '', '', '', 'Noor alhayat INSERT INTO [[schema]].django_comments VALUES (6, '9', '', '', '', 'Appropriate forms have been shared with all partners, including Noor alhayat, regaridng the approval of photos to be taken during implementations. Partner Noor alhayat have been advised to communicate with the parents children to ontain signature on form to use the photo in visit reports or human interest story. also a discussion took place with Noor alhayat field coordinators ( Noor alhayat CP staff team and implementers of PSS activities the ground) on the various ways to improve communication with parents and reach out to caregivers during awareness sessions and during PSS activities. the field coordinators benefited from information shared which was discussed during the visit itself, and a follow-up discussion was done with Noor alhayat to ensure recommendations and CP knowledge provided by email have been implemented to ensure minimum quality of CP activities.', '2019-08-26 12:48:16.694632+00', NULL, true, false, 270, 1, 17817); INSERT INTO [[schema]].django_comments VALUES (8, '11', '', '', '', 'Greetings colleagues, Kindly share with communication the requirements and details along a WBS for the costs.', '2019-09-24 11:19:24.436766+00', NULL, true, false, 270, 1, 13654); INSERT INTO [[schema]].django_comments VALUES (9, '11', '', '', '', 'The communication requirements template is available on the Sharepoint under communication folder', '2019-09-24 11:19:59.545843+00', NULL, true, false, 270, 1, 13654); +INSERT INTO [[schema]].django_comments VALUES (10, '17', '', '', '', 'It was agreed to Increase outreach activties and connect with non [[schema]]ns community learders', '2019-11-28 10:34:20.492748+00', NULL, true, false, 270, 1, 17635); +INSERT INTO [[schema]].django_comments VALUES (11, '3', '', '', '', 'This has been taken into consideration as part of the new awareness material for the upcoming partnership 2020-2021 as a result from engaging with young boys and girls and listening to their needs. parents will also be engaged as part of the awareness to ensure mutual understanding and encourage communication', '2020-03-09 08:45:10.181322+00', NULL, true, false, 270, 1, 17817); -- @@ -8104,46 +8380,54 @@ INSERT INTO [[schema]].django_migrations VALUES (608, 'psea', '0011_indicator_ra INSERT INTO [[schema]].django_migrations VALUES (609, 'audit', '0018_auto_20191008_2235', '2019-11-08 16:55:21.062242+00'); INSERT INTO [[schema]].django_migrations VALUES (610, 'psea', '0012_auto_20191004_1752', '2019-11-08 16:55:21.166076+00'); INSERT INTO [[schema]].django_migrations VALUES (611, 'tpm', '0008_auto_20191016_1312', '2019-11-08 16:55:22.513802+00'); -INSERT INTO [[schema]].django_migrations VALUES (612, 'partners', '0039_auto_20191106_1345', '2020-04-02 17:19:23.52178+00'); -INSERT INTO [[schema]].django_migrations VALUES (613, 'field_monitoring_settings', '0001_initial_20191113', '2020-04-02 17:19:24.848349+00'); -INSERT INTO [[schema]].django_migrations VALUES (614, 'field_monitoring_planning', '0001_initial_20191113', '2020-04-02 17:19:25.735344+00'); -INSERT INTO [[schema]].django_migrations VALUES (615, 'field_monitoring_planning', '0002_auto_20191119_1503', '2020-04-02 17:19:26.500498+00'); -INSERT INTO [[schema]].django_migrations VALUES (616, 'users', '0013_auto_20191010_1621', '2020-04-02 17:19:27.033746+00'); -INSERT INTO [[schema]].django_migrations VALUES (617, 'reports', '0020_office', '2020-04-02 17:19:27.096324+00'); -INSERT INTO [[schema]].django_migrations VALUES (618, 'reports', '0021_auto_20191011_1201', '2020-04-02 17:19:27.415373+00'); -INSERT INTO [[schema]].django_migrations VALUES (619, 'action_points', '0011_actionpoint_reference_number', '2020-04-02 17:19:27.958528+00'); -INSERT INTO [[schema]].django_migrations VALUES (620, 'action_points', '0012_auto_20191011_1303', '2020-04-02 17:19:28.660391+00'); -INSERT INTO [[schema]].django_migrations VALUES (621, 'action_points', '0013_actionpoint_monitoring_activity', '2020-04-02 17:19:28.966697+00'); -INSERT INTO [[schema]].django_migrations VALUES (622, 'attachments', '0016_auto_20190708_1607', '2020-04-02 17:19:29.195584+00'); -INSERT INTO [[schema]].django_migrations VALUES (623, 'attachments', '0017_attachmentflat_created_timestamp', '2020-04-02 17:19:30.724586+00'); -INSERT INTO [[schema]].django_migrations VALUES (624, 'attachments', '0018_remove_attachmentflat_created', '2020-04-02 17:19:31.02597+00'); -INSERT INTO [[schema]].django_migrations VALUES (625, 'reports', '0022_userprofileoffice', '2020-04-02 17:19:31.302888+00'); -INSERT INTO [[schema]].django_migrations VALUES (626, 'reports', '0023_auto_20191014_1546', '2020-04-02 17:19:43.926449+00'); -INSERT INTO [[schema]].django_migrations VALUES (627, 'reports', '0024_auto_20191122_1559', '2020-04-02 17:19:44.303082+00'); -INSERT INTO [[schema]].django_migrations VALUES (628, 'audit', '0019_engagement_users_notified', '2020-04-02 17:19:44.625235+00'); -INSERT INTO [[schema]].django_migrations VALUES (629, 'audit', '0020_auto_20191125_2045', '2020-04-02 17:19:45.119295+00'); -INSERT INTO [[schema]].django_migrations VALUES (630, 'categories', '0005_auto_20191126_1133', '2020-04-02 17:19:45.280008+00'); -INSERT INTO [[schema]].django_migrations VALUES (631, 'field_monitoring_data_collection', '0001_initial_20191113', '2020-04-02 17:19:47.165672+00'); -INSERT INTO [[schema]].django_migrations VALUES (632, 'field_monitoring_data_collection', '0002_auto_20191116_1045', '2020-04-02 17:19:47.703096+00'); -INSERT INTO [[schema]].django_migrations VALUES (633, 'field_monitoring_planning', '0003_monitoringactivityactionpoint', '2020-04-02 17:19:47.762335+00'); -INSERT INTO [[schema]].django_migrations VALUES (634, 'field_monitoring_planning', '0004_auto_20191204_0804', '2020-04-02 17:19:48.343922+00'); -INSERT INTO [[schema]].django_migrations VALUES (635, 'field_monitoring_planning', '0005_auto_20191211_1414', '2020-04-02 17:19:48.597448+00'); -INSERT INTO [[schema]].django_migrations VALUES (636, 'field_monitoring_planning', '0006_monitoringactivity_report_reject_reason', '2020-04-02 17:19:48.880654+00'); -INSERT INTO [[schema]].django_migrations VALUES (637, 'field_monitoring_planning', '0007_monitoringactivity_number', '2020-04-02 17:19:49.741339+00'); -INSERT INTO [[schema]].django_migrations VALUES (638, 'field_monitoring_settings', '0002_method_use_information_source', '2020-04-02 17:19:49.893205+00'); -INSERT INTO [[schema]].django_migrations VALUES (639, 'field_monitoring_settings', '0003_method_short_name', '2020-04-02 17:19:50.049866+00'); -INSERT INTO [[schema]].django_migrations VALUES (640, 'field_monitoring_settings', '0004_globalconfig', '2020-04-02 17:19:50.190572+00'); -INSERT INTO [[schema]].django_migrations VALUES (641, 'field_monitoring_settings', '0005_auto_20191211_0903', '2020-04-02 17:19:50.366555+00'); -INSERT INTO [[schema]].django_migrations VALUES (642, 'field_monitoring_settings', '0006_auto_20191212_1257', '2020-04-02 17:19:50.700378+00'); -INSERT INTO [[schema]].django_migrations VALUES (643, 'field_monitoring_settings', '0007_auto_20200219_1036', '2020-04-02 17:19:51.037729+00'); -INSERT INTO [[schema]].django_migrations VALUES (644, 'partners', '0040_auto_20191011_1429', '2020-04-02 17:19:51.540823+00'); -INSERT INTO [[schema]].django_migrations VALUES (645, 'partners', '0041_auto_20191209_2039', '2020-04-02 17:19:52.109527+00'); -INSERT INTO [[schema]].django_migrations VALUES (646, 'reports', '0025_auto_20191220_2022', '2020-04-02 17:19:52.272206+00'); -INSERT INTO [[schema]].django_migrations VALUES (647, 't2f', '0016_auto_20191011_1348', '2020-04-02 17:19:52.585123+00'); -INSERT INTO [[schema]].django_migrations VALUES (648, 'tpm', '0009_auto_20191014_1304', '2020-04-02 17:19:53.037745+00'); -INSERT INTO [[schema]].django_migrations VALUES (649, 'tpm', '0010_auto_20191029_1826', '2020-04-02 17:19:53.510392+00'); -INSERT INTO [[schema]].django_migrations VALUES (650, 'unicef_attachments', '0004_filetype_group', '2020-04-02 17:19:53.669479+00'); -INSERT INTO [[schema]].django_migrations VALUES (651, 'unicef_attachments', '0005_auto_20190705_1746', '2020-04-02 17:19:54.480682+00'); +INSERT INTO [[schema]].django_migrations VALUES (612, 'users', '0013_auto_20191010_1621', '2019-12-05 17:12:08.878364+00'); +INSERT INTO [[schema]].django_migrations VALUES (613, 'reports', '0020_office', '2019-12-05 17:12:10.440265+00'); +INSERT INTO [[schema]].django_migrations VALUES (614, 'reports', '0021_auto_20191011_1201', '2019-12-05 17:12:10.556476+00'); +INSERT INTO [[schema]].django_migrations VALUES (615, 'action_points', '0011_actionpoint_reference_number', '2019-12-05 17:12:11.317746+00'); +INSERT INTO [[schema]].django_migrations VALUES (616, 'action_points', '0012_auto_20191011_1303', '2019-12-05 17:12:11.830846+00'); +INSERT INTO [[schema]].django_migrations VALUES (617, 'attachments', '0016_auto_20190708_1607', '2019-12-05 17:12:12.049637+00'); +INSERT INTO [[schema]].django_migrations VALUES (618, 'reports', '0022_userprofileoffice', '2019-12-05 17:12:12.67892+00'); +INSERT INTO [[schema]].django_migrations VALUES (619, 'reports', '0023_auto_20191014_1546', '2019-12-05 17:12:36.969174+00'); +INSERT INTO [[schema]].django_migrations VALUES (620, 'reports', '0024_auto_20191122_1559', '2019-12-05 17:12:37.322196+00'); +INSERT INTO [[schema]].django_migrations VALUES (621, 'audit', '0019_engagement_users_notified', '2019-12-05 17:12:37.880123+00'); +INSERT INTO [[schema]].django_migrations VALUES (622, 'audit', '0020_auto_20191125_2045', '2019-12-05 17:12:38.634866+00'); +INSERT INTO [[schema]].django_migrations VALUES (623, 'partners', '0039_auto_20191106_1345', '2019-12-05 17:12:39.024305+00'); +INSERT INTO [[schema]].django_migrations VALUES (624, 'partners', '0040_auto_20191011_1429', '2019-12-05 17:12:39.589067+00'); +INSERT INTO [[schema]].django_migrations VALUES (625, 't2f', '0016_auto_20191011_1348', '2019-12-05 17:12:40.068844+00'); +INSERT INTO [[schema]].django_migrations VALUES (626, 'tpm', '0009_auto_20191014_1304', '2019-12-05 17:12:40.855095+00'); +INSERT INTO [[schema]].django_migrations VALUES (627, 'tpm', '0010_auto_20191029_1826', '2019-12-05 17:12:41.305382+00'); +INSERT INTO [[schema]].django_migrations VALUES (628, 'unicef_attachments', '0004_filetype_group', '2019-12-05 17:12:41.420179+00'); +INSERT INTO [[schema]].django_migrations VALUES (629, 'unicef_attachments', '0005_auto_20190705_1746', '2019-12-05 17:12:42.09861+00'); +INSERT INTO [[schema]].django_migrations VALUES (630, 'attachments', '0017_attachmentflat_created_timestamp', '2020-01-10 18:01:18.773836+00'); +INSERT INTO [[schema]].django_migrations VALUES (631, 'attachments', '0018_remove_attachmentflat_created', '2020-01-10 18:01:19.047107+00'); +INSERT INTO [[schema]].django_migrations VALUES (632, 'partners', '0041_auto_20191209_2039', '2020-01-10 18:01:19.730676+00'); +INSERT INTO [[schema]].django_migrations VALUES (633, 'reports', '0025_auto_20191220_2022', '2020-01-10 18:01:19.849404+00'); +INSERT INTO [[schema]].django_migrations VALUES (634, 'field_monitoring_settings', '0001_initial_20191113', '2020-03-06 19:03:02.446662+00'); +INSERT INTO [[schema]].django_migrations VALUES (635, 'field_monitoring_planning', '0001_initial_20191113', '2020-03-06 19:03:03.664443+00'); +INSERT INTO [[schema]].django_migrations VALUES (636, 'field_monitoring_planning', '0002_auto_20191119_1503', '2020-03-06 19:03:04.946924+00'); +INSERT INTO [[schema]].django_migrations VALUES (637, 'action_points', '0013_actionpoint_monitoring_activity', '2020-03-06 19:03:05.17575+00'); +INSERT INTO [[schema]].django_migrations VALUES (638, 'categories', '0005_auto_20191126_1133', '2020-03-06 19:03:05.273492+00'); +INSERT INTO [[schema]].django_migrations VALUES (639, 'field_monitoring_data_collection', '0001_initial_20191113', '2020-03-06 19:03:06.731619+00'); +INSERT INTO [[schema]].django_migrations VALUES (640, 'field_monitoring_data_collection', '0002_auto_20191116_1045', '2020-03-06 19:03:07.488029+00'); +INSERT INTO [[schema]].django_migrations VALUES (641, 'field_monitoring_planning', '0003_monitoringactivityactionpoint', '2020-03-06 19:03:07.543669+00'); +INSERT INTO [[schema]].django_migrations VALUES (642, 'field_monitoring_planning', '0004_auto_20191204_0804', '2020-03-06 19:03:07.981635+00'); +INSERT INTO [[schema]].django_migrations VALUES (643, 'field_monitoring_planning', '0005_auto_20191211_1414', '2020-03-06 19:03:08.206639+00'); +INSERT INTO [[schema]].django_migrations VALUES (644, 'field_monitoring_planning', '0006_monitoringactivity_report_reject_reason', '2020-03-06 19:03:08.569012+00'); +INSERT INTO [[schema]].django_migrations VALUES (645, 'field_monitoring_planning', '0007_monitoringactivity_number', '2020-03-06 19:03:09.174148+00'); +INSERT INTO [[schema]].django_migrations VALUES (646, 'field_monitoring_settings', '0002_method_use_information_source', '2020-03-06 19:03:09.285068+00'); +INSERT INTO [[schema]].django_migrations VALUES (647, 'field_monitoring_settings', '0003_method_short_name', '2020-03-06 19:03:09.382647+00'); +INSERT INTO [[schema]].django_migrations VALUES (648, 'field_monitoring_settings', '0004_globalconfig', '2020-03-06 19:03:09.469261+00'); +INSERT INTO [[schema]].django_migrations VALUES (649, 'field_monitoring_settings', '0005_auto_20191211_0903', '2020-03-06 19:03:09.559463+00'); +INSERT INTO [[schema]].django_migrations VALUES (650, 'field_monitoring_settings', '0006_auto_20191212_1257', '2020-03-06 19:03:09.838509+00'); +INSERT INTO [[schema]].django_migrations VALUES (651, 'field_monitoring_settings', '0007_auto_20200219_1036', '2020-03-06 19:03:10.138618+00'); +INSERT INTO [[schema]].django_migrations VALUES (652, 'audit', '0021_auto_20200729_2123', '2020-09-24 15:20:27.88955+00'); +INSERT INTO [[schema]].django_migrations VALUES (653, 'partners', '0042_auto_20200414_1439', '2020-09-24 15:20:28.610422+00'); +INSERT INTO [[schema]].django_migrations VALUES (654, 'partners', '0043_auto_20200729_2123', '2020-09-24 15:20:28.837803+00'); +INSERT INTO [[schema]].django_migrations VALUES (655, 'partners', '0044_auto_20200914_1428', '2020-09-24 15:20:29.366438+00'); +INSERT INTO [[schema]].django_migrations VALUES (656, 'users', '0014_auto_20200611_1747', '2020-09-24 15:20:29.588896+00'); +INSERT INTO [[schema]].django_migrations VALUES (657, 'users', '0015_auto_20200924_1453', '2020-11-03 18:55:42.235361+00'); +INSERT INTO [[schema]].django_migrations VALUES (658, 'partners', '0045_partnerstaffmember_user', '2020-11-03 18:55:42.593659+00'); +INSERT INTO [[schema]].django_migrations VALUES (659, 'partners', '0046_auto_20200924_1453', '2020-11-03 18:55:44.079166+00'); -- @@ -8570,6 +8854,31 @@ INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (291, '2500240795', '0 INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (292, '2500240795', '0100405770', '2019-10-22', 'HACT:DCT', 'USD', '2580/000155 - LIB/PCA2019152/PD2019103', '1', 'Rania Sharshr', '2019-10-25 00:21:21.594238+00', '2019-10-25 00:21:21.594238+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (293, '2500236298', '0100406525', '2019-10-03', 'HACT:Reimbursement', 'USD', '2580/000150 - PROVISION OF PSYCHOSOCIAL SUPPORT AN', '1', 'Rania Sharshr', '2019-10-27 00:35:34.143421+00', '2019-10-27 00:35:34.143421+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (294, '2500236298', '0100407767', '2019-10-03', 'HACT:Reimbursement', 'USD', '2580/000156 - PROVISION OF PSYCHOSOCIAL SUPPORT AN', '1', 'Rania Sharshr', '2019-11-03 01:50:03.435654+00', '2019-11-03 01:50:03.435654+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (295, '2500233211', '0100411016', '2019-11-14', 'HACT:DCT', 'LYD', '2580/000161 - PROVISION OF EDUCATION AND RECREATIO', '-1.41', 'Ibrahim Farah', '2019-11-18 00:24:09.585475+00', '2019-11-18 00:24:09.585475+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (296, '2500231382', '0100411686', '2019-11-03', 'HACT:Reimbursement', 'USD', '2580/000162 - LIB/PCA2019124/PD201985', '1', 'Rania Sharshr', '2019-11-21 00:14:41.129202+00', '2019-11-21 00:14:41.129202+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (297, '2500240179', '0100414568', '2019-09-18', 'HACT:DCT', 'USD', '2580/000142 - EMERGENCY MINE RISK EDUCATION RESPON', '1', 'Soraia Abu Monassar', '2019-12-03 00:30:43.411575+00', '2019-12-03 00:30:43.411575+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (298, '2500238760', '0100416518', '2019-12-03', 'HACT:Reimbursement', 'USD', '2580/000163 - NOOR ELHAYAT LIB/PCA2018117 CHILD PR', '1', 'Rania Sharshr', '2019-12-09 17:48:55.621459+00', '2019-12-09 17:48:55.621459+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (299, '2500238760', '0100416625', '2019-12-05', 'HACT:DCT', 'USD', '2580/000164 - NOOR ELHAYAT LIB/PCA2018117 CHILD PR', '1', 'Rania Sharshr', '2019-12-09 17:48:55.621536+00', '2019-12-09 17:48:55.621536+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (300, '2500240867', '0100419891', '2019-12-01', 'HACT:DCT', 'USD', '2580/000165 - LIB/PCA2019153', '1', 'Rania Sharshr', '2019-12-21 00:48:20.796095+00', '2019-12-21 00:48:20.796095+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (301, '2500240867', '0100420631', '2019-12-01', 'HACT:DCT', 'USD', '2580/000166 - LIB/PCA2019153/PD2019104-2', '1', 'Rania Sharshr', '2020-01-01 01:02:05.148671+00', '2020-01-01 01:02:05.148671+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (302, '2500240112', '0100420851', '2020-01-06', 'HACT:Reimbursement', 'LYD', '2580/000170 - PROMOTION OF CHILD PROTECTION AND TH', '-1.41', 'Turkia Ben Saoud', '2020-01-10 18:26:14.741085+00', '2020-01-10 18:26:14.741085+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (303, '2500220006', '0100420733', '2019-12-12', 'HACT:DCT', 'USD', '2580/000167 - LIB/PCA2019155/PD2019106', '1', 'Rania Sharshr', '2020-01-10 18:26:14.741168+00', '2020-01-10 18:26:14.741168+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (304, '2500240795', '0100421329', '2020-01-10', 'HACT:DCT', 'USD', '2580/000172 - STRENGTHENING GENDER BASED VIOLENCE', '1', 'Turkia Ben Saoud', '2020-01-21 00:51:29.012584+00', '2020-01-21 00:51:29.012584+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (306, '2500238136', '0100421340', '2020-01-14', 'HACT:DCT', 'USD', '2580/000174 - INTEGRATED EDUCATION AND PSY SUPPORT', '1', 'Amel Markus', '2020-01-21 00:51:29.012724+00', '2020-01-21 00:51:29.012724+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (307, '2500236901', '0100421493', '2020-01-14', 'HACT:Reimbursement', 'USD', '2580/000175 - DISTRIBUTION OF HEB IN DCS AND MISUR', '1', 'Ahmed Ejaeidi', '2020-01-23 00:33:50.482585+00', '2020-01-23 00:33:50.482585+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (308, '2500233211', '0100421755', '2020-01-06', 'HACT:DCT', 'LYD', '2580/000176 - PROVISION OF EDUCATION AND RECREATIO', '-1.41', 'Ibrahim Farah', '2020-01-25 02:17:19.551344+00', '2020-01-25 02:17:19.551344+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (309, '2500235018', '0100421961', '2019-12-03', 'HACT:Reimbursement', 'USD', '2580/000168 - LIB/PCA201716', '1', 'Rania Sharshr', '2020-02-03 18:57:43.392067+00', '2020-02-03 18:57:43.392067+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (310, '2500233196', '0100422705', '2020-02-02', 'HACT:DCT', 'LYD', '2580/000178 - EDUCATION SUPPORT TO CONFLICT-AFFECT', '-1.41', 'Amel Markus', '2020-02-04 04:46:59.163971+00', '2020-02-04 04:46:59.163971+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (311, '2500231382', '0100426303', '2020-02-25', 'HACT:DCT', 'USD', '2580/000180 - LIB/PCA2019124/PD2020109', '1', 'Rania Sharshr', '2020-03-03 00:33:08.893833+00', '2020-03-03 00:33:08.893833+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (312, '2500236298', '0100426300', '2020-02-12', 'HACT:Reimbursement', 'USD', '2580/000181 - PROVISION OF PSYCHOSOCIAL SUPPORT AN', '1', 'Rania Sharshr', '2020-03-03 00:33:08.893902+00', '2020-03-03 00:33:08.893902+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (316, '2500235018', '0100430415', '2020-03-14', 'HACT:DCT', 'USD', '2580/000186 - PROVISION OF MULTI-SECTORIAL SERVICE', '1', 'Rania Sharshr', '2020-04-07 00:55:49.359512+00', '2020-04-07 00:55:49.359512+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (313, '2500240112', '0100426730', '2020-03-01', 'HACT:DCT', 'LYD', '2580/000182 - PROMOTION OF CHILD PROTECTION AND TH', '-1.415', 'Rania Sharshr', '2020-03-06 00:13:34.84188+00', '2020-03-06 00:13:34.84188+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (314, '2500232253', '0100428988', '2020-03-17', 'HACT:Reimbursement', 'USD', '2580/000183 - EMERGNCY WASH RESPONSE TO IDP', '1', 'Mohammad Younus', '2020-03-24 00:13:47.989151+00', '2020-03-24 00:13:47.989151+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (315, '2500233986', '0100429623', '2020-03-25', 'HACT:Reimbursement', 'USD', '2580/000184 - ACCESS TO QUALITY & PROTECTIVE EDUCA', '1', 'Amel Markus', '2020-03-28 00:17:19.258948+00', '2020-03-28 00:17:19.258948+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (305, '2500240112', '0100421328', '2020-01-10', 'HACT:Reimbursement', 'LYD', '2580/000173 - PROMOTION OF CHILD PROTECTION AND TH', '-1.43', 'Turkia Ben Saoud', '2020-01-21 00:51:29.012664+00', '2020-04-04 00:13:31.205041+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (317, '2500233211', '0100431380', '2020-04-08', 'HACT:DCT', 'LYD', '2580/000188 - PROVISION OF EDUCATION AND RECREATIO', '-1.43', 'Gaballa Benhallom', '2020-04-18 02:45:10.960517+00', '2020-04-18 02:45:10.960517+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (318, '2500238136', '0100431299', '2020-04-06', 'HACT:DCT', 'USD', '2580/000187 - INTEGRATED EDUCATION AND PSY SUPPORT', '1', 'Erica Aiazzi', '2020-04-18 02:45:10.960594+00', '2020-04-18 02:45:10.960594+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (319, '2500236298', '0100431347', '2020-03-05', 'HACT:DCT', 'USD', '2580/000190 - IMIGRANT CHILDREN IN DETENTION CENTE', '1', 'Rania Sharshr', '2020-04-18 02:45:10.960653+00', '2020-04-18 02:45:10.960653+00'); -- @@ -8638,7 +8947,7 @@ INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (322, '0100361337-1', '1 INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (326, '0100362575-1', '1', '2580/A0/02/883/010/001', 'SM170020', 'SM', '', '2019-01-24', '0400059402', 99600.00, 99600.00, 0.00, '20113189 - 3RD INSTALLMENT ALTADAMON AMENDED PD', 248, '2019-02-01 00:08:13.09325+00', '2019-02-01 00:08:13.094079+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (323, '0100361337-2', '2', '2580/A0/02/882/003/002', 'SM170020', 'SM', '', '2019-01-15', '0400060673', 3126.55, 3126.55, 0.00, '30014157 - CIR HQ COSTS REIMBURSEMENT BMZ', 245, '2019-01-18 00:15:11.393065+00', '2019-01-22 00:08:06.211563+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (324, '0100361643-1', '1', '2580/A0/03/881/002/007', 'SM170020', 'SM', '', '2019-01-20', '0400066101', 44612.07, 62100.00, 0.00, '30014239 - EKRAA 6TH FINAL INSTALLMENT', 246, '2019-01-22 00:08:06.153167+00', '2019-01-24 00:08:13.543279+00'); -INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (384, '0100407767-1', '1', '2580/A0/03/882/001/003', 'SC170316', 'SC', '', '2019-10-29', '0400062233', 12840.00, 12840.00, 12840.00, '30022423 - REIM4TH PAYMENT MULTAKANA CP PART', 294, '2019-11-03 01:50:03.500264+00', '2019-11-03 01:50:03.500264+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (404, '0100422705-1', '1', '2580/A0/03/881/002/007', 'SC170746', 'SC', '', '2020-02-02', '0400068570', 60425.53, 85200.00, 0.00, '20177461 - EKRAA 3RD DCT PCA2019144', 310, '2020-02-04 04:46:59.233757+00', '2020-02-06 00:55:46.099254+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (327, '0100362964-1', '1', '2580/A0/02/883/007/001', 'SM170020', 'SM', '', '2019-01-31', '0400059347', 14700.00, 14700.00, 0.00, '30014490 - 4TH INST. AFAQ PSS SEBRATHA REIMB.', 249, '2019-02-03 00:07:59.185335+00', '2019-02-12 00:15:27.941537+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (330, '0100365576-1', '1', '2580/A0/03/882/001/002', 'SC170366', 'SC', '', '2019-02-22', '0400059402', 98937.59, 98937.59, 0.00, '20117035 - CFS PART OF 2ND DCT TO ITALIAN GRANT', 252, '2019-02-24 00:15:04.612673+00', '2019-02-27 00:42:41.790896+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (331, '0100365568-1', '1', '2580/A0/03/882/001/002', 'SC170366', 'SC', '', '2019-02-22', '0400054461', 46226.00, 46226.00, 0.00, '30015086 - FINAL PAYMENT AL NAHLA REIM JANZOUR', 253, '2019-02-24 00:15:04.612774+00', '2019-02-24 00:15:04.613276+00'); @@ -8658,11 +8967,13 @@ INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (336, '0100371607-2', '2 INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (337, '0100371607-1', '1', '2580/A0/03/882/001/002', 'SC170316', 'SC', '', '2019-04-01', '0400065826', 18445.00, 18445.00, 0.00, '20122525 - ESSAFA 2ND DCT EU FUNDED', 258, '2019-04-05 00:18:50.273559+00', '2019-04-14 00:14:27.594207+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (343, '0100375691-2', '2', '2580/A0/03/881/002/007', 'SC170316', 'SC', '', '2019-04-22', '0400062233', 19260.00, 19260.00, 0.00, '20125663 - MULTAKANA Q2 PAYMENT EDU PART', 262, '2019-05-02 00:27:26.350641+00', '2019-05-11 00:24:49.437424+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (357, '0100386054-1', '1', '2580/A0/03/881/001/006', 'SM189910', 'SM', '', '2019-06-19', '0400064173', 18100.00, 18100.00, 0.00, '20136310 - Q1 DCT TO EMDAD', 274, '2019-07-05 14:38:08.047696+00', '2019-07-10 00:20:54.717696+00'); -INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (351, '0100381334-1', '1', '2580/A0/03/882/001/005', 'GE180026', 'GE', '', '2019-05-30', '0400068801', 105270.00, 105270.00, 63.00, '20133156 - 3F 1ST DCT EMER MINE RISK EDUCATION RES', 268, '2019-06-04 00:15:35.924244+00', '2019-06-05 00:16:38.767725+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (412, '0100431299-2', '2', '2580/A0/03/882/001/002', 'SC170316', 'SC', '', '2020-04-09', '0400068740', 5700.00, 5700.00, 0.00, '20185128 - AFAQ 3RD DCT LIB PCA2019146', 318, '2020-04-18 02:45:11.019195+00', '2020-04-21 03:02:18.107517+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (347, '0100379203-1', '1', '2580/A0/03/882/001/002', 'GE180026', 'GE', '', '2019-05-09', '0400068277', 35765.38, 50000.00, 0.00, '20128745 - 1ST INST SCOUTS PCA DCT', 265, '2019-05-23 00:16:40.259474+00', '2019-05-24 00:13:58.459071+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (388, '0100414568-1', '1', '2580/A0/03/882/001/005', 'SC170316', 'SC', '', '2019-09-27', '0400068801', 98970.00, 98970.00, 0.00, '20153329 - 3F 2ND DCT EMER MINE RISK EDUCATION RES', 297, '2019-12-03 00:30:43.4784+00', '2019-12-03 00:30:43.4784+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (348, '0100379203-2', '2', '2580/A0/03/882/001/001', 'SM170020', 'SM', '', '2019-05-09', '0400068277', 19670.96, 27500.00, 0.00, '20128761 - 1ST INST SCOUTS PCA DCT', 265, '2019-05-23 00:16:40.259612+00', '2019-05-24 00:13:58.487911+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (345, '0100377182-1', '1', '2580/A0/02/883/015/001', 'SC170316', 'SC', '', '2019-05-07', '0400057162', 17821.21, 17821.21, 0.00, '30017251 - FINAL PAYMENT HQ COSTS', 263, '2019-05-11 00:24:49.405864+00', '2019-05-24 00:13:58.503191+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (363, '0100390518-1', '1', '2580/A0/03/881/005/002', 'SC160349', 'SC', '', '2019-07-26', '0400067548', 177350.00, 177350.00, 0.00, '20142813 - ALMOBADR 2ND DCT PCA2019141', 278, '2019-07-29 00:21:59.751162+00', '2019-07-29 00:21:59.751474+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (392, '0100420631-1', '1', '2580/A0/03/881/002/007', 'SC170316', 'SC', '', '2019-12-30', '0400073261', 65893.50, 65893.50, 0.00, '20175423 - Q1 DCT FOR EDU INSTALMENT', 301, '2020-01-01 01:02:05.209968+00', '2020-01-15 00:04:44.922307+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (352, '0100382867-1', '1', '2580/A0/03/882/001/003', 'SC170316', 'SC', '', '2019-06-04', '0400057421', 46473.00, 46473.00, 0.00, '20134669 - 5Q DCT COST EXTN COST AMNDMENT CP', 270, '2019-06-14 00:20:05.05768+00', '2019-06-15 00:18:31.216437+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (349, '0100381013-1', '1', '2580/A0/03/881/002/007', 'SC170316', 'SC', '', '2019-05-29', '0400068740', 46050.00, 46050.00, 0.00, '20132833 - AFAQ 1ST DCT LIB PCA2019146', 267, '2019-06-01 00:15:42.572622+00', '2019-06-16 00:24:04.543163+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (281, '0100323278-1', '1', '2580/A0/02/883/015/001', 'SC170316', 'SC', '', '2018-06-14', '0400057162', 130288.33, 130288.33, 0.00, '20069444 - ACTED 2ND DCT', 218, '2018-06-21 00:17:50.07065+00', '2019-06-15 00:18:31.234139+00'); @@ -8683,23 +8994,51 @@ INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (366, '0100396465-1', '1 INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (367, '0100396461-1', '1', '2580/A0/03/881/001/010', 'SM190240', 'SM', '', '2019-08-21', '0400064173', 18100.00, 18100.00, 0.00, '20149846 - Q2 DCT TO EMDAD', 282, '2019-09-05 01:23:04.601448+00', '2019-09-13 00:22:40.283212+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (369, '0100396827-2', '2', '2580/A0/03/882/001/003', 'SC170316', 'SC', '', '2019-09-04', '0400057421', 0.00, 0.00, 0.00, '20150268 - 6Q DCT COST EXTN COST AMNDMENT CP', 283, '2019-09-06 01:21:27.851896+00', '2019-09-25 00:36:04.670673+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (372, '0100402286-1', '1', '2580/A0/03/882/001/003', 'SC170316', 'SC', '', '2019-10-03', '0400057421', 89984.65, 89984.65, 0.00, '30021703 - Q 6 DCT COST EXTN COST AMNDMENT CP', 286, '2019-10-08 00:35:11.34291+00', '2019-10-12 00:49:19.142193+00'); -INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (370, '0100402106-1', '1', '2580/A0/03/882/001/005', 'SC170316', 'SC', '', '2019-09-22', '0400068801', 98970.00, 98970.00, 98970.00, '20153329 - 3F 2ND DCT EMER MINE RISK EDUCATION RES', 284, '2019-10-06 00:23:49.338871+00', '2019-10-09 00:35:18.20526+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (371, '0100402105-1', '1', '2580/A0/03/881/002/007', 'SC170316', 'SC', '', '2019-09-04', '0400057421', 81728.09, 81728.09, 0.00, '20150258 - Q 6 DCT COST EXTN COST AMNDMENT EDU', 285, '2019-10-06 00:23:49.338993+00', '2019-10-17 01:35:29.17866+00'); -INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (328, '0100364177-1', '1', '2580/A0/03/881/002/007', 'SC170316', 'SC', '', '2019-01-31', '0400066346', 321230.00, 321230.00, 48874.00, '20113997 - 1ST DCT NRC QUALITY EDU PSS TRIPOLI BEN', 250, '2019-02-15 00:39:11.573702+00', '2019-10-30 01:37:54.799807+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (376, '0100405167-1', '1', '2580/A0/03/882/001/002', 'SM170020', 'SM', '', '2019-10-16', '0400068277', 49116.61, 69500.00, 0.00, '20159292 - PROMOTION OF CHILD PROTECTION AND THE C', 290, '2019-10-24 07:41:15.054617+00', '2019-10-26 00:53:57.617062+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (377, '0100405310-1', '1', '2580/A0/03/881/002/007', 'SM170020', 'SM', '', '2019-10-21', '0400068570', 60494.70, 85600.00, 0.00, '20159565 - EKRAA 2ND DCT PCA2019144', 289, '2019-10-24 07:41:15.054765+00', '2019-10-26 00:53:57.627341+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (386, '0100411016-1', '1', '2580/A0/03/881/002/007', 'SM170020', 'SM', '', '2019-11-17', '0400069389', 39379.43, 55525.00, 0.00, '20165772 - 2ND DCT TO BREEZES LIBPCA2019147', 295, '2019-11-18 00:24:09.64888+00', '2019-11-20 00:14:32.661313+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (378, '0100405955-2', '2', '2580/A0/03/882/001/001', 'SM170020', 'SM', '', '2019-10-22', '0400071267', 65592.00, 65592.00, 0.00, '20159844 - 1 DCT FOR IRC', 291, '2019-10-25 00:21:21.708715+00', '2019-10-25 00:21:21.708715+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (379, '0100405770-1', '1', '2580/A0/03/882/001/001', 'SM180398', 'SM', '', '2019-10-22', '0400071267', 0.00, 0.00, 0.00, '20159840 - 1ST DCT OF IRC', 292, '2019-10-25 00:21:21.70891+00', '2019-10-25 00:21:21.70891+00'); -INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (380, '0100405955-1', '1', '2580/A0/03/882/001/001', 'SM180398', 'SM', '', '2019-10-22', '0400071267', 100000.00, 100000.00, 0.00, '20159840 - 1ST DCT OF IRC', 291, '2019-10-25 00:21:21.709123+00', '2019-10-25 00:21:21.709123+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (397, '0100421328-1', '1', '2580/A0/03/882/001/001', 'SC170746', 'SC', '', '2020-01-14', '0400068277', 56287.23, 79365.00, 793650.00, '30025177 - SCOUTS 3RD INSTALLMENT PCA2019150PD201', 305, '2020-01-21 00:51:29.088751+00', '2020-01-21 00:51:29.088751+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (381, '0100405770-2', '2', '2580/A0/03/882/001/001', 'SM170020', 'SM', '', '2019-10-22', '0400071267', 0.00, 0.00, 0.00, '20159844 - 1 DCT FOR IRC', 292, '2019-10-25 00:21:21.70929+00', '2019-10-25 00:21:21.70929+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (373, '0100402479-1', '1', '2580/A0/03/882/001/002', 'SC170316', 'SC', '', '2019-09-26', '0400068740', 25900.00, 25900.00, 0.00, '20154293 - AFAQ 2ND DCT LIB PCA2019146', 287, '2019-10-09 00:35:18.184536+00', '2019-10-25 00:21:21.738931+00'); -INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (385, '0100407767-2', '2', '2580/A0/03/881/002/007', 'SC170316', 'SC', '', '2019-10-29', '0400062233', 19260.00, 19260.00, 19260.00, '30022424 - 4TH PAYMENT MULTAKANA EDU PART', 294, '2019-11-03 01:50:03.500368+00', '2019-11-03 01:50:03.500368+00'); -INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (382, '0100406525-1', '1', '2580/A0/03/882/001/003', 'SC170316', 'SC', '', '2019-10-16', '0400062233', 12840.00, 12840.00, 12840.00, '30022184 - REIM3RD PAYMENT MULTAKANA CP PART', 293, '2019-10-27 00:35:34.236793+00', '2019-11-03 01:50:03.577619+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (374, '0100404612-1', '1', '2580/A0/03/882/001/003', 'SC170316', 'SC', '', '2019-10-17', '0400071542', 237557.00, 237557.00, 0.00, '20158318 - LIBPCA2019133PD2019102 BAYTI CENTER CP', 288, '2019-10-18 01:45:14.049248+00', '2019-10-25 00:21:21.782172+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (375, '0100404612-2', '2', '2580/A0/03/881/002/007', 'SC170316', 'SC', '', '2019-10-17', '0400071542', 167851.00, 167851.00, 0.00, '20158307 - LIBPCA2019133PD2019102 BAYTI CENTER ED', 288, '2019-10-18 01:45:14.049398+00', '2019-10-25 00:21:21.794476+00'); -INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (383, '0100406525-2', '2', '2580/A0/03/881/002/007', 'SC170316', 'SC', '', '2019-10-16', '0400062233', 19260.00, 19260.00, 19260.00, '30022185 - 3RD PAYMENT MULTAKANA EDU PART', 293, '2019-10-27 00:35:34.238995+00', '2019-11-03 01:50:03.591587+00'); -INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (197, '0100277085-2', '2', '2580/A0/02/883/007/001', 'SM160532', 'SM', '', '2017-09-08', '0400053854', 9520.42, 13023.93, 0.00, '1ST DCT LAYD EDUCATION 2017', 156, '2018-03-15 16:56:58.441255+00', '2019-11-15 00:24:58.105614+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (402, '0100421961-1', '1', '2580/A0/03/881/002/007', 'SC170316', 'SC', '', '2020-01-06', '0400057421', 21058.06, 21058.06, 0.00, '30025099 - HQ COST 7 REIM EDU', 309, '2020-02-03 18:57:43.453318+00', '2020-02-26 00:30:45.866945+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (370, '0100402106-1', '1', '2580/A0/03/882/001/005', 'SC170316', 'SC', '', '2019-09-22', '0400068801', 0.00, 0.00, 0.00, '20153329 - 3F 2ND DCT EMER MINE RISK EDUCATION RES', 284, '2019-10-06 00:23:49.338871+00', '2019-11-29 00:16:45.055041+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (382, '0100406525-1', '1', '2580/A0/03/882/001/003', 'SC170316', 'SC', '', '2019-10-16', '0400062233', 12840.00, 12840.00, 0.00, '30022184 - REIM3RD PAYMENT MULTAKANA CP PART', 293, '2019-10-27 00:35:34.236793+00', '2019-11-19 00:26:01.710248+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (383, '0100406525-2', '2', '2580/A0/03/881/002/007', 'SC170316', 'SC', '', '2019-10-16', '0400062233', 19260.00, 19260.00, 0.00, '30022185 - 3RD PAYMENT MULTAKANA EDU PART', 293, '2019-10-27 00:35:34.238995+00', '2019-11-19 00:26:01.719726+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (328, '0100364177-1', '1', '2580/A0/03/881/002/007', 'SC170316', 'SC', '', '2019-01-31', '0400066346', 321230.00, 321230.00, 0.00, '20113997 - 1ST DCT NRC QUALITY EDU PSS TRIPOLI BEN', 250, '2019-02-15 00:39:11.573702+00', '2019-11-30 00:27:02.081492+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (351, '0100381334-1', '1', '2580/A0/03/882/001/005', 'GE180026', 'GE', '', '2019-05-30', '0400068801', 105270.00, 105270.00, 0.00, '20133156 - 3F 1ST DCT EMER MINE RISK EDUCATION RES', 268, '2019-06-04 00:15:35.924244+00', '2019-12-17 00:22:21.968512+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (390, '0100416625-1', '1', '2580/A0/03/882/001/002', 'SM170020', 'SM', '', '2019-12-08', '0400062231', 13820.00, 13820.00, 0.00, '20172045 - Q4 INSTALLMENT DCT', 299, '2019-12-09 17:48:55.702604+00', '2019-12-12 00:46:13.608976+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (389, '0100416518-1', '1', '2580/A0/03/882/001/002', 'SM170020', 'SM', '', '2019-12-06', '0400062231', 13240.00, 13240.00, 0.00, '30024092 - Q4 3RD INSTALLMENT REIM', 298, '2019-12-09 17:48:55.702484+00', '2019-12-12 00:46:13.621214+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (384, '0100407767-1', '1', '2580/A0/03/882/001/003', 'SC170316', 'SC', '', '2019-10-29', '0400062233', 12840.00, 12840.00, 0.00, '30022423 - REIM4TH PAYMENT MULTAKANA CP PART', 294, '2019-11-03 01:50:03.500264+00', '2019-12-29 02:06:01.285027+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (385, '0100407767-2', '2', '2580/A0/03/881/002/007', 'SC170316', 'SC', '', '2019-10-29', '0400062233', 19260.00, 19260.00, 0.00, '30022424 - 4TH PAYMENT MULTAKANA EDU PART', 294, '2019-11-03 01:50:03.500368+00', '2019-12-29 02:06:01.372243+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (395, '0100420851-1', '1', '2580/A0/03/882/001/001', 'SC170746', 'SC', '', '2020-01-09', '0400068277', 47340.54, 66750.16, 0.00, '30025123 - SCOUTS 2ND INSTALLMENT PCA2019150PD201', 302, '2020-01-10 18:26:14.798134+00', '2020-02-03 18:57:43.497461+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (380, '0100405955-1', '1', '2580/A0/03/882/001/001', 'SM180398', 'SM', '', '2019-10-22', '0400071267', 100000.00, 100000.00, 100000.00, '20159840 - 1ST DCT OF IRC', 291, '2019-10-25 00:21:21.709123+00', '2020-01-10 18:26:14.820238+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (398, '0100421340-1', '1', '2580/A0/03/882/001/002', 'SC170316', 'SC', '', '2020-01-19', '0400068740', 23150.00, 23150.00, 0.00, '20176218 - AFAQ 3RD DCT LIB PCA2019146', 306, '2020-01-21 00:51:29.088865+00', '2020-02-04 04:46:59.260994+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (399, '0100421329-1', '1', '2580/A0/03/882/001/001', 'SC170746', 'SC', '', '2020-01-13', '0400071267', 164238.00, 164238.00, 0.00, '20175727 - IRC 2ND DCT LIBPCA2019152PD2019103', 304, '2020-01-21 00:51:29.088936+00', '2020-01-21 00:51:29.088936+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (393, '0100420631-2', '2', '2580/A0/03/882/001/003', 'SC170316', 'SC', '', '2019-12-30', '0400073261', 67393.50, 67393.50, 0.00, '20175421 - Q1 DCT FOR CP INSTALMENT', 301, '2020-01-01 01:02:05.210183+00', '2020-01-15 00:04:45.016989+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (394, '0100420733-2', '2', '2580/A0/03/881/002/007', 'SC170316', 'SC', '', '2020-01-05', '0400073278', 23875.00, 23875.00, 0.00, '20175506 - IMPROVED ACCESS OF CHILDREN Q1 DCT FOR', 303, '2020-01-10 18:26:14.798009+00', '2020-01-23 00:33:50.574187+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (396, '0100420733-1', '1', '2580/A0/03/882/001/003', 'SC170316', 'SC', '', '2020-01-05', '0400073278', 146357.50, 146357.50, 0.00, '20175505 - IMPROVED ACCESS OF CHILDREN Q1 DCT FOR', 303, '2020-01-10 18:26:14.798215+00', '2020-01-23 00:33:50.594008+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (391, '0100419891-1', '1', '2580/A0/03/882/001/003', 'SC180799', 'SC', '', '2019-12-18', '0400073147', 189696.17, 189696.17, 0.00, '20174723 - Q1 DCT', 300, '2019-12-21 00:48:20.888718+00', '2020-02-03 18:57:43.475914+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (387, '0100411686-1', '1', '2580/A0/03/882/001/002', 'SC170746', 'SC', '', '2019-11-12', '0400065826', 123150.00, 123150.00, 0.00, '30023024 - ESSAFA 4TH REIM EU FUNDED', 296, '2019-11-21 00:14:41.189981+00', '2020-02-03 18:57:43.486348+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (401, '0100421755-1', '1', '2580/A0/03/881/002/007', 'SC170746', 'SC', '', '2020-01-23', '0400069389', 38031.91, 53625.00, 0.00, '20176544 - 3RD DCT TO BREEZES LIBPCA2019147', 308, '2020-01-25 02:17:19.617798+00', '2020-02-06 00:55:46.111637+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (400, '0100421493-1', '1', '2580/A0/03/881/001/006', 'SM189910', 'SM', '', '2020-01-20', '0400064173', 19280.00, 19280.00, 19280.00, '30025286 - Q4 REIM INSTALLMENT FOR EMDAD', 307, '2020-01-23 00:33:50.557801+00', '2020-02-03 18:57:43.515287+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (118, '0100237444-1', '1', '2580/A0/02/803/003/002', 'SM160161', 'SM', '', '2016-11-29', '0400043470', 126590.42, 177100.00, 0.00, '2ND DCT WASH LS', 27, '2018-03-15 16:56:58.441255+00', '2018-03-15 16:56:58.520088+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (403, '0100421961-2', '2', '2580/A0/03/882/001/003', 'SC170316', 'SC', '', '2020-01-06', '0400057421', 23746.32, 23746.32, 0.00, '30025100 - HQ COST 7 CP', 309, '2020-02-03 18:57:43.453419+00', '2020-02-26 00:30:45.877286+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (405, '0100426303-1', '1', '2580/A0/03/882/001/002', 'SC170746', 'SC', '', '2020-03-01', '0400074073', 185260.00, 185260.00, 0.00, '20180924 - SPECIALIZED PSYCHOSOCIAL SUPPORT FOR VU', 311, '2020-03-03 00:33:08.952532+00', '2020-03-04 00:11:28.615859+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (407, '0100426730-1', '1', '2580/A0/03/882/001/002', 'SC170746', 'SC', '', '2020-03-04', '0400068277', 31802.12, 45000.00, 0.00, '20181353 - PROMOTION OF CHILD PROTECTION AND THE C', 313, '2020-03-06 00:13:34.890299+00', '2020-03-18 00:12:18.300135+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (406, '0100426300-1', '1', '2580/A0/03/882/001/003', 'SC170746', 'SC', '', '2020-03-01', '0400062233', 2808.00, 2808.00, 0.00, '30026268 - DISTRIBUTION OF WINTER KITS', 312, '2020-03-03 00:33:08.952648+00', '2020-03-17 00:15:22.446521+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (408, '0100428988-1', '1', '2580/A0/03/881/001/013', 'SC170746', 'SC', '', '2020-03-18', '0400069470', 49000.00, 49000.00, 0.00, '30026764 - MERGENCY WASH RESPONSE TO IDP', 314, '2020-03-24 00:13:55.184596+00', '2020-04-12 00:20:26.206008+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (410, '0100430415-1', '1', '2580/A0/03/881/002/007', 'SC170316', 'SC', '', '2020-04-04', '0400071542', 182534.50, 182534.50, 0.00, '20184635 - LIBPCA2019133PD2019102 BAYTI CENTER EDU', 316, '2020-04-07 00:55:49.412086+00', '2020-04-07 00:55:49.412086+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (411, '0100430415-2', '2', '2580/A0/03/882/001/003', 'SC170316', 'SC', '', '2020-04-04', '0400071542', 223321.00, 223321.00, 0.00, '20184636 - LIBPCA2019133PD2019102 BAYTI CENTER CP', 316, '2020-04-07 00:55:49.412203+00', '2020-04-07 00:55:49.412203+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (414, '0100431380-1', '1', '2580/A0/03/881/002/007', 'SC170746', 'SC', '', '2020-04-09', '0400069389', 31835.66, 45525.00, 0.00, '20185132 - Q4 DCT TO BREEZES LIBPCA2019147', 317, '2020-04-18 02:45:11.019403+00', '2020-04-21 03:02:18.126503+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (413, '0100431347-1', '1', '2580/A0/03/882/001/003', 'SC170746', 'SC', '', '2020-04-14', '0400074876', 0.00, 0.00, 0.00, '20185370 - DISTRIBUTION WINTER KITS TO DETENTION C', 319, '2020-04-18 02:45:11.019321+00', '2020-04-18 02:45:11.019321+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (409, '0100429623-1', '1', '2580/A0/03/881/002/007', 'SC170316', 'SC', '', '2020-03-25', '0400066346', 186380.45, 186380.45, 0.00, '30027009 - NRC PD201987 2 SECOND INSTALLMENT', 315, '2020-03-28 00:17:19.327747+00', '2020-04-18 02:45:11.036401+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (415, '0100431299-1', '1', '2580/A0/03/881/002/007', 'SC170316', 'SC', '', '2020-04-09', '0400068740', 17450.00, 17450.00, 0.00, '20185127 - AFAQ Q4 DCT LIB PCA2019146', 318, '2020-04-18 02:45:11.019482+00', '2020-04-21 03:02:18.137944+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (197, '0100277085-2', '2', '2580/A0/02/883/007/001', 'SM160532', 'SM', '', '2017-09-08', '0400053854', 9520.42, 13023.93, 0.00, '1ST DCT LAYD EDUCATION 2017', 156, '2018-03-15 16:56:58.441255+00', '2020-04-21 03:02:18.146149+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (146, '0100269865-1', '1', '2580/A0/02/883/010/001', 'SM160532', 'SM', '', '2017-07-21', '0400040234', 4301.08, 6000.00, 0.00, 'ALNAHLA 4TH INSTALMENT REIMBURSEMENT FINAL PAYMENT', 117, '2018-03-15 16:56:58.441255+00', '2018-03-15 16:56:58.520088+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (3, '0100224221-1', '1', '2580/A0/02/803/003/002', 'SM160114', 'SM', '', '2016-09-16', '0400043523', 4492.00, 4492.00, 0.00, '1ST DCT AND ONLY DCT FOR TUFTS UNIVERSITY SSFA', 70, '2018-03-15 16:56:58.441255+00', '2018-03-15 16:56:58.520088+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (209, '0100286362-1', '1', '2580/A0/02/883/010/001', 'SM160532', 'SM', '', '2017-10-30', '0400051223', 29999.00, 29999.00, 0.00, '30000877 - REIMB 3RD AND LAST INSTALMENT', 163, '2018-03-15 16:56:58.441255+00', '2018-03-15 16:56:58.520088+00'); @@ -8929,7 +9268,7 @@ INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (261, '0100308369-1', '1 INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (266, '0100312150-1', '1', '2580/A0/02/883/010/001', 'SM170020', 'SM', '', '2018-04-13', '0400059402', 53500.00, 53500.00, 0.00, '20057694 - PROVISION COMM BASED REINTEGRATION SERV', 204, '2018-04-18 00:25:47.288737+00', '2018-04-27 00:07:11.070496+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (265, '0100311443-1', '1', '2580/A0/02/883/007/001', 'SM170020', 'SM', '', '2018-04-09', '0400059347', 26300.00, 26300.00, 0.00, '20056918 - 1ST DCT AFAQ SABRATHA RESPONSE PSS IN S', 203, '2018-04-16 13:11:12.685151+00', '2018-05-11 00:18:27.391537+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (263, '0100310385-1', '1', '2580/A0/02/883/010/001', 'SM170020', 'SM', '', '2018-04-04', '0400054461', 53084.00, 53084.00, 0.00, '20056199 - 3RD DCT FOR PCA LIBYA,CP,2017,13, AL NA', 200, '2018-04-09 17:30:55.791109+00', '2018-05-25 00:13:10.292861+00'); -INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (200, '0100277085-3', '3', '2580/A0/02/883/007/001', 'SC170366', 'SC', '', '2017-09-18', '0400053854', 41253.07, 56434.19, 0.00, '1ST DCT LAYD EDUCATION 2017', 156, '2018-03-15 16:56:58.441255+00', '2019-11-15 00:24:58.126363+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (200, '0100277085-3', '3', '2580/A0/02/883/007/001', 'SC170366', 'SC', '', '2017-09-18', '0400053854', 41253.07, 56434.19, 0.00, '1ST DCT LAYD EDUCATION 2017', 156, '2018-03-15 16:56:58.441255+00', '2020-04-21 03:02:18.164828+00'); -- @@ -8941,10 +9280,8 @@ INSERT INTO [[schema]].funds_fundsreservationheader VALUES (19, '2500220006', '0 INSERT INTO [[schema]].funds_fundsreservationheader VALUES (32, '2500232640', '0400046379', '2016-12-09', 'Programme Document Against PCA', 'USD', 'XX', '2016-12-09', '2016-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:56:58.838778+00', '2018-03-15 16:56:59.466036+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (38, '2500232253', '0400040235', '2016-05-10', 'Programme Document Against PCA', 'LYD', 'X', '2016-05-10', '2016-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:56:58.838778+00', '2018-03-15 16:56:59.466036+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (126, '2500232253', '0400058304', '2018-03-02', 'Programme Document Against PCA', 'USD', 'X', '2018-02-27', '2018-03-31', 0.00, NULL, 0.00, 0.00, 67333.00, '2018-03-15 16:56:58.838778+00', '2018-03-16 00:11:37.237666+00', 0.00, 0.00, 67333.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (141, '2500231352', '0400064541', '2018-11-07', 'Programme Document Against PCA', 'USD', 'FR FOR STACO PD (PPM)', '2018-10-25', '2019-10-25', 19300.00, 77, 127200.00, 0.00, 127200.00, '2018-11-09 00:08:10.945534+00', '2019-09-04 01:26:38.588572+00', 19300.00, 0.00, 127200.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (128, '2500232253', '0400058673', '2018-03-14', 'Programme Document Against PCA', 'USD', 'LS WASH ASSISTANCE TAWARGHA PCA REIMB.', '2018-02-27', '2018-03-31', 121937.00, NULL, 121937.00, 0.00, 121937.00, '2018-03-16 00:11:37.160038+00', '2018-05-11 00:10:18.315805+00', 121937.00, 0.00, 121937.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (8, '2500232144', '0400031240', '2015-06-12', 'SSFA', 'LYD', 'REIMBURSEMENT OF THE WASH INTERVENTION EXPENSES', '2015-05-28', '2015-06-30', 0.00, NULL, 0.00, 0.00, 13666.42, '2018-03-15 16:56:58.838778+00', '2018-03-15 19:09:18.323841+00', 0.00, 0.00, 18600.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (35, '2500233196', '0400035369', '2015-11-17', 'SSFA', 'LYD', 'EKRAA SSFA OCT NOV 2015', '2015-09-08', '2015-12-21', 49963.26, NULL, 49963.26, 0.00, 49963.26, '2018-03-15 16:56:58.838778+00', '2018-10-21 00:07:14.300201+00', 68000.00, 0.00, 68000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (24, '2500231382', '0400031651', '2015-06-29', 'SSFA', 'LYD', 'PSS FOR GBV VICTIMS', '2015-06-01', '2015-08-31', 0.00, NULL, 0.00, 0.00, 30000.00, '2018-03-15 16:56:58.838778+00', '2018-03-15 19:09:18.405522+00', 0.00, 0.00, 40830.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (48, '2500231382', '0400032326', '2015-07-27', 'SSFA', 'LYD', 'PSYCHOSOCIAL SUPPORT FOR GBV', '2015-07-25', '2015-09-24', 0.00, NULL, 0.00, 0.00, 22.04, '2018-03-15 16:56:58.838778+00', '2018-03-15 19:09:18.483865+00', 0.00, 0.00, 30.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (45, '2500220005', '0400036527', '2015-12-15', 'Programme Document Against PCA', 'LYD', 'REIMBURSEMENT FOR SCOUTS', '2015-03-31', '2015-12-21', 22354.15, NULL, 22354.15, 0.00, 68465.10, '2018-03-15 16:56:58.838778+00', '2018-10-21 00:07:14.393585+00', 30424.00, 0.00, 30424.00, false, false, false); @@ -8953,113 +9290,127 @@ INSERT INTO [[schema]].funds_fundsreservationheader VALUES (22, '2500233211', '0 INSERT INTO [[schema]].funds_fundsreservationheader VALUES (46, '2500235018', '0400040589', '2016-05-24', 'Programme Document Against PCA', 'USD', 'CP-PSYCHO. EMERGENCY RESPONSE & RECRE. ACTIVITIE', '2016-05-24', '2016-12-31', 0.00, NULL, 0.00, 0.00, 463478.00, '2018-03-15 16:56:58.838778+00', '2018-03-15 19:09:18.990961+00', 0.00, 0.00, 463478.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (118, '2500231352', '0400056168', '2017-12-01', 'Programme Document Against PCA', 'USD', '3TRD PAYMENT TO STACO/WASH PCA', '2017-12-01', '2017-12-31', 0.00, NULL, 0.00, 0.00, 48701.89, '2018-03-15 16:56:58.838778+00', '2018-03-15 19:09:20.204746+00', 0.00, 0.00, 48701.89, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (122, '2500235018', '0400057397', '2018-01-24', 'Programme Document Against PCA', 'USD', 'PCA CESVI CP&EDU. PSY SUPPORT REMEDIAL EDU IDP&REF', '2018-01-24', '2018-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:56:58.838778+00', '2018-03-15 19:09:20.347693+00', 0.00, 0.00, 230291.84, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (36, '2500231802', '0400031074', '2015-06-06', 'SSFA', 'LYD', 'BSS FOR CHILDREN AFFECTED BY ARMED CONFLICT', '2015-06-01', '2015-08-31', 24246.88, NULL, 24246.88, 0.00, 24246.88, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.223227+00', 33000.00, 0.00, 33000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (31, '2500220005', '0400036512', '2015-12-15', 'Programme Document Against PCA', 'LYD', 'CLEARANCE TRANSPORT OF 8 CONTAINERS SCHOOL-IN BOX', '2015-12-15', '2015-12-21', 7183.32, NULL, 7183.32, 0.00, 68465.10, '2018-03-15 16:56:58.838778+00', '2018-10-21 00:07:14.352395+00', 9776.50, 0.00, 9776.50, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (27, '2500232307', '0400033507', '2015-09-09', 'SSFA', 'LYD', 'DETENTION CENTERS ASSESSMENT AND MONITORING', '2015-06-16', '2015-07-31', 18368.85, NULL, 18368.85, 0.00, 18368.85, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.335731+00', 25000.00, 0.00, 25000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (113, '2500236901', '0400054407', '2017-10-03', 'Programme Document Against PCA', 'USD', 'PCA EMDAD', '2017-10-03', '2018-02-28', 488776.00, 62, 488776.00, 0.00, 488776.00, '2018-03-15 16:56:58.838778+00', '2018-08-18 00:08:49.874717+00', 488776.00, 0.00, 488776.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (138, '2500231352', '0400062543', '2018-08-14', 'Programme Document Against PCA', 'USD', 'FR FOR STACO PD (2 MURZUK SCHOOLS REHABLITATION)', '2018-08-14', '2019-06-30', 199861.98, 74, 199861.98, 99931.00, 299792.96, '2018-08-28 13:46:29.130926+00', '2019-04-20 00:15:17.497433+00', 199861.98, 99931.00, 299792.96, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (7, '2500220006', '0400038547', '2016-03-10', 'Programme Document Against PCA', 'USD', 'COMMUNITY BASED CP-PSS SERVICES BENGHZI-ACTED PCA', '2016-03-07', '2017-02-06', 145247.59, NULL, 145247.59, 0.00, 242230.46, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.587755+00', 0.00, 0.00, 242230.46, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (6, '2500234284', '0400039822', '2016-04-25', 'SSFA', 'LYD', 'PSS PROJECT IN SIRTE, BENINA, DERNA AND AJDABYAH', '2016-02-26', '2016-06-30', 50045.05, NULL, 50045.05, 0.00, 50000.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.628536+00', 66660.00, 0.00, 66600.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (42, '2500234748', '0400040327', '2016-05-12', 'Programme Document Against PCA', 'USD', 'WASH-DRC-PROVISION OF LIFE SAVING EMERG.WASH SERVI', '2016-05-12', '2016-12-31', 217718.30, NULL, 217718.30, 0.00, 222619.60, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.721641+00', 217718.30, 0.00, 222619.60, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (47, '2500234793', '0400040587', '2016-05-24', 'Programme Document Against PCA', 'USD', 'CP-LIFESAVING ADEQUATE, APPROPRIATE & INCLU. SERVI', '2016-05-24', '2016-12-31', 404780.00, NULL, 404780.00, 0.00, 404780.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.745331+00', 404780.00, 0.00, 404780.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (49, '2500235121', '0400041917', '2016-07-12', 'SSFA', 'USD', 'SSFA IMC LIBYA', '2016-07-12', '2016-12-31', 46425.00, NULL, 46425.00, 0.00, 46425.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.84915+00', 46425.00, 0.00, 46425.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (11, '2500217970', '0400043523', '2016-09-16', 'SSFA', 'USD', 'TUFTS UNIVERSITY SSFA SIGNED ON 16/09/2016', '2016-09-16', '2016-12-16', 4492.00, NULL, 4492.00, 0.00, 4492.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.969643+00', 4492.00, 0.00, 4492.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (52, '2500232307', '0400043533', '2016-09-16', 'SSFA', 'USD', 'SSFA IOCEA SIGNED 31.08.2016', '2016-09-16', '2016-12-16', 50700.00, NULL, 50700.00, 0.00, 16900.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.992133+00', 50700.00, 0.00, 16900.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (5, '2500235813', '0400045301', '2016-11-14', 'Programme Document Against PCA', 'USD', 'COMMUNITY BASED CP AND PSS SERVICES - ARIAF', '2016-11-14', '2016-12-31', 63560.00, NULL, 63560.00, 0.00, 31780.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.032929+00', 63560.00, 0.00, 31780.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (41, '2500235936', '0400045437', '2016-11-17', 'SSFA', 'USD', 'SSFA LIBYA HOUSE FOR SCIENCE AND CULTURE 8.11.16', '2016-11-17', '2017-04-17', 95850.00, NULL, 95850.00, 0.00, 47925.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.052468+00', 95850.00, 0.00, 47925.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (67, '2500236520', '0400049257', '2017-03-30', 'SSFA', 'USD', 'SSFA LBYA WOMEN UNION SIRTE', '2017-03-30', '2018-03-31', 24615.00, 17, 24615.00, 0.00, 29216.10, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.192324+00', 24615.00, 0.00, 29216.10, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (68, '2500232253', '0400049370', '2017-04-04', 'Programme Document Against PCA', 'USD', 'PCA LIBYAN SOCIETY WASH BENGHAZI', '2017-04-04', '2017-12-31', 658316.00, 68, 658316.00, 0.00, 373409.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.217637+00', 658316.00, 0.00, 373409.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (78, '2500237271', '0400053215', '2017-08-10', 'SSFA', 'USD', 'SSFA KOUDOURATI EDUCATION', '2017-08-10', '2017-12-31', 49892.00, 57, 49892.00, 0.00, 49892.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.449127+00', 49892.00, 0.00, 49892.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (36, '2500231802', '0400031074', '2015-06-06', 'SSFA', 'LYD', 'BSS FOR CHILDREN AFFECTED BY ARMED CONFLICT', '2015-06-01', '2015-08-31', 24246.88, NULL, 24246.88, 0.00, 24246.88, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.613365+00', 33000.00, 0.00, 33000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (120, '2500231352', '0400057358', '2018-01-23', 'Programme Document Against PCA', 'USD', 'PCA WITH STACO 2ND INSTAL. REIMBURSEMENT', '2018-01-23', '2018-07-31', 41632.50, NULL, 41632.50, 0.00, 83272.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.630395+00', 41632.50, 0.00, 83272.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (127, '2500231352', '0400058256', '2018-02-28', 'Programme Document Against PCA', 'USD', 'STACO PCA TECH ASSESS 10 SCHOOLS MUSRATA 1ST INST.', '2018-02-28', '2018-03-31', 36206.00, 64, 36206.00, 0.00, 36206.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.72421+00', 36206.00, 0.00, 36206.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (55, '2500233211', '0400034649', '2015-10-26', 'SSFA', 'LYD', 'SSFSA WITH NASIM', '2015-09-08', '2015-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:56:58.838778+00', '2018-03-15 16:56:59.466036+00', 0.00, 0.00, 0.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (39, '2500231351', '0400027878', '2015-02-10', 'SSFA', 'USD', 'PSYCOSOCIAL SUPPORT', '2015-02-10', '2015-06-30', 18933.14, NULL, 18933.14, 0.00, 20000.00, '2018-03-15 16:56:58.838778+00', '2019-06-08 00:12:40.49181+00', 0.00, 0.00, 20000.00, true, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (139, '2500231802', '0400062943', '2018-09-06', 'Programme Document Against PCA', 'USD', 'ALAHLA PD (TRANSITIONAL CENTRE JANZOUR) -2018 ONLY', '2018-09-06', '2019-09-06', 151730.00, 81, 223970.00, 0.00, 223970.00, '2018-09-09 00:06:50.558328+00', '2019-09-06 01:20:31.911738+00', 151730.00, 0.00, 223970.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (164, '2500238097', '0400074004', '2020-02-18', 'Programme Document Against PCA', 'USD', 'FR FOR LRC PCA 2020 - EMERGENCY', '2020-03-01', '2021-03-01', 0.00, NULL, 80000.00, 0.00, 80000.00, '2020-02-20 02:57:26.252598+00', '2020-03-03 00:31:10.810031+00', 0.00, 0.00, 80000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (160, '2500236565', '0400072568', '2019-11-28', 'Programme Document Against PCA', 'USD', 'TEST FOR PRP', '2019-11-28', '2019-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2019-11-30 00:25:31.510454+00', '2019-11-30 00:25:31.510454+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (146, '2500235600', '0400066266', '2019-01-29', 'Programme Document Against PCA', 'USD', 'LAYD FINAL PAYMENT PCA LIBYA EDU 2017 02', '2017-10-01', '2018-12-31', 112554.00, NULL, 112554.00, 0.00, 112554.00, '2019-02-01 00:08:12.983577+00', '2019-02-12 00:15:24.828771+00', 112554.00, 0.00, 112554.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (27, '2500232307', '0400033507', '2015-09-09', 'SSFA', 'LYD', 'DETENTION CENTERS ASSESSMENT AND MONITORING', '2015-06-16', '2015-07-31', 18368.85, NULL, 18368.85, 0.00, 18368.85, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.648288+00', 25000.00, 0.00, 25000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (35, '2500233196', '0400035369', '2015-11-17', 'SSFA', 'LYD', 'EKRAA SSFA OCT NOV 2015', '2015-09-08', '2015-12-21', 49963.26, NULL, 49963.26, 0.00, 49963.26, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.656746+00', 68000.00, 0.00, 68000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (7, '2500220006', '0400038547', '2016-03-10', 'Programme Document Against PCA', 'USD', 'COMMUNITY BASED CP-PSS SERVICES BENGHZI-ACTED PCA', '2016-03-07', '2017-02-06', 145247.59, NULL, 145247.59, 0.00, 242230.46, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.699957+00', 0.00, 0.00, 242230.46, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (6, '2500234284', '0400039822', '2016-04-25', 'SSFA', 'LYD', 'PSS PROJECT IN SIRTE, BENINA, DERNA AND AJDABYAH', '2016-02-26', '2016-06-30', 50045.05, NULL, 50045.05, 0.00, 50000.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.717239+00', 66660.00, 0.00, 66600.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (42, '2500234748', '0400040327', '2016-05-12', 'Programme Document Against PCA', 'USD', 'WASH-DRC-PROVISION OF LIFE SAVING EMERG.WASH SERVI', '2016-05-12', '2016-12-31', 217718.30, NULL, 217718.30, 0.00, 222619.60, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.745148+00', 217718.30, 0.00, 222619.60, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (47, '2500234793', '0400040587', '2016-05-24', 'Programme Document Against PCA', 'USD', 'CP-LIFESAVING ADEQUATE, APPROPRIATE & INCLU. SERVI', '2016-05-24', '2016-12-31', 404780.00, NULL, 404780.00, 0.00, 404780.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.755159+00', 404780.00, 0.00, 404780.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (49, '2500235121', '0400041917', '2016-07-12', 'SSFA', 'USD', 'SSFA IMC LIBYA', '2016-07-12', '2016-12-31', 46425.00, NULL, 46425.00, 0.00, 46425.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.790337+00', 46425.00, 0.00, 46425.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (11, '2500217970', '0400043523', '2016-09-16', 'SSFA', 'USD', 'TUFTS UNIVERSITY SSFA SIGNED ON 16/09/2016', '2016-09-16', '2016-12-16', 4492.00, NULL, 4492.00, 0.00, 4492.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.869803+00', 4492.00, 0.00, 4492.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (52, '2500232307', '0400043533', '2016-09-16', 'SSFA', 'USD', 'SSFA IOCEA SIGNED 31.08.2016', '2016-09-16', '2016-12-16', 50700.00, NULL, 50700.00, 0.00, 16900.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.8788+00', 50700.00, 0.00, 16900.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (5, '2500235813', '0400045301', '2016-11-14', 'Programme Document Against PCA', 'USD', 'COMMUNITY BASED CP AND PSS SERVICES - ARIAF', '2016-11-14', '2016-12-31', 63560.00, NULL, 63560.00, 0.00, 31780.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.9002+00', 63560.00, 0.00, 31780.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (41, '2500235936', '0400045437', '2016-11-17', 'SSFA', 'USD', 'SSFA LIBYA HOUSE FOR SCIENCE AND CULTURE 8.11.16', '2016-11-17', '2017-04-17', 95850.00, NULL, 95850.00, 0.00, 47925.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.909574+00', 95850.00, 0.00, 47925.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (67, '2500236520', '0400049257', '2017-03-30', 'SSFA', 'USD', 'SSFA LBYA WOMEN UNION SIRTE', '2017-03-30', '2018-03-31', 24615.00, 17, 24615.00, 0.00, 29216.10, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.960086+00', 24615.00, 0.00, 29216.10, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (68, '2500232253', '0400049370', '2017-04-04', 'Programme Document Against PCA', 'USD', 'PCA LIBYAN SOCIETY WASH BENGHAZI', '2017-04-04', '2017-12-31', 658316.00, 68, 658316.00, 0.00, 373409.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.968638+00', 658316.00, 0.00, 373409.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (78, '2500237271', '0400053215', '2017-08-10', 'SSFA', 'USD', 'SSFA KOUDOURATI EDUCATION', '2017-08-10', '2017-12-31', 49892.00, 57, 49892.00, 0.00, 49892.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:09.045889+00', 49892.00, 0.00, 49892.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (113, '2500236901', '0400054407', '2017-10-03', 'Programme Document Against PCA', 'USD', 'PCA EMDAD', '2017-10-03', '2018-02-28', 488776.00, 62, 488776.00, 0.00, 488776.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:09.072416+00', 488776.00, 0.00, 488776.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (137, '2500238760', '0400062231', '2018-08-02', 'Programme Document Against PCA', 'USD', 'FR FOR NOORALHAYAT PD', '2018-04-01', '2019-10-27', 182908.00, 75, 182908.00, 0.00, 182908.00, '2018-08-10 00:06:31.143338+00', '2020-02-10 02:40:09.228972+00', 182908.00, 0.00, 182908.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (153, '2500238136', '0400068740', '2019-05-29', 'Programme Document Against PCA', 'USD', 'AFAQ LIB/PCA2019146', '2019-05-20', '2020-05-20', 95100.00, 94, 95100.00, 0.00, 118250.00, '2019-05-31 00:14:26.92748+00', '2020-04-21 02:59:23.527694+00', 95100.00, 0.00, 118250.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (39, '2500231351', '0400027878', '2015-02-10', 'SSFA', 'USD', 'PSYCOSOCIAL SUPPORT', '2015-02-10', '2015-06-30', 18933.14, NULL, 18933.14, 0.00, 20000.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.570913+00', 0.00, 0.00, 20000.00, true, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (62, '2500220006', '0400038608', '2016-03-11', 'Programme Document Against PCA', 'USD', 'COMMUNITY BASED CP-PSS SERVICES BENGHZI-ACTED PCA', '2016-03-07', '2017-02-06', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:56:58.838778+00', '2018-03-15 16:56:59.466036+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (66, '2500232253', '0400049246', '2017-03-30', 'Programme Document Against PCA', 'USD', 'EMERGENCY WASH ASSISTANCE IN BENGHAZI', '2017-04-01', '2017-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:56:58.838778+00', '2018-03-15 16:56:59.466036+00', 0.00, 0.00, 0.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (44, '2500233196', '0400046242', '2016-12-07', 'Programme Document Against PCA', 'LYD', 'PCA EKRAA EDUCATION/NEW PCA FORMAL EDUCATION', '2016-12-07', '2017-05-07', 132502.45, 78, 132502.45, 0.00, 264331.67, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.071921+00', 184600.00, 0.00, 369800.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (60, '2300044770', '0400032253', '2015-07-23', 'SSFA', 'LYD', 'PSS FOR CHILD FRIENDLY SPACES', '2015-07-23', '2015-08-30', 0.00, NULL, 0.00, 0.00, 44085.23, '2018-03-15 16:56:58.838778+00', '2018-03-15 19:09:18.458103+00', 0.00, 0.00, 60000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (142, '2500236521', '0400049609', '2017-04-13', 'SSFA', 'USD', 'SSFA TOPD WORK PLAN WITH MOP LIBYA', '2017-04-13', '2017-12-13', 48453.00, NULL, 48453.00, 0.00, 48453.00, '2018-11-22 00:07:15.19546+00', '2018-11-22 00:07:15.456663+00', 48453.00, 0.00, 48453.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (134, '2500232640', '0400061048', '2018-06-14', 'Programme Document Against PCA', 'USD', 'CIR PCA 3RD PARTY MONITORING 2017 FINAL REIM', '2017-01-01', '2017-12-31', 21052.57, NULL, 21052.57, 0.00, 21052.57, '2018-06-16 00:10:27.716504+00', '2018-06-21 00:09:35.259123+00', 21052.57, 0.00, 21052.57, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (114, '2500231802', '0400054461', '2017-10-05', 'Programme Document Against PCA', 'USD', 'PCA/LIBYA/CP/2017/13-AL NAHLA GANZOUR 2017', '2017-10-05', '2018-10-04', 277475.00, 66, 277475.00, 0.00, 489171.14, '2018-03-15 16:56:58.838778+00', '2019-02-24 00:15:04.648036+00', 277475.00, 0.00, 489171.14, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (149, '2500233211', '0400067621', '2019-04-04', 'Programme Document Against PCA', 'LYD', 'PCA BREEZES Q4 TO Q6 REIMB', '2017-11-01', '2018-07-31', 51511.88, NULL, 51511.88, 0.00, 51511.88, '2019-04-07 00:09:30.095301+00', '2019-04-14 00:13:57.525193+00', 71550.00, 0.00, 71550.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (57, '2500220005', '0400026726', '2014-12-13', 'Programme Document Against PCA', 'USD', 'BOY SCOUTS & GIRLS GUIDS OF LIBYA', '2014-12-13', '2015-03-31', 19950.00, NULL, 19950.00, 0.00, 21727.76, '2018-03-15 16:56:58.838778+00', '2018-10-21 00:07:14.252757+00', 19950.00, 0.00, 21727.76, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (115, '2500231382', '0400054536', '2017-10-09', 'Programme Document Against PCA', 'USD', 'ESSAFA- PSS IN TRIPOLI, BENGHAZI, SEBHA', '2017-10-05', '2018-10-31', 467649.00, 67, 467649.00, 0.00, 467649.00, '2018-03-15 16:56:58.838778+00', '2018-12-20 16:43:51.269056+00', 467649.00, 0.00, 467649.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (145, '2500233196', '0400066101', '2019-01-20', 'Programme Document Against PCA', 'LYD', 'PCA EKRAA EDU 2016/08 AMENDMENT 1 6THINST', '2019-01-20', '2019-02-28', 44612.07, NULL, 44612.07, 0.00, 44612.07, '2019-01-22 00:08:05.845099+00', '2019-01-24 00:08:13.424343+00', 62100.00, 0.00, 62100.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (152, '2500240059', '0400068697', '2019-05-28', 'SSFA', 'USD', 'AL SAFWA LIB/SSFA2019148', '2019-05-20', '2019-10-20', 49179.86, 93, 49179.86, 49179.86, 49179.86, '2019-05-30 00:15:01.865438+00', '2019-06-20 00:28:24.119302+00', 49179.86, 49179.86, 49179.86, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (137, '2500238760', '0400062231', '2018-08-02', 'Programme Document Against PCA', 'USD', 'FR FOR NOORALHAYAT PD', '2018-04-01', '2019-10-27', 155848.00, 75, 182908.00, 56960.00, 182908.00, '2018-08-10 00:06:31.143338+00', '2019-08-28 01:22:51.915314+00', 155848.00, 56960.00, 182908.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (30, '2500220005', '0400031145', '2015-06-09', 'SSFA', 'LYD', 'BOY SCOUTS AND GIRLS GUIDE OF LIBYA: PCA WITH SCOU', '2015-04-01', '2015-12-31', 11183.69, 13, 11183.69, 0.00, 25000.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.244593+00', 15221.00, 0.00, 34025.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (156, '2500232253', '0400069470', '2019-07-03', 'Programme Document Against PCA', 'USD', 'FR FOR LIBYAN SOCIETY PD (WASH RESPONSE TO IDPS/CO', '2019-07-03', '2019-12-31', 69050.00, 101, 118050.00, 0.00, 118050.00, '2019-07-05 14:37:05.255131+00', '2019-11-02 01:45:36.800964+00', 69050.00, 0.00, 118050.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (61, '2500220006', '0400038609', '2016-03-11', 'Programme Document Against PCA', 'LYD', 'WASH-HUMANITARIAN-ASSISTANCE-TAWARGAHIDP-ACTED PCA', '2016-01-22', '2017-01-31', 38726.16, NULL, 38726.16, 0.00, 89420.02, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.608358+00', 0.00, 0.00, 123757.31, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (18, '2500231802', '0400040234', '2016-05-10', 'Programme Document Against PCA', 'LYD', 'CHILD PROTECTION- ALNAHLA - PCA/LIBYA/CP/2016/07', '2016-05-10', '2016-12-31', 193508.45, 19, 193508.45, 0.00, 177442.06, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.695973+00', 0.00, 0.00, 236352.82, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (15, '2500235018', '0400041454', '2016-06-22', 'Programme Document Against PCA', 'USD', 'CESVI CP-PSYCHO EMERGENCY RESPONSE RECRE ACTIVITY', '2016-06-22', '2016-12-31', 463478.00, NULL, 463478.00, 0.00, 464756.57, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.766563+00', 463478.00, 0.00, 464756.57, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (56, '2500233211', '0400041882', '2016-07-11', 'Programme Document Against PCA', 'LYD', 'PCA- BREEZERS LIBYA FOR SUSTAINABLE DEVELOPMENT', '2016-07-11', '2017-01-11', 112670.45, 15, 112670.45, 0.00, 119478.64, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.811618+00', 156100.00, 0.00, 165000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (37, '2500220005', '0400041944', '2016-07-13', 'Programme Document Against PCA', 'LYD', 'PCA- BOY SCOUTS & GIRLS GUIDE OF LIBYA', '2016-07-13', '2017-01-12', 208486.02, 13, 208486.02, 0.00, 213109.34, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.866316+00', 290376.00, 0.00, 294304.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (13, '2500235600', '0400043844', '2016-09-28', 'SSFA', 'LYD', 'SSFA LIBYAN ASSOCIATION FOR YOUTH SIGNED 31.08.16', '2016-09-28', '2016-12-28', 45446.51, 11, 45446.51, 0.00, 45807.11, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.014331+00', 63168.00, 0.00, 63168.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (64, '2500236102', '0400046373', '2016-12-09', 'SSFA', 'USD', '1ST DCT WOMEN & YOUTH EMPOWERMENT', '2016-12-09', '2017-03-09', 48430.00, NULL, 48430.00, 0.00, 48800.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.091323+00', 48430.00, 0.00, 48800.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (152, '2500240059', '0400068697', '2019-05-28', 'SSFA', 'USD', 'AL SAFWA LIB/SSFA2019148', '2019-05-20', '2019-10-20', 49179.86, 93, 49179.86, 0.00, 49179.86, '2019-05-30 00:15:01.865438+00', '2020-02-20 02:57:26.274308+00', 49179.86, 0.00, 49179.86, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (166, '2500220006', '0400074709', '2020-03-25', 'Programme Document Against PCA', 'USD', 'BIRTH REGISTRATION - ACTED', '2020-03-25', '2020-12-31', 0.00, NULL, 156464.00, 0.00, 156464.00, '2020-03-27 00:16:05.399594+00', '2020-03-27 00:16:05.563572+00', 0.00, 0.00, 156464.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (44, '2500233196', '0400046242', '2016-12-07', 'Programme Document Against PCA', 'LYD', 'PCA EKRAA EDUCATION/NEW PCA FORMAL EDUCATION', '2016-12-07', '2017-05-07', 132502.45, 78, 132502.45, 0.00, 264331.67, '2018-03-15 16:56:58.838778+00', '2020-04-16 01:16:28.680643+00', 184600.00, 0.00, 369800.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (2, '2500220006', '0400047217', '2017-01-27', 'Programme Document Against PCA', 'LYD', 'WASH-HUMANITARIAN-ASSISTANCE-TAWRGHA-ACTED HQ COST', '2016-01-22', '2017-01-31', 43674.77, NULL, 43674.77, 0.00, 43674.77, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.11019+00', 61101.00, 0.00, 61101.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (16, '2500231382', '0400047686', '2017-02-13', 'Programme Document Against PCA', 'LYD', 'PSS SER GBV VICTIMS- ESSAFA PCA 3RD 4TH PAYMENTS', '2016-01-22', '2017-01-23', 93971.84, NULL, 93971.84, 0.00, 93971.84, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.132304+00', 131466.60, 0.00, 131466.60, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (58, '2500231352', '0400048127', '2017-02-24', 'Programme Document Against PCA', 'USD', 'PCA STACO EDUCATION TAWARGHA CITY', '2017-02-24', '2017-05-24', 41636.50, 7, 41636.50, 0.00, 41636.50, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.151691+00', 41636.50, 0.00, 41636.50, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (65, '2500233211', '0400048668', '2017-03-10', 'Programme Document Against PCA', 'LYD', 'PCA BREEZES FORMAL AND NON FORMAL EDUCATION', '2017-03-10', '2018-03-31', 67547.06, 14, 67547.06, 0.00, 67190.85, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.168662+00', 94000.00, 0.00, 94000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (69, '2500231352', '0400049612', '2017-04-13', 'Programme Document Against PCA', 'USD', 'PCA STACO WASH SABHA AND UBARI', '2017-04-13', '2017-12-13', 426166.00, 16, 426166.00, 0.00, 600894.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.255826+00', 426166.00, 0.00, 600894.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (71, '2500232640', '0400049921', '2017-04-25', 'Programme Document Against PCA', 'USD', 'PCA THIRD PARTY MONITORING CIR II', '2017-04-25', '2017-12-31', 300751.00, 6, 300751.00, 0.00, 396303.00, '2018-03-15 16:56:58.838778+00', '2019-04-21 00:17:49.918269+00', 300751.00, 0.00, 396303.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (73, '2500217970', '0400050265', '2017-05-05', 'SSFA', 'USD', 'NEW SSFA TUFTS', '2017-05-05', '2017-08-05', 4410.00, NULL, 4410.00, 0.00, 4410.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.317282+00', 4410.00, 0.00, 4410.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (72, '2500231352', '0400050266', '2017-05-05', 'Programme Document Against PCA', 'USD', 'PCA STACO CP SEBHA AND UBARI', '2017-05-05', '2017-12-31', 217915.00, 7, 217915.00, 0.00, 217915.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.336107+00', 217915.00, 0.00, 217915.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (74, '2500236298', '0400051021', '2017-05-26', 'SSFA', 'USD', 'SSFA MOLTAQANA', '2017-05-26', '2017-06-09', 31786.00, 20, 31786.00, 0.00, 31786.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.361163+00', 31786.00, 0.00, 31786.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (76, '2500236901', '0400051221', '2017-06-01', 'SSFA', 'USD', 'SSFA EMDAD SIRTE', '2017-06-01', '2017-12-01', 49305.00, 9, 49305.00, 0.00, 49305.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.394232+00', 49305.00, 0.00, 49305.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (53, '2500232640', '0400042429', '2016-08-01', 'Programme Document Against PCA', 'USD', 'PCA CIR THIRD PARTY MONITORING OF UNICEF IPS', '2016-08-01', '2016-12-31', 133197.00, NULL, 133197.00, 0.00, 142540.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.889729+00', 133197.00, 0.00, 142540.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (40, '2500220005', '0400031985', '2015-07-10', 'Programme Document Against PCA', 'LYD', 'PEER EDUCATORS PROJECT ON HIV/AIDS', '2015-08-01', '2015-08-31', 0.00, NULL, 0.00, 0.00, 12490.82, '2018-03-15 16:56:58.838778+00', '2018-03-15 19:09:18.4293+00', 0.00, 0.00, 17000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (153, '2500238136', '0400068740', '2019-05-29', 'Programme Document Against PCA', 'USD', 'AFAQ LIB/PCA2019146', '2019-05-20', '2020-05-20', 71950.00, 94, 118250.00, 25900.00, 118250.00, '2019-05-31 00:14:26.92748+00', '2019-10-27 00:33:58.726468+00', 71950.00, 25900.00, 118250.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (43, '2500231382', '0400027873', '2015-02-10', 'SSFA', 'USD', 'PSYCOSOCIAL SUPPORT', '2015-02-10', '2015-06-30', 18933.14, NULL, 18933.14, 0.00, 50000.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.060433+00', 0.00, 0.00, 50000.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (148, '2500237369', '0400067548', '2019-04-02', 'Programme Document Against PCA', 'USD', 'ALMOBADER- PCA-LIB/PCA019141/PD201989', '2019-04-02', '2019-07-31', 520835.00, 89, 520835.00, 324750.00, 520835.00, '2019-04-04 00:18:03.105268+00', '2019-08-02 00:26:48.795598+00', 520835.00, 324750.00, 520835.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (119, '2500220006', '0400057162', '2018-01-16', 'Programme Document Against PCA', 'USD', 'PCA ACTED KEY CHALL/STRATEGIES MIGRANT CHILDREN', '2017-12-29', '2018-06-28', 285010.21, 59, 285010.21, 0.00, 289405.95, '2018-03-15 16:56:58.838778+00', '2019-06-15 00:17:50.214266+00', 285010.21, 0.00, 289405.95, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (26, '2500220005', '0400030881', '2015-05-31', 'Programme Document Against PCA', 'LYD', 'COMMUNITY BASE SCYCO SOCIAL SUPPORT FOR SCOUTS', '2015-04-01', '2015-12-31', 34927.26, 13, 34927.26, 0.00, 35268.19, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.200336+00', 47536.00, 0.00, 48000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (50, '2500231382', '0400031544', '2015-06-24', 'SSFA', 'LYD', 'PSS FOR GBV VICTIMS', '2015-06-24', '2015-08-30', 30000.00, NULL, 30000.00, 0.00, 30000.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.290297+00', 40830.00, 0.00, 43390.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (54, '2500232253', '0400037893', '2016-02-17', 'Programme Document Against PCA', 'LYD', 'PCA- LIBYAN SOCIETY FOR CHARITY WORKS', '2016-01-22', '2016-07-31', 107097.22, NULL, 107097.22, 0.00, 107309.33, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.485942+00', 146048.00, 0.00, 146048.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (10, '2500231352', '0400038475', '2016-03-08', 'Programme Document Against PCA', 'LYD', 'COMMUNITY BASED CP & PSS SERVICES - STACO PCA', '2016-03-01', '2017-02-01', 248819.91, 5, 248819.91, 0.00, 287805.70, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.521215+00', 0.00, 0.00, 398323.09, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (33, '2500231382', '0400038539', '2016-03-10', 'Programme Document Against PCA', 'LYD', 'PROVISION PSS SERVICES FOR GBV VICTIMS- ESSAFA PCA', '2016-02-24', '2017-01-24', 76366.37, NULL, 76366.37, 0.00, 216069.36, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.563747+00', 101720.00, 0.00, 299040.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (28, '2500233196', '0400041788', '2016-07-05', 'Programme Document Against PCA', 'LYD', 'PCA- EKRAA ASSEMBLY FOR DEVELOPMENT', '2016-07-05', '2017-01-05', 146834.94, 3, 146834.94, 0.00, 151539.46, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.787562+00', 204500.00, 0.00, 209276.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (51, '2500231382', '0400042935', '2016-08-24', 'Programme Document Against PCA', 'LYD', 'PROVISION PSS SERVICES FOR GBV VICTIMS- ESSAFA PCA', '2016-02-24', '2017-01-24', 47563.97, 2, 47563.97, 0.00, 142691.90, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.909631+00', 65733.40, 0.00, 197200.20, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1, '2500231352', '0400043469', '2016-09-14', 'Programme Document Against PCA', 'USD', 'PCA SCHOOLS IN SABHA WASH', '2016-09-14', '2016-12-14', 596570.00, 5, 596570.00, 0.00, 298285.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.930417+00', 596570.00, 0.00, 298285.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (9, '2500232253', '0400043470', '2016-09-14', 'Programme Document Against PCA', 'LYD', 'PCA LS WASH BENGHAZI', '2016-09-14', '2016-12-14', 255016.82, 8, 255016.82, 0.00, 256852.79, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.949507+00', 354200.00, 0.00, 354200.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (75, '2500231382', '0400051223', '2017-06-01', 'Programme Document Against PCA', 'USD', 'NEW PCA ESSAFA AL ZAINTAN MUNICIPAL COUNCIL CP', '2017-06-01', '2018-02-01', 195887.00, NULL, 195887.00, 0.00, 195887.00, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.41285+00', 195887.00, 0.00, 195887.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (77, '2500237096', '0400052138', '2017-07-03', 'Programme Document Against PCA', 'LYD', 'DCT:SAFE SOLID WASTE COLLECTION - CHILDREN VISION', '2017-07-03', '2017-10-03', 43763.44, 10, 43763.44, 0.00, 43763.44, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:37.431607+00', 61050.00, 0.00, 61050.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (121, '2500233196', '0400057381', '2018-01-24', 'Programme Document Against PCA', 'LYD', 'PCA EKRAA EDU 2016/08 AMENDMENT 1', '2018-01-24', '2018-04-30', 45491.17, 58, 45491.17, 0.00, 45491.17, '2018-03-15 16:56:58.838778+00', '2018-05-11 00:10:18.287664+00', 62100.00, 0.00, 62100.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (29, '2500232640', '0400033469', '2015-09-09', 'SSFA', 'EUR', 'ADVANCE PAYMENT FOR CIR ( 3RD PARTY MONITRING)', '2015-07-29', '2016-02-20', 45807.01, NULL, 45807.01, 0.00, 46992.13, '2018-03-15 16:56:58.838778+00', '2018-05-03 15:33:36.31222+00', 41776.00, 0.00, 41776.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (111, '2500235600', '0400053854', '2017-09-08', 'Programme Document Against PCA', 'LYD', 'PCA LAYD 2017 CONFLICT AFFECTED CHILDREN EDUCATION', '2017-09-08', '2018-03-30', 50775.48, NULL, 50775.48, 0.00, 153523.33, '2018-03-15 16:56:58.838778+00', '2019-01-10 00:08:00.993456+00', 68750.00, 0.00, 210019.92, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (116, '2300059510', '0400011710', '2013-04-11', 'SSFA', 'LYD', 'SSFA WITH MAG FOR CAPACITY BUILDING (MRE)', '2013-04-11', '2013-05-15', 14069.42, NULL, 14069.42, 0.00, 14069.47, '2018-03-15 16:56:58.838778+00', '2018-10-21 00:07:14.234942+00', 18037.00, 0.00, 18051.20, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (30, '2500220005', '0400031145', '2015-06-09', 'SSFA', 'LYD', 'BOY SCOUTS AND GIRLS GUIDE OF LIBYA: PCA WITH SCOU', '2015-04-01', '2015-12-31', 11183.69, 13, 11183.69, 0.00, 25000.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.621974+00', 15221.00, 0.00, 34025.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (170, '2500232253', '0400075071', '2020-04-15', 'Programme Document Against PCA', 'USD', 'THE PCA OF LS FROM 2 GRANTS', '2020-02-01', '2020-12-31', 0.00, NULL, 117239.00, 0.00, 117239.00, '2020-04-17 02:19:25.106363+00', '2020-04-17 02:19:25.338508+00', 0.00, 0.00, 117239.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (61, '2500220006', '0400038609', '2016-03-11', 'Programme Document Against PCA', 'LYD', 'WASH-HUMANITARIAN-ASSISTANCE-TAWARGAHIDP-ACTED PCA', '2016-01-22', '2017-01-31', 38726.16, NULL, 38726.16, 0.00, 89420.02, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.708455+00', 0.00, 0.00, 123757.31, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (18, '2500231802', '0400040234', '2016-05-10', 'Programme Document Against PCA', 'LYD', 'CHILD PROTECTION- ALNAHLA - PCA/LIBYA/CP/2016/07', '2016-05-10', '2016-12-31', 193508.45, 19, 193508.45, 0.00, 177442.06, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.736308+00', 0.00, 0.00, 236352.82, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (15, '2500235018', '0400041454', '2016-06-22', 'Programme Document Against PCA', 'USD', 'CESVI CP-PSYCHO EMERGENCY RESPONSE RECRE ACTIVITY', '2016-06-22', '2016-12-31', 463478.00, NULL, 463478.00, 0.00, 464756.57, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.76444+00', 463478.00, 0.00, 464756.57, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (56, '2500233211', '0400041882', '2016-07-11', 'Programme Document Against PCA', 'LYD', 'PCA- BREEZERS LIBYA FOR SUSTAINABLE DEVELOPMENT', '2016-07-11', '2017-01-11', 112670.45, 15, 112670.45, 0.00, 119478.64, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.781503+00', 156100.00, 0.00, 165000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (37, '2500220005', '0400041944', '2016-07-13', 'Programme Document Against PCA', 'LYD', 'PCA- BOY SCOUTS & GIRLS GUIDE OF LIBYA', '2016-07-13', '2017-01-12', 208486.02, 13, 208486.02, 0.00, 213109.34, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.798932+00', 290376.00, 0.00, 294304.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (53, '2500232640', '0400042429', '2016-08-01', 'Programme Document Against PCA', 'USD', 'PCA CIR THIRD PARTY MONITORING OF UNICEF IPS', '2016-08-01', '2016-12-31', 133197.00, NULL, 133197.00, 0.00, 142540.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.808571+00', 133197.00, 0.00, 142540.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (13, '2500235600', '0400043844', '2016-09-28', 'SSFA', 'LYD', 'SSFA LIBYAN ASSOCIATION FOR YOUTH SIGNED 31.08.16', '2016-09-28', '2016-12-28', 45446.51, 11, 45446.51, 0.00, 45807.11, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.887618+00', 63168.00, 0.00, 63168.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (64, '2500236102', '0400046373', '2016-12-09', 'SSFA', 'USD', '1ST DCT WOMEN & YOUTH EMPOWERMENT', '2016-12-09', '2017-03-09', 48430.00, NULL, 48430.00, 0.00, 48800.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.926529+00', 48430.00, 0.00, 48800.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (58, '2500231352', '0400048127', '2017-02-24', 'Programme Document Against PCA', 'USD', 'PCA STACO EDUCATION TAWARGHA CITY', '2017-02-24', '2017-05-24', 41636.50, 7, 41636.50, 0.00, 41636.50, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.934618+00', 41636.50, 0.00, 41636.50, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (65, '2500233211', '0400048668', '2017-03-10', 'Programme Document Against PCA', 'LYD', 'PCA BREEZES FORMAL AND NON FORMAL EDUCATION', '2017-03-10', '2018-03-31', 67547.06, 14, 67547.06, 0.00, 67190.85, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.944192+00', 94000.00, 0.00, 94000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (142, '2500236521', '0400049609', '2017-04-13', 'SSFA', 'USD', 'SSFA TOPD WORK PLAN WITH MOP LIBYA', '2017-04-13', '2017-12-13', 48453.00, NULL, 48453.00, 0.00, 48453.00, '2018-11-22 00:07:15.19546+00', '2020-02-10 02:40:08.976973+00', 48453.00, 0.00, 48453.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (69, '2500231352', '0400049612', '2017-04-13', 'Programme Document Against PCA', 'USD', 'PCA STACO WASH SABHA AND UBARI', '2017-04-13', '2017-12-13', 426166.00, 16, 426166.00, 0.00, 600894.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.985006+00', 426166.00, 0.00, 600894.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (71, '2500232640', '0400049921', '2017-04-25', 'Programme Document Against PCA', 'USD', 'PCA THIRD PARTY MONITORING CIR II', '2017-04-25', '2017-12-31', 300751.00, 6, 300751.00, 0.00, 396303.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.993163+00', 300751.00, 0.00, 396303.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (73, '2500217970', '0400050265', '2017-05-05', 'SSFA', 'USD', 'NEW SSFA TUFTS', '2017-05-05', '2017-08-05', 4410.00, NULL, 4410.00, 0.00, 4410.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:09.001435+00', 4410.00, 0.00, 4410.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (72, '2500231352', '0400050266', '2017-05-05', 'Programme Document Against PCA', 'USD', 'PCA STACO CP SEBHA AND UBARI', '2017-05-05', '2017-12-31', 217915.00, 7, 217915.00, 0.00, 217915.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:09.009486+00', 217915.00, 0.00, 217915.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (76, '2500236901', '0400051221', '2017-06-01', 'SSFA', 'USD', 'SSFA EMDAD SIRTE', '2017-06-01', '2017-12-01', 49305.00, 9, 49305.00, 0.00, 49305.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:09.017926+00', 49305.00, 0.00, 49305.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (114, '2500231802', '0400054461', '2017-10-05', 'Programme Document Against PCA', 'USD', 'PCA/LIBYA/CP/2017/13-AL NAHLA GANZOUR 2017', '2017-10-05', '2018-10-04', 277475.00, 66, 277475.00, 0.00, 489171.14, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:09.08062+00', 277475.00, 0.00, 489171.14, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (115, '2500231382', '0400054536', '2017-10-09', 'Programme Document Against PCA', 'USD', 'ESSAFA- PSS IN TRIPOLI, BENGHAZI, SEBHA', '2017-10-05', '2018-10-31', 467649.00, 67, 467649.00, 0.00, 467649.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:09.089148+00', 467649.00, 0.00, 467649.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (138, '2500231352', '0400062543', '2018-08-14', 'Programme Document Against PCA', 'USD', 'FR FOR STACO PD (2 MURZUK SCHOOLS REHABLITATION)', '2018-08-14', '2019-06-30', 199861.98, 74, 199861.98, 0.00, 299792.96, '2018-08-28 13:46:29.130926+00', '2020-02-10 02:40:09.245576+00', 199861.98, 0.00, 299792.96, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (148, '2500237369', '0400067548', '2019-04-02', 'Programme Document Against PCA', 'USD', 'ALMOBADER- PCA-LIB/PCA019141/PD201989', '2019-04-02', '2019-07-31', 520835.00, 89, 520835.00, 0.00, 520835.00, '2019-04-04 00:18:03.105268+00', '2020-02-10 02:40:09.300398+00', 520835.00, 0.00, 520835.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (43, '2500231382', '0400027873', '2015-02-10', 'SSFA', 'USD', 'PSYCOSOCIAL SUPPORT', '2015-02-10', '2015-06-30', 18933.14, NULL, 18933.14, 0.00, 50000.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.562004+00', 0.00, 0.00, 50000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (117, '2500231350', '0400027884', '2015-02-10', 'SSFA', 'USD', 'PSYCHOSOCIAL SUPPORT', '2015-02-10', '2015-06-30', 18933.14, NULL, 18933.14, 0.00, 20000.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.579947+00', 0.00, 0.00, 20000.00, true, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (34, '2500232253', '0400031281', '2015-06-15', 'SSFA', 'LYD', 'REIMBURSEMENT OF THE WASH INTERVENTION EXPENSES', '2015-05-28', '2015-06-30', 13666.42, NULL, 13666.42, 0.00, 13666.42, '2018-03-15 16:56:58.838778+00', '2018-10-21 00:07:14.278735+00', 18600.00, 0.00, 18600.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (130, '2500238342', '0400059402', '2018-04-11', 'Programme Document Against PCA', 'USD', 'PCA/LIBYA/CP/2018/04-ALTADAMON, AL ZINTAN MUNICIPA', '2018-04-11', '2019-04-10', 310000.00, 69, 310000.00, 0.00, 408937.59, '2018-04-16 12:52:35.380817+00', '2019-08-08 00:21:41.961472+00', 310000.00, 0.00, 408937.59, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (133, '2500232640', '0400060673', '2018-05-31', 'Programme Document Against PCA', 'USD', 'CIR PCA 3RD PARTY MONITORING SUPPORT UNICEF', '2018-05-31', '2018-11-30', 91918.00, 72, 91918.00, 0.00, 91918.00, '2018-06-02 00:06:10.890699+00', '2019-01-22 00:08:05.892894+00', 91918.00, 0.00, 91918.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (112, '2500237369', '0400053900', '2017-09-11', 'Programme Document Against PCA', 'USD', 'PCA ALMOBADR ORGANIZATION YOUTH', '2017-09-11', '2018-07-24', 223000.00, 56, 223000.00, 0.00, 223000.00, '2018-03-15 16:56:58.838778+00', '2018-12-17 20:28:35.711235+00', 223000.00, 0.00, 223000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (14, '2500233211', '0400035498', '2015-11-19', 'SSFA', 'LYD', 'BREEZES DEVELOP-OCT-NOV 2015-SSFA', '2015-09-08', '2015-12-31', 38207.20, NULL, 38207.20, 0.00, 38207.20, '2018-03-15 16:56:58.838778+00', '2018-10-21 00:07:14.329541+00', 52000.00, 0.00, 52000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (132, '2500233211', '0400060532', '2018-05-25', 'Programme Document Against PCA', 'LYD', 'BREEZES PCA LIBYA ED 2016 25 BENGHAZI', '2017-01-30', '2018-07-31', 16937.27, NULL, 16937.27, 0.00, 17307.69, '2018-05-27 00:12:27.67338+00', '2020-02-10 02:40:09.196806+00', 22950.00, 0.00, 22950.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (23, '2500220005', '0400036537', '2015-12-15', 'Programme Document Against PCA', 'LYD', 'TANSPORTATION EXPENSES OF 53 SCOUTS LIBYA-ZARZIS', '2015-03-31', '2015-12-21', 13250.00, NULL, 13250.00, 0.00, 68465.10, '2018-03-15 16:56:58.838778+00', '2018-10-21 00:07:14.417845+00', 18033.25, 0.00, 18033.25, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (131, '2500233196', '0400060091', '2018-05-08', 'Programme Document Against PCA', 'LYD', 'PCA EKRAA EDU 2016/08 AMENDMENT 1 5TH INST', '2018-05-08', '2018-08-31', 45018.45, NULL, 45018.45, 0.00, 46003.02, '2018-05-11 00:10:18.261653+00', '2019-01-01 00:07:49.773792+00', 61000.00, 0.00, 61000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (132, '2500233211', '0400060532', '2018-05-25', 'Programme Document Against PCA', 'LYD', 'BREEZES PCA LIBYA ED 2016 25 BENGHAZI', '2017-01-30', '2018-07-31', 16937.27, NULL, 16937.27, 0.00, 17307.69, '2018-05-27 00:12:27.67338+00', '2018-12-20 16:43:51.295547+00', 22950.00, 0.00, 22950.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (123, '2500238097', '0400057386', '2018-01-24', 'Programme Document Against PCA', 'USD', 'PCA LIBYAN RED CRESCENT CP PSYCH SUPPORT C DERNA', '2018-01-24', '2018-04-20', 48800.00, 61, 48800.00, 0.00, 133800.00, '2018-03-15 16:56:58.838778+00', '2019-01-13 00:08:17.558426+00', 48800.00, 0.00, 133800.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (129, '2500238136', '0400059347', '2018-04-09', 'Programme Document Against PCA', 'USD', 'PCA AFAQ SABRATHA RESPONSE PSS SCHOOLS EDU/2017/19', '2018-04-09', '2018-12-31', 70400.00, 70, 70400.00, 0.00, 70400.00, '2018-04-12 00:13:06.065895+00', '2019-02-12 00:15:24.46802+00', 70400.00, 0.00, 70400.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (125, '2500238223', '0400058453', '2018-03-07', 'Programme Document Against PCA', 'USD', 'IEP POSITIVE PEACE WORKSHOP PCA FEB 18 TO JAN 19', '2018-02-27', '2018-12-31', 213646.00, 60, 213646.00, 0.00, 213646.00, '2018-03-15 16:56:58.838778+00', '2019-09-18 00:25:38.606458+00', 213646.00, 0.00, 213646.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (135, '2500232253', '0400061636', '2018-07-10', 'Programme Document Against PCA', 'USD', 'LS LIB/PCA201711/PD201873 EMERGENCY RESPONSE DERNA', '2018-07-10', '2018-12-31', 239220.50, 73, 239220.50, 0.00, 239220.50, '2018-07-12 00:08:55.034458+00', '2019-02-24 00:15:04.436954+00', 239220.50, 0.00, 239220.50, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (158, '2500240795', '0400071267', '2019-10-02', 'Programme Document Against PCA', 'USD', 'STRENGTHENING GENDER BASED VIOLENCE AND CHILD PROT', '2019-10-02', '2020-09-30', 0.00, 103, 523565.00, 0.00, 689157.00, '2019-10-04 00:25:15.714494+00', '2019-10-25 00:20:03.336436+00', 0.00, 0.00, 689157.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (117, '2500231350', '0400027884', '2015-02-10', 'SSFA', 'USD', 'PSYCHOSOCIAL SUPPORT', '2015-02-10', '2015-06-30', 18933.14, NULL, 18933.14, 0.00, 20000.00, '2018-03-15 16:56:58.838778+00', '2019-06-08 00:12:41.397942+00', 0.00, 0.00, 20000.00, true, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (130, '2500238342', '0400059402', '2018-04-11', 'Programme Document Against PCA', 'USD', 'PCA/LIBYA/CP/2018/04-ALTADAMON, AL ZINTAN MUNICIPA', '2018-04-11', '2019-04-10', 310000.00, 69, 310000.00, 0.00, 408937.59, '2018-04-16 12:52:35.380817+00', '2020-02-10 02:40:09.149892+00', 310000.00, 0.00, 408937.59, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (141, '2500231352', '0400064541', '2018-11-07', 'Programme Document Against PCA', 'USD', 'FR FOR STACO PD (PPM)', '2018-10-25', '2019-10-25', 19300.00, 77, 33600.00, 0.00, 127200.00, '2018-11-09 00:08:10.945534+00', '2020-01-10 18:26:07.158674+00', 19300.00, 0.00, 127200.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (21, '2500220005', '0400028276', '2015-02-21', 'Programme Document Against PCA', 'USD', 'BOY SCOUTS AND GIRLS GUIDE OF LIBYA: PCA WITH SCOU', '2015-03-01', '2015-12-31', 0.00, NULL, 0.00, 0.00, 25000.00, '2018-03-15 16:56:58.838778+00', '2019-06-08 00:12:41.495993+00', 0.00, 0.00, 25000.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (3, '2500231352', '0400028392', '2015-02-25', 'SSFA', 'USD', 'PSYCHOSOCIAL SUPPORT', '2015-02-25', '2015-06-30', 18933.14, 5, 18933.14, 0.00, 20000.00, '2018-03-15 16:56:58.838778+00', '2019-06-08 00:12:41.518389+00', 0.00, 0.00, 20000.00, true, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (157, '2500233211', '0400069389', '2019-06-30', 'Programme Document Against PCA', 'LYD', 'BREEZES LIB/PCA2019147', '2019-06-24', '2020-06-24', 101055.08, 92, 210753.66, 101055.08, 211695.28, '2019-07-05 14:37:05.255235+00', '2019-11-03 01:48:21.984793+00', 141275.00, 141275.00, 295950.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (143, '2500239733', '0400065752', '2018-12-20', 'SSFA', 'LYD', 'DCT SSFA FOR INSAN', '2018-12-02', '2019-01-05', 18175.29, NULL, 18175.29, 0.00, 18175.29, '2018-12-22 00:07:38.651693+00', '2019-08-08 00:21:42.022141+00', 25300.00, 0.00, 25300.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (140, '2500236901', '0400064173', '2018-10-24', 'Programme Document Against PCA', 'USD', 'FR FOR EMDAD CHAIRTY SOCIETY - HEB DIST. 2018 ONLY', '2018-09-20', '2019-09-20', 109480.00, 76, 109480.00, 73280.00, 163780.00, '2018-10-26 00:08:25.437903+00', '2019-10-03 00:24:37.281334+00', 109480.00, 73280.00, 163780.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (151, '2500233196', '0400068570', '2019-05-22', 'Programme Document Against PCA', 'USD', 'EKRAA- LIB/PCA2019144', '2019-05-20', '2020-04-30', 90119.88, 90, 214256.12, 60494.70, 214256.12, '2019-05-24 00:13:21.367665+00', '2019-10-28 00:54:01.530431+00', 0.00, 0.00, 214256.12, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (4, '2500230439', '0400028394', '2015-02-25', 'SSFA', 'USD', 'PSYCHOSOCIAL SUPPORT', '2015-02-25', '2015-06-30', 17634.09, NULL, 17634.09, 0.00, 20000.00, '2018-03-15 16:56:58.838778+00', '2019-06-08 00:12:41.538378+00', 0.00, 0.00, 20000.00, true, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (167, '2500236298', '0400074876', '2020-04-06', 'SSFA', 'USD', 'DISTRIBUTION WINTER KITS TO DETENTION CENTER', '2020-04-06', '2020-05-31', 0.00, NULL, 5050.00, 0.00, 5050.00, '2020-04-07 00:55:28.740088+00', '2020-04-07 00:55:28.946482+00', 0.00, 0.00, 5050.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (161, '2500240867', '0400073147', '2019-12-18', 'Programme Document Against PCA', 'USD', 'INTERSOS', '2019-12-18', '2020-03-15', 189696.17, 105, 577673.40, 189696.17, 577673.40, '2019-12-19 00:29:13.859503+00', '2020-02-10 02:40:09.38951+00', 189696.17, 189696.17, 577673.40, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (116, '2300059510', '0400011710', '2013-04-11', 'SSFA', 'LYD', 'SSFA WITH MAG FOR CAPACITY BUILDING (MRE)', '2013-04-11', '2013-05-15', 14069.42, NULL, 14069.42, 0.00, 14069.47, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.552097+00', 18037.00, 0.00, 18051.20, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (3, '2500231352', '0400028392', '2015-02-25', 'SSFA', 'USD', 'PSYCHOSOCIAL SUPPORT', '2015-02-25', '2015-06-30', 18933.14, 5, 18933.14, 0.00, 20000.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.588403+00', 0.00, 0.00, 20000.00, true, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (26, '2500220005', '0400030881', '2015-05-31', 'Programme Document Against PCA', 'LYD', 'COMMUNITY BASE SCYCO SOCIAL SUPPORT FOR SCOUTS', '2015-04-01', '2015-12-31', 34927.26, 13, 34927.26, 0.00, 35268.19, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.605408+00', 47536.00, 0.00, 48000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (50, '2500231382', '0400031544', '2015-06-24', 'SSFA', 'LYD', 'PSS FOR GBV VICTIMS', '2015-06-24', '2015-08-30', 30000.00, NULL, 30000.00, 0.00, 30000.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.630361+00', 40830.00, 0.00, 43390.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (29, '2500232640', '0400033469', '2015-09-09', 'SSFA', 'EUR', 'ADVANCE PAYMENT FOR CIR ( 3RD PARTY MONITRING)', '2015-07-29', '2016-02-20', 45807.01, NULL, 45807.01, 0.00, 46992.13, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.639924+00', 41776.00, 0.00, 41776.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (14, '2500233211', '0400035498', '2015-11-19', 'SSFA', 'LYD', 'BREEZES DEVELOP-OCT-NOV 2015-SSFA', '2015-09-08', '2015-12-31', 38207.20, NULL, 38207.20, 0.00, 38207.20, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.665416+00', 52000.00, 0.00, 52000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (54, '2500232253', '0400037893', '2016-02-17', 'Programme Document Against PCA', 'LYD', 'PCA- LIBYAN SOCIETY FOR CHARITY WORKS', '2016-01-22', '2016-07-31', 107097.22, NULL, 107097.22, 0.00, 107309.33, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.674219+00', 146048.00, 0.00, 146048.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (10, '2500231352', '0400038475', '2016-03-08', 'Programme Document Against PCA', 'LYD', 'COMMUNITY BASED CP & PSS SERVICES - STACO PCA', '2016-03-01', '2017-02-01', 248819.91, 5, 248819.91, 0.00, 287805.70, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.682845+00', 0.00, 0.00, 398323.09, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (33, '2500231382', '0400038539', '2016-03-10', 'Programme Document Against PCA', 'LYD', 'PROVISION PSS SERVICES FOR GBV VICTIMS- ESSAFA PCA', '2016-02-24', '2017-01-24', 76366.37, NULL, 76366.37, 0.00, 216069.36, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.691252+00', 101720.00, 0.00, 299040.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (28, '2500233196', '0400041788', '2016-07-05', 'Programme Document Against PCA', 'LYD', 'PCA- EKRAA ASSEMBLY FOR DEVELOPMENT', '2016-07-05', '2017-01-05', 146834.94, 3, 146834.94, 0.00, 151539.46, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.773008+00', 204500.00, 0.00, 209276.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (51, '2500231382', '0400042935', '2016-08-24', 'Programme Document Against PCA', 'LYD', 'PROVISION PSS SERVICES FOR GBV VICTIMS- ESSAFA PCA', '2016-02-24', '2017-01-24', 47563.97, 2, 47563.97, 0.00, 142691.90, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.816865+00', 65733.40, 0.00, 197200.20, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1, '2500231352', '0400043469', '2016-09-14', 'Programme Document Against PCA', 'USD', 'PCA SCHOOLS IN SABHA WASH', '2016-09-14', '2016-12-14', 596570.00, 5, 596570.00, 0.00, 298285.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.852315+00', 596570.00, 0.00, 298285.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (9, '2500232253', '0400043470', '2016-09-14', 'Programme Document Against PCA', 'LYD', 'PCA LS WASH BENGHAZI', '2016-09-14', '2016-12-14', 255016.82, 8, 255016.82, 0.00, 256852.79, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.861245+00', 354200.00, 0.00, 354200.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (75, '2500231382', '0400051223', '2017-06-01', 'Programme Document Against PCA', 'USD', 'NEW PCA ESSAFA AL ZAINTAN MUNICIPAL COUNCIL CP', '2017-06-01', '2018-02-01', 195887.00, NULL, 195887.00, 0.00, 195887.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:09.026334+00', 195887.00, 0.00, 195887.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (77, '2500237096', '0400052138', '2017-07-03', 'Programme Document Against PCA', 'LYD', 'DCT:SAFE SOLID WASTE COLLECTION - CHILDREN VISION', '2017-07-03', '2017-10-03', 43763.44, 10, 43763.44, 0.00, 43763.44, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:09.034561+00', 61050.00, 0.00, 61050.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (111, '2500235600', '0400053854', '2017-09-08', 'Programme Document Against PCA', 'LYD', 'PCA LAYD 2017 CONFLICT AFFECTED CHILDREN EDUCATION', '2017-09-08', '2018-03-30', 50775.48, NULL, 50775.48, 0.00, 153523.33, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:09.055246+00', 68750.00, 0.00, 210019.92, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (112, '2500237369', '0400053900', '2017-09-11', 'Programme Document Against PCA', 'USD', 'PCA ALMOBADR ORGANIZATION YOUTH', '2017-09-11', '2018-07-24', 223000.00, 56, 223000.00, 0.00, 223000.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:09.063788+00', 223000.00, 0.00, 223000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (119, '2500220006', '0400057162', '2018-01-16', 'Programme Document Against PCA', 'USD', 'PCA ACTED KEY CHALL/STRATEGIES MIGRANT CHILDREN', '2017-12-29', '2018-06-28', 285010.21, 59, 285010.21, 0.00, 289405.95, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:09.097711+00', 285010.21, 0.00, 289405.95, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (121, '2500233196', '0400057381', '2018-01-24', 'Programme Document Against PCA', 'LYD', 'PCA EKRAA EDU 2016/08 AMENDMENT 1', '2018-01-24', '2018-04-30', 45491.17, 58, 45491.17, 0.00, 45491.17, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:09.106275+00', 62100.00, 0.00, 62100.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (123, '2500238097', '0400057386', '2018-01-24', 'Programme Document Against PCA', 'USD', 'PCA LIBYAN RED CRESCENT CP PSYCH SUPPORT C DERNA', '2018-01-24', '2018-04-20', 48800.00, 61, 48800.00, 0.00, 133800.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:09.114772+00', 48800.00, 0.00, 133800.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (125, '2500238223', '0400058453', '2018-03-07', 'Programme Document Against PCA', 'USD', 'IEP POSITIVE PEACE WORKSHOP PCA FEB 18 TO JAN 19', '2018-02-27', '2018-12-31', 213646.00, 60, 213646.00, 0.00, 213646.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:09.131261+00', 213646.00, 0.00, 213646.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (129, '2500238136', '0400059347', '2018-04-09', 'Programme Document Against PCA', 'USD', 'PCA AFAQ SABRATHA RESPONSE PSS SCHOOLS EDU/2017/19', '2018-04-09', '2018-12-31', 70400.00, 70, 70400.00, 0.00, 70400.00, '2018-04-12 00:13:06.065895+00', '2020-02-10 02:40:09.141057+00', 70400.00, 0.00, 70400.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (131, '2500233196', '0400060091', '2018-05-08', 'Programme Document Against PCA', 'LYD', 'PCA EKRAA EDU 2016/08 AMENDMENT 1 5TH INST', '2018-05-08', '2018-08-31', 45018.45, NULL, 45018.45, 0.00, 46003.02, '2018-05-11 00:10:18.261653+00', '2020-02-10 02:40:09.187471+00', 61000.00, 0.00, 61000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (133, '2500232640', '0400060673', '2018-05-31', 'Programme Document Against PCA', 'USD', 'CIR PCA 3RD PARTY MONITORING SUPPORT UNICEF', '2018-05-31', '2018-11-30', 91918.00, 72, 91918.00, 0.00, 91918.00, '2018-06-02 00:06:10.890699+00', '2020-02-10 02:40:09.205922+00', 91918.00, 0.00, 91918.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (135, '2500232253', '0400061636', '2018-07-10', 'Programme Document Against PCA', 'USD', 'LS LIB/PCA201711/PD201873 EMERGENCY RESPONSE DERNA', '2018-07-10', '2018-12-31', 239220.50, 73, 239220.50, 0.00, 239220.50, '2018-07-12 00:08:55.034458+00', '2020-02-10 02:40:09.214876+00', 239220.50, 0.00, 239220.50, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (139, '2500231802', '0400062943', '2018-09-06', 'Programme Document Against PCA', 'USD', 'ALAHLA PD (TRANSITIONAL CENTRE JANZOUR) -2018 ONLY', '2018-09-06', '2019-09-06', 151730.00, 81, 151730.00, 0.00, 223970.00, '2018-09-09 00:06:50.558328+00', '2020-02-10 02:40:09.254745+00', 151730.00, 0.00, 223970.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (143, '2500239733', '0400065752', '2018-12-20', 'SSFA', 'LYD', 'DCT SSFA FOR INSAN', '2018-12-02', '2019-01-05', 18175.29, NULL, 18175.29, 0.00, 18175.29, '2018-12-22 00:07:38.651693+00', '2020-02-10 02:40:09.274336+00', 25300.00, 0.00, 25300.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (25, '2500233211', '0400035096', '2015-11-10', 'SSFA', 'LYD', 'REIMBURSEMENT FOR NASSIEM OCT NOV 2015', '2015-09-08', '2015-12-21', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:56:58.838778+00', '2019-06-08 00:12:41.560896+00', 0.00, 0.00, 0.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (63, '2500211394', '0400047643', '2017-02-12', 'SSFA', 'USD', 'TECHNICAL SUPPORT FOR PAR NATIONAL®IONAL WORK', '2017-02-12', '2017-05-15', 0.00, NULL, 0.00, 0.00, 19968.80, '2018-03-15 16:56:58.838778+00', '2019-06-08 00:12:41.587673+00', 0.00, 0.00, 3511.20, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (155, '2500235018', '0400068873', '2019-06-04', 'Programme Document Against PCA', 'USD', 'LIB/PCA201716 CESVI PSS& REMED EDU FOR CHIL IDP''S', '2018-04-01', '2019-06-30', 0.00, NULL, 0.00, 0.00, 87684.90, '2019-06-06 00:12:51.936162+00', '2019-06-12 00:15:24.560906+00', 0.00, 0.00, 87684.90, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (154, '2500240179', '0400068801', '2019-05-30', 'Programme Document Against PCA', 'USD', 'FREE FIELDS FOUNDATIONLIB/PCA2019149', '2019-05-21', '2020-05-20', 105207.00, 95, 361180.00, 105207.00, 361180.00, '2019-06-02 00:17:08.986126+00', '2019-06-06 00:12:52.183005+00', 105207.00, 105207.00, 361180.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (147, '2500233986', '0400066346', '2019-01-31', 'Programme Document Against PCA', 'USD', 'NRC ACCESS QTY ADU PSS FOR CONFLICT AFF TRIPLI BEN', '2019-01-06', '2019-12-06', 321230.00, 87, 1185854.00, 0.00, 1136980.00, '2019-02-02 00:08:17.021162+00', '2019-10-30 01:36:42.409516+00', 321230.00, 0.00, 1136980.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (144, '2500231382', '0400065826', '2018-12-26', 'Programme Document Against PCA', 'USD', 'FR FOR ESSAFA PD 2018 PART FOR DCT #1', '2018-12-26', '2019-09-30', 479684.00, 85, 602834.00, 0.00, 602834.00, '2018-12-28 00:08:02.096437+00', '2019-10-27 00:33:58.490373+00', 479684.00, 0.00, 602834.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (124, '2500235018', '0400057421', '2018-01-25', 'Programme Document Against PCA', 'USD', 'PCA CESVI CP&EDU. PSY SUPPORT REMEDIAL EDU IDP&REF', '2018-01-25', '2018-12-31', 640062.64, 65, 652082.63, 81728.09, 652082.63, '2018-03-15 16:56:58.838778+00', '2019-11-12 15:16:55.325917+00', 640062.64, 81728.09, 652082.63, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (150, '2500240112', '0400068277', '2019-05-09', 'Programme Document Against PCA', 'LYD', 'SCOUTS PCA 2580/A0/03/882/001/002', '2019-04-01', '2019-12-31', 104552.95, 100, 104552.95, 49116.61, 105150.21, '2019-05-11 00:11:40.202325+00', '2019-11-03 01:48:21.96982+00', 147000.00, 69500.00, 147000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (159, '2500235018', '0400071542', '2019-10-16', 'Programme Document Against PCA', 'USD', 'CESVI BAYTI REFLIB/PCA2019133/PD2019102', '2019-10-16', '2020-06-01', 405408.00, NULL, 405408.00, 405408.00, 405408.00, '2019-10-17 01:34:19.135093+00', '2019-11-12 15:16:55.339173+00', 405408.00, 405408.00, 405408.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (136, '2500236298', '0400062233', '2018-08-02', 'Programme Document Against PCA', 'USD', 'FR FOR MULTAKANA (CHILD EDUCATION ON THE MOVE)', '2018-08-02', '2019-11-30', 87940.00, 80, 152140.00, 0.00, 152140.00, '2018-08-10 00:06:31.143201+00', '2019-10-31 01:40:12.663411+00', 87940.00, 0.00, 152140.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (4, '2500230439', '0400028394', '2015-02-25', 'SSFA', 'USD', 'PSYCHOSOCIAL SUPPORT', '2015-02-25', '2015-06-30', 17634.09, NULL, 17634.09, 0.00, 20000.00, '2018-03-15 16:56:58.838778+00', '2020-02-10 02:40:08.596784+00', 0.00, 0.00, 20000.00, true, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (165, '2500231382', '0400074073', '2020-02-20', 'Programme Document Against PCA', 'USD', 'SPECIALIZED PSYCHOSOCIAL SUPPORT FOR IDP CHILDREN', '2020-02-20', '2020-12-31', 185260.00, 109, 540948.15, 185260.00, 540948.15, '2020-02-21 02:57:01.616268+00', '2020-03-05 00:13:16.830077+00', 185260.00, 185260.00, 540948.15, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (136, '2500236298', '0400062233', '2018-08-02', 'Programme Document Against PCA', 'USD', 'FR FOR MULTAKANA (CHILD EDUCATION ON THE MOVE)', '2018-08-02', '2019-11-30', 154948.00, 80, 154948.00, 0.00, 154948.00, '2018-08-10 00:06:31.143201+00', '2020-03-17 00:15:04.576203+00', 154948.00, 0.00, 154948.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (162, '2500240867', '0400073261', '2019-12-29', 'Programme Document Against PCA', 'USD', 'PROVISION OF MULTI-SECTORIAL SERVICES TO VULNERABL', '2019-12-29', '2020-06-01', 133287.00, 104, 1234085.97, 133287.00, 1234085.97, '2019-12-31 00:54:12.78019+00', '2020-04-19 03:08:57.669132+00', 133287.00, 133287.00, 1234085.97, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (150, '2500240112', '0400068277', '2019-05-09', 'Programme Document Against PCA', 'LYD', 'SCOUTS PCA 2580/A0/03/882/001/002', '2019-04-01', '2019-12-31', 183695.61, 100, 239195.61, 31802.12, 241856.34, '2019-05-11 00:11:40.202325+00', '2020-04-04 00:13:14.295393+00', 258750.16, 45000.00, 338115.16, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (140, '2500236901', '0400064173', '2018-10-24', 'Programme Document Against PCA', 'USD', 'FR FOR EMDAD CHAIRTY SOCIETY - HEB DIST. 2018 ONLY', '2018-09-20', '2019-09-20', 109480.00, 76, 128760.00, 0.00, 183060.00, '2018-10-26 00:08:25.437903+00', '2020-02-10 02:40:09.266022+00', 109480.00, 0.00, 183060.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (144, '2500231382', '0400065826', '2018-12-26', 'Programme Document Against PCA', 'USD', 'FR FOR ESSAFA PD 2018 PART FOR DCT #1', '2018-12-26', '2019-09-30', 602834.00, 85, 602834.00, 0.00, 602834.00, '2018-12-28 00:08:02.096437+00', '2020-02-10 02:40:09.282804+00', 602834.00, 0.00, 602834.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (124, '2500235018', '0400057421', '2018-01-25', 'Programme Document Against PCA', 'USD', 'PCA CESVI CP&EDU. PSY SUPPORT REMEDIAL EDU IDP&REF', '2018-01-25', '2019-12-31', 684867.02, 65, 684867.12, 0.00, 684867.12, '2018-03-15 16:56:58.838778+00', '2020-02-26 00:28:45.015537+00', 684867.02, 0.00, 684867.12, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (156, '2500232253', '0400069470', '2019-07-03', 'Programme Document Against PCA', 'USD', 'FR FOR LIBYAN SOCIETY PD (WASH RESPONSE TO IDPS/CO', '2019-07-03', '2019-12-31', 118050.00, 101, 118050.00, 0.00, 118050.00, '2019-07-05 14:37:05.255131+00', '2020-04-12 00:19:36.551207+00', 118050.00, 0.00, 118050.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (158, '2500240795', '0400071267', '2019-10-02', 'Programme Document Against PCA', 'USD', 'STRENGTHENING GENDER BASED VIOLENCE AND CHILD PROT', '2019-10-02', '2020-09-30', 229830.00, 103, 690091.00, 229830.00, 690091.00, '2019-10-04 00:25:15.714494+00', '2020-02-10 02:40:09.372898+00', 229830.00, 229830.00, 690091.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (151, '2500233196', '0400068570', '2019-05-22', 'Programme Document Against PCA', 'USD', 'EKRAA- LIB/PCA2019144', '2019-05-20', '2020-04-30', 150545.41, 90, 214256.12, 0.00, 279225.36, '2019-05-24 00:13:21.367665+00', '2020-04-20 03:11:14.303141+00', 0.00, 0.00, 279225.36, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (171, '2500236298', '0400075098', '2020-04-16', 'Programme Document Against PCA', 'USD', 'MULTAKANA PCA BAYTI FOR 2020', '2020-04-16', '2020-05-31', 0.00, NULL, 50086.68, 0.00, 50086.68, '2020-04-18 02:42:20.416192+00', '2020-04-18 02:42:20.637561+00', 0.00, 0.00, 50086.68, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (154, '2500240179', '0400068801', '2019-05-30', 'Programme Document Against PCA', 'USD', 'FREE FIELDS FOUNDATIONLIB/PCA2019149', '2019-05-21', '2020-05-20', 204177.00, 95, 318057.00, 0.00, 475060.00, '2019-06-02 00:17:08.986126+00', '2020-04-02 00:15:08.166702+00', 204177.00, 0.00, 475060.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (147, '2500233986', '0400066346', '2019-01-31', 'Programme Document Against PCA', 'USD', 'NRC ACCESS QTY ADU PSS FOR CONFLICT AFF TRIPLI BEN', '2019-01-06', '2019-12-06', 507610.45, 87, 1186980.00, 0.00, 1186980.00, '2019-02-02 00:08:17.021162+00', '2020-04-17 02:19:25.124857+00', 507610.45, 0.00, 1186980.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (157, '2500233211', '0400069389', '2019-06-30', 'Programme Document Against PCA', 'LYD', 'BREEZES LIB/PCA2019147', '2019-06-24', '2020-06-24', 178466.42, 92, 178466.42, 0.00, 211695.28, '2019-07-05 14:37:05.255235+00', '2020-04-21 02:59:23.540891+00', 250425.00, 0.00, 295950.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (169, '2500235812', '0400074996', '2016-10-28', 'Programme Document Against PCA', 'USD', 'ALL BOYS&GIRLS PROTCATED AGAINST VAC PREV. DISESAS', '2016-10-28', '2020-12-31', 0.00, NULL, 0.00, 0.00, 30000.00, '2020-04-15 02:33:41.443346+00', '2020-04-15 02:33:41.642067+00', 0.00, 0.00, 30000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (168, '2500235812', '0400074988', '2020-04-12', 'Programme Document Against PCA', 'USD', 'ALL BOYS&GIRLS PROTCATED AGAINST VAC PREV. DISESAS', '2020-04-12', '2020-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2020-04-14 00:40:31.362239+00', '2020-04-17 02:19:25.178487+00', 0.00, 0.00, 20000.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (159, '2500235018', '0400071542', '2019-10-16', 'Programme Document Against PCA', 'USD', 'CESVI BAYTI REFLIB/PCA2019133/PD2019102', '2019-10-16', '2020-06-01', 811263.50, 102, 1256978.50, 415294.50, 1256978.50, '2019-10-17 01:34:19.135093+00', '2020-04-17 02:19:25.30856+00', 811263.50, 415294.50, 1256978.50, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (163, '2500220006', '0400073278', '2020-01-05', 'Programme Document Against PCA', 'USD', 'IMPROVED ACCESS OF CHILDREN TO SAFE AND INCLUSIVE', '2020-01-05', '2020-06-07', 170232.50, 106, 655674.33, 170232.50, 655674.33, '2020-01-06 11:23:34.03762+00', '2020-04-17 02:19:25.32968+00', 170232.50, 170232.50, 655674.33, false, false, true); -- @@ -9152,6 +9503,7 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (95, '0400042429-4', 4, INSERT INTO [[schema]].funds_fundsreservationitem VALUES (113, '0400049921-4', 4, '2580/A0/02/882/003/002', 'SM170115', 'SM', 32976.00, 32976.00, '2017-04-25', 'PCA THIRD PARTY MONITORING CIR II', 71, '2018-03-15 16:56:59.787668+00', '2018-06-05 00:11:57.179973+00', 'UNOCHA', 'U99901'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (114, '0400049921-5', 5, '2580/A0/02/882/003/002', 'SC160349', 'SC', 61492.00, 61492.00, '2017-04-25', 'PCA THIRD PARTY MONITORING CIR II', 71, '2018-03-15 16:56:59.787668+00', '2018-06-05 00:11:57.265202+00', 'European Commission/EC', 'I49905'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (94, '0400042429-6', 6, '2580/A0/02/803/003/002', 'SM160114', 'SM', 20485.30, 20485.30, '2016-12-09', 'FINAL PAYMENT FOR THIRD PARTY MONITORING OF IPS', 53, '2018-03-15 16:56:59.787668+00', '2018-06-05 00:11:57.429628+00', 'SIDA - Sweden', 'G41102'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (322, '0400072568-1', 1, '2580/A0/03/882/001/007', 'SC170316', 'SC', 0.00, 0.00, '2019-12-31', 'TEST FR FOR PRP', 160, '2019-11-30 00:25:31.580474+00', '2019-11-30 00:25:31.580474+00', 'European Commission/EC', 'I49905'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (193, '0400057397-3', 3, '2580/A0/02/883/014/001', 'NON-GRANT', 'GC', 12391.62, 12391.62, '2018-01-24', '', 122, '2018-03-15 16:56:59.787668+00', '2018-03-15 16:57:00.072466+00', NULL, NULL); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (274, '0400067548-1', 1, '2580/A0/03/881/005/002', 'SC160349', 'SC', 343485.00, 343485.00, '2019-04-04', 'ALMOBADER 1ST DCT', 148, '2019-04-04 00:18:03.181368+00', '2019-04-04 00:18:03.18193+00', 'European Commission/EC', 'I49905'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (230, '0400060532-1', 1, '2580/A0/02/883/007/001', 'SM170020', 'SM', 17307.69, 22950.00, '2018-05-25', '3RD DCT BREEZES PCA LIBYA ED 2016 25 BENGHAZI', 132, '2018-05-27 00:12:27.753005+00', '2018-06-05 00:11:52.305466+00', 'Germany', 'G52501'); @@ -9279,14 +9631,14 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (253, '0400064541-4', 4 INSERT INTO [[schema]].funds_fundsreservationitem VALUES (243, '0400062233-1', 1, '2580/A0/02/883/015/001', 'SC170316', 'SC', 13500.00, 13500.00, '2018-08-02', '1ST PAYMENT CP PART', 136, '2018-08-10 00:06:42.336498+00', '2018-08-10 00:06:42.337886+00', 'European Commission/EC', 'I49905'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (244, '0400062233-2', 2, '2580/A0/02/883/014/001', 'SC170316', 'SC', 42340.00, 42340.00, '2018-08-02', '1ST PAYMENT EDU PART', 136, '2018-08-10 00:06:42.336808+00', '2018-08-10 00:06:42.338071+00', 'European Commission/EC', 'I49905'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (282, '0400064173-2', 2, '2580/A0/03/881/001/006', 'SM189910', 'SM', 18100.00, 18100.00, '2019-05-30', 'EMDAD FR FOR PAYMENT 1REPROCESSING', 140, '2019-05-08 01:14:18.28529+00', '2019-07-05 14:37:05.373161+00', 'Global - Thematic Humanitarian Resp', 'T49906'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (285, '0400068570-2', 2, '2580/A0/03/881/002/007', 'SC170746', 'SC', 122877.71, 122877.71, '2019-05-22', 'EKRAA 3-4 DCTS BMZ4', 151, '2019-05-24 00:13:27.711734+00', '2019-10-25 00:20:03.237576+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (336, '0400071542-4', 4, '2580/A0/03/882/001/003', 'SC170316', 'SC', 223321.00, 223321.00, '2020-02-15', 'Q2 DCT JAN TO MAR 2020 - CP', 159, '2020-02-18 00:30:28.252403+00', '2020-04-06 00:13:01.682025+00', 'European Commission/EC', 'I49905'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (288, '0400068740-2', 2, '2580/A0/03/882/001/002', 'SC170316', 'SC', 54750.00, 54750.00, '2019-05-29', 'AFAQ CASH TRANSFER CP', 153, '2019-05-31 00:14:27.010944+00', '2019-05-31 00:14:27.011415+00', 'European Commission/EC', 'I49905'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (289, '0400068740-1', 1, '2580/A0/03/881/002/007', 'SC170316', 'SC', 63500.00, 63500.00, '2019-05-29', 'AFAQ CASH TRANSFER EDU', 153, '2019-05-31 00:14:27.011074+00', '2019-05-31 00:14:27.011535+00', 'European Commission/EC', 'I49905'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (320, '0400062233-8', 8, '2580/A0/03/881/002/007', 'SC170316', 'SC', 19260.00, 19260.00, '2019-10-30', '4TH PAYMENT MULTAKANA EDU PART', 136, '2019-10-31 01:40:12.568516+00', '2019-10-31 01:40:12.568516+00', 'European Commission/EC', 'I49905'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (262, '0400060673-4', 4, '2580/A0/02/882/003/002', 'SM170463', 'SM', 2886.45, 2886.45, '2018-12-23', '3RD INSTAL CIR REIMB PART 2', 133, '2018-12-25 00:07:42.389612+00', '2018-12-25 00:07:42.390252+00', 'The United Kingdom', 'G45301'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (266, '0400066266-1', 1, '2580/A0/03/881/002/007', 'SC170746', 'SC', 112554.00, 112554.00, '2019-01-29', '2ND 3RD AND 4TH INSTAL. LAYD', 146, '2019-02-01 00:08:13.108222+00', '2019-02-01 00:08:13.10855+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (268, '0400065826-5', 5, '2580/A0/03/882/001/002', 'SC170746', 'SC', 125150.00, 125150.00, '2019-06-30', 'ESSAFA PAYMENT 3 - BMZ4', 144, '2019-02-20 00:07:20.291578+00', '2019-02-20 00:07:20.292977+00', 'Germany', 'G52501'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (311, '0400066346-2', 2, '2580/A0/03/881/002/007', 'SC170316', 'SC', 758750.00, 758750.00, '2019-10-07', 'NRC FR EU MIG 653,750', 147, '2019-10-09 00:34:10.430176+00', '2019-10-09 00:34:10.430176+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (340, '0400074073-1', 1, '2580/A0/03/882/001/002', 'SC170746', 'SC', 540948.15, 540948.15, '2020-02-29', 'SPECIALIZED PSYCHOSOCIAL SUPPORT FOR IDP CHILDREN', 165, '2020-02-21 02:57:01.668838+00', '2020-02-21 02:57:01.668838+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (233, '0400060673-2', 2, '2580/A0/02/882/003/002', 'SC160349', 'SC', 0.00, 0.00, '2018-05-31', '2ND DCT CIR 3RD PARTY MONITORING CAPACITY BUILDING', 133, '2018-06-02 00:06:11.088905+00', '2018-12-25 00:07:42.462827+00', 'European Commission/EC', 'I49905'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (202, '0400054536-4', 4, '2580/A0/02/883/010/001', 'SM170020', 'SM', 222255.00, 222255.00, '2018-10-31', 'AMEND ESSAFA- PSS IN TRIPOLI, BENGHAZI, SEBHA', 115, '2018-03-15 16:56:59.787668+00', '2018-11-01 00:07:28.134034+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (269, '0400065826-3', 3, '2580/A0/03/882/001/002', 'SC170316', 'SC', 18445.00, 18445.00, '2019-03-31', 'ESSAFA PAYMENT 2 - EUTF', 144, '2019-02-20 00:07:20.291852+00', '2019-02-20 00:07:20.293221+00', 'European Commission/EC', 'I49905'); @@ -9314,21 +9666,22 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (276, '0400067621-1', 1 INSERT INTO [[schema]].funds_fundsreservationitem VALUES (277, '0400067621-2', 2, '2580/A0/03/881/002/007', 'SC170746', 'SC', 10437.68, 14497.94, '2019-04-04', 'BREEZES Q4 5 AND 6 REIMB', 149, '2019-04-07 00:09:30.153326+00', '2019-04-07 00:09:30.153929+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (283, '0400068277-1', 1, '2580/A0/03/882/001/002', 'GE180026', 'GE', 35765.38, 50000.00, '2019-05-09', 'SCOUTS PCA 1ST INSTALMENT', 150, '2019-05-11 00:11:49.004298+00', '2019-05-11 00:11:49.005079+00', 'UNICEF (FOR GR ALLOCATIONS ONLY)', 'U99999'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (284, '0400068277-2', 2, '2580/A0/03/882/001/001', 'SM170020', 'SM', 19670.96, 27500.00, '2019-05-09', 'SCOUTS PCA 1ST INSTALMENT', 150, '2019-05-11 00:11:49.004492+00', '2019-05-11 00:11:49.005444+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (343, '0400074709-1', 1, '2580/A0/03/882/001/004', 'SC180799', 'SC', 156464.00, 156464.00, '2020-03-31', 'PD AMOUNT FOR ACTED BIRTH REGISTRATION', 166, '2020-03-27 00:16:05.450206+00', '2020-03-27 00:16:05.450206+00', 'Italy', 'G22201'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (290, '0400068801-2', 2, '2580/A0/03/882/001/005', 'SC170316', 'SC', 224000.00, 224000.00, '2019-05-30', 'CASH TRANSFER 3F', 154, '2019-06-02 00:17:09.054026+00', '2019-06-02 00:17:09.054562+00', 'European Commission/EC', 'I49905'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (287, '0400068697-1', 1, '2580/A0/03/881/002/007', 'SC170316', 'SC', 49179.86, 49179.86, '2019-05-28', 'CASH TRANSFER EU MIG', 152, '2019-05-30 00:15:01.948209+00', '2019-05-30 00:15:01.948608+00', 'European Commission/EC', 'I49905'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (291, '0400068801-1', 1, '2580/A0/03/882/001/005', 'GE180026', 'GE', 137180.00, 137180.00, '2019-05-30', 'CASH TRANSFER 3F', 154, '2019-06-02 00:17:09.054159+00', '2019-06-02 00:17:09.054735+00', 'UNICEF (FOR GR ALLOCATIONS ONLY)', 'U99999'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (298, '0400069470-1', 1, '2580/A0/03/881/001/013', 'SM190240', 'SM', 40000.00, 40000.00, '2019-07-05', 'LS - WASH RESPONSE CERF FUND', 156, '2019-07-05 14:37:05.33141+00', '2019-07-05 14:37:05.332147+00', 'UNOCHA', 'U99901'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (306, '0400071267-4', 4, '2580/A0/03/882/001/001', 'SC170746', 'SC', 155149.00, 155149.00, '2020-03-01', 'IRC PCA 3RD INSTALMENT DCT', 158, '2019-10-04 00:25:15.779252+00', '2019-10-04 00:25:15.779252+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (292, '0400068873-1', 1, '2580/A0/02/883/014/001', 'SC170316', 'SC', 87684.90, 87684.90, '2019-06-04', 'CASH TRANSFER CESVI', 155, '2019-06-06 00:12:52.29032+00', '2019-06-06 00:12:52.290762+00', 'European Commission/EC', 'I49905'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (295, '0400062231-4', 4, '2580/A0/03/882/001/002', 'SM170020', 'SM', 27060.00, 27060.00, '2019-10-27', '4TH PAYMENT - NOOR ALHAYAT', 137, '2019-06-14 00:18:33.660474+00', '2019-06-14 00:18:33.660932+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (299, '0400064173-3', 3, '2580/A0/03/881/001/006', 'SM189910', 'SM', 18100.00, 18100.00, '2019-07-30', 'EMDAD FR FOR PAYMENT 2 REPROCESSING', 140, '2019-07-09 00:21:57.511619+00', '2019-07-09 00:21:57.512076+00', 'Global - Thematic Humanitarian Resp', 'T49906'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (334, '0400064173-6', 6, '2580/A0/03/881/001/006', 'SM189910', 'SM', 19280.00, 19280.00, '2019-10-01', 'EMDAD FR FOR PAYMENT Q4 REIM', 140, '2020-01-23 00:32:06.519043+00', '2020-01-23 00:32:06.519043+00', 'Global - Thematic Humanitarian Resp', 'T49906'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (240, '0400062231-2', 2, '2580/A0/03/882/001/002', 'SM170020', 'SM', 32708.00, 32708.00, '2019-10-27', '2ND PAYMENT - NOORALHAYAT', 137, '2018-08-10 00:06:42.336202+00', '2019-06-14 00:18:33.707189+00', 'Germany', 'G52501'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (304, '0400057421-7', 7, '2580/A0/03/881/002/007', 'SC170316', 'SC', 5649.35, 5649.35, '2019-09-04', 'HQ COST 7% EDU 47%', 124, '2019-09-06 01:20:31.954518+00', '2019-09-06 01:20:31.954956+00', 'European Commission/EC', 'I49905'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (305, '0400057421-8', 8, '2580/A0/03/882/001/003', 'SC170316', 'SC', 6370.54, 6370.54, '2019-09-04', 'HQ COST 7% CP 53%', 124, '2019-09-06 01:20:31.954618+00', '2019-09-06 01:20:31.955056+00', 'European Commission/EC', 'I49905'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (307, '0400071267-3', 3, '2580/A0/03/882/001/001', 'SC170746', 'SC', 163304.00, 163304.00, '2019-12-31', 'IRC PCA 2ND INSTALMENT DCT', 158, '2019-10-04 00:25:15.779353+00', '2019-10-04 00:25:15.779353+00', 'Germany', 'G52501'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (309, '0400071267-5', 5, '2580/A0/03/882/001/001', 'SC170746', 'SC', 205112.00, 205112.00, '2020-06-01', 'IRC PCA 4TH INSTALMENT DCT', 158, '2019-10-04 00:25:15.779496+00', '2019-10-04 00:25:15.779496+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (344, '0400068801-4', 4, '2580/A0/03/882/001/005', 'SC170746', 'SC', 81970.00, 81970.00, '2020-04-01', 'CASH TRANSFER 3F Q3', 154, '2020-04-02 00:15:07.999057+00', '2020-04-02 00:15:07.999057+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (346, '0400074876-1', 1, '2580/A0/03/882/001/003', 'SC170746', 'SC', 5050.00, 5050.00, '2020-04-06', 'DISTRIBUTION WINTER KITS TO DETENTION CENTER', 167, '2020-04-07 00:55:28.811038+00', '2020-04-07 00:55:28.811038+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (337, '0400071542-3', 3, '2580/A0/03/881/002/007', 'SC170316', 'SC', 182534.50, 182534.50, '2020-02-15', 'Q2 DCT JAN TO MAR 2020- EDU', 159, '2020-02-18 00:30:28.252497+00', '2020-04-06 00:13:01.467868+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (347, '0400074988-3', 3, '2580/A0/03/881/001/001', 'SC180824', 'SC', 10000.00, 10000.00, '2020-12-31', 'HEALTH BUDGET - EUTF', 168, '2020-04-14 00:40:31.416211+00', '2020-04-14 00:40:31.416211+00', 'European Commission/EC', 'I49905'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (242, '0400062231-3', 3, '2580/A0/03/882/001/002', 'SM170020', 'SM', 56960.00, 56960.00, '2019-10-27', '3RD PAYMENT - NOORALHAYAT', 137, '2018-08-10 00:06:42.33641+00', '2019-06-14 00:18:33.748716+00', 'Germany', 'G52501'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (302, '0400064173-5', 5, '2580/A0/03/881/001/010', 'SM190240', 'SM', 73280.00, 73280.00, '2019-08-30', 'EMDAD FR FOR PAYMENT Q2 DCT', 140, '2019-08-28 01:22:51.977112+00', '2019-08-28 01:22:51.977543+00', 'UNOCHA', 'U99901'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (342, '0400068277-6', 6, '2580/A0/03/882/001/002', 'SC170746', 'SC', 32188.84, 45000.00, '2020-03-04', 'EMERGENCY CONTINGENCY', 150, '2020-03-06 00:13:22.117435+00', '2020-03-06 00:13:22.117435+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (303, '0400064173-4', 4, '2580/A0/03/881/001/010', 'SM190240', 'SM', 18100.00, 18100.00, '2019-08-30', 'EMDAD FR FOR PAYMENT Q2 DCT', 140, '2019-08-28 01:22:51.977245+00', '2019-08-28 01:22:51.97766+00', 'UNOCHA', 'U99901'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (310, '0400071267-1', 1, '2580/A0/03/882/001/001', 'SM180398', 'SM', 100000.00, 100000.00, '2019-10-03', 'IRC PCA 1ST INSTALMENT DCT', 158, '2019-10-04 00:25:15.779564+00', '2019-10-04 00:25:15.779564+00', 'USA (State) BPRM', 'G45606'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (315, '0400068277-3', 3, '2580/A0/03/882/001/002', 'SM170020', 'SM', 49713.88, 69500.00, '2019-10-21', 'EMERGENCY', 150, '2019-10-24 07:39:54.431201+00', '2019-10-24 07:39:54.431201+00', 'Germany', 'G52501'); @@ -9336,22 +9689,69 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (316, '0400062233-6', 6 INSERT INTO [[schema]].funds_fundsreservationitem VALUES (314, '0400071542-1', 1, '2580/A0/03/881/002/007', 'SC170316', 'SC', 167851.00, 167851.00, '2019-10-17', 'Q1 DCT- OCT TO DEC 2019 - EDU', 159, '2019-10-17 01:34:19.207218+00', '2019-10-17 01:34:19.207218+00', 'European Commission/EC', 'I49905'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (321, '0400062233-7', 7, '2580/A0/03/882/001/003', 'SC170316', 'SC', 12840.00, 12840.00, '2019-10-30', '4TH PAYMENT MULTAKANA CP PART', 136, '2019-10-31 01:40:12.568622+00', '2019-10-31 01:40:12.568622+00', 'European Commission/EC', 'I49905'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (267, '0400066346-1', 1, '2580/A0/03/881/002/007', 'SC170316', 'SC', 321230.00, 321230.00, '2019-01-31', 'NRC 1ST DCT EU MIG', 147, '2019-02-02 00:08:17.090509+00', '2019-10-09 00:34:10.481269+00', 'European Commission/EC', 'I49905'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (24, '0400038609-1', 1, '2580/A0/02/803/003/002', 'SM150429', 'SM', 89933.56, 123757.31, '2016-03-18', 'WASH-HUMANITARIAN-ASSISTANCE-TAWARGAHIDP-ACTED PCA', 61, '2018-03-15 16:56:59.787668+00', '2019-11-15 00:23:41.111339+00', 'European Commission / ECHO', 'I49912'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (5, '0400038475-1', 1, '2580/A0/02/803/003/002', 'SM150429', 'SM', 77168.29, 107091.38, '2016-03-08', 'COMMUNITY BASED CP & PSS SERVICES - STACO PCA', 10, '2018-03-15 16:56:59.787668+00', '2019-11-15 00:23:41.133825+00', 'European Commission / ECHO', 'I49912'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (323, '0400073147-4', 4, '2580/A0/03/882/001/003', 'SC180799', 'SC', 118338.50, 118338.50, '2020-03-15', 'Q4 DCT', 161, '2019-12-19 00:29:13.95576+00', '2019-12-19 00:29:13.95576+00', 'Italy', 'G22201'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (324, '0400073147-2', 2, '2580/A0/03/882/001/003', 'SC180799', 'SC', 110538.50, 110538.50, '2020-02-01', 'Q2 DCT', 161, '2019-12-19 00:29:13.955862+00', '2019-12-19 00:29:13.955862+00', 'Italy', 'G22201'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (294, '0400057421-4', 4, '2580/A0/03/882/001/003', 'SC170316', 'SC', 46473.10, 46473.10, '2019-06-30', 'COST EXTENTION AMNDMENT CP', 124, '2019-06-12 00:15:24.619723+00', '2019-09-06 01:20:32.045912+00', 'European Commission/EC', 'I49905'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (317, '0400062233-5', 5, '2580/A0/03/882/001/003', 'SC170316', 'SC', 12840.00, 12840.00, '2019-10-23', '3RD PAYMENT MULTAKANA CP PART', 136, '2019-10-24 07:39:54.431422+00', '2019-10-24 07:39:54.431422+00', 'European Commission/EC', 'I49905'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (6, '0400038475-2', 2, '2580/A0/02/803/003/002', 'SM150579', 'SM', 171003.59, 236121.71, '2016-03-08', 'COMMUNITY BASED CP & PSS SERVICES - STACO PCA', 10, '2018-03-15 16:56:59.787668+00', '2019-11-15 00:23:41.146493+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (326, '0400073147-3', 3, '2580/A0/03/882/001/003', 'SC180799', 'SC', 121308.50, 121308.50, '2020-03-01', 'Q3 DCT', 161, '2019-12-19 00:29:13.956005+00', '2019-12-19 00:29:13.956005+00', 'Italy', 'G22201'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (318, '0400069389-3', 3, '2580/A0/03/881/002/007', 'SC170746', 'SC', 70070.67, 99150.00, '2019-10-23', 'BREEZES 3RD & 4TH DCTS', 157, '2019-10-25 00:20:03.151872+00', '2019-10-25 00:20:03.151872+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (319, '0400069389-2', 2, '2580/A0/03/881/002/007', 'SM170020', 'SM', 39240.28, 55525.00, '2019-10-23', 'BREEZES 2ND DCT', 157, '2019-10-25 00:20:03.152021+00', '2019-10-25 00:20:03.152021+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (300, '0400057421-5', 5, '2580/A0/03/881/002/007', 'SC170316', 'SC', 81728.09, 81728.09, '2019-08-31', 'COST EXTENTION AMNDMENT EUD 47%', 124, '2019-08-20 00:44:56.980249+00', '2019-10-05 00:21:17.354545+00', 'European Commission/EC', 'I49905'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (301, '0400057421-6', 6, '2580/A0/03/882/001/003', 'SC170316', 'SC', 89984.65, 89984.65, '2019-08-31', 'COST EXTENTION AMNDMENT CP 53%', 124, '2019-08-20 00:44:56.980367+00', '2019-10-05 00:21:17.412385+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (327, '0400073147-5', 5, '2580/A0/03/882/001/003', 'SC180799', 'SC', 37791.73, 37791.73, '2020-03-20', '7% HQ COST', 161, '2019-12-19 00:29:13.956073+00', '2019-12-19 00:29:13.956073+00', 'Italy', 'G22201'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (328, '0400073261-2', 2, '2580/A0/03/881/002/007', 'SC170316', 'SC', 65893.50, 65893.50, '2020-01-31', 'Q1 DCT FOR EDU', 162, '2019-12-31 00:54:12.854682+00', '2019-12-31 00:54:12.854682+00', 'European Commission/EC', 'I49905'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (296, '0400069389-1', 1, '2580/A0/03/881/002/007', 'SC170746', 'SC', 102384.33, 141275.00, '2019-06-30', 'BREEZES 1ST DCT', 157, '2019-07-05 14:37:05.331187+00', '2019-10-25 00:20:03.198145+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (286, '0400068570-1', 1, '2580/A0/03/881/002/007', 'SM170020', 'SM', 91378.41, 91378.41, '2019-05-22', 'EKRAA 1-2 DCTS BMZ3', 151, '2019-05-24 00:13:27.711858+00', '2019-10-25 00:20:03.222122+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (308, '0400071267-2', 2, '2580/A0/03/882/001/001', 'SM170020', 'SM', 65592.00, 65592.00, '2019-10-03', 'IRC PCA 1ST INSTALMENT DCT', 158, '2019-10-04 00:25:15.779426+00', '2019-10-25 00:20:03.247722+00', 'Germany', 'G52501'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (166, '0400053854-2', 2, '2580/A0/02/883/007/001', 'SM160532', 'SM', 9520.42, 13023.93, '2017-09-08', 'PCA LAYD 2017 CONFLICT AFFECTED CHILDREN EDUCATION', 111, '2018-03-15 16:56:59.787668+00', '2019-11-15 00:23:41.160136+00', 'Germany', 'G52501'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (312, '0400066346-3', 3, '2580/A0/03/881/002/007', 'SC170746', 'SC', 57000.00, 57000.00, '2019-10-07', 'NRC FR BMZ4 57000', 147, '2019-10-09 00:34:10.430294+00', '2019-10-25 00:20:03.307374+00', 'Germany', 'G52501'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (124, '0400040234-3', 3, '2580/A0/02/883/010/001', 'SM160532', 'SM', 4333.20, 6122.82, '2017-07-20', 'CHILD PROTECTION- ALNAHLA - PCA/LIBYA/CP/2016/07', 18, '2018-03-15 16:56:59.787668+00', '2019-11-15 00:23:41.171359+00', 'Germany', 'G52501'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (167, '0400053854-3', 3, '2580/A0/02/883/007/001', 'SM170020', 'SM', 102749.84, 140561.79, '2017-09-08', 'PCA LAYD 2017 CONFLICT AFFECTED CHILDREN EDUCATION', 111, '2018-03-15 16:56:59.787668+00', '2019-11-15 00:23:41.185699+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (325, '0400073147-1', 1, '2580/A0/03/882/001/003', 'SC180799', 'SC', 189696.17, 189696.17, '2020-01-01', 'Q1 DCT', 161, '2019-12-19 00:29:13.955935+00', '2020-02-03 15:55:43.312845+00', 'Italy', 'G22201'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (339, '0400074004-1', 1, '2580/A0/03/881/002/007', 'GE190029', 'GE', 50000.00, 50000.00, '2020-06-30', 'LRC PCA-EDU CONTRIBUTION', 164, '2020-02-20 02:57:26.31624+00', '2020-02-20 02:57:26.31624+00', 'UNICEF (FOR GR ALLOCATIONS ONLY)', 'U99999'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (307, '0400071267-3', 3, '2580/A0/03/882/001/001', 'SC170746', 'SC', 164238.00, 164238.00, '2020-03-31', 'IRC PCA 2ND INSTALMENT DCT', 158, '2019-10-04 00:25:15.779353+00', '2020-01-10 18:26:07.349591+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (330, '0400073278-1', 1, '2580/A0/03/882/001/003', 'SC170316', 'SC', 146357.50, 146357.50, '2020-01-31', 'Q1 DCT FOR CP', 163, '2020-01-06 11:23:34.04887+00', '2020-01-06 11:23:34.04887+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (331, '0400073278-2', 2, '2580/A0/03/881/002/007', 'SC170316', 'SC', 23875.00, 23875.00, '2020-01-31', 'Q1 DCT FOR EDU', 163, '2020-01-06 11:23:34.048998+00', '2020-01-06 11:23:34.048998+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (333, '0400068277-5', 5, '2580/A0/03/882/001/001', 'SC170746', 'SC', 56770.39, 79365.00, '2020-01-14', 'SCOUTS 3RD INSTALLMENT (REIMBURSMENT)', 150, '2020-01-16 00:16:33.774558+00', '2020-01-16 00:16:33.774558+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (329, '0400073261-1', 1, '2580/A0/03/882/001/003', 'SC170316', 'SC', 67393.50, 67393.50, '2020-01-31', 'Q1 DCT FOR CP', 162, '2019-12-31 00:54:12.854807+00', '2019-12-31 00:54:12.854807+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (335, '0400068801-3', 3, '2580/A0/03/882/001/005', 'GE180026', 'GE', 31910.00, 31910.00, '2020-03-01', 'CASH TRANSFER 3F', 154, '2020-02-06 00:54:41.867758+00', '2020-02-06 00:54:41.867758+00', 'UNICEF (FOR GR ALLOCATIONS ONLY)', 'U99999'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (302, '0400064173-5', 5, '2580/A0/03/881/001/010', 'SM190240', 'SM', 73280.00, 73280.00, '2019-08-30', 'EMDAD FR FOR PAYMENT Q3DCT', 140, '2019-08-28 01:22:51.977112+00', '2020-01-23 00:32:06.595964+00', 'UNOCHA', 'U99901'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (332, '0400068277-4', 4, '2580/A0/03/882/001/001', 'SC170746', 'SC', 47746.90, 66750.16, '2020-01-09', 'SCOUTS 2ND INSTALLMENT (REIMBURSMENT)', 150, '2020-01-10 18:26:07.247634+00', '2020-01-10 18:26:07.247634+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (341, '0400062233-9', 9, '2580/A0/03/882/001/003', 'SC170746', 'SC', 2808.00, 2808.00, '2020-03-01', 'DISTRIBUTION OF WINTER KITS', 136, '2020-03-03 00:31:10.859323+00', '2020-03-03 00:31:10.859323+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (304, '0400057421-7', 7, '2580/A0/03/881/002/007', 'SC170316', 'SC', 21058.06, 21058.06, '2020-01-06', 'HQ COST 7% EDU 47%', 124, '2019-09-06 01:20:31.954518+00', '2020-01-10 18:26:07.359809+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (305, '0400057421-8', 8, '2580/A0/03/882/001/003', 'SC170316', 'SC', 23746.32, 23746.32, '2020-01-06', 'HQ COST 7% CP 53%', 124, '2019-09-06 01:20:31.954618+00', '2020-01-10 18:26:07.370204+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (312, '0400066346-3', 3, '2580/A0/03/881/002/007', 'SC170746', 'SC', 107000.00, 107000.00, '2019-10-07', 'NRC FR BMZ4 107,000', 147, '2019-10-09 00:34:10.430294+00', '2020-02-12 00:29:24.042175+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (345, '0400068570-3', 3, '2580/A0/03/881/002/007', 'SC170746', 'SC', 63710.71, 63710.71, '2020-12-31', 'EKRAA 3-4 DCTS BMZ4', 151, '2020-04-02 00:15:07.999203+00', '2020-04-02 00:15:07.999203+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (338, '0400074004-2', 2, '2580/A0/03/881/001/010', 'SM190265', 'SM', 30000.00, 30000.00, '2020-12-31', 'LRC PCA-CSD CONTRIBUTION', 164, '2020-02-20 02:57:26.316146+00', '2020-03-03 00:31:10.898938+00', 'Italy', 'G22201'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (311, '0400066346-2', 2, '2580/A0/03/881/002/007', 'SC170316', 'SC', 758750.00, 758750.00, '2019-10-07', 'NRC FR EU MIG 758,750', 147, '2019-10-09 00:34:10.430176+00', '2020-02-18 00:30:28.3196+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (349, '0400074988-2', 2, '2580/A0/03/881/001/001', 'SM190265', 'SM', 10000.00, 10000.00, '2020-12-31', 'HEALTH BUDGET - ITALY', 168, '2020-04-14 00:40:31.416377+00', '2020-04-14 00:40:31.416377+00', 'Italy', 'G22201'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (350, '0400074996-2', 2, '2580/A0/03/881/001/001', 'SM190265', 'SM', 10000.00, 10000.00, '2020-12-31', 'HEALTH BUDGET - ITALY', 169, '2020-04-15 02:33:41.538443+00', '2020-04-15 02:33:41.538443+00', 'Italy', 'G22201'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (351, '0400074996-3', 3, '2580/A0/03/881/001/001', 'SM190466', 'SM', 10000.00, 10000.00, '2020-12-31', 'HEALTH BUDGET - US', 169, '2020-04-15 02:33:41.538552+00', '2020-04-15 02:33:41.538552+00', 'USA Department of State NEA', 'G45614'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (285, '0400068570-2', 2, '2580/A0/03/881/002/007', 'SC170746', 'SC', 124136.24, 124136.24, '2020-12-31', 'EKRAA 3-4 DCTS BMZ4', 151, '2019-05-24 00:13:27.711734+00', '2020-04-02 00:15:08.077565+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (352, '0400074996-1', 1, '2580/A0/03/881/001/001', 'SC180824', 'SC', 10000.00, 10000.00, '2020-12-31', 'HEALTH BUDGET - EUTF', 169, '2020-04-15 02:33:41.538647+00', '2020-04-15 02:33:41.538647+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (353, '0400073278-6', 6, '2580/A0/03/881/002/007', 'SC170316', 'SC', 62430.00, 62430.00, '2020-05-31', 'Q3 DCT EDU', 163, '2020-04-17 02:19:25.217736+00', '2020-04-17 02:19:25.217736+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (369, '0400073261-11', 11, '2580/A0/03/881/002/007', 'SC170316', 'SC', 118335.00, 118335.00, '2020-04-30', 'Q1 FOR EDU - TIP WITH 7% HQ', 162, '2020-04-18 02:42:20.478691+00', '2020-04-18 02:42:20.478691+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (354, '0400073278-5', 5, '2580/A0/03/882/001/003', 'SC170316', 'SC', 134516.00, 134516.00, '2020-05-31', 'Q3 DCT CP', 163, '2020-04-17 02:19:25.217833+00', '2020-04-17 02:19:25.217833+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (306, '0400071267-4', 4, '2580/A0/03/882/001/001', 'SM190466', 'SM', 155149.00, 155149.00, '2020-03-01', 'IRC PCA 3RD INSTALMENT DCT', 158, '2019-10-04 00:25:15.779252+00', '2020-03-24 00:13:31.753101+00', 'USA Department of State NEA', 'G45614'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (309, '0400071267-5', 5, '2580/A0/03/882/001/001', 'SM190466', 'SM', 205112.00, 205112.00, '2020-06-01', 'IRC PCA 4TH INSTALMENT DCT', 158, '2019-10-04 00:25:15.779496+00', '2020-03-24 00:13:31.781046+00', 'USA Department of State NEA', 'G45614'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (370, '0400075098-1', 1, '2580/A0/03/882/001/003', 'SC170316', 'SC', 50086.68, 50086.68, '2020-04-16', 'MULTAKANA PCA BAYTI FOR 2020', 171, '2020-04-18 02:42:20.478789+00', '2020-04-18 02:42:20.478789+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (348, '0400074988-1', 1, '2580/A0/03/881/001/001', 'SC180824', 'SC', 0.00, 0.00, '2020-12-31', 'HEALTH BUDGET - EUTF', 168, '2020-04-14 00:40:31.416305+00', '2020-04-15 02:33:41.573639+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (355, '0400071542-5', 5, '2580/A0/03/881/002/007', 'SC170316', 'SC', 192714.00, 192714.00, '2020-05-31', 'Q3 DCT APRIL TO JUNE 2020- EDU', 159, '2020-04-17 02:19:25.217907+00', '2020-04-17 02:19:25.217907+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (357, '0400075071-1', 1, '2580/A0/03/881/001/017', 'SM190265', 'SM', 110692.00, 110692.00, '2020-12-31', 'WASH BUDGET - ITALIAN', 170, '2020-04-17 02:19:25.218041+00', '2020-04-17 02:19:25.218041+00', 'Italy', 'G22201'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (359, '0400071542-6', 6, '2580/A0/03/882/001/003', 'SC170316', 'SC', 253001.00, 253001.00, '2020-05-31', 'Q3 DCT APRIL TO JUNE 2020-CP', 159, '2020-04-17 02:19:25.218172+00', '2020-04-17 02:19:25.218172+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (362, '0400073278-4', 4, '2580/A0/03/881/002/007', 'SC170316', 'SC', 62705.00, 62705.00, '2020-04-15', 'Q2 DCT FOR EDU', 163, '2020-04-17 02:19:25.218368+00', '2020-04-17 02:19:25.218368+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (363, '0400075071-2', 2, '2580/A0/03/881/001/017', 'SC170746', 'SC', 6547.00, 6547.00, '2020-12-31', 'HEALTH BUDGET - BMZ4', 170, '2020-04-17 02:19:25.218434+00', '2020-04-17 02:19:25.218434+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (365, '0400073278-3', 3, '2580/A0/03/882/001/003', 'SC170316', 'SC', 225790.83, 225790.83, '2020-05-15', 'Q2 DCT FOR CP', 163, '2020-04-17 02:19:25.218565+00', '2020-04-17 02:19:25.218565+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (367, '0400073261-8', 8, '2580/A0/03/881/002/007', 'SC170316', 'SC', 185045.52, 185045.52, '2020-04-15', 'Q2 FOR EDU- SABHA WITH 7% HQ', 162, '2020-04-17 02:19:25.218692+00', '2020-04-17 02:19:25.218692+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (368, '0400073261-10', 10, '2580/A0/03/881/002/007', 'SC170316', 'SC', 182962.45, 182962.45, '2020-05-31', 'Q3 FOR EDU- SABHA WITH 7% HQ', 162, '2020-04-17 02:19:25.218755+00', '2020-04-17 02:19:25.218755+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (366, '0400073261-5', 5, '2580/A0/03/882/001/003', 'SM190265', 'SM', 110664.00, 110664.00, '2020-09-30', 'Q3 FOR CP - TIP WITH 7% HQ', 162, '2020-04-17 02:19:25.218629+00', '2020-04-18 02:42:20.57906+00', 'Italy', 'G22201'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (360, '0400073261-6', 6, '2580/A0/03/882/001/003', 'SM190265', 'SM', 104534.00, 104534.00, '2020-12-31', 'Q4 FOR CP - TIP WITH 7% HQ', 162, '2020-04-17 02:19:25.218238+00', '2020-04-18 02:42:20.587646+00', 'Italy', 'G22201'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (361, '0400073261-7', 7, '2580/A0/03/882/001/003', 'SC170316', 'SC', 79178.50, 79178.50, '2020-04-15', 'Q2 FOR CP - SABHA WITH 7% HQ', 162, '2020-04-17 02:19:25.218302+00', '2020-04-18 02:42:20.596289+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (356, '0400073261-9', 9, '2580/A0/03/882/001/003', 'SC170316', 'SC', 80928.50, 80928.50, '2020-05-31', 'Q3 FOR CP- SABHA WITH 7% HQ', 162, '2020-04-17 02:19:25.217975+00', '2020-04-18 02:42:20.605133+00', 'European Commission/EC', 'I49905'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (5, '0400038475-1', 1, '2580/A0/02/803/003/002', 'SM150429', 'SM', 77168.29, 107091.38, '2016-03-08', 'COMMUNITY BASED CP & PSS SERVICES - STACO PCA', 10, '2018-03-15 16:56:59.787668+00', '2020-04-21 02:59:23.581682+00', 'European Commission / ECHO', 'I49912'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (24, '0400038609-1', 1, '2580/A0/02/803/003/002', 'SM150429', 'SM', 89933.56, 123757.31, '2016-03-18', 'WASH-HUMANITARIAN-ASSISTANCE-TAWARGAHIDP-ACTED PCA', 61, '2018-03-15 16:56:59.787668+00', '2020-04-21 02:59:23.592875+00', 'European Commission / ECHO', 'I49912'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (358, '0400073261-3', 3, '2580/A0/03/882/001/003', 'SM190265', 'SM', 119196.00, 119196.00, '2020-04-15', 'Q1 FOR CP - TIP WITH 7% HQ', 162, '2020-04-17 02:19:25.218107+00', '2020-04-18 02:42:20.541596+00', 'Italy', 'G22201'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (364, '0400073261-4', 4, '2580/A0/03/882/001/003', 'SM190265', 'SM', 119955.00, 119955.00, '2020-06-30', 'Q2 FOR CP - TIP WITH 7% HQ', 162, '2020-04-17 02:19:25.2185+00', '2020-04-18 02:42:20.569587+00', 'Italy', 'G22201'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (166, '0400053854-2', 2, '2580/A0/02/883/007/001', 'SM160532', 'SM', 9520.42, 13023.93, '2017-09-08', 'PCA LAYD 2017 CONFLICT AFFECTED CHILDREN EDUCATION', 111, '2018-03-15 16:56:59.787668+00', '2020-04-21 02:59:23.602425+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (6, '0400038475-2', 2, '2580/A0/02/803/003/002', 'SM150579', 'SM', 171003.59, 236121.71, '2016-03-08', 'COMMUNITY BASED CP & PSS SERVICES - STACO PCA', 10, '2018-03-15 16:56:59.787668+00', '2020-04-21 02:59:23.611124+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (124, '0400040234-3', 3, '2580/A0/02/883/010/001', 'SM160532', 'SM', 4333.20, 6122.82, '2017-07-20', 'CHILD PROTECTION- ALNAHLA - PCA/LIBYA/CP/2016/07', 18, '2018-03-15 16:56:59.787668+00', '2020-04-21 02:59:23.649812+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (167, '0400053854-3', 3, '2580/A0/02/883/007/001', 'SM170020', 'SM', 102749.84, 140561.79, '2017-09-08', 'PCA LAYD 2017 CONFLICT AFFECTED CHILDREN EDUCATION', 111, '2018-03-15 16:56:59.787668+00', '2020-04-21 02:59:23.657998+00', 'Germany', 'G52501'); -- @@ -9390,7 +9790,8 @@ INSERT INTO [[schema]].funds_grant VALUES (7, 'Unknown', '', NULL, 6, '2018-03-1 -- INSERT INTO [[schema]].hact_aggregatehact VALUES (1, '2018-02-15 19:31:14.787763+00', '2018-12-31 04:00:34.17318+00', 2018, '"{\"assurance_activities\": {\"programmatic_visits\": {\"completed\": 8, \"min_required\": 33}, \"spot_checks\": {\"completed\": 0, \"min_required\": 14, \"follow_up\": 0}, \"scheduled_audit\": 0, \"special_audit\": 0, \"micro_assessment\": 0, \"missing_micro_assessment\": 3}, \"assurance_coverage\": {\"coverage_by_number_of_ips\": [[\"Coverage by number of IPs\", \"Count\"], [\"Without Assurance\", 17], [\"Partially Met Requirements\", 5], [\"Met Requirements\", 1]], \"coverage_by_cash_transfer\": [[\"Coverage by Cash Transfer (USD) (Total)\", \"Count\"], [\"Without Assurance\", 2119471.68], [\"Partially Met Requirements\", 1655707.25], [\"Met Requirements\", 55840.0]], \"table\": [{\"label\": \"Active Partners\", \"value\": 23}, {\"label\": \"IPs without required PV\", \"value\": 15}, {\"label\": \"IPs without required SC\", \"value\": 14}, {\"label\": \"IPs without required assurance\", \"value\": 9}]}, \"financial_findings\": [{\"name\": \"Total Audited Expenditure\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Total Financial Findings\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Refunds\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Additional Supporting Documentation Received\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Justification Provided and Accepted\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Impairment\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Outstanding current year (Requires Follow-up)\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Outstanding prior year\", \"value\": 0.0, \"highlighted\": true}], \"financial_findings_numbers\": [{\"name\": \"Number of High Priority Findings\", \"value\": 0}, {\"name\": \"Number of Medium Priority Findings\", \"value\": 0}, {\"name\": \"Number of Low Priority Findings\", \"value\": 0}, {\"name\": \"Audit Opinion\", \"value\": [{\"name\": \"qualified\", \"value\": 0}, {\"name\": \"unqualified\", \"value\": 0}, {\"name\": \"denial\", \"value\": 0}, {\"name\": \"adverse\", \"value\": 0}]}], \"charts\": {\"cash_transfers_amounts\": [[\"Risk Rating\", \"Not Required\", \"Low\", \"Medium\", \"Significant\", \"High\", \"Number of IPs\"], [\"$0-50,000\", 0.0, 0.0, 16937.27, 0.0, 75696.0, 7], [\"$50,001-100,000\", 0.0, 0.0, 90509.62, 0.0, 177720.0, 4], [\"$100,001-350,000\", 0.0, 769796.25, 676208.05, 0.0, 1010717.6, 10], [\"$350,001-500,000\", 0.0, 0.0, 0.0, 0.0, 480420.14, 1], [\">$500,000\", 0.0, 533014.0, 0.0, 0.0, 0.0, 1]], \"cash_transfers_risk_ratings\": [[\"Risk Rating\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of IPs\"], [\"Not Required\", 0.0, \"#D8D8D8\", 1], [\"Low\", 1302810.25, \"#2BB0F2\", 4], [\"Medium\", 783654.94, \"#FECC02\", 5], [\"Significant\", null, \"#F05656\", 0], [\"High\", 1744553.74, \"#751010\", 13]], \"cash_transfers_partner_type\": [[\"Partner Type\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of Partners\"], [\"CSO\", 3350598.79, \"#FECC02\", 22], [\"GOV\", 480420.14, \"#F05656\", 1]], \"spot_checks_completed\": [[\"Completed by\", \"Count\"], [\"Staff\", 0], [\"Service Providers\", 0]]}}"'); -INSERT INTO [[schema]].hact_aggregatehact VALUES (2, '2019-01-01 04:00:34.48679+00', '2019-11-15 04:03:16.279706+00', 2019, '"{\"assurance_activities\": {\"programmatic_visits\": {\"completed\": 43, \"min_required\": 43}, \"spot_checks\": {\"completed\": 0, \"required\": 16, \"follow_up\": 0}, \"scheduled_audit\": 0, \"special_audit\": 0, \"micro_assessment\": 0, \"missing_micro_assessment\": 0}, \"assurance_coverage\": {\"coverage_by_number_of_ips\": [[\"Coverage by number of IPs\", \"Count\"], [\"Without Assurance\", 15], [\"Partially Met Requirements\", 6], [\"Met Requirements\", 3]], \"coverage_by_cash_transfer\": [[\"Coverage by Cash Transfer (USD) (Total)\", \"Count\"], [\"Without Assurance\", 2076301.41], [\"Partially Met Requirements\", 1023490.86], [\"Met Requirements\", 214032.95]], \"table\": [{\"label\": \"Partners\", \"value\": 24}, {\"label\": \"IPs without required PV\", \"value\": 14}, {\"label\": \"IPs without required SC\", \"value\": 17}, {\"label\": \"IPs without required assurance\", \"value\": 10}]}, \"financial_findings\": [{\"name\": \"Total Audited Expenditure\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Total Financial Findings\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Refunds\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Additional Supporting Documentation Received\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Justification Provided and Accepted\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Impairment\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Outstanding current year (Requires Follow-up)\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Outstanding prior year\", \"value\": 0.0, \"highlighted\": true}], \"financial_findings_numbers\": [{\"name\": \"Number of High Priority Findings\", \"value\": 0}, {\"name\": \"Number of Medium Priority Findings\", \"value\": 0}, {\"name\": \"Number of Low Priority Findings\", \"value\": 0}, {\"name\": \"Audit Opinion\", \"value\": [{\"name\": \"qualified\", \"value\": 0}, {\"name\": \"unqualified\", \"value\": 0}, {\"name\": \"denial\", \"value\": 0}, {\"name\": \"adverse\", \"value\": 0}]}], \"charts\": {\"cash_transfers_amounts\": [[\"Risk Rating\", \"Not Required\", \"Low\", \"Medium\", \"Significant\", \"High\", \"Number of IPs\"], [\"$0-50,000\", 0.0, 17821.21, 52239.0, 0.0, 126279.86, 9], [\"$50,001-100,000\", 0.0, 0.0, 0.0, 0.0, 272507.9, 3], [\"$100,001-350,000\", 0.0, 321230.0, 406529.91, 0.0, 839872.95, 10], [\"$350,001-500,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0], [\">$500,000\", 0.0, 756509.39, 0.0, 0.0, 520835.0, 2]], \"cash_transfers_risk_ratings\": [[\"Risk Rating\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of IPs\"], [\"Not Required\", 0.0, \"#D8D8D8\", 1], [\"Low\", 1095560.6, \"#2BB0F2\", 4], [\"Medium\", 458768.91, \"#FECC02\", 5], [\"Significant\", null, \"#F05656\", 0], [\"High\", 1759495.71, \"#751010\", 14]], \"cash_transfers_partner_type\": [[\"Partner Type\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of Partners\"], [\"CSO\", 3268825.22, \"#FECC02\", 23], [\"GOV\", 45000.0, \"#F05656\", 1]], \"spot_checks_completed\": [[\"Completed by\", \"Count\"], [\"Staff\", 0], [\"Service Providers\", 0]]}}"'); +INSERT INTO [[schema]].hact_aggregatehact VALUES (3, '2020-01-01 04:03:07.841955+00', '2020-04-21 04:01:46.942849+00', 2020, '"{\"assurance_activities\": {\"programmatic_visits\": {\"completed\": 1, \"min_required\": 30}, \"spot_checks\": {\"completed\": 0, \"required\": 15, \"follow_up\": 0}, \"scheduled_audit\": 0, \"special_audit\": 0, \"micro_assessment\": 0, \"missing_micro_assessment\": 1}, \"assurance_coverage\": {\"coverage_by_number_of_ips\": [[\"Coverage by number of IPs\", \"Count\"], [\"Without Assurance\", 20], [\"Partially Met Requirements\", 1], [\"Met Requirements\", 1]], \"coverage_by_cash_transfer\": [[\"Coverage by Cash Transfer (USD) (Total)\", \"Count\"], [\"Without Assurance\", 1480989.72], [\"Partially Met Requirements\", 450659.88], [\"Met Requirements\", 0.0]], \"table\": [{\"label\": \"Partners\", \"value\": 22}, {\"label\": \"IPs without required PV\", \"value\": 17}, {\"label\": \"IPs without required SC\", \"value\": 15}, {\"label\": \"IPs without required assurance\", \"value\": 11}]}, \"financial_findings\": [{\"name\": \"Total Audited Expenditure\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Total Financial Findings\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Refunds\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Additional Supporting Documentation Received\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Justification Provided and Accepted\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Impairment\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Outstanding current year (Requires Follow-up)\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Outstanding prior year\", \"value\": 0.0, \"highlighted\": true}], \"financial_findings_numbers\": [{\"name\": \"Number of High Priority Findings\", \"value\": 0}, {\"name\": \"Number of Medium Priority Findings\", \"value\": 0}, {\"name\": \"Number of Low Priority Findings\", \"value\": 0}, {\"name\": \"Audit Opinion\", \"value\": [{\"name\": \"qualified\", \"value\": 0}, {\"name\": \"unqualified\", \"value\": 0}, {\"name\": \"denial\", \"value\": 0}, {\"name\": \"adverse\", \"value\": 0}]}], \"charts\": {\"cash_transfers_amounts\": [[\"Risk Rating\", \"Not Required\", \"Low\", \"Medium\", \"Significant\", \"High\", \"Number of IPs\"], [\"$0-50,000\", 0.0, 0.0, 38031.91, 0.0, 81145.5, 13], [\"$50,001-100,000\", 0.0, 0.0, 60425.53, 0.0, 149142.66, 3], [\"$100,001-350,000\", 0.0, 356612.95, 0.0, 0.0, 795631.17, 5], [\"$350,001-500,000\", 0.0, 450659.88, 0.0, 0.0, 0.0, 1], [\">$500,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0]], \"cash_transfers_risk_ratings\": [[\"Risk Rating\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of IPs\"], [\"Not Required\", null, \"#D8D8D8\", 0], [\"Low\", 807272.83, \"#2BB0F2\", 3], [\"Medium\", 98457.44, \"#FECC02\", 3], [\"Significant\", null, \"#F05656\", 0], [\"High\", 1025919.33, \"#751010\", 16]], \"cash_transfers_partner_type\": [[\"Partner Type\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of Partners\"], [\"CSO\", 1855462.1, \"#FECC02\", 18], [\"GOV\", 76187.5, \"#F05656\", 4]], \"spot_checks_completed\": [[\"Completed by\", \"Count\"], [\"Staff\", 0], [\"Service Providers\", 0]]}}"'); +INSERT INTO [[schema]].hact_aggregatehact VALUES (2, '2019-01-01 04:00:34.48679+00', '2020-01-02 17:12:39.431487+00', 2019, '"{\"assurance_activities\": {\"programmatic_visits\": {\"completed\": 47, \"min_required\": 43}, \"spot_checks\": {\"completed\": 1, \"required\": 16, \"follow_up\": 0}, \"scheduled_audit\": 0, \"special_audit\": 0, \"micro_assessment\": 0, \"missing_micro_assessment\": 0}, \"assurance_coverage\": {\"coverage_by_number_of_ips\": [[\"Coverage by number of IPs\", \"Count\"], [\"Without Assurance\", 24], [\"Partially Met Requirements\", 0], [\"Met Requirements\", 0]], \"coverage_by_cash_transfer\": [[\"Coverage by Cash Transfer (USD) (Total)\", \"Count\"], [\"Without Assurance\", 3543434.65], [\"Partially Met Requirements\", 0.0], [\"Met Requirements\", 0.0]], \"table\": [{\"label\": \"Partners\", \"value\": 24}, {\"label\": \"IPs without required PV\", \"value\": 23}, {\"label\": \"IPs without required SC\", \"value\": 17}, {\"label\": \"IPs without required assurance\", \"value\": 17}]}, \"financial_findings\": [{\"name\": \"Total Audited Expenditure\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Total Financial Findings\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Refunds\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Additional Supporting Documentation Received\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Justification Provided and Accepted\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Impairment\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Outstanding current year (Requires Follow-up)\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Outstanding prior year\", \"value\": 0.0, \"highlighted\": true}], \"financial_findings_numbers\": [{\"name\": \"Number of High Priority Findings\", \"value\": 0}, {\"name\": \"Number of Medium Priority Findings\", \"value\": 0}, {\"name\": \"Number of Low Priority Findings\", \"value\": 0}, {\"name\": \"Audit Opinion\", \"value\": [{\"name\": \"qualified\", \"value\": 0}, {\"name\": \"unqualified\", \"value\": 0}, {\"name\": \"denial\", \"value\": 0}, {\"name\": \"adverse\", \"value\": 0}]}], \"charts\": {\"cash_transfers_amounts\": [[\"Risk Rating\", \"Not Required\", \"Low\", \"Medium\", \"Significant\", \"High\", \"Number of IPs\"], [\"$0-50,000\", 0.0, 17821.21, 52239.0, 0.0, 94179.86, 8], [\"$50,001-100,000\", 0.0, 0.0, 0.0, 0.0, 279139.9, 3], [\"$100,001-350,000\", 0.0, 321230.0, 445909.34, 0.0, 1055570.95, 11], [\"$350,001-500,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0], [\">$500,000\", 0.0, 756509.39, 0.0, 0.0, 520835.0, 2]], \"cash_transfers_risk_ratings\": [[\"Risk Rating\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of IPs\"], [\"Not Required\", 0.0, \"#D8D8D8\", 1], [\"Low\", 1095560.6, \"#2BB0F2\", 4], [\"Medium\", 498148.34, \"#FECC02\", 5], [\"Significant\", null, \"#F05656\", 0], [\"High\", 1949725.71, \"#751010\", 14]], \"cash_transfers_partner_type\": [[\"Partner Type\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of Partners\"], [\"CSO\", 3498434.65, \"#FECC02\", 23], [\"GOV\", 45000.0, \"#F05656\", 1]], \"spot_checks_completed\": [[\"Completed by\", \"Count\"], [\"Staff\", 0], [\"Service Providers\", 1]]}}"'); -- @@ -9432,26 +9833,50 @@ INSERT INTO [[schema]].hact_hacthistory VALUES (31, '2017-12-30 15:42:00.186164+ INSERT INTO [[schema]].hact_hacthistory VALUES (32, '2017-12-30 15:42:00.22562+00', '2017-12-30 15:42:00.237593+00', 2017, '"[[\"Implementing Partner\", \"WOMEN AND YOUTH EMPOWERMENT FORUM\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared\", \"No\"], [\"Shared IP\", null], [\"TOTAL for current CP cycle\", 48430.0], [\"PLANNED for current year\", 0.0], [\"Current Year (1 Oct - 30 Sep)\", 48430.0], [\"Micro Assessment\", \"Missing\"], [\"Risk Rating\", \"High\"], [\"Programmatic Visits Planned\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Done\", 0], [\"Spot Checks M.R\", 0], [\"Spot Checks Done\", 0], [\"Audits M.R\", 0], [\"Audits Done\", 0], [\"Flag for Follow up\", 0]]"', 7); INSERT INTO [[schema]].hact_hacthistory VALUES (33, '2018-12-31 13:08:31.863276+00', '2019-02-07 18:16:31.882929+00', 2018, '"[[\"Implementing Partner\", \"AFAQ FOUNDATION FOR RIGHTS AND DEVELOPMENT\"], [\"Vendor Number\", \"2500238136\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 26300.0], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 55700.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 80); INSERT INTO [[schema]].hact_hacthistory VALUES (52, '2018-12-31 13:08:32.760937+00', '2019-02-07 18:16:32.227673+00', 2018, '"[[\"Implementing Partner\", \"NOOR ALHAYAT CHARITY ASSOCIATION\"], [\"Vendor Number\", \"2500238760\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 66180.0], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 66180.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 81); +INSERT INTO [[schema]].hact_hacthistory VALUES (56, '2019-12-31 03:35:03.716516+00', '2019-12-31 03:35:03.732713+00', 2019, '"[[\"Implementing Partner\", \"AFAQ FOUNDATION FOR RIGHTS AND DEVELOPMENT\"], [\"Vendor Number\", \"2500238136\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 90150.0], [\"Liquidations 1 OCT - 30 SEP\", 70400.0], [\"Cash Transfers Jan - Dec\", 86650.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 1], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 80); INSERT INTO [[schema]].hact_hacthistory VALUES (36, '2018-12-31 13:08:31.980027+00', '2019-02-07 18:16:31.93736+00', 2018, '"[[\"Implementing Partner\", \"ALNAHLA ORGANIZATION FOR EDUCATION AWARENESS AND FAMILY AFFAIRS\"], [\"Vendor Number\", \"2500231802\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 382979.0], [\"Liquidations 1 OCT - 30 SEP\", 267249.0], [\"Cash Transfers Jan - Dec\", 316982.0], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 1], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 13); INSERT INTO [[schema]].hact_hacthistory VALUES (37, '2018-12-31 13:08:32.032227+00', '2019-02-07 18:16:31.952415+00', 2018, '"[[\"Implementing Partner\", \"ALTADAMON FOR REHABILITATION AND PSYCOSOCIAL SUPPORT\"], [\"Vendor Number\", \"2500238342\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 177100.0], [\"Liquidations 1 OCT - 30 SEP\", 50300.0], [\"Cash Transfers Jan - Dec\", 177100.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 1], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 79); INSERT INTO [[schema]].hact_hacthistory VALUES (38, '2018-12-31 13:08:32.100681+00', '2019-02-07 18:16:31.969762+00', 2018, '"[[\"Implementing Partner\", \"ASSOCIATION KOUDOURATI\"], [\"Vendor Number\", \"2500237271\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 26896.0], [\"Liquidations 1 OCT - 30 SEP\", 49892.0], [\"Cash Transfers Jan - Dec\", 26896.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 40); INSERT INTO [[schema]].hact_hacthistory VALUES (39, '2018-12-31 13:08:32.152655+00', '2019-02-07 18:16:31.985473+00', 2018, '"[[\"Implementing Partner\", \"BREEZES LIBYA\"], [\"Vendor Number\", \"2500233211\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 52532.94], [\"Liquidations 1 OCT - 30 SEP\", 67547.06], [\"Cash Transfers Jan - Dec\", 16937.27], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 17); INSERT INTO [[schema]].hact_hacthistory VALUES (35, '2018-12-31 13:08:31.941286+00', '2019-02-07 18:16:31.921604+00', 2018, '"[[\"Implementing Partner\", \"AL MOBADR ORGANIZATION FOR DEVELOPMENT AND CAPACITY BUILDING\"], [\"Vendor Number\", \"2500237369\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 159950.0], [\"Liquidations 1 OCT - 30 SEP\", 152650.0], [\"Cash Transfers Jan - Dec\", 159950.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 73); +INSERT INTO [[schema]].hact_hacthistory VALUES (57, '2019-12-31 03:35:03.75948+00', '2019-12-31 03:35:03.771728+00', 2019, '"[[\"Implementing Partner\", \"AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT\"], [\"Vendor Number\", \"2500220006\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 5220.88], [\"Liquidations 1 OCT - 30 SEP\", 135509.21], [\"Cash Transfers Jan - Dec\", 17821.21], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 16); INSERT INTO [[schema]].hact_hacthistory VALUES (42, '2018-12-31 13:08:32.297112+00', '2019-02-07 18:16:32.061052+00', 2018, '"[[\"Implementing Partner\", \"EMDAD CHARITY SOCIETY\"], [\"Vendor Number\", \"2500236901\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 488776.0], [\"Liquidations 1 OCT - 30 SEP\", 488776.0], [\"Cash Transfers Jan - Dec\", 339650.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 1], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 38); INSERT INTO [[schema]].hact_hacthistory VALUES (43, '2018-12-31 13:08:32.335803+00', '2019-02-07 18:16:32.076924+00', 2018, '"[[\"Implementing Partner\", \"ESSAFA CENTRE FOR MENTAL HEALTH\"], [\"Vendor Number\", \"2500231382\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 369289.0], [\"Liquidations 1 OCT - 30 SEP\", 369289.0], [\"Cash Transfers Jan - Dec\", 533014.0], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 1], [\"Programmatic Visits Completed Q4\", 1], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 1); INSERT INTO [[schema]].hact_hacthistory VALUES (44, '2018-12-31 13:08:32.389324+00', '2019-02-07 18:16:32.093791+00', 2018, '"[[\"Implementing Partner\", \"INSTITUTE FOR ECONOMICS AND PEACE\"], [\"Vendor Number\", \"2500238223\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Low Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 160450.0], [\"Liquidations 1 OCT - 30 SEP\", 36450.0], [\"Cash Transfers Jan - Dec\", 213646.0], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 78); INSERT INTO [[schema]].hact_hacthistory VALUES (45, '2018-12-31 13:08:32.447576+00', '2019-02-07 18:16:32.113388+00', 2018, '"[[\"Implementing Partner\", \"ITALIAN COUNCIL FOR REFUGEES\"], [\"Vendor Number\", \"2500232640\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 255955.57], [\"Liquidations 1 OCT - 30 SEP\", 244549.57], [\"Cash Transfers Jan - Dec\", 181456.57], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 3); INSERT INTO [[schema]].hact_hacthistory VALUES (41, '2018-12-31 13:08:32.258778+00', '2019-02-07 18:16:32.045067+00', 2018, '"[[\"Implementing Partner\", \"EKRAA ASSEMBLY FOR DEVELOPMENT AND EDUCATION\"], [\"Vendor Number\", \"2500233196\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 90509.62], [\"Liquidations 1 OCT - 30 SEP\", 90447.31], [\"Cash Transfers Jan - Dec\", 90509.62], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 4); +INSERT INTO [[schema]].hact_hacthistory VALUES (58, '2019-12-31 03:35:03.79963+00', '2019-12-31 03:35:03.812922+00', 2019, '"[[\"Implementing Partner\", \"AL MOBADR ORGANIZATION FOR DEVELOPMENT AND CAPACITY BUILDING\"], [\"Vendor Number\", \"2500237369\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 520835.0], [\"Liquidations 1 OCT - 30 SEP\", 266435.0], [\"Cash Transfers Jan - Dec\", 520835.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 4], [\"Programmatic Visits Planned Q3\", 4], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 4], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 5], [\"Programmatic Visits Completed Q3\", 3], [\"Programmatic Visits Completed Q4\", 1], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 1], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 73); INSERT INTO [[schema]].hact_hacthistory VALUES (48, '2018-12-31 13:08:32.575751+00', '2019-02-07 18:16:32.162469+00', 2018, '"[[\"Implementing Partner\", \"LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK\"], [\"Vendor Number\", \"2500232253\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 562460.0], [\"Liquidations 1 OCT - 30 SEP\", 657429.0], [\"Cash Transfers Jan - Dec\", 334017.6], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 4], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 12); INSERT INTO [[schema]].hact_hacthistory VALUES (49, '2018-12-31 13:08:32.615341+00', '2019-02-07 18:16:32.179871+00', 2018, '"[[\"Implementing Partner\", \"LIBYA WOMEN S UNION TRIPOLI\"], [\"Vendor Number\", \"2500236520\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", -4601.1], [\"Liquidations 1 OCT - 30 SEP\", 20013.9], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 35); INSERT INTO [[schema]].hact_hacthistory VALUES (50, '2018-12-31 13:08:32.682275+00', '2019-02-07 18:16:32.196552+00', 2018, '"[[\"Implementing Partner\", \"MULTAKANA CENTER\"], [\"Vendor Number\", \"2500236298\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 55840.0], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 55840.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 2], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 37); INSERT INTO [[schema]].hact_hacthistory VALUES (51, '2018-12-31 13:08:32.722733+00', '2019-02-07 18:16:32.212022+00', 2018, '"[[\"Implementing Partner\", \"NATIONAL CENTRE OF DISEASE CONTROL\"], [\"Vendor Number\", \"2500235812\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 73913.14], [\"Liquidations 1 OCT - 30 SEP\", 72350.44], [\"Cash Transfers Jan - Dec\", 480420.14], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 5); INSERT INTO [[schema]].hact_hacthistory VALUES (47, '2018-12-31 13:08:32.537075+00', '2019-02-07 18:16:32.146443+00', 2018, '"[[\"Implementing Partner\", \"LIBYAN RED CRESCENT SOCIETY\"], [\"Vendor Number\", \"2500238097\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 48800.0], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 48800.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 74); +INSERT INTO [[schema]].hact_hacthistory VALUES (59, '2019-12-31 03:35:03.83886+00', '2019-12-31 03:35:03.850504+00', 2019, '"[[\"Implementing Partner\", \"ALNAHLA ORGANIZATION FOR EDUCATION AWARENESS AND FAMILY AFFAIRS\"], [\"Vendor Number\", \"2500231802\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 46226.0], [\"Liquidations 1 OCT - 30 SEP\", 161956.0], [\"Cash Transfers Jan - Dec\", 46226.0], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 13); INSERT INTO [[schema]].hact_hacthistory VALUES (54, '2018-12-31 13:08:32.853227+00', '2019-02-07 18:16:32.263372+00', 2018, '"[[\"Implementing Partner\", \"SHAIK TAHIR AZZAWI CHARITY ORGANIZATION\"], [\"Vendor Number\", \"2500231352\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 463522.5], [\"Liquidations 1 OCT - 30 SEP\", 588828.0], [\"Cash Transfers Jan - Dec\", 177769.48], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 6); INSERT INTO [[schema]].hact_hacthistory VALUES (55, '2018-12-31 13:08:32.92103+00', '2019-02-07 18:16:32.27899+00', 2018, '"[[\"Implementing Partner\", \"TUFTS UNIVERSITY\"], [\"Vendor Number\", \"2500217970\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 0.0], [\"Liquidations 1 OCT - 30 SEP\", 4410.0], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"Not Required\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 20); INSERT INTO [[schema]].hact_hacthistory VALUES (40, '2018-12-31 13:08:32.191199+00', '2019-02-07 18:16:32.002558+00', 2018, '"[[\"Implementing Partner\", \"CESVI COOPERAZIONE E SVILUPPO CESVI\"], [\"Vendor Number\", \"2500235018\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 103754.0], [\"Liquidations 1 OCT - 30 SEP\", 103753.75], [\"Cash Transfers Jan - Dec\", 288961.25], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 1], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 23); INSERT INTO [[schema]].hact_hacthistory VALUES (46, '2018-12-31 13:08:32.499247+00', '2019-02-07 18:16:32.129676+00', 2018, '"[[\"Implementing Partner\", \"LIBYAN ASSOCIATION FOR YOUTH AND DEVELOPMENT\"], [\"Vendor Number\", \"2500235600\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 50775.48], [\"Liquidations 1 OCT - 30 SEP\", 50775.48], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 21); INSERT INTO [[schema]].hact_hacthistory VALUES (53, '2018-12-31 13:08:32.81213+00', '2019-02-07 18:16:32.246505+00', 2018, '"[[\"Implementing Partner\", \"ORGANIZATION FOR PEACE AND DEVELOPMENT\"], [\"Vendor Number\", \"2500236521\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 23856.0], [\"Liquidations 1 OCT - 30 SEP\", 23856.0], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 36); +INSERT INTO [[schema]].hact_hacthistory VALUES (60, '2019-12-31 03:35:03.897052+00', '2019-12-31 03:35:03.908688+00', 2019, '"[[\"Implementing Partner\", \"AL SAFWA CHARITY ORGANISATION\"], [\"Vendor Number\", \"2500240059\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 49179.86], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 49179.86], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 85); +INSERT INTO [[schema]].hact_hacthistory VALUES (61, '2019-12-31 03:35:03.934104+00', '2019-12-31 03:35:03.945489+00', 2019, '"[[\"Implementing Partner\", \"ALTADAMON FOR REHABILITATION AND PSYCOSOCIAL SUPPORT\"], [\"Vendor Number\", \"2500238342\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 132900.0], [\"Liquidations 1 OCT - 30 SEP\", 259700.0], [\"Cash Transfers Jan - Dec\", 132900.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 3], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 79); +INSERT INTO [[schema]].hact_hacthistory VALUES (62, '2019-12-31 03:35:04.0442+00', '2019-12-31 03:35:04.073308+00', 2019, '"[[\"Implementing Partner\", \"BREEZES LIBYA\"], [\"Vendor Number\", \"2500233211\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", []], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 152566.96], [\"Liquidations 1 OCT - 30 SEP\", 68449.15], [\"Cash Transfers Jan - Dec\", 191946.39], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 2], [\"Programmatic Visits Completed Q3\", 1], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 17); +INSERT INTO [[schema]].hact_hacthistory VALUES (63, '2019-12-31 03:35:04.103858+00', '2019-12-31 03:35:04.121084+00', 2019, '"[[\"Implementing Partner\", \"CESVI COOPERAZIONE E SVILUPPO CESVI\"], [\"Vendor Number\", \"2500235018\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 364595.9], [\"Liquidations 1 OCT - 30 SEP\", 364596.15], [\"Cash Transfers Jan - Dec\", 756509.39], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 23); +INSERT INTO [[schema]].hact_hacthistory VALUES (64, '2019-12-31 03:35:04.187433+00', '2019-12-31 03:35:04.199658+00', 2019, '"[[\"Implementing Partner\", \"EKRAA ASSEMBLY FOR DEVELOPMENT AND EDUCATION\"], [\"Vendor Number\", \"2500233196\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", []], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 74237.25], [\"Liquidations 1 OCT - 30 SEP\", 89630.52], [\"Cash Transfers Jan - Dec\", 134731.95], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 1], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 4); +INSERT INTO [[schema]].hact_hacthistory VALUES (65, '2019-12-31 03:35:04.233054+00', '2019-12-31 03:35:04.248981+00', 2019, '"[[\"Implementing Partner\", \"EMDAD CHARITY SOCIETY\"], [\"Vendor Number\", \"2500236901\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 127580.0], [\"Liquidations 1 OCT - 30 SEP\", 36200.0], [\"Cash Transfers Jan - Dec\", 109480.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 2], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 4], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 38); +INSERT INTO [[schema]].hact_hacthistory VALUES (66, '2019-12-31 03:35:04.283043+00', '2019-12-31 03:35:04.307232+00', 2019, '"[[\"Implementing Partner\", \"ESSAFA CENTRE FOR MENTAL HEALTH\"], [\"Vendor Number\", \"2500231382\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 608043.0], [\"Liquidations 1 OCT - 30 SEP\", 482893.0], [\"Cash Transfers Jan - Dec\", 275179.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 3], [\"Programmatic Visits Planned Q2\", 3], [\"Programmatic Visits Planned Q3\", 3], [\"Programmatic Visits Planned Q4\", 3], [\"Programmatic Visits M.R\", 4], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 1); +INSERT INTO [[schema]].hact_hacthistory VALUES (67, '2019-12-31 03:35:04.368001+00', '2019-12-31 03:35:04.387765+00', 2019, '"[[\"Implementing Partner\", \"FREE FIELDS FOUNDATION\"], [\"Vendor Number\", \"2500240179\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 105207.0], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 204177.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 87); +INSERT INTO [[schema]].hact_hacthistory VALUES (68, '2019-12-31 03:35:04.462233+00', '2019-12-31 03:35:04.474016+00', 2019, '"[[\"Implementing Partner\", \"INSAN FOR CHARITY AND DEVELOPMENT\"], [\"Vendor Number\", \"2500239733\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 18175.29], [\"Liquidations 1 OCT - 30 SEP\", 18175.29], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"Not Required\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 83); +INSERT INTO [[schema]].hact_hacthistory VALUES (69, '2019-12-31 03:35:04.503008+00', '2019-12-31 03:35:04.514365+00', 2019, '"[[\"Implementing Partner\", \"INSTITUTE FOR ECONOMICS AND PEACE\"], [\"Vendor Number\", \"2500238223\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Low Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 53196.0], [\"Liquidations 1 OCT - 30 SEP\", 177196.0], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 7], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 78); +INSERT INTO [[schema]].hact_hacthistory VALUES (70, '2019-12-31 03:35:04.589297+00', '2019-12-31 03:35:04.601489+00', 2019, '"[[\"Implementing Partner\", \"ITALIAN COUNCIL FOR REFUGEES\"], [\"Vendor Number\", \"2500232640\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 6013.0], [\"Liquidations 1 OCT - 30 SEP\", 91918.0], [\"Cash Transfers Jan - Dec\", 6013.0], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 3); +INSERT INTO [[schema]].hact_hacthistory VALUES (71, '2019-12-31 03:35:04.642517+00', '2019-12-31 03:35:04.659493+00', 2019, '"[[\"Implementing Partner\", \"LIBYAN ASSOCIATION FOR YOUTH AND DEVELOPMENT\"], [\"Vendor Number\", \"2500235600\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 112554.0], [\"Liquidations 1 OCT - 30 SEP\", 112554.0], [\"Cash Transfers Jan - Dec\", 112554.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 21); +INSERT INTO [[schema]].hact_hacthistory VALUES (72, '2019-12-31 03:35:04.699088+00', '2019-12-31 03:35:04.712093+00', 2019, '"[[\"Implementing Partner\", \"LIBYAN RED CRESCENT SOCIETY\"], [\"Vendor Number\", \"2500238097\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 0.0], [\"Liquidations 1 OCT - 30 SEP\", 48800.0], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 74); +INSERT INTO [[schema]].hact_hacthistory VALUES (73, '2019-12-31 03:35:04.740465+00', '2019-12-31 03:35:04.753055+00', 2019, '"[[\"Implementing Partner\", \"LIBYAN SOCIETY FOR NATIONAL RECONCILATION CHARITY WORK\"], [\"Vendor Number\", \"2500232253\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 146187.5], [\"Liquidations 1 OCT - 30 SEP\", 77137.5], [\"Cash Transfers Jan - Dec\", 96189.9], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 1], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 12); +INSERT INTO [[schema]].hact_hacthistory VALUES (74, '2019-12-31 03:35:04.872628+00', '2019-12-31 03:35:04.885718+00', 2019, '"[[\"Implementing Partner\", \"MULTAKANA CENTER\"], [\"Vendor Number\", \"2500236298\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 32100.0], [\"Liquidations 1 OCT - 30 SEP\", 87940.0], [\"Cash Transfers Jan - Dec\", 96300.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 3], [\"Programmatic Visits Planned Q2\", 3], [\"Programmatic Visits Planned Q3\", 1], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 37); +INSERT INTO [[schema]].hact_hacthistory VALUES (75, '2019-12-31 03:35:04.911551+00', '2019-12-31 03:35:04.923511+00', 2019, '"[[\"Implementing Partner\", \"NATIONAL CENTRE OF DISEASE CONTROL\"], [\"Vendor Number\", \"2500235812\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 450000.0], [\"Liquidations 1 OCT - 30 SEP\", 451562.7], [\"Cash Transfers Jan - Dec\", 45000.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 5], [\"Programmatic Visits Completed Q3\", 1], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 5); +INSERT INTO [[schema]].hact_hacthistory VALUES (76, '2019-12-31 03:35:04.950322+00', '2019-12-31 03:35:04.962533+00', 2019, '"[[\"Implementing Partner\", \"NOOR ALHAYAT CHARITY ASSOCIATION\"], [\"Vendor Number\", \"2500238760\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 89668.0], [\"Liquidations 1 OCT - 30 SEP\", 98888.0], [\"Cash Transfers Jan - Dec\", 116728.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 3], [\"Programmatic Visits Planned Q2\", 3], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 4], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 81); +INSERT INTO [[schema]].hact_hacthistory VALUES (77, '2019-12-31 03:35:04.987414+00', '2019-12-31 03:35:04.998902+00', 2019, '"[[\"Implementing Partner\", \"NORWEGIAN REFUGEE COUNCIL\"], [\"Vendor Number\", \"2500233986\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 321230.0], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 321230.0], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 1], [\"Programmatic Visits Planned Q2\", 2], [\"Programmatic Visits Planned Q3\", 1], [\"Programmatic Visits Planned Q4\", 2], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 84); +INSERT INTO [[schema]].hact_hacthistory VALUES (78, '2019-12-31 03:35:05.066322+00', '2019-12-31 03:35:05.07845+00', 2019, '"[[\"Implementing Partner\", \"SCOUTS AND GUIDES HAY ALANDALUS TROOP\"], [\"Vendor Number\", \"2500240112\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 55436.34], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 104552.95], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 1], [\"Programmatic Visits Planned Q3\", 2], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 1], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 86); +INSERT INTO [[schema]].hact_hacthistory VALUES (79, '2019-12-31 03:35:05.104892+00', '2019-12-31 03:35:05.121029+00', 2019, '"[[\"Implementing Partner\", \"SHAIK TAHIR AZZAWI CHARITY ORGANIZATION\"], [\"Vendor Number\", \"2500231352\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 219161.98], [\"Liquidations 1 OCT - 30 SEP\", 119230.98], [\"Cash Transfers Jan - Dec\", 119231.0], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 3], [\"Programmatic Visits Planned Q2\", 3], [\"Programmatic Visits Planned Q3\", 3], [\"Programmatic Visits Planned Q4\", 1], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 10], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 6); -- @@ -9470,10 +9895,10 @@ INSERT INTO [[schema]].locations_cartodbtable VALUES (76, 'eTools', '965fc4960ed -- INSERT INTO [[schema]].locations_gatewaytype VALUES (70, 'Country', 0, '2019-02-07 15:50:46.478151+00', '2019-02-07 15:50:46.591053+00'); -INSERT INTO [[schema]].locations_gatewaytype VALUES (35, 'GeoDivision', NULL, '2019-02-07 15:50:46.478151+00', '2019-02-07 15:50:46.591053+00'); -INSERT INTO [[schema]].locations_gatewaytype VALUES (36, 'Mantika', NULL, '2019-02-07 15:50:46.478151+00', '2019-02-07 15:50:46.591053+00'); -INSERT INTO [[schema]].locations_gatewaytype VALUES (37, 'Baladiya', NULL, '2019-02-07 15:50:46.478151+00', '2019-02-07 15:50:46.591053+00'); -INSERT INTO [[schema]].locations_gatewaytype VALUES (38, 'Muhalla', NULL, '2019-02-07 15:50:46.478151+00', '2019-02-07 15:50:46.591053+00'); +INSERT INTO [[schema]].locations_gatewaytype VALUES (36, 'Mantika', 2, '2019-02-07 15:50:46.478151+00', '2020-02-04 15:02:59.458505+00'); +INSERT INTO [[schema]].locations_gatewaytype VALUES (38, 'Muhalla', 4, '2019-02-07 15:50:46.478151+00', '2020-02-04 15:03:06.540839+00'); +INSERT INTO [[schema]].locations_gatewaytype VALUES (37, 'Baladiya', 3, '2019-02-07 15:50:46.478151+00', '2020-02-04 15:07:36.006265+00'); +INSERT INTO [[schema]].locations_gatewaytype VALUES (35, 'GeoDivision', 1, '2019-02-07 15:50:46.478151+00', '2020-02-04 15:07:43.28782+00'); -- @@ -10284,40 +10709,40 @@ INSERT INTO [[schema]].partners_agreement VALUES (148, '2019-05-02 07:38:47.9789 INSERT INTO [[schema]].partners_agreement VALUES (115, '2018-05-24 16:27:58.821441+00', '2019-01-01 16:37:46.797481+00', 'PCA', 'LIB/PCA2018115', '[[schema]]/file_attachments/partner_organization/80/agreements/13._PCA_Legal_Agreement.pdf', '2017-12-28', '2018-12-31', '2017-12-28', '2017-12-28', 80, 65, 20024, 'ended', 1, 2018, false); INSERT INTO [[schema]].partners_agreement VALUES (114, '2018-05-04 08:52:47.306907+00', '2019-01-01 16:37:46.984837+00', 'PCA', 'LIB/PCA2018114', '[[schema]]/file_attachments/partner_organization/79/agreements/LIB/PCA2018114/Legal_document.pdf', '2018-04-04', '2018-12-31', '2018-04-04', '2018-04-04', 79, 64, 20024, 'ended', 1, 2018, false); INSERT INTO [[schema]].partners_agreement VALUES (131, '2018-12-23 13:06:21.803904+00', '2018-12-23 13:06:21.813943+00', 'PCA', 'LIB/PCA2019131', '', NULL, '2020-12-31', NULL, NULL, 79, NULL, NULL, 'draft', 34, 2019, false); -INSERT INTO [[schema]].partners_agreement VALUES (133, '2018-12-23 13:08:03.325052+00', '2019-01-13 11:53:26.148318+00', 'PCA', 'LIB/PCA2019133', '', '2019-01-01', '2020-12-31', '2019-01-01', '2018-12-31', 23, 18, NULL, 'signed', 34, 2019, false); +INSERT INTO [[schema]].partners_agreement VALUES (150, '2019-06-12 11:37:36.150006+00', '2020-02-11 15:07:19.831032+00', 'PCA', 'LIB/PCA2019150', '', '2019-04-09', '2020-12-31', '2019-04-09', '2019-04-09', 86, 72, 20024, 'signed', 34, 2019, false); INSERT INTO [[schema]].partners_agreement VALUES (136, '2019-01-13 12:47:13.353798+00', '2019-01-15 07:33:08.057028+00', 'PCA', 'LIB/PCA2019136', '', '2019-01-14', '2020-12-31', '2019-01-14', '2019-01-14', 81, 66, NULL, 'signed', 34, 2019, false); INSERT INTO [[schema]].partners_agreement VALUES (113, '2018-03-23 15:46:13.525324+00', '2019-01-01 16:37:47.207154+00', 'PCA', 'LIB/PCA2018113-01', '[[schema]]/file_attachments/partner_organization/38/agreements/12._PCA_Legal_Agreement.pdf', '2017-10-01', '2018-12-31', '2017-05-26', '2017-10-01', 38, 15, 20024, 'ended', 1, 2018, false); INSERT INTO [[schema]].partners_agreement VALUES (117, '2018-07-30 09:29:43.679366+00', '2018-08-09 16:06:49.658216+00', 'PCA', 'LIB/PCA2018117', '', NULL, '2018-12-31', NULL, NULL, 81, 66, 20024, 'draft', 1, 2018, false); INSERT INTO [[schema]].partners_agreement VALUES (139, '2019-03-07 09:33:48.154894+00', '2019-03-07 09:33:48.164811+00', 'SSFA', 'LIB/SSFA2019139', '', NULL, NULL, NULL, NULL, 8, NULL, NULL, 'draft', NULL, 2019, false); INSERT INTO [[schema]].partners_agreement VALUES (127, '2018-12-23 13:02:49.837339+00', '2019-01-13 11:57:29.56379+00', 'PCA', 'LIB/PCA2019127', '', '2019-01-01', '2020-12-31', '2018-12-31', '2018-12-29', 6, 10, NULL, 'signed', 34, 2019, false); INSERT INTO [[schema]].partners_agreement VALUES (135, '2018-12-23 13:08:56.353884+00', '2018-12-23 13:08:56.362023+00', 'PCA', 'LIB/PCA2019135', '', NULL, '2020-12-31', NULL, NULL, 78, NULL, NULL, 'draft', 34, 2019, false); -INSERT INTO [[schema]].partners_agreement VALUES (137, '2019-01-23 15:09:26.402176+00', '2019-01-23 15:17:58.478982+00', 'PCA', 'LIB/PCA2019137', '', '2019-01-06', '2020-12-31', '2019-01-06', '2019-01-06', 84, 67, NULL, 'signed', 34, 2019, false); INSERT INTO [[schema]].partners_agreement VALUES (138, '2019-02-28 10:22:45.092073+00', '2019-02-28 10:32:59.966216+00', 'SSFA', 'LIB/SSFA2019138', '', '2018-12-03', '2019-01-05', NULL, NULL, 83, NULL, NULL, 'ended', NULL, 2019, false); INSERT INTO [[schema]].partners_agreement VALUES (141, '2019-03-18 14:04:48.351895+00', '2019-04-04 08:43:42.438188+00', 'PCA', 'LIB/PCA2019141', '', '2019-04-02', '2020-12-31', '2019-04-02', '2019-04-02', 73, 56, NULL, 'signed', 34, 2019, false); INSERT INTO [[schema]].partners_agreement VALUES (93, '2017-08-17 14:33:57.241324+00', '2018-08-09 16:06:49.703734+00', 'SSFA', 'LIB/SSFA201720/TempRef:53', '', '2017-12-06', NULL, '2017-04-12', '2017-04-12', 36, 54, 13454, 'ended', 1, 2017, false); INSERT INTO [[schema]].partners_agreement VALUES (90, '2017-08-17 12:14:57.045034+00', '2018-08-09 16:06:49.708312+00', 'SSFA', 'LIB/SSFA201719', '[[schema]]/file_attachments/partner_organization/40/agreements/SSFA_Quddraty_-_Programme_Document_mfFNTch.pdf', '2017-08-01', '2018-01-31', '2017-07-12', '2017-07-10', 40, 52, 13454, 'ended', 1, 2017, false); INSERT INTO [[schema]].partners_agreement VALUES (142, '2019-03-21 11:59:15.436396+00', '2019-03-21 11:59:31.826725+00', 'PCA', 'LIB/PCA2019142', '', '2019-01-15', '2020-12-31', '2019-01-15', '2019-01-15', 79, 64, NULL, 'signed', 34, 2019, false); +INSERT INTO [[schema]].partners_agreement VALUES (137, '2019-01-23 15:09:26.402176+00', '2020-02-26 13:54:29.704724+00', 'PCA', 'LIB/PCA2019137', '', '2019-01-06', '2020-12-31', '2019-01-06', '2019-01-06', 84, 67, NULL, 'signed', 34, 2019, false); INSERT INTO [[schema]].partners_agreement VALUES (112, '2018-03-23 14:00:37.292342+00', '2019-01-01 16:37:47.391868+00', 'PCA', 'LIB/PCA2018112', '[[schema]]/file_attachments/partner_organization/74/agreements/09._PCA_Legal_Agreement.pdf', '2018-01-18', '2018-12-31', '2018-01-18', '2018-01-18', 74, 62, 20024, 'ended', 1, 2018, false); -INSERT INTO [[schema]].partners_agreement VALUES (145, '2019-04-13 23:12:45.234734+00', '2019-04-13 23:13:58.525843+00', 'PCA', 'LIB/PCA2019145', '', NULL, '2020-12-31', NULL, NULL, 74, 62, NULL, 'draft', 34, 2019, false); +INSERT INTO [[schema]].partners_agreement VALUES (156, '2020-02-12 09:57:15.857837+00', '2020-04-06 15:26:42.973062+00', 'PCA', 'LIB/PCA2020156', '', '2020-03-24', '2020-12-31', '2020-03-22', '2020-03-24', 74, 83, NULL, 'signed', 34, 2020, false); INSERT INTO [[schema]].partners_agreement VALUES (111, '2018-03-23 13:10:59.619526+00', '2019-01-01 16:37:47.601245+00', 'PCA', 'LIB/PCA2018111', '[[schema]]/file_attachments/partner_organization/78/agreements/11._PCA_Legal_Agreement.pdf', '2018-03-05', '2018-12-31', '2018-02-28', '2018-03-05', 78, 61, 20024, 'ended', 1, 2018, false); INSERT INTO [[schema]].partners_agreement VALUES (125, '2018-12-23 13:00:39.264202+00', '2019-08-04 10:59:33.044977+00', 'PCA', 'LIB/PCA2019125', '', '2019-01-01', '2020-12-31', '2019-01-01', '2019-01-01', 13, 19, NULL, 'signed', 34, 2019, false); INSERT INTO [[schema]].partners_agreement VALUES (109, '2018-03-23 10:49:22.355862+00', '2019-01-01 16:37:47.769737+00', 'PCA', 'LIB/PCA2018109', '[[schema]]/file_attachments/partner_organization/16/agreements/16._PCA_Legal_Agreement.pdf', '2017-12-29', '2018-12-31', '2017-12-22', '2017-12-29', 16, 57, 20024, 'ended', 1, 2018, false); -INSERT INTO [[schema]].partners_agreement VALUES (144, '2019-04-10 13:58:59.377109+00', '2019-05-21 12:48:23.326436+00', 'PCA', 'LIB/PCA2019144', '', '2019-05-20', '2020-12-31', '2019-05-20', '2019-05-12', 4, 11, NULL, 'signed', 34, 2019, false); +INSERT INTO [[schema]].partners_agreement VALUES (153, '2019-10-08 14:36:54.549825+00', '2020-01-16 11:50:14.261011+00', 'PCA', 'LIB/PCA2019153', '', '2019-09-30', '2020-12-31', '2019-09-30', '2019-09-30', 89, 74, NULL, 'signed', 34, 2019, false); INSERT INTO [[schema]].partners_agreement VALUES (104, '2018-01-18 11:10:12.788283+00', '2019-01-01 16:37:47.969364+00', 'PCA', 'LIB/PCA2018104', '[[schema]]/file_attachments/partner_organization/73/agreements/LIB/PCA2018104/16._PCA_Leagal_Agreement.pdf', '2017-07-26', '2018-12-31', '2017-07-26', '2017-07-17', 73, 56, 13454, 'ended', 1, 2018, false); INSERT INTO [[schema]].partners_agreement VALUES (56, '2017-07-30 19:39:29.333278+00', '2019-01-01 16:37:48.176767+00', 'PCA', 'LIB/PCA201717', '[[schema]]/file_attachments/partner_organization/13/agreements/PCA_Agreement.pdf', '2016-05-06', '2018-12-31', '2016-05-06', '2016-05-06', 13, 19, 13454, 'ended', 1, 2017, false); INSERT INTO [[schema]].partners_agreement VALUES (146, '2019-04-30 11:45:43.270826+00', '2019-05-21 13:35:20.243194+00', 'PCA', 'LIB/PCA2019146', '', '2019-05-20', '2020-12-31', '2019-05-20', '2019-05-19', 80, 65, NULL, 'signed', 34, 2019, false); INSERT INTO [[schema]].partners_agreement VALUES (55, '2017-07-30 18:47:59.995849+00', '2019-01-01 16:37:48.361301+00', 'PCA', 'LIB/PCA201716', '[[schema]]/file_attachments/partner_organization/23/agreements/PCA_Agreement_Vo9GNYg.pdf', '2016-04-13', '2018-12-31', '2016-04-13', '2016-04-13', 23, 18, 13454, 'ended', 1, 2017, false); INSERT INTO [[schema]].partners_agreement VALUES (149, '2019-05-26 12:43:12.777518+00', '2019-05-27 15:36:11.109115+00', 'PCA', 'LIB/PCA2019149', '', '2019-05-21', '2020-12-31', '2019-05-21', '2019-05-16', 87, 71, NULL, 'signed', 34, 2019, false); -INSERT INTO [[schema]].partners_agreement VALUES (153, '2019-10-08 14:36:54.549825+00', '2019-10-27 08:28:22.497367+00', 'PCA', 'LIB/PCA2019153', '', '2019-09-30', '2020-12-31', '2019-09-30', '2019-09-30', 89, 74, NULL, 'signed', 34, 2019, false); -INSERT INTO [[schema]].partners_agreement VALUES (150, '2019-06-12 11:37:36.150006+00', '2019-06-12 12:04:18.248158+00', 'PCA', 'LIB/PCA2019150', '', '2019-04-09', '2020-12-31', '2019-04-09', '2019-04-09', 86, 72, 20024, 'signed', 34, 2019, false); -INSERT INTO [[schema]].partners_agreement VALUES (155, '2019-11-12 09:28:41.625116+00', '2019-11-12 09:28:41.634838+00', 'PCA', 'LIB/PCA2019155', '', NULL, '2020-12-31', NULL, NULL, 16, NULL, NULL, 'draft', 34, 2019, false); +INSERT INTO [[schema]].partners_agreement VALUES (144, '2019-04-10 13:58:59.377109+00', '2020-01-15 12:54:12.624153+00', 'PCA', 'LIB/PCA2019144', '', '2019-05-20', '2020-12-31', '2019-05-20', '2019-05-12', 4, 11, NULL, 'signed', 34, 2019, false); +INSERT INTO [[schema]].partners_agreement VALUES (133, '2018-12-23 13:08:03.325052+00', '2020-01-16 11:54:00.571845+00', 'PCA', 'LIB/PCA2019133', '', '2019-01-01', '2020-12-31', '2019-01-01', '2018-12-31', 23, 18, NULL, 'signed', 34, 2019, false); INSERT INTO [[schema]].partners_agreement VALUES (152, '2019-09-25 09:13:14.207398+00', '2019-10-16 11:58:03.403821+00', 'PCA', 'LIB/PCA2019152', '', '2019-10-07', '2020-12-31', '2019-10-07', '2019-10-07', 88, 73, NULL, 'signed', 34, 2019, false); +INSERT INTO [[schema]].partners_agreement VALUES (155, '2019-11-12 09:28:41.625116+00', '2019-12-29 13:22:58.313507+00', 'PCA', 'LIB/PCA2019155', '', '2019-12-04', '2020-12-31', '2019-12-04', '2019-12-04', 16, 78, NULL, 'signed', 34, 2019, false); INSERT INTO [[schema]].partners_agreement VALUES (46, '2017-07-12 09:46:00.889068+00', '2018-08-09 16:06:49.738881+00', 'SSFA', 'LIB/SSFA201709/SSFA201702', '[[schema]]/file_attachments/partner_organization/38/agreements/LIB/SSFA201709/SSFA_signed.pdf', '2017-07-29', '2017-10-28', '2017-05-25', '2017-05-10', 38, 15, 13454, 'ended', 1, 2017, false); INSERT INTO [[schema]].partners_agreement VALUES (42, '2017-07-12 09:40:17.312733+00', '2018-08-09 16:06:49.752034+00', 'SSFA', 'LIB/SSFA201706/TempRef:20', '[[schema]]/file_attachments/partner_organization/37/agreements/Multakana_SSFA_2016.pdf', '2016-12-16', '2017-04-15', '2016-12-15', '2016-12-16', 37, 6, 13454, 'ended', 1, 2017, false); INSERT INTO [[schema]].partners_agreement VALUES (41, '2017-07-12 09:34:34.697093+00', '2018-09-06 15:46:34.834008+00', 'SSFA', 'LIB/SSFA201705/SSFA201703', '[[schema]]/file_attachments/partner_organization/35/agreements/LIB/SSFA201705/02.Letterhead.pdf', '2017-03-15', '2017-09-15', '2017-03-15', '2017-03-14', 35, 9, 13454, 'ended', 1, 2017, false); INSERT INTO [[schema]].partners_agreement VALUES (38, '2017-07-12 09:30:23.883645+00', '2018-09-06 15:46:35.204776+00', 'SSFA', 'LIB/SSFA201703/SSFA201701', '[[schema]]/file_attachments/partner_organization/39/agreements/02._Letterhead.pdf', '2017-06-20', '2017-10-19', '2017-06-20', '2017-06-16', 39, 2, 13454, 'ended', 1, 2017, false); INSERT INTO [[schema]].partners_agreement VALUES (122, '2018-10-16 09:33:17.966694+00', '2019-01-01 16:37:46.609024+00', 'PCA', 'LIB/PCA2018122', '', '2018-07-26', '2018-12-31', '2018-07-26', '2018-07-26', 37, 6, NULL, 'ended', 1, 2018, false); -INSERT INTO [[schema]].partners_agreement VALUES (147, '2019-04-30 11:51:44.037125+00', '2019-06-27 09:54:48.132253+00', 'PCA', 'LIB/PCA2019147', '', '2019-06-24', '2020-12-31', '2019-06-24', '2019-06-17', 17, 17, NULL, 'signed', 34, 2019, false); +INSERT INTO [[schema]].partners_agreement VALUES (147, '2019-04-30 11:51:44.037125+00', '2020-01-27 14:57:01.598159+00', 'PCA', 'LIB/PCA2019147', '', '2019-06-24', '2020-12-31', '2019-06-24', '2019-06-17', 17, 81, 20024, 'signed', 34, 2019, false); INSERT INTO [[schema]].partners_agreement VALUES (126, '2018-12-23 13:02:02.360222+00', '2019-01-13 11:47:36.257995+00', 'PCA', 'LIB/PCA2019126', '', '2019-01-01', '2020-12-31', '2019-01-01', '2018-12-31', 37, 6, NULL, 'signed', 34, 2019, false); INSERT INTO [[schema]].partners_agreement VALUES (52, '2017-07-28 13:01:03.732546+00', '2019-01-01 16:37:48.539774+00', 'PCA', 'LIB/PCA201714', '[[schema]]/file_attachments/partner_organization/17/agreements/LIB/PCA201714/PCA_Agreement_5.pdf', '2016-05-23', '2018-12-31', '2016-05-23', '2016-05-23', 17, 17, 13454, 'ended', 1, 2017, false); INSERT INTO [[schema]].partners_agreement VALUES (130, '2018-12-23 13:05:29.954772+00', '2019-01-13 11:48:35.763976+00', 'PCA', 'LIB/PCA2019130', '', '2019-01-01', '2020-12-31', '2018-12-31', '2018-12-31', 12, 16, NULL, 'signed', 34, 2019, false); @@ -10373,24 +10798,24 @@ INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (100, 136, INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (89, 130, 16); INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (90, 130, 63); INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (91, 131, 64); -INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (101, 137, 67); INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (102, 138, 68); -INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (94, 133, 18); -INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (95, 133, 59); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (124, 147, 81); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (125, 150, 82); INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (103, 139, 69); INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (110, 146, 65); INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (98, 135, 60); INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (99, 135, 61); INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (105, 142, 64); -INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (109, 145, 62); -INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (111, 147, 17); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (128, 137, 85); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (122, 153, 80); INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (108, 141, 56); -INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (112, 144, 11); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (123, 133, 75); INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (113, 149, 71); INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (114, 148, 70); -INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (115, 150, 72); INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (116, 152, 73); -INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (117, 153, 74); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (127, 156, 83); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (119, 155, 78); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (120, 144, 79); -- @@ -10401,6 +10826,12 @@ INSERT INTO [[schema]].partners_agreementamendment VALUES (2, '2018-11-05 13:28: INSERT INTO [[schema]].partners_agreementamendment VALUES (3, '2018-11-05 13:29:24.30499+00', '2018-11-05 13:29:24.333867+00', '02', '[[schema]]/file_attachments/partner_org/6/agreements/LIB/PCA201710/amendments/02/STACO_PSEA_Letter.pdf', '2018-10-21', 48, '{"Change in clause"}'); INSERT INTO [[schema]].partners_agreementamendment VALUES (4, '2018-11-25 17:23:26.665976+00', '2018-11-25 17:23:26.700404+00', '01', '[[schema]]/file_attachments/partner_org/38/agreements/LIB/PCA2018113/amendments/01/PCA_PSEA_Amendment.pdf', '2018-11-22', 113, '{"Change in clause"}'); INSERT INTO [[schema]].partners_agreementamendment VALUES (5, '2019-01-23 15:17:58.573395+00', '2019-01-23 15:17:58.582934+00', '01', '', '2019-01-06', 137, '{"Change in clause"}'); +INSERT INTO [[schema]].partners_agreementamendment VALUES (6, '2020-01-15 12:54:12.728528+00', '2020-01-15 12:54:12.728528+00', '01', '', '2019-05-20', 144, '{"Change authorized officer"}'); +INSERT INTO [[schema]].partners_agreementamendment VALUES (7, '2020-01-15 12:56:40.555516+00', '2020-01-15 12:56:40.555516+00', '01', '', '2019-06-24', 147, '{"Change authorized officer"}'); +INSERT INTO [[schema]].partners_agreementamendment VALUES (8, '2020-01-16 11:50:14.366119+00', '2020-01-16 11:50:14.366119+00', '01', '', '2019-09-30', 153, '{"Change authorized officer"}'); +INSERT INTO [[schema]].partners_agreementamendment VALUES (9, '2020-01-16 11:54:00.674441+00', '2020-01-16 11:54:00.674441+00', '01', '', '2019-01-01', 133, '{"Change authorized officer"}'); +INSERT INTO [[schema]].partners_agreementamendment VALUES (10, '2020-02-11 15:07:19.940524+00', '2020-02-11 15:07:19.940524+00', '01', '', '2019-04-09', 150, '{"Change authorized officer"}'); +INSERT INTO [[schema]].partners_agreementamendment VALUES (11, '2020-02-26 13:54:29.820628+00', '2020-02-26 13:54:29.820628+00', '02', '', '2020-02-26', 137, '{"Change authorized officer"}'); -- @@ -10410,6 +10841,12 @@ INSERT INTO [[schema]].partners_agreementamendment VALUES (5, '2019-01-23 15:17: INSERT INTO [[schema]].partners_assessment VALUES (1, 'Micro Assessment', '', NULL, '', '2017-07-12', NULL, '2017-05-30', 'high', '[[schema]]/file_attachments/partner_organizations/4/assesments/None/UNICEF_Libya_EQRAA_Assembly_for_Development_and_Education_-_Micro-assess....pdf', false, NULL, 4, NULL, '2018-03-15 16:57:08.62397+00', '2018-03-15 16:57:08.977576+00', true); INSERT INTO [[schema]].partners_assessment VALUES (2, 'Micro Assessment', '', NULL, '', '2017-08-11', NULL, '2017-08-04', 'high', '[[schema]]/file_attachments/partner_organizations/17/assesments/None/UNICEF_Libya_Breezes_-_Micro-assessment_report_-_final.pdf', true, NULL, 17, NULL, '2018-03-15 16:57:08.62397+00', '2018-03-15 16:57:08.977576+00', true); INSERT INTO [[schema]].partners_assessment VALUES (3, 'Micro Assessment', '', NULL, '', '2017-08-11', NULL, '2017-08-04', 'high', '[[schema]]/file_attachments/partner_organizations/13/assesments/None/UNICEF_Libya_Alnahla_2_-_Micro-assessment_report_-_final.pdf', true, NULL, 13, NULL, '2018-03-15 16:57:08.62397+00', '2018-03-15 16:57:08.977576+00', true); +INSERT INTO [[schema]].partners_assessment VALUES (36, 'Other', NULL, NULL, NULL, '2019-12-18', NULL, '2019-12-15', 'high', '', false, NULL, 90, NULL, '2019-12-18 14:45:57.049384+00', '2019-12-18 14:45:57.049384+00', true); +INSERT INTO [[schema]].partners_assessment VALUES (37, 'Other', NULL, NULL, NULL, '2019-12-18', NULL, '2019-12-08', 'high', '', false, NULL, 90, NULL, '2019-12-18 14:47:28.364973+00', '2019-12-18 14:47:28.364973+00', true); +INSERT INTO [[schema]].partners_assessment VALUES (38, 'Other', NULL, NULL, NULL, '2019-12-18', NULL, '2019-12-08', 'high', '', false, NULL, 90, NULL, '2019-12-18 14:47:59.014984+00', '2019-12-18 14:47:59.014984+00', true); +INSERT INTO [[schema]].partners_assessment VALUES (39, 'Other', NULL, NULL, NULL, '2020-01-13', NULL, '2019-12-15', 'high', '', false, NULL, 96, NULL, '2020-01-13 10:24:47.473816+00', '2020-01-13 10:24:47.473816+00', true); +INSERT INTO [[schema]].partners_assessment VALUES (40, 'Other', NULL, NULL, NULL, '2020-01-13', NULL, '2019-05-12', 'high', '', false, NULL, 96, NULL, '2020-01-13 10:25:59.621885+00', '2020-01-13 10:25:59.621885+00', true); +INSERT INTO [[schema]].partners_assessment VALUES (41, 'Other', NULL, NULL, NULL, '2020-01-13', NULL, '2019-05-06', 'high', '', false, NULL, 96, NULL, '2020-01-13 10:29:14.550825+00', '2020-01-13 10:29:14.550825+00', true); -- @@ -10472,6 +10909,10 @@ INSERT INTO [[schema]].partners_corevaluesassessment VALUES (5, '2018-08-09 16:0 INSERT INTO [[schema]].partners_corevaluesassessment VALUES (55, '2019-11-08 16:52:25.257447+00', '2019-11-08 16:52:25.257447+00', '2019-03-19', '', false, 16); INSERT INTO [[schema]].partners_corevaluesassessment VALUES (20, '2018-08-09 16:06:51.224024+00', '2018-08-09 16:06:51.224516+00', '2014-10-30', 'partners/core_values/07._Annex_E_Partner_Declaration_FormESAFA.pdf', true, 1); INSERT INTO [[schema]].partners_corevaluesassessment VALUES (56, '2019-11-12 15:16:51.543263+00', '2019-11-12 15:16:51.543263+00', '2019-05-11', '', false, 1); +INSERT INTO [[schema]].partners_corevaluesassessment VALUES (57, '2019-11-27 10:02:28.045684+00', '2019-11-27 10:02:28.045684+00', NULL, '', false, 93); +INSERT INTO [[schema]].partners_corevaluesassessment VALUES (58, '2019-12-22 11:37:19.427252+00', '2019-12-22 11:37:19.427252+00', NULL, '', false, 94); +INSERT INTO [[schema]].partners_corevaluesassessment VALUES (59, '2019-12-22 11:37:40.923774+00', '2019-12-22 11:37:40.923774+00', NULL, '', false, 95); +INSERT INTO [[schema]].partners_corevaluesassessment VALUES (60, '2020-01-13 08:46:52.929853+00', '2020-01-13 08:46:52.929853+00', NULL, '', false, 96); -- @@ -10497,64 +10938,69 @@ INSERT INTO [[schema]].partners_filetype VALUES (75, 'Other'); -- Data for Name: partners_intervention; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].partners_intervention VALUES (58, '2018-01-31 10:39:55.245059+00', '2018-09-11 04:00:49.204763+00', 'PD', 'LIB/PCA201707/PD201858-1', 'Provision of non-formal and formal education in 10 schools in Benghazi and its peripheries to increase access to education in conflict affected areas', 'closed', '2016-12-02', '2018-09-10', '2016-10-03', NULL, NULL, '', '2016-12-02', '2016-12-02', '', 43, 11, 13454, '[[schema]]/file_attachments/partner_organization/4/agreements/43/interventions/58/prc/ECHO_-_Ekraa_Program_Document_10_Nov._2016_-_10_May_2018_X4Iz8aZ.pdf', 1, false, '{}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (64, '2018-03-23 16:39:20.213824+00', '2018-09-06 15:46:34.122225+00', 'HPD', 'LIB/PCA201710/SHPD201864', 'Technical Assessment of 10 conflict-affected schools in Musrata city', 'closed', '2018-02-28', '2018-04-28', '2017-12-18', '2017-12-29', '2018-01-04', '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/64/prc/04._Annex_G_Submission_Form.pdf', '2018-02-28', '2018-02-28', '', 48, 10, 20024, '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/64/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (72, '2018-06-01 08:48:56.613888+00', '2019-01-22 16:39:11.857652+00', 'PD', 'LIB/PCA201712/PD201872', 'Third Party monitoring and support of UNICEF Partnerships and capacity building for Libyan Organizations to take up the Third Party monitoring', 'closed', '2018-05-29', '2018-11-28', NULL, NULL, NULL, '', '2018-05-24', '2018-05-29', NULL, 50, 7, 20024, '[[schema]]/file_attachments/partner_organization/3/agreements/50/interventions/72/prc/Annex_C_Programme_document.pdf', 1, false, '{}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (59, '2018-03-23 10:55:44.713108+00', '2018-09-20 14:08:42.428187+00', 'PD', 'LIB/PCA2018109/PD201859', 'Key challenges and coping strategies of refugee and migrant children in Libya', 'ended', '2017-12-29', '2018-06-28', '2017-10-07', '2017-10-07', '2017-10-30', '[[schema]]/file_attachments/partner_organization/16/agreements/109/interventions/59/prc/04._Annex_G_Submission_Form_wV1uP8n.pdf', '2017-12-22', '2017-10-07', '', 109, 57, 20024, '[[schema]]/file_attachments/partner_organization/16/agreements/109/interventions/59/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2018, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (102, '2019-09-10 17:45:24.043034+00', '2019-10-28 09:37:33.738653+00', 'PD', 'LIB/PCA2019133/PD2019102', 'Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.', 'signed', '2019-10-01', '2020-09-30', '2019-04-30', '2019-08-05', '2019-09-17', '', '2019-09-25', '2019-09-25', NULL, 133, 59, 20024, '', 34, false, '{}', false, 2019, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (105, '2019-11-06 14:45:24.6474+00', '2019-11-06 14:45:24.658126+00', 'PD', 'LIB/PCA2019153/PD2019105', 'Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.', 'draft', NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, 153, NULL, NULL, '', 34, false, '{}', false, 2019, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (67, '2018-04-20 08:43:06.156099+00', '2018-11-01 04:01:53.031058+00', 'PD', 'LIB/PCA201702/PD201867-1', 'Specialized psychological support for IDPs children in Sebha, Benghazi and Tripoli.', 'ended', '2017-10-05', '2018-10-31', '2017-07-01', '2017-07-01', '2017-09-20', '[[schema]]/file_attachments/partner_organization/1/agreements/34/interventions/67/prc/04._Annex_G_Submission_Form.pdf', '2017-10-05', '2017-10-05', '', 34, 1, 20024, '[[schema]]/file_attachments/partner_organization/1/agreements/34/interventions/67/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (61, '2018-03-23 14:56:29.988563+00', '2018-09-06 15:46:34.237846+00', 'PD', 'LIB/PCA2018112/PD201861', 'Emergency Response to Derna crisis (Child protection, Education and WASH)', 'ended', '2018-01-18', '2018-07-17', '2017-10-01', '2017-10-02', '2018-01-17', '[[schema]]/file_attachments/partner_organization/74/agreements/112/interventions/61/prc/04._Annex_G_Submission_Form.pdf', '2018-01-18', '2018-01-18', '', 112, 62, 20024, '[[schema]]/file_attachments/partner_organization/74/agreements/112/interventions/61/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2018, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (60, '2018-03-23 13:17:57.298362+00', '2019-03-05 23:37:09.001359+00', 'PD', 'LIB/PCA2018111/PD201860', 'Positive Peace Workshop', 'ended', '2018-03-05', '2019-03-04', '2018-01-31', '2018-01-31', '2018-02-08', '[[schema]]/file_attachments/partner_organization/78/agreements/111/interventions/60/prc/04._Annex_G_Submission_Form_fpJafER.pdf', '2018-02-27', '2018-03-05', '', 111, 61, 20024, '[[schema]]/file_attachments/partner_organization/78/agreements/111/interventions/60/prc/02._Annex_C_Program_Document_DwBkHnF.pdf', 1, false, '{}', false, 2018, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (56, '2018-01-18 11:43:23.062599+00', '2018-11-15 04:01:35.259049+00', 'PD', 'LIB/PCA2018104/PD201856-2', 'Youth Participation and Civic Engagement', 'ended', '2017-07-26', '2018-11-14', '2017-06-02', '2017-06-02', '2017-06-02', '[[schema]]/file_attachments/partner_organization/73/agreements/104/interventions/56/prc/04._Annex_G_Submission_Form.pdf', '2017-07-26', '2017-07-17', '', 104, 56, 13454, '[[schema]]/file_attachments/partner_organization/73/agreements/104/interventions/56/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2018, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (91, '2019-04-18 11:09:06.600993+00', '2019-04-18 11:09:06.610672+00', 'PD', 'LIB/PCA2019145/PD201991', 'Prepositioning of Emergency Supplies and Rapid Emergency Response', 'draft', NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, 145, NULL, NULL, '', 34, false, '{}', false, 2019, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (94, '2019-05-05 07:42:39.007879+00', '2019-06-23 14:11:27.251299+00', 'PD', 'LIB/PCA2019146/PD201994', 'Integrated Education and Psychosocial Support in Sabratha', 'active', '2019-05-20', '2020-05-20', '2019-01-10', '2019-05-15', '2019-05-15', '', '2019-05-20', '2019-05-19', NULL, 146, 65, 20024, '', 34, false, '{}', false, 2019, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (62, '2018-03-23 15:48:40.965537+00', '2018-09-30 14:07:44.480775+00', 'PD', 'LIB/PCA2018113/PD201862-1', 'Rehabilitation of water and sanitation facilities in 13 conflict-affected schools in Sirt', 'closed', '2017-10-01', '2018-06-30', '2017-08-07', '2017-08-07', '2017-08-24', '[[schema]]/file_attachments/partner_organization/38/agreements/113/interventions/62/prc/06._Annex_G_Submission_Form_vCYZnXm.pdf', '2017-09-26', '2017-10-01', '', 113, 15, 20024, '[[schema]]/file_attachments/partner_organization/38/agreements/113/interventions/62/prc/02._Annex_C_Program_Document_LzTQH5L.pdf', 1, false, '{}', false, 2018, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (73, '2018-07-09 10:04:18.693029+00', '2019-01-09 16:39:10.231649+00', 'PD', 'LIB/PCA201711/PD201773', 'Multisectoral emergency response to IDPs in camps and Derna', 'ended', '2018-07-08', '2019-01-08', '2018-06-29', '2018-06-29', '2018-07-04', '[[schema]]/file_attachments/partner_organization/12/agreements/49/interventions/73/prc/04._Annex_G_Submission_Form.pdf', '2018-07-08', '2018-07-08', NULL, 49, 16, 20024, '[[schema]]/file_attachments/partner_organization/12/agreements/49/interventions/73/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (68, '2018-04-20 10:13:35.999264+00', '2018-10-23 09:18:17.378912+00', 'PD', 'LIB/PCA201711/PD201868', 'Emergency WASH assistance to Tawergha returnees in Bani Waleed Municipality', 'ended', '2018-02-27', '2018-04-26', '2018-02-08', '2018-02-08', '2018-02-23', '[[schema]]/file_attachments/partner_organization/12/agreements/49/interventions/68/prc/04._Annex_G_Submission_Form.pdf', '2018-02-27', '2018-02-27', '', 49, 16, 20024, '[[schema]]/file_attachments/partner_organization/12/agreements/49/interventions/68/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (95, '2019-05-27 11:05:44.247757+00', '2019-10-14 08:37:39.17456+00', 'PD', 'LIB/PCA2019149/PD201995', 'Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya', 'active', '2019-05-21', '2020-05-20', '2019-04-22', '2019-05-09', '2019-05-15', '', '2019-05-21', '2019-05-16', NULL, 149, 71, 20024, '', 34, false, '{}', false, 2019, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (101, '2019-06-16 11:10:40.175484+00', '2019-07-09 10:53:57.180666+00', 'PD', 'LIB/PCA2019130/PD2019101', 'Placeholder - to be updated', 'active', '2019-06-01', '2019-12-31', '2019-05-10', NULL, NULL, '', '2019-06-01', '2019-06-01', NULL, 130, 16, 20024, '', 34, false, '{}', false, 2019, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (77, '2018-09-24 07:23:07.860075+00', '2019-10-01 08:57:41.826327+00', 'PD', 'LIB/PCA201710/PD201877-1', 'Prepositioning of Emergency Supplies stocks and Rapid Response Mechanism (RRM)', 'active', '2018-10-25', '2020-04-24', '2018-09-26', '2018-09-27', '2018-10-02', '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/77/prc/STACO_-_Annex_G..pdf', '2018-10-25', '2018-10-25', NULL, 48, 10, 20024, '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/77/prc/STACO_-_Annex_C..pdf', 1, false, '{}', false, 2018, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (93, '2019-05-02 07:46:38.083511+00', '2019-10-21 03:55:48.131991+00', 'SSFA', 'LIB/SSFA2019148', 'Education Support to the Vulnernable Children in South Libya', 'ended', '2019-05-25', '2019-10-20', '2019-05-20', NULL, NULL, '', '2019-05-20', '2019-05-25', NULL, 148, 70, 20024, '', 34, false, '{}', false, NULL, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (6, '2017-07-12 11:30:32.547177+00', '2018-10-29 10:58:31.947491+00', 'PD', 'LIB/PCA201712/PD201701', 'Third party monitoring and support of UNICEF partnerships with civil society organizations and relative programs in Libya (LIB/PCA201712)', 'ended', '2017-03-03', '2017-12-31', '2017-01-01', '2017-01-01', '2017-07-27', '[[schema]]/file_attachments/partner_organization/3/agreements/50/interventions/6/prc/04._Annex_G_Submission_Form.pdf', '2017-03-03', '2017-03-03', '', 50, 7, 13454, '[[schema]]/file_attachments/partner_organization/3/agreements/50/interventions/6/prc/CIR_PME.pdf', 1, false, '{}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (57, '2018-01-31 10:30:10.861972+00', '2018-09-06 15:46:34.46949+00', 'SSFA', 'LIB/SSFA201719', 'Education in Emergencies programme for Sirte Response', 'closed', '2017-08-01', '2018-01-31', '2017-07-03', NULL, NULL, '', '2017-07-12', '2017-07-12', '', 90, 52, 13454, '[[schema]]/file_attachments/partner_organization/40/agreements/90/interventions/57/prc/SSFA_Quddraty_-_Programme_Document.pdf', 1, false, '{}', false, NULL, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (104, '2019-10-24 10:12:53.255763+00', '2019-10-27 08:33:00.606775+00', 'PD', 'LIB/PCA2019153/PD2019104', 'Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre', 'signed', '2019-11-01', '2020-10-14', '2019-08-02', '2019-08-08', '2019-09-25', '', '2019-10-23', '2019-10-23', NULL, 153, 74, 20024, '', 34, false, '{}', false, 2019, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (20, '2017-07-30 20:27:53.066852+00', '2018-09-06 15:46:34.648568+00', 'SSFA', 'LIB/SSFA201706/TempRef:20', 'Community and schools based child protection and psychological support project', 'closed', '2016-12-16', '2017-04-15', '2016-11-23', NULL, NULL, '', '2016-12-15', '2016-12-16', '', 42, 6, 13454, '[[schema]]/file_attachments/partner_organization/37/agreements/42/interventions/20/prc/1._Letterhead.pdf', 1, false, '{}', false, NULL, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (19, '2017-07-30 19:57:46.841722+00', '2018-09-06 15:46:34.708145+00', 'PD', 'LIB/PCA201717/PD201606', 'Community based child protection and psychological support project in Janzour', 'ended', '2016-05-06', '2017-05-05', '2016-03-01', '2016-03-01', '2016-05-05', '', '2016-05-06', '2016-05-06', '', 56, 19, 13454, '[[schema]]/file_attachments/partner_organization/13/agreements/56/interventions/19/prc/PCA_Program_Document.pdf', 1, false, '{"migrated": true, "old_status": "implemented"}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (18, '2017-07-30 18:59:48.854391+00', '2018-09-06 15:46:34.767793+00', 'PD', 'LIB/PCA201716/PD201605', 'Psychological emergency response and recreational activities for children exposed to violence in Benghazi and Tripoli', 'closed', '2016-04-13', '2017-04-12', '2016-03-01', '2016-03-31', '2016-04-01', '', '2016-04-13', '2016-04-13', '', 55, 18, 13454, '[[schema]]/file_attachments/partner_organization/23/agreements/53/interventions/18/prc/Program_Document.pdf', 1, false, '{"migrated": true, "old_status": "implemented"}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (17, '2017-07-30 18:18:32.973163+00', '2018-09-06 15:46:34.842922+00', 'SSFA', 'LIB/SSFA201705/SSFA201703', 'Community based child protection and psychological support programme in Sirte', 'closed', '2017-03-15', '2017-09-15', '2017-01-09', NULL, NULL, '', '2017-03-15', '2017-03-14', '', 41, 9, 13454, '[[schema]]/file_attachments/partner_organization/35/agreements/41/interventions/17/prc/02.Letterhead.pdf', 1, false, '{"migrated": true, "old_status": "implemented"}', false, NULL, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (10, '2017-07-27 16:44:35.51629+00', '2018-09-06 15:46:35.212887+00', 'SSFA', 'LIB/SSFA201703/SSFA201701', 'Immediate support to provide safe environment and hygienic conditions in Tripoli IDP camps', 'closed', '2017-06-20', '2017-10-19', '2017-06-14', NULL, NULL, '', '2017-06-20', '2017-06-16', '', 38, 2, 13454, '[[schema]]/file_attachments/partner_organization/39/agreements/38/interventions/10/prc/02._Letterhead.pdf', 1, false, '{}', false, NULL, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (9, '2017-07-27 16:31:02.140856+00', '2018-09-06 15:46:35.270577+00', 'SSFA', 'LIB/SSFA201709/SSFA201702', 'Distribution of Hygiene Kits to most affected families in Sirte', 'closed', '2017-07-29', '2017-10-28', '2017-05-02', NULL, NULL, '', '2017-05-29', '2017-05-10', '', 46, 15, 13454, '[[schema]]/file_attachments/partner_organization/38/agreements/46/interventions/9/prc/02._Letterhead.pdf', 1, false, '{}', false, NULL, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (7, '2017-07-13 10:46:10.955921+00', '2018-09-06 15:46:35.386696+00', 'PD', 'LIB/PCA201710/PD201702', 'Technical Assessment of 23 Conflict-Affected schools in Tawargha City.', 'ended', '2017-02-07', '2017-12-31', '2016-10-14', '2016-10-14', '2017-01-25', '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/7/prc/Annex_G_Submission_Form.pdf', '2017-02-07', '2017-01-26', '', 48, 10, 13454, '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/7/prc/Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (85, '2019-01-13 12:53:25.028996+00', '2019-03-25 13:16:59.665267+00', 'PD', 'LIB/PCA2019124/PD201985', 'Specialized Psychosocial Suppport for vulnerable children in Sebha, Benghazi, and Tripoli', 'active', '2019-01-01', '2019-12-22', '2018-09-20', '2018-12-13', '2018-12-19', '', '2018-12-23', '2018-12-23', NULL, 124, 1, 11490, '', 34, false, '{}', false, 2019, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (8, '2017-07-27 15:18:39.160422+00', '2018-09-21 13:21:36.054664+00', 'PD', 'LIB/PCA201711/PD201703', 'Emergency WASH Assistance to vulnerable people in Benghazi with a focus on children', 'closed', '2017-04-02', '2017-12-01', '2017-03-16', '2017-03-16', '2017-03-16', '[[schema]]/file_attachments/partner_organization/12/agreements/49/interventions/None/prc/04._Annex_G_Submission_Form.pdf', '2017-03-24', '2017-04-02', '', 49, 16, 13454, '[[schema]]/file_attachments/partner_organization/12/agreements/49/interventions/None/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (5, '2017-07-12 11:15:37.40984+00', '2018-10-23 09:02:03.629479+00', 'PD', 'LIB/PCA201710/PD201706', 'Rehabilitation of water and sanitation infrastructure in affected schools and health facilities in Tripoli, Sabha, Ubaria, Libya. (PCA/LIBYA/WASG/2017/07)', 'ended', '2017-07-15', '2017-12-15', '2017-03-30', '2017-03-30', '2017-03-30', '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/5/prc/04._Annex_G_Submission_Form.pdf', '2017-04-04', '2017-04-04', '', 48, 10, 13454, '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/5/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (11, '2017-07-28 11:56:22.136576+00', '2018-10-05 04:01:20.132342+00', 'PD', 'LIB/PCA201704/PD201704-2', 'Conflict-affected children and adolescents are provided with access to quality education in schools or other safe learning environments', 'closed', '2017-04-20', '2018-09-30', '2017-03-28', '2017-03-28', '2017-03-30', '[[schema]]/file_attachments/partner_organization/21/agreements/40/interventions/None/prc/04._Annex_G_Submission_Form.pdf', '2017-03-31', '2017-04-20', '', 40, 8, 13454, '[[schema]]/file_attachments/partner_organization/21/agreements/40/interventions/None/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (66, '2018-04-20 08:24:43.321012+00', '2018-10-31 04:01:33.687799+00', 'PD', 'LIB/PCA201717/PD201866-1', 'Community based child protection and psychosocial support project in Janzour', 'ended', '2017-09-01', '2018-10-30', '2017-07-01', '2017-07-01', '2017-08-17', '[[schema]]/file_attachments/partner_organization/13/agreements/56/interventions/66/prc/04._Annex_G_Submission_Form.pdf', '2017-07-31', '2017-08-31', '', 56, 19, 20024, '[[schema]]/file_attachments/partner_organization/13/agreements/56/interventions/66/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (86, '2019-02-28 10:25:52.674925+00', '2019-02-28 10:32:59.974067+00', 'SSFA', 'LIB/SSFA2019138', 'Awareness creation for Measles, Rubella, and Polio vaccination, and vitamin A supplementary activities', 'ended', '2018-12-03', '2019-01-05', '2018-11-25', NULL, NULL, '', '2018-12-03', '2018-12-03', NULL, 138, 68, 20024, '', 34, false, '{}', false, 2019, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (81, '2018-10-30 13:28:37.756581+00', '2019-09-08 03:55:22.025907+00', 'PD', 'LIB/PCA201717/PD201881', 'Transitional center for vulnerable unaccompanied migrant children in Janzour', 'ended', '2018-09-08', '2019-09-07', '2018-03-29', '2018-04-23', '2018-04-27', '', '2018-09-06', '2018-08-07', NULL, 56, 19, 20024, '', 1, false, '{}', false, 2018, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (82, '2018-12-05 14:18:54.147597+00', '2019-03-03 15:01:06.418808+00', 'PD', 'LIB/PCA201711/PD201782-1', 'Emergency WASH assistance to vulnerable people in Benghazi and refugee assembly points with focus on children amended PCA', 'ended', '2017-04-01', '2017-12-31', '2017-03-16', '2017-03-16', '2017-03-17', '[[schema]]/file_attachments/partner_organization/12/agreements/49/interventions/82/prc/04._Annex_G_Submission_Form.pdf', '2017-03-23', '2017-03-23', NULL, 49, 16, 13454, '[[schema]]/file_attachments/partner_organization/12/agreements/49/interventions/82/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (78, '2018-09-26 12:25:49.324557+00', '2019-01-01 16:40:05.466015+00', 'PD', 'LIB/PCA201707/PD201678-2', 'Provision of Formal and Non-Formal Education in ten schools in Benghazi and its periphery to increase access to formal and non-formal education in conflict-affected areas', 'ended', '2016-12-10', '2018-12-31', '2016-10-03', '2016-10-03', '2016-10-27', '[[schema]]/file_attachments/partner_organization/4/agreements/43/interventions/78/prc/04._Annex_G_Submission_Form.pdf', '2016-12-02', '2016-12-02', '', 43, 11, 13454, '[[schema]]/file_attachments/partner_organization/4/agreements/43/interventions/78/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2016, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (70, '2018-05-24 16:31:18.610552+00', '2019-02-12 15:41:30.141754+00', 'PD', 'LIB/PCA2018115/PD201870', 'Integrated education and psychological support response in Sebratha', 'closed', '2017-12-28', '2018-12-27', '2017-10-30', '2017-12-07', '2017-12-07', '[[schema]]/file_attachments/partner_organization/80/agreements/115/interventions/70/prc/04._Annex_G_Submission_Form.pdf', '2017-12-28', '2017-12-28', '', 115, 65, 20024, '[[schema]]/file_attachments/partner_organization/80/agreements/115/interventions/70/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2018, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (87, '2019-03-04 07:33:13.963343+00', '2019-03-04 07:40:45.515421+00', 'PD', 'LIB/PCA2019137/PD201987', 'Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi', 'active', '2019-01-06', '2019-12-31', '2018-10-12', '2018-11-11', '2018-11-21', '', '2019-01-06', '2019-01-06', NULL, 137, 67, 20024, '', 34, false, '{}', false, 2019, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (80, '2018-10-24 14:54:02.766703+00', '2019-08-08 03:55:09.750021+00', 'PD', 'LIB/PCA2018122/PD201880', 'Provision of psychosocial support and non-formal education for vulnerable migrant and IDP children', 'closed', '2018-07-26', '2019-07-25', '2018-05-24', '2018-05-24', '2018-06-14', '[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Multakana_MoM.pdf', '2018-07-26', '2018-07-26', NULL, 122, 6, 20024, '[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Annex_c_multakana_PD.pdf', 1, false, '{}', false, 2018, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (90, '2019-04-10 14:00:56.819427+00', '2019-06-23 14:15:12.496519+00', 'PD', 'LIB/PCA2019144/PD201990', 'Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas', 'active', '2019-05-20', '2020-04-30', '2019-04-02', '2019-04-23', '2019-04-23', '', '2019-05-20', '2019-05-12', NULL, 144, 11, 20024, '', 34, false, '{}', false, 2019, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (76, '2018-09-12 15:44:23.932842+00', '2019-09-05 14:01:59.821129+00', 'PD', 'LIB/PCA2018113/PD201876-1', 'Distribution of High Energy Biscuits (HEB) among vulnerable group in Detention Centres and Misrata prison in Libya', 'active', '2018-09-20', '2019-12-31', '2018-09-13', '2018-09-13', '2018-09-16', '[[schema]]/file_attachments/partner_organization/38/agreements/113/interventions/76/prc/Annex_G._Alemdad_Signed_4G54U8K.pdf', '2018-09-20', '2018-09-20', NULL, 113, 15, 20024, '[[schema]]/file_attachments/partner_organization/38/agreements/113/interventions/76/prc/Annex_C._Programme_Document_evBrUWs.pdf', 1, false, '{}', false, 2018, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (83, '2018-12-05 15:02:01.074957+00', '2018-12-05 15:22:05.353838+00', 'PD', 'LIB/PCA2018113/PD201883-1', 'Rehabilitation of water and sanitation facilities in 13 conflict affected schools in Sirt', 'signed', '2017-10-01', '2018-06-30', '2017-08-17', '2017-08-24', '2017-08-24', '', '2017-08-25', '2017-08-25', NULL, 113, 15, 20024, '[[schema]]/file_attachments/partner_organization/38/agreements/113/interventions/83/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2018, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (74, '2018-07-12 08:33:11.209728+00', '2019-04-10 13:38:20.455246+00', 'PD', 'LIB/PCA201710/PD201774-2', 'Improving learning environment through rehabilitation 2 schools in Murzuque', 'active', '2018-08-14', '2019-12-31', '2018-05-20', '2018-06-03', '2018-06-06', '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/74/prc/05._PD201774_-_Annex_G._Submission_Form.pdf', '2018-08-14', '2018-08-12', NULL, 48, 10, 11490, '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/74/prc/02._PD201774_-_Programme_Document.pdf', 1, false, '{}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (69, '2018-05-04 09:01:37.398636+00', '2019-07-01 03:55:16.973129+00', 'PD', 'LIB/PCA2018114/PD201869-1', 'Provision community based reintegration services to children/adolescents affected by conflict in Al Zintan Municipal Council Area', 'ended', '2018-04-04', '2019-06-30', '2017-11-01', '2018-03-09', '2018-03-15', '[[schema]]/file_attachments/partner_organization/79/agreements/114/interventions/69/prc/Annex_G_-_PRC_Submission_Review_and_Approval_form.pdf', '2018-04-04', '2018-04-04', NULL, 114, 64, 20024, '[[schema]]/file_attachments/partner_organization/79/agreements/114/interventions/69/prc/Annex_C-_Programme_Document.pdf', 1, false, '{}', false, 2018, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (92, '2019-04-30 12:04:33.530326+00', '2019-07-14 14:11:42.8936+00', 'PD', 'LIB/PCA2019147/PD201992', 'Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas', 'active', '2019-06-24', '2020-06-24', '2019-06-11', '2019-06-11', '2019-06-12', '', '2019-06-24', '2019-06-17', NULL, 147, 17, 20024, '', 34, false, '{}', false, 2019, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (65, '2018-03-28 10:49:00.412787+00', '2019-10-28 08:33:17.286566+00', 'PD', 'LIB/PCA201716/PD201865-2', 'Psychosocial support and remedial education for children of IDPs and Refugees in the Tawargha camps and Tripoli', 'ended', '2018-01-15', '2019-09-30', '2017-10-04', '2017-10-12', '2017-10-12', '[[schema]]/file_attachments/partner_organization/23/agreements/55/interventions/65/prc/04._Annex_G_Submission_Form.pdf', '2018-01-15', '2018-01-15', NULL, 55, 18, 20024, '[[schema]]/file_attachments/partner_organization/23/agreements/55/interventions/65/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (75, '2018-08-14 11:02:23.174062+00', '2019-10-17 14:11:10.7601+00', 'PD', 'LIB/PCA2018117/PD201875-4', '“I am a child, and I have rights project” promoting child rights and child protection awareness and PSS inside and outside school settings.', 'active', '2018-06-26', '2019-12-31', '2018-05-24', '2018-05-24', '2018-06-14', '[[schema]]/file_attachments/partner_organization/81/agreements/117/interventions/75/prc/Annex_G._NoorAlhayat_Signed.pdf', '2018-06-26', '2018-06-25', '', 117, 66, 11490, '[[schema]]/file_attachments/partner_organization/81/agreements/117/interventions/75/prc/Annex_C._Noor_Alhayat_Programme_Document.pdf', 1, false, '{}', true, 2018, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (13, '2017-07-28 12:23:34.456127+00', '2019-10-27 10:22:39.596742+00', 'PD', 'LIB/PCA201708/PD201713', 'Provision of recreational activities (15 towns) and remedial educational activities (10 towns) for school aged children in Libya', 'ended', '2016-06-13', '2017-06-13', '2016-04-15', '2016-04-15', '2016-05-05', '[[schema]]/file_attachments/partner_organization/8/agreements/44/interventions/None/prc/MoM_and_recomendation_Letter_SCOUTS_rBtNQKl.pdf', '2016-06-13', '2016-06-13', NULL, 44, 4, 13454, '[[schema]]/file_attachments/partner_organization/8/agreements/44/interventions/None/prc/Program_Document_U1rC8XE.pdf', 1, false, '{"migrated": true, "old_status": "implemented"}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (103, '2019-09-25 14:52:24.173507+00', '2019-10-27 14:04:51.56709+00', 'PD', 'LIB/PCA2019152/PD2019103', 'Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata', 'active', '2019-10-07', '2020-10-07', '2019-04-13', '2019-09-24', '2019-09-25', '', '2019-10-07', '2019-10-07', NULL, 152, 73, 11490, '', 34, false, '{}', false, 2019, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (89, '2019-03-18 14:07:15.757626+00', '2019-08-01 16:03:28.664704+00', 'PD', 'LIB/PCA2019141/PD201989-1', 'Youth Participation and Civic Engagement', 'active', '2019-04-02', '2019-12-31', '2019-03-17', '2019-03-17', '2019-03-18', '', '2019-04-02', '2019-04-02', NULL, 141, 56, 8421, '', 34, false, '{}', false, 2019, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (16, '2017-07-30 17:51:05.253309+00', '2018-09-06 15:46:34.902513+00', 'PD', 'LIB/PCA201710/PD201707', 'Protection and psychological wellbeing of children are improved through the provision of psychological services in Sebha and Ubari', 'ended', '2017-04-07', '2018-01-06', '2017-03-02', '2017-03-02', '2017-04-03', '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/16/prc/04._Annex_G_Submission_Form.pdf', '2017-04-07', '2017-04-07', '', 48, 10, 13454, '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/16/prc/02._Annex_C_Program_Document.pdf', 1, false, '{"migrated": true, "old_status": "draft"}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (15, '2017-07-28 13:05:07.907988+00', '2018-09-06 15:46:34.960926+00', 'PD', 'LIB/PCA201714/PD201604', 'Provision of catch-up classes in five schools for out-of-school children in Benghazi and its peripheries.', 'ended', '2016-05-23', '2017-04-30', '2016-03-29', '2016-05-10', '2016-05-12', '[[schema]]/file_attachments/partner_organization/17/agreements/52/interventions/15/prc/Submission_Form.pdf', '2016-05-23', '2016-05-23', '', 52, 17, 13454, '[[schema]]/file_attachments/partner_organization/17/agreements/52/interventions/15/prc/Program_Document.pdf', 1, false, '{"migrated": true, "old_status": "implemented"}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (14, '2017-07-28 12:39:04.440559+00', '2018-09-06 15:46:35.019255+00', 'PD', 'LIB/PCA201713/PD201705', 'Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its periphery to increase access to formal and non-formal education in conflict-affected areas', 'closed', '2017-01-30', '2018-07-29', '2016-10-26', '2016-12-09', '2017-01-27', '[[schema]]/file_attachments/partner_organization/17/agreements/51/interventions/14/prc/Annex_G_Submission_Form.pdf', '2017-01-27', '2017-01-27', '', 52, 17, 13454, '[[schema]]/file_attachments/partner_organization/17/agreements/51/interventions/14/prc/Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (3, '2017-07-12 11:14:45.746748+00', '2018-09-06 15:46:35.558127+00', 'PD', 'LIB/PCA201707/PD201602', 'Provision of catch up classes in ten schools for out of school children in Benghazi and its periphery (PCA/Libya/ED/2016/08)', 'closed', '2016-04-29', '2017-04-28', '2016-03-12', '2016-04-25', '2016-04-27', '[[schema]]/file_attachments/partner_organization/4/agreements/43/interventions/3/prc/Sumission_form_of_PCARC.pdf', '2016-04-29', '2016-04-27', '', 43, 11, 13454, '[[schema]]/file_attachments/partner_organization/4/agreements/43/interventions/3/prc/Program_Document.pdf', 1, false, '{"migrated": true, "old_status": "implemented"}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (2, '2017-07-12 09:21:43.41538+00', '2018-10-02 10:35:25.45114+00', 'PD', 'LIB/PCA201702/PD201601', 'Specialized Psychsocial support for IDP children in Benghazi and Tripoli', 'ended', '2016-02-24', '2017-12-31', '2016-02-21', '2015-11-01', '2016-02-12', '[[schema]]/file_attachments/partner_organization/1/agreements/34/interventions/2/prc/Submission_Form.pdf', '2016-02-24', '2016-02-23', '', 34, 1, 13454, '[[schema]]/file_attachments/partner_organization/1/agreements/34/interventions/2/prc/Program_Document.pdf', 1, false, '{}', false, 2017, '', ''); -INSERT INTO [[schema]].partners_intervention VALUES (100, '2019-06-12 12:08:54.595535+00', '2019-06-12 12:24:10.025129+00', 'PD', 'LIB/PCA2019150/PD2019100', 'Promotion of Child Protection and the Convention for the rights of the child in Libya', 'active', '2019-04-09', '2019-12-31', '2019-03-21', NULL, NULL, '', '2019-04-09', '2019-04-09', NULL, 150, 72, 20024, '', 34, false, '{}', false, 2019, '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (58, '2018-01-31 10:39:55.245059+00', '2018-09-11 04:00:49.204763+00', 'PD', 'LIB/PCA201707/PD201858-1', 'Provision of non-formal and formal education in 10 schools in Benghazi and its peripheries to increase access to education in conflict affected areas', 'closed', '2016-12-02', '2018-09-10', '2016-10-03', NULL, NULL, '', '2016-12-02', '2016-12-02', '', 43, 11, 13454, '[[schema]]/file_attachments/partner_organization/4/agreements/43/interventions/58/prc/ECHO_-_Ekraa_Program_Document_10_Nov._2016_-_10_May_2018_X4Iz8aZ.pdf', 1, false, '{}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (64, '2018-03-23 16:39:20.213824+00', '2018-09-06 15:46:34.122225+00', 'HPD', 'LIB/PCA201710/SHPD201864', 'Technical Assessment of 10 conflict-affected schools in Musrata city', 'closed', '2018-02-28', '2018-04-28', '2017-12-18', '2017-12-29', '2018-01-04', '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/64/prc/04._Annex_G_Submission_Form.pdf', '2018-02-28', '2018-02-28', '', 48, 10, 20024, '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/64/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (101, '2019-06-16 11:10:40.175484+00', '2019-12-03 08:22:56.11618+00', 'PD', 'LIB/PCA2019130/PD2019101', 'Placeholder - to be updated', 'active', '2019-06-01', '2019-12-31', '2019-05-10', NULL, NULL, '', '2019-06-01', '2019-06-01', NULL, 130, 16, 20024, '', 34, false, '{}', true, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (72, '2018-06-01 08:48:56.613888+00', '2019-01-22 16:39:11.857652+00', 'PD', 'LIB/PCA201712/PD201872', 'Third Party monitoring and support of UNICEF Partnerships and capacity building for Libyan Organizations to take up the Third Party monitoring', 'closed', '2018-05-29', '2018-11-28', NULL, NULL, NULL, '', '2018-05-24', '2018-05-29', NULL, 50, 7, 20024, '[[schema]]/file_attachments/partner_organization/3/agreements/50/interventions/72/prc/Annex_C_Programme_document.pdf', 1, false, '{}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (105, '2019-11-06 14:45:24.6474+00', '2020-03-11 15:34:20.189532+00', 'PD', 'LIB/PCA2019153/PD2019105', 'Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.', 'active', '2019-11-22', '2020-11-21', '2019-09-26', '2019-10-16', '2019-11-17', '', '2019-11-22', '2019-11-22', NULL, 153, 74, 20024, '', 34, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (108, '2020-02-12 10:59:54.804942+00', '2020-04-16 14:00:08.367024+00', 'PD', 'LIB/PCA2020156/PD2020108', 'Prepositioning of Emergency Supplies and Rapid Emergency Response', 'draft', '2020-04-01', '2021-04-01', '2020-02-15', '2020-02-15', '2020-02-20', '', '2020-03-22', '2020-03-24', NULL, 156, 83, 20024, '', 34, false, '{}', false, 2020, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (67, '2018-04-20 08:43:06.156099+00', '2018-11-01 04:01:53.031058+00', 'PD', 'LIB/PCA201702/PD201867-1', 'Specialized psychological support for IDPs children in Sebha, Benghazi and Tripoli.', 'ended', '2017-10-05', '2018-10-31', '2017-07-01', '2017-07-01', '2017-09-20', '[[schema]]/file_attachments/partner_organization/1/agreements/34/interventions/67/prc/04._Annex_G_Submission_Form.pdf', '2017-10-05', '2017-10-05', '', 34, 1, 20024, '[[schema]]/file_attachments/partner_organization/1/agreements/34/interventions/67/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (61, '2018-03-23 14:56:29.988563+00', '2018-09-06 15:46:34.237846+00', 'PD', 'LIB/PCA2018112/PD201861', 'Emergency Response to Derna crisis (Child protection, Education and WASH)', 'ended', '2018-01-18', '2018-07-17', '2017-10-01', '2017-10-02', '2018-01-17', '[[schema]]/file_attachments/partner_organization/74/agreements/112/interventions/61/prc/04._Annex_G_Submission_Form.pdf', '2018-01-18', '2018-01-18', '', 112, 62, 20024, '[[schema]]/file_attachments/partner_organization/74/agreements/112/interventions/61/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2018, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (60, '2018-03-23 13:17:57.298362+00', '2019-03-05 23:37:09.001359+00', 'PD', 'LIB/PCA2018111/PD201860', 'Positive Peace Workshop', 'ended', '2018-03-05', '2019-03-04', '2018-01-31', '2018-01-31', '2018-02-08', '[[schema]]/file_attachments/partner_organization/78/agreements/111/interventions/60/prc/04._Annex_G_Submission_Form_fpJafER.pdf', '2018-02-27', '2018-03-05', '', 111, 61, 20024, '[[schema]]/file_attachments/partner_organization/78/agreements/111/interventions/60/prc/02._Annex_C_Program_Document_DwBkHnF.pdf', 1, false, '{}', false, 2018, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (56, '2018-01-18 11:43:23.062599+00', '2018-11-15 04:01:35.259049+00', 'PD', 'LIB/PCA2018104/PD201856-2', 'Youth Participation and Civic Engagement', 'ended', '2017-07-26', '2018-11-14', '2017-06-02', '2017-06-02', '2017-06-02', '[[schema]]/file_attachments/partner_organization/73/agreements/104/interventions/56/prc/04._Annex_G_Submission_Form.pdf', '2017-07-26', '2017-07-17', '', 104, 56, 13454, '[[schema]]/file_attachments/partner_organization/73/agreements/104/interventions/56/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2018, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (104, '2019-10-24 10:12:53.255763+00', '2020-04-20 14:08:55.533623+00', 'PD', 'LIB/PCA2019153/PD2019104', 'Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre', 'active', '2020-01-01', '2020-12-31', '2019-08-02', '2019-08-08', '2019-09-25', '', '2019-10-23', '2019-10-23', NULL, 153, 74, 20024, '', 34, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (77, '2018-09-24 07:23:07.860075+00', '2019-12-03 08:24:59.709066+00', 'PD', 'LIB/PCA201710/PD201877-1', 'Prepositioning of Emergency Supplies stocks and Rapid Response Mechanism (RRM)', 'active', '2018-10-25', '2020-04-24', '2018-09-26', '2018-09-27', '2018-10-02', '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/77/prc/STACO_-_Annex_G..pdf', '2018-10-25', '2018-10-25', NULL, 48, 10, 20024, '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/77/prc/STACO_-_Annex_C..pdf', 1, false, '{}', true, 2018, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (62, '2018-03-23 15:48:40.965537+00', '2018-09-30 14:07:44.480775+00', 'PD', 'LIB/PCA2018113/PD201862-1', 'Rehabilitation of water and sanitation facilities in 13 conflict-affected schools in Sirt', 'closed', '2017-10-01', '2018-06-30', '2017-08-07', '2017-08-07', '2017-08-24', '[[schema]]/file_attachments/partner_organization/38/agreements/113/interventions/62/prc/06._Annex_G_Submission_Form_vCYZnXm.pdf', '2017-09-26', '2017-10-01', '', 113, 15, 20024, '[[schema]]/file_attachments/partner_organization/38/agreements/113/interventions/62/prc/02._Annex_C_Program_Document_LzTQH5L.pdf', 1, false, '{}', false, 2018, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (73, '2018-07-09 10:04:18.693029+00', '2019-01-09 16:39:10.231649+00', 'PD', 'LIB/PCA201711/PD201773', 'Multisectoral emergency response to IDPs in camps and Derna', 'ended', '2018-07-08', '2019-01-08', '2018-06-29', '2018-06-29', '2018-07-04', '[[schema]]/file_attachments/partner_organization/12/agreements/49/interventions/73/prc/04._Annex_G_Submission_Form.pdf', '2018-07-08', '2018-07-08', NULL, 49, 16, 20024, '[[schema]]/file_attachments/partner_organization/12/agreements/49/interventions/73/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (68, '2018-04-20 10:13:35.999264+00', '2018-10-23 09:18:17.378912+00', 'PD', 'LIB/PCA201711/PD201868', 'Emergency WASH assistance to Tawergha returnees in Bani Waleed Municipality', 'ended', '2018-02-27', '2018-04-26', '2018-02-08', '2018-02-08', '2018-02-23', '[[schema]]/file_attachments/partner_organization/12/agreements/49/interventions/68/prc/04._Annex_G_Submission_Form.pdf', '2018-02-27', '2018-02-27', '', 49, 16, 20024, '[[schema]]/file_attachments/partner_organization/12/agreements/49/interventions/68/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (95, '2019-05-27 11:05:44.247757+00', '2020-03-25 12:48:35.62757+00', 'PD', 'LIB/PCA2019149/PD201995-1', 'Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya', 'active', '2019-05-21', '2020-09-30', '2019-04-22', '2019-05-09', '2019-05-15', '', '2019-05-21', '2019-05-16', NULL, 149, 71, 20024, '', 34, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (93, '2019-05-02 07:46:38.083511+00', '2019-12-11 03:56:47.409492+00', 'SSFA', 'LIB/SSFA2019148', 'Education Support to the Vulnernable Children in South Libya', 'closed', '2019-05-25', '2019-10-20', '2019-05-20', NULL, NULL, '', '2019-05-20', '2019-05-25', NULL, 148, 70, 20024, '', 34, false, '{}', false, NULL, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (109, '2020-02-25 13:46:27.835543+00', '2020-04-20 15:08:52.56055+00', 'PD', 'LIB/PCA2019124/PD2020109', 'Specialized Psychosocial support for vulnerable Children in Sebha, Benghazi and Tripoli', 'active', '2020-02-25', '2021-02-25', '2020-01-02', '2020-02-16', '2020-02-20', '', '2020-02-25', '2020-02-23', NULL, 124, 1, 20024, '', 34, false, '{}', true, 2020, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (94, '2019-05-05 07:42:39.007879+00', '2020-03-03 10:01:09.053486+00', 'PD', 'LIB/PCA2019146/PD201994', 'Integrated Education and Psychosocial Support in Sabratha', 'active', '2019-05-20', '2020-05-20', '2019-01-10', '2019-05-15', '2019-05-15', '', '2019-05-20', '2019-05-19', NULL, 146, 65, 20024, '', 34, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (102, '2019-09-10 17:45:24.043034+00', '2020-03-17 12:51:18.790774+00', 'PD', 'LIB/PCA2019133/PD2019102-2', 'Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.', 'active', '2019-10-01', '2020-09-30', '2019-04-30', '2019-08-05', '2019-09-17', '', '2019-09-25', '2019-09-25', NULL, 133, 59, 20024, '', 34, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (110, '2020-04-07 10:21:10.06002+00', '2020-04-07 10:26:25.282287+00', 'HPD', 'LIB/PCA2019126/HPD2020110', 'Migrant Children in detention centers to have winterzation kits', 'draft', '2020-02-27', '2020-03-31', NULL, NULL, NULL, '', '2020-02-27', '2020-02-27', NULL, 126, 6, 20024, '', 34, false, '{}', false, 2020, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (6, '2017-07-12 11:30:32.547177+00', '2018-10-29 10:58:31.947491+00', 'PD', 'LIB/PCA201712/PD201701', 'Third party monitoring and support of UNICEF partnerships with civil society organizations and relative programs in Libya (LIB/PCA201712)', 'ended', '2017-03-03', '2017-12-31', '2017-01-01', '2017-01-01', '2017-07-27', '[[schema]]/file_attachments/partner_organization/3/agreements/50/interventions/6/prc/04._Annex_G_Submission_Form.pdf', '2017-03-03', '2017-03-03', '', 50, 7, 13454, '[[schema]]/file_attachments/partner_organization/3/agreements/50/interventions/6/prc/CIR_PME.pdf', 1, false, '{}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (57, '2018-01-31 10:30:10.861972+00', '2018-09-06 15:46:34.46949+00', 'SSFA', 'LIB/SSFA201719', 'Education in Emergencies programme for Sirte Response', 'closed', '2017-08-01', '2018-01-31', '2017-07-03', NULL, NULL, '', '2017-07-12', '2017-07-12', '', 90, 52, 13454, '[[schema]]/file_attachments/partner_organization/40/agreements/90/interventions/57/prc/SSFA_Quddraty_-_Programme_Document.pdf', 1, false, '{}', false, NULL, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (59, '2018-03-23 10:55:44.713108+00', '2020-02-09 03:57:04.684787+00', 'PD', 'LIB/PCA2018109/PD201859', 'Key challenges and coping strategies of refugee and migrant children in Libya', 'closed', '2017-12-29', '2018-06-28', '2017-10-07', '2017-10-07', '2017-10-30', '[[schema]]/file_attachments/partner_organization/16/agreements/109/interventions/59/prc/04._Annex_G_Submission_Form_wV1uP8n.pdf', '2017-12-22', '2017-10-07', '', 109, 57, 20024, '[[schema]]/file_attachments/partner_organization/16/agreements/109/interventions/59/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2018, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (20, '2017-07-30 20:27:53.066852+00', '2018-09-06 15:46:34.648568+00', 'SSFA', 'LIB/SSFA201706/TempRef:20', 'Community and schools based child protection and psychological support project', 'closed', '2016-12-16', '2017-04-15', '2016-11-23', NULL, NULL, '', '2016-12-15', '2016-12-16', '', 42, 6, 13454, '[[schema]]/file_attachments/partner_organization/37/agreements/42/interventions/20/prc/1._Letterhead.pdf', 1, false, '{}', false, NULL, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (19, '2017-07-30 19:57:46.841722+00', '2018-09-06 15:46:34.708145+00', 'PD', 'LIB/PCA201717/PD201606', 'Community based child protection and psychological support project in Janzour', 'ended', '2016-05-06', '2017-05-05', '2016-03-01', '2016-03-01', '2016-05-05', '', '2016-05-06', '2016-05-06', '', 56, 19, 13454, '[[schema]]/file_attachments/partner_organization/13/agreements/56/interventions/19/prc/PCA_Program_Document.pdf', 1, false, '{"migrated": true, "old_status": "implemented"}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (18, '2017-07-30 18:59:48.854391+00', '2018-09-06 15:46:34.767793+00', 'PD', 'LIB/PCA201716/PD201605', 'Psychological emergency response and recreational activities for children exposed to violence in Benghazi and Tripoli', 'closed', '2016-04-13', '2017-04-12', '2016-03-01', '2016-03-31', '2016-04-01', '', '2016-04-13', '2016-04-13', '', 55, 18, 13454, '[[schema]]/file_attachments/partner_organization/23/agreements/53/interventions/18/prc/Program_Document.pdf', 1, false, '{"migrated": true, "old_status": "implemented"}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (17, '2017-07-30 18:18:32.973163+00', '2018-09-06 15:46:34.842922+00', 'SSFA', 'LIB/SSFA201705/SSFA201703', 'Community based child protection and psychological support programme in Sirte', 'closed', '2017-03-15', '2017-09-15', '2017-01-09', NULL, NULL, '', '2017-03-15', '2017-03-14', '', 41, 9, 13454, '[[schema]]/file_attachments/partner_organization/35/agreements/41/interventions/17/prc/02.Letterhead.pdf', 1, false, '{"migrated": true, "old_status": "implemented"}', false, NULL, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (10, '2017-07-27 16:44:35.51629+00', '2018-09-06 15:46:35.212887+00', 'SSFA', 'LIB/SSFA201703/SSFA201701', 'Immediate support to provide safe environment and hygienic conditions in Tripoli IDP camps', 'closed', '2017-06-20', '2017-10-19', '2017-06-14', NULL, NULL, '', '2017-06-20', '2017-06-16', '', 38, 2, 13454, '[[schema]]/file_attachments/partner_organization/39/agreements/38/interventions/10/prc/02._Letterhead.pdf', 1, false, '{}', false, NULL, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (9, '2017-07-27 16:31:02.140856+00', '2018-09-06 15:46:35.270577+00', 'SSFA', 'LIB/SSFA201709/SSFA201702', 'Distribution of Hygiene Kits to most affected families in Sirte', 'closed', '2017-07-29', '2017-10-28', '2017-05-02', NULL, NULL, '', '2017-05-29', '2017-05-10', '', 46, 15, 13454, '[[schema]]/file_attachments/partner_organization/38/agreements/46/interventions/9/prc/02._Letterhead.pdf', 1, false, '{}', false, NULL, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (7, '2017-07-13 10:46:10.955921+00', '2018-09-06 15:46:35.386696+00', 'PD', 'LIB/PCA201710/PD201702', 'Technical Assessment of 23 Conflict-Affected schools in Tawargha City.', 'ended', '2017-02-07', '2017-12-31', '2016-10-14', '2016-10-14', '2017-01-25', '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/7/prc/Annex_G_Submission_Form.pdf', '2017-02-07', '2017-01-26', '', 48, 10, 13454, '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/7/prc/Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (8, '2017-07-27 15:18:39.160422+00', '2018-09-21 13:21:36.054664+00', 'PD', 'LIB/PCA201711/PD201703', 'Emergency WASH Assistance to vulnerable people in Benghazi with a focus on children', 'closed', '2017-04-02', '2017-12-01', '2017-03-16', '2017-03-16', '2017-03-16', '[[schema]]/file_attachments/partner_organization/12/agreements/49/interventions/None/prc/04._Annex_G_Submission_Form.pdf', '2017-03-24', '2017-04-02', '', 49, 16, 13454, '[[schema]]/file_attachments/partner_organization/12/agreements/49/interventions/None/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (5, '2017-07-12 11:15:37.40984+00', '2018-10-23 09:02:03.629479+00', 'PD', 'LIB/PCA201710/PD201706', 'Rehabilitation of water and sanitation infrastructure in affected schools and health facilities in Tripoli, Sabha, Ubaria, Libya. (PCA/LIBYA/WASG/2017/07)', 'ended', '2017-07-15', '2017-12-15', '2017-03-30', '2017-03-30', '2017-03-30', '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/5/prc/04._Annex_G_Submission_Form.pdf', '2017-04-04', '2017-04-04', '', 48, 10, 13454, '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/5/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (11, '2017-07-28 11:56:22.136576+00', '2018-10-05 04:01:20.132342+00', 'PD', 'LIB/PCA201704/PD201704-2', 'Conflict-affected children and adolescents are provided with access to quality education in schools or other safe learning environments', 'closed', '2017-04-20', '2018-09-30', '2017-03-28', '2017-03-28', '2017-03-30', '[[schema]]/file_attachments/partner_organization/21/agreements/40/interventions/None/prc/04._Annex_G_Submission_Form.pdf', '2017-03-31', '2017-04-20', '', 40, 8, 13454, '[[schema]]/file_attachments/partner_organization/21/agreements/40/interventions/None/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (66, '2018-04-20 08:24:43.321012+00', '2018-10-31 04:01:33.687799+00', 'PD', 'LIB/PCA201717/PD201866-1', 'Community based child protection and psychosocial support project in Janzour', 'ended', '2017-09-01', '2018-10-30', '2017-07-01', '2017-07-01', '2017-08-17', '[[schema]]/file_attachments/partner_organization/13/agreements/56/interventions/66/prc/04._Annex_G_Submission_Form.pdf', '2017-07-31', '2017-08-31', '', 56, 19, 20024, '[[schema]]/file_attachments/partner_organization/13/agreements/56/interventions/66/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (86, '2019-02-28 10:25:52.674925+00', '2019-02-28 10:32:59.974067+00', 'SSFA', 'LIB/SSFA2019138', 'Awareness creation for Measles, Rubella, and Polio vaccination, and vitamin A supplementary activities', 'ended', '2018-12-03', '2019-01-05', '2018-11-25', NULL, NULL, '', '2018-12-03', '2018-12-03', NULL, 138, 68, 20024, '', 34, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (81, '2018-10-30 13:28:37.756581+00', '2019-09-08 03:55:22.025907+00', 'PD', 'LIB/PCA201717/PD201881', 'Transitional center for vulnerable unaccompanied migrant children in Janzour', 'ended', '2018-09-08', '2019-09-07', '2018-03-29', '2018-04-23', '2018-04-27', '', '2018-09-06', '2018-08-07', NULL, 56, 19, 20024, '', 1, false, '{}', false, 2018, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (82, '2018-12-05 14:18:54.147597+00', '2019-03-03 15:01:06.418808+00', 'PD', 'LIB/PCA201711/PD201782-1', 'Emergency WASH assistance to vulnerable people in Benghazi and refugee assembly points with focus on children amended PCA', 'ended', '2017-04-01', '2017-12-31', '2017-03-16', '2017-03-16', '2017-03-17', '[[schema]]/file_attachments/partner_organization/12/agreements/49/interventions/82/prc/04._Annex_G_Submission_Form.pdf', '2017-03-23', '2017-03-23', NULL, 49, 16, 13454, '[[schema]]/file_attachments/partner_organization/12/agreements/49/interventions/82/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (106, '2019-12-29 13:35:02.483295+00', '2020-03-12 14:36:14.836715+00', 'PD', 'LIB/PCA2019155/PD2019106-1', 'Improved access of children to safe and inclusive learning environments through Bayti child resilience centers', 'active', '2019-12-04', '2020-12-03', '2019-04-30', '2019-08-02', '2019-10-01', '', '2019-12-04', '2019-12-04', NULL, 155, 78, 200131, '', 34, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (85, '2019-01-13 12:53:25.028996+00', '2020-02-04 03:56:57.776815+00', 'PD', 'LIB/PCA2019124/PD201985', 'Specialized Psychosocial Suppport for vulnerable children in Sebha, Benghazi, and Tripoli', 'closed', '2019-01-01', '2019-12-22', '2018-09-20', '2018-12-13', '2018-12-19', '', '2018-12-23', '2018-12-23', NULL, 124, 1, 11490, '', 34, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (107, '2020-01-03 13:00:21.317273+00', '2020-01-16 15:30:52.997965+00', 'PD', 'LIB/PCA2019155/PD2019107', 'Improved access of children to safe and inclusive learning environments through Baity Child resilience centers', 'signed', '2019-12-04', '2020-12-03', '2019-10-01', '2019-09-25', NULL, '', '2019-12-04', '2019-12-04', NULL, 155, 78, 20024, '', 34, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (80, '2018-10-24 14:54:02.766703+00', '2020-03-01 10:32:08.391565+00', 'PD', 'LIB/PCA2018122/PD201880-3', 'Provision of psychosocial support and non-formal education for vulnerable migrant and IDP children', 'closed', '2018-07-26', '2020-01-10', '2018-05-24', '2018-05-24', '2018-06-14', '[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Multakana_MoM.pdf', '2018-07-26', '2018-07-26', NULL, 122, 6, 20024, '[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Annex_c_multakana_PD.pdf', 1, false, '{}', false, 2018, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (70, '2018-05-24 16:31:18.610552+00', '2019-02-12 15:41:30.141754+00', 'PD', 'LIB/PCA2018115/PD201870', 'Integrated education and psychological support response in Sebratha', 'closed', '2017-12-28', '2018-12-27', '2017-10-30', '2017-12-07', '2017-12-07', '[[schema]]/file_attachments/partner_organization/80/agreements/115/interventions/70/prc/04._Annex_G_Submission_Form.pdf', '2017-12-28', '2017-12-28', '', 115, 65, 20024, '[[schema]]/file_attachments/partner_organization/80/agreements/115/interventions/70/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2018, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (103, '2019-09-25 14:52:24.173507+00', '2020-02-06 12:40:58.228948+00', 'PD', 'LIB/PCA2019152/PD2019103', 'Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata', 'active', '2019-10-07', '2020-10-07', '2019-04-13', '2019-09-24', '2019-09-25', '', '2019-10-07', '2019-10-07', NULL, 152, 73, 11490, '', 34, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (76, '2018-09-12 15:44:23.932842+00', '2019-12-03 08:25:10.016527+00', 'PD', 'LIB/PCA2018113/PD201876-1', 'Distribution of High Energy Biscuits (HEB) among vulnerable group in Detention Centres and Misrata prison in Libya', 'active', '2018-09-20', '2019-12-31', '2018-09-13', '2018-09-13', '2018-09-16', '[[schema]]/file_attachments/partner_organization/38/agreements/113/interventions/76/prc/Annex_G._Alemdad_Signed_4G54U8K.pdf', '2018-09-20', '2018-09-20', NULL, 113, 15, 20024, '[[schema]]/file_attachments/partner_organization/38/agreements/113/interventions/76/prc/Annex_C._Programme_Document_evBrUWs.pdf', 1, false, '{}', true, 2018, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (83, '2018-12-05 15:02:01.074957+00', '2018-12-05 15:22:05.353838+00', 'PD', 'LIB/PCA2018113/PD201883-1', 'Rehabilitation of water and sanitation facilities in 13 conflict affected schools in Sirt', 'signed', '2017-10-01', '2018-06-30', '2017-08-17', '2017-08-24', '2017-08-24', '', '2017-08-25', '2017-08-25', NULL, 113, 15, 20024, '[[schema]]/file_attachments/partner_organization/38/agreements/113/interventions/83/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2018, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (90, '2019-04-10 14:00:56.819427+00', '2020-03-08 09:55:29.017756+00', 'PD', 'LIB/PCA2019144/PD201990', 'Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas', 'active', '2019-05-20', '2020-04-30', '2019-04-02', '2019-04-23', '2019-04-23', '', '2019-05-20', '2019-05-12', NULL, 144, 11, 20024, '', 34, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (111, '2020-04-13 15:39:00.606836+00', '2020-04-21 08:51:47.281728+00', 'PD', 'LIB/PCA2019130/PD2020111', 'Humanitarian WASH Response to Affected People', 'signed', '2020-02-03', '2020-12-31', '2020-01-20', '2020-01-28', '2020-02-02', '', '2020-02-02', '2020-02-03', NULL, 130, 16, 11490, '', 34, false, '{}', false, 2020, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (74, '2018-07-12 08:33:11.209728+00', '2019-12-03 08:25:22.632368+00', 'PD', 'LIB/PCA201710/PD201774-2', 'Improving learning environment through rehabilitation 2 schools in Murzuque', 'active', '2018-08-14', '2019-12-31', '2018-05-20', '2018-06-03', '2018-06-06', '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/74/prc/05._PD201774_-_Annex_G._Submission_Form.pdf', '2018-08-14', '2018-08-12', NULL, 48, 10, 11490, '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/74/prc/02._PD201774_-_Programme_Document.pdf', 1, false, '{}', true, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (65, '2018-03-28 10:49:00.412787+00', '2019-10-28 08:33:17.286566+00', 'PD', 'LIB/PCA201716/PD201865-2', 'Psychosocial support and remedial education for children of IDPs and Refugees in the Tawargha camps and Tripoli', 'ended', '2018-01-15', '2019-09-30', '2017-10-04', '2017-10-12', '2017-10-12', '[[schema]]/file_attachments/partner_organization/23/agreements/55/interventions/65/prc/04._Annex_G_Submission_Form.pdf', '2018-01-15', '2018-01-15', NULL, 55, 18, 20024, '[[schema]]/file_attachments/partner_organization/23/agreements/55/interventions/65/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (13, '2017-07-28 12:23:34.456127+00', '2019-10-27 10:22:39.596742+00', 'PD', 'LIB/PCA201708/PD201713', 'Provision of recreational activities (15 towns) and remedial educational activities (10 towns) for school aged children in Libya', 'ended', '2016-06-13', '2017-06-13', '2016-04-15', '2016-04-15', '2016-05-05', '[[schema]]/file_attachments/partner_organization/8/agreements/44/interventions/None/prc/MoM_and_recomendation_Letter_SCOUTS_rBtNQKl.pdf', '2016-06-13', '2016-06-13', NULL, 44, 4, 13454, '[[schema]]/file_attachments/partner_organization/8/agreements/44/interventions/None/prc/Program_Document_U1rC8XE.pdf', 1, false, '{"migrated": true, "old_status": "implemented"}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (75, '2018-08-14 11:02:23.174062+00', '2020-01-24 03:56:43.448157+00', 'PD', 'LIB/PCA2018117/PD201875-4', '“I am a child, and I have rights project” promoting child rights and child protection awareness and PSS inside and outside school settings.', 'closed', '2018-06-26', '2019-12-31', '2018-05-24', '2018-05-24', '2018-06-14', '[[schema]]/file_attachments/partner_organization/81/agreements/117/interventions/75/prc/Annex_G._NoorAlhayat_Signed.pdf', '2018-06-26', '2018-06-25', '', 117, 66, 11490, '[[schema]]/file_attachments/partner_organization/81/agreements/117/interventions/75/prc/Annex_C._Noor_Alhayat_Programme_Document.pdf', 1, false, '{}', false, 2018, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (69, '2018-05-04 09:01:37.398636+00', '2020-02-09 03:57:04.066603+00', 'PD', 'LIB/PCA2018114/PD201869-1', 'Provision community based reintegration services to children/adolescents affected by conflict in Al Zintan Municipal Council Area', 'closed', '2018-04-04', '2019-06-30', '2017-11-01', '2018-03-09', '2018-03-15', '[[schema]]/file_attachments/partner_organization/79/agreements/114/interventions/69/prc/Annex_G_-_PRC_Submission_Review_and_Approval_form.pdf', '2018-04-04', '2018-04-04', NULL, 114, 64, 20024, '[[schema]]/file_attachments/partner_organization/79/agreements/114/interventions/69/prc/Annex_C-_Programme_Document.pdf', 1, false, '{}', false, 2018, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (92, '2019-04-30 12:04:33.530326+00', '2020-03-08 09:56:18.133843+00', 'PD', 'LIB/PCA2019147/PD201992-1', 'Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas', 'active', '2019-06-24', '2020-06-24', '2019-06-11', '2019-06-11', '2019-06-12', '', '2019-06-24', '2019-06-17', NULL, 147, 17, 20024, '', 34, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (87, '2019-03-04 07:33:13.963343+00', '2020-04-21 10:49:44.607259+00', 'PD', 'LIB/PCA2019137/PD201987-2', 'Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi', 'active', '2019-01-06', '2020-05-31', '2018-10-12', '2018-11-11', '2018-11-21', '', '2019-01-06', '2019-01-06', NULL, 137, 67, 20024, '', 34, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (78, '2018-09-26 12:25:49.324557+00', '2020-04-16 03:57:27.932774+00', 'PD', 'LIB/PCA201707/PD201678-2', 'Provision of Formal and Non-Formal Education in ten schools in Benghazi and its periphery to increase access to formal and non-formal education in conflict-affected areas', 'closed', '2016-12-10', '2018-12-31', '2016-10-03', '2016-10-03', '2016-10-27', '[[schema]]/file_attachments/partner_organization/4/agreements/43/interventions/78/prc/04._Annex_G_Submission_Form.pdf', '2016-12-02', '2016-12-02', '', 43, 11, 13454, '[[schema]]/file_attachments/partner_organization/4/agreements/43/interventions/78/prc/02._Annex_C_Program_Document.pdf', 1, false, '{}', false, 2016, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (89, '2019-03-18 14:07:15.757626+00', '2020-04-08 03:57:15.516534+00', 'PD', 'LIB/PCA2019141/PD201989-1', 'Youth Participation and Civic Engagement', 'closed', '2019-04-02', '2019-12-31', '2019-03-17', '2019-03-17', '2019-03-18', '', '2019-04-02', '2019-04-02', NULL, 141, 56, 8421, '', 34, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (16, '2017-07-30 17:51:05.253309+00', '2018-09-06 15:46:34.902513+00', 'PD', 'LIB/PCA201710/PD201707', 'Protection and psychological wellbeing of children are improved through the provision of psychological services in Sebha and Ubari', 'ended', '2017-04-07', '2018-01-06', '2017-03-02', '2017-03-02', '2017-04-03', '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/16/prc/04._Annex_G_Submission_Form.pdf', '2017-04-07', '2017-04-07', '', 48, 10, 13454, '[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/16/prc/02._Annex_C_Program_Document.pdf', 1, false, '{"migrated": true, "old_status": "draft"}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (15, '2017-07-28 13:05:07.907988+00', '2018-09-06 15:46:34.960926+00', 'PD', 'LIB/PCA201714/PD201604', 'Provision of catch-up classes in five schools for out-of-school children in Benghazi and its peripheries.', 'ended', '2016-05-23', '2017-04-30', '2016-03-29', '2016-05-10', '2016-05-12', '[[schema]]/file_attachments/partner_organization/17/agreements/52/interventions/15/prc/Submission_Form.pdf', '2016-05-23', '2016-05-23', '', 52, 17, 13454, '[[schema]]/file_attachments/partner_organization/17/agreements/52/interventions/15/prc/Program_Document.pdf', 1, false, '{"migrated": true, "old_status": "implemented"}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (14, '2017-07-28 12:39:04.440559+00', '2018-09-06 15:46:35.019255+00', 'PD', 'LIB/PCA201713/PD201705', 'Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its periphery to increase access to formal and non-formal education in conflict-affected areas', 'closed', '2017-01-30', '2018-07-29', '2016-10-26', '2016-12-09', '2017-01-27', '[[schema]]/file_attachments/partner_organization/17/agreements/51/interventions/14/prc/Annex_G_Submission_Form.pdf', '2017-01-27', '2017-01-27', '', 52, 17, 13454, '[[schema]]/file_attachments/partner_organization/17/agreements/51/interventions/14/prc/Annex_C_Program_Document.pdf', 1, false, '{}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (3, '2017-07-12 11:14:45.746748+00', '2018-09-06 15:46:35.558127+00', 'PD', 'LIB/PCA201707/PD201602', 'Provision of catch up classes in ten schools for out of school children in Benghazi and its periphery (PCA/Libya/ED/2016/08)', 'closed', '2016-04-29', '2017-04-28', '2016-03-12', '2016-04-25', '2016-04-27', '[[schema]]/file_attachments/partner_organization/4/agreements/43/interventions/3/prc/Sumission_form_of_PCARC.pdf', '2016-04-29', '2016-04-27', '', 43, 11, 13454, '[[schema]]/file_attachments/partner_organization/4/agreements/43/interventions/3/prc/Program_Document.pdf', 1, false, '{"migrated": true, "old_status": "implemented"}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (2, '2017-07-12 09:21:43.41538+00', '2018-10-02 10:35:25.45114+00', 'PD', 'LIB/PCA201702/PD201601', 'Specialized Psychsocial support for IDP children in Benghazi and Tripoli', 'ended', '2016-02-24', '2017-12-31', '2016-02-21', '2015-11-01', '2016-02-12', '[[schema]]/file_attachments/partner_organization/1/agreements/34/interventions/2/prc/Submission_Form.pdf', '2016-02-24', '2016-02-23', '', 34, 1, 13454, '[[schema]]/file_attachments/partner_organization/1/agreements/34/interventions/2/prc/Program_Document.pdf', 1, false, '{}', false, 2017, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (100, '2019-06-12 12:08:54.595535+00', '2020-03-31 14:16:30.288318+00', 'PD', 'LIB/PCA2019150/PD2019100-1', 'Promotion of Child Protection and the Convention for the rights of the child in Libya', 'active', '2019-04-09', '2020-05-31', '2019-03-21', NULL, NULL, '', '2019-04-09', '2019-04-09', NULL, 150, 72, 20024, '', 34, false, '{}', true, 2019, '', '', ''); -- @@ -10655,21 +11101,117 @@ INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (100, 87, 183 INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (95, 85, 1832); INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (96, 85, 1864); INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (97, 85, 1835); -INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (156, 103, 1840); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (211, 106, 1864); INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (157, 103, 1914); INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (158, 104, 1835); INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (159, 104, 1942); -INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (145, 100, 2528); -INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (146, 100, 2149); -INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (147, 100, 1832); -INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (148, 100, 2377); -INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (149, 100, 1836); -INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (150, 100, 1837); -INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (151, 100, 1842); -INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (152, 100, 2099); -INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (153, 100, 1846); -INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (154, 100, 2524); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (160, 80, 1899); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (212, 95, 1895); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (213, 95, 1864); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (169, 102, 1920); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (170, 102, 1914); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (171, 102, 1899); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (166, 105, 1835); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (167, 105, 1942); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (172, 102, 1900); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (214, 95, 1897); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (215, 95, 1896); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (216, 95, 1899); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (217, 95, 1900); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (218, 95, 1898); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (219, 95, 1929); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (220, 95, 1905); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (221, 95, 1906); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (181, 90, 1864); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (222, 95, 1907); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (223, 95, 1877); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (224, 95, 1942); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (225, 95, 1914); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (226, 95, 1854); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (187, 92, 1863); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (188, 92, 1864); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (227, 95, 1919); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (190, 94, 1919); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (263, 110, 2150); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (235, 109, 1864); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (236, 109, 1898); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (194, 100, 1947); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (195, 100, 1925); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (196, 100, 1864); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (197, 100, 1928); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (198, 100, 1898); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (199, 100, 1929); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (200, 100, 1896); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (201, 100, 1833); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (202, 100, 1903); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (203, 100, 1918); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (228, 107, 1864); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (229, 107, 2204); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (230, 107, 2191); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (231, 104, 1898); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (232, 104, 1895); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (233, 95, 1903); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (237, 109, 1942); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (238, 95, 1865); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (239, 95, 1861); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (240, 95, 1863); INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (155, 100, 1951); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (204, 100, 1907); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (205, 100, 1877); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (206, 100, 1942); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (207, 100, 1881); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (208, 100, 1946); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (209, 100, 1915); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (210, 100, 1854); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (241, 95, 1925); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (242, 108, 1831); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (243, 108, 1832); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (244, 108, 1833); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (245, 108, 1834); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (246, 108, 1835); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (247, 108, 1836); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (248, 108, 1837); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (249, 108, 1838); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (250, 108, 1839); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (251, 108, 1840); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (252, 108, 1842); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (253, 108, 1843); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (254, 108, 1844); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (255, 108, 1845); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (256, 108, 1846); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (257, 108, 1847); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (258, 108, 1848); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (259, 108, 1849); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (260, 108, 1850); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (261, 108, 1851); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (262, 108, 1852); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (264, 110, 1898); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (265, 110, 2287); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (266, 110, 1910); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (267, 110, 1914); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (268, 110, 1915); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (270, 111, 1831); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (271, 111, 1833); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (272, 111, 1834); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (273, 111, 1835); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (274, 111, 1836); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (275, 111, 1837); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (276, 111, 1838); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (277, 111, 1839); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (278, 111, 1840); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (279, 111, 1842); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (280, 111, 1843); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (281, 111, 1844); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (282, 111, 1845); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (283, 111, 1846); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (284, 111, 1847); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (285, 111, 1850); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (286, 111, 1851); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (287, 111, 1852); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (297, 111, 1832); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (298, 111, 1849); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (299, 111, 1848); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (300, 111, 1841); -- @@ -10724,7 +11266,7 @@ INSERT INTO [[schema]].partners_intervention_offices VALUES (87, 85, 201); INSERT INTO [[schema]].partners_intervention_offices VALUES (89, 87, 201); INSERT INTO [[schema]].partners_intervention_offices VALUES (92, 90, 201); INSERT INTO [[schema]].partners_intervention_offices VALUES (91, 89, 201); -INSERT INTO [[schema]].partners_intervention_offices VALUES (93, 91, 201); +INSERT INTO [[schema]].partners_intervention_offices VALUES (110, 108, 201); INSERT INTO [[schema]].partners_intervention_offices VALUES (94, 92, 201); INSERT INTO [[schema]].partners_intervention_offices VALUES (95, 93, 201); INSERT INTO [[schema]].partners_intervention_offices VALUES (96, 94, 201); @@ -10735,6 +11277,11 @@ INSERT INTO [[schema]].partners_intervention_offices VALUES (105, 104, 201); INSERT INTO [[schema]].partners_intervention_offices VALUES (106, 102, 209); INSERT INTO [[schema]].partners_intervention_offices VALUES (102, 100, 201); INSERT INTO [[schema]].partners_intervention_offices VALUES (107, 105, 201); +INSERT INTO [[schema]].partners_intervention_offices VALUES (108, 106, 201); +INSERT INTO [[schema]].partners_intervention_offices VALUES (109, 107, 201); +INSERT INTO [[schema]].partners_intervention_offices VALUES (111, 109, 201); +INSERT INTO [[schema]].partners_intervention_offices VALUES (112, 110, 201); +INSERT INTO [[schema]].partners_intervention_offices VALUES (113, 111, 201); -- @@ -10789,7 +11336,7 @@ INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (88, 85 INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (90, 87, 67); INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (93, 90, 11); INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (92, 89, 56); -INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (94, 92, 17); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (116, 104, 80); INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (95, 94, 65); INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (96, 95, 71); INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (97, 93, 70); @@ -10798,6 +11345,19 @@ INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (104, 1 INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (105, 104, 74); INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (106, 102, 75); INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (102, 100, 72); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (122, 110, 6); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (112, 92, 77); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (109, 105, 74); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (113, 107, 78); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (114, 90, 79); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (115, 92, 81); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (117, 105, 80); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (118, 108, 83); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (119, 109, 1); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (120, 106, 86); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (121, 100, 82); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (123, 111, 16); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (124, 87, 85); -- @@ -10871,6 +11431,19 @@ INSERT INTO [[schema]].partners_intervention_sections VALUES (69, 100, 1); INSERT INTO [[schema]].partners_intervention_sections VALUES (74, 104, 2); INSERT INTO [[schema]].partners_intervention_sections VALUES (75, 102, 1); INSERT INTO [[schema]].partners_intervention_sections VALUES (76, 102, 2); +INSERT INTO [[schema]].partners_intervention_sections VALUES (83, 94, 1); +INSERT INTO [[schema]].partners_intervention_sections VALUES (84, 106, 1); +INSERT INTO [[schema]].partners_intervention_sections VALUES (85, 106, 2); +INSERT INTO [[schema]].partners_intervention_sections VALUES (86, 107, 1); +INSERT INTO [[schema]].partners_intervention_sections VALUES (81, 105, 1); +INSERT INTO [[schema]].partners_intervention_sections VALUES (88, 108, 1); +INSERT INTO [[schema]].partners_intervention_sections VALUES (87, 107, 2); +INSERT INTO [[schema]].partners_intervention_sections VALUES (89, 108, 2); +INSERT INTO [[schema]].partners_intervention_sections VALUES (90, 108, 4); +INSERT INTO [[schema]].partners_intervention_sections VALUES (91, 109, 1); +INSERT INTO [[schema]].partners_intervention_sections VALUES (92, 108, 3); +INSERT INTO [[schema]].partners_intervention_sections VALUES (93, 110, 1); +INSERT INTO [[schema]].partners_intervention_sections VALUES (94, 111, 3); -- @@ -10918,25 +11491,31 @@ INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (80, 66, INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (86, 70, 12687); INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (88, 78, 12687); INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (93, 83, 17069); -INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (90, 80, 17817); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (124, 106, 20024); INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (91, 81, 29294); INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (96, 86, 14583); INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (95, 85, 17817); -INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (97, 87, 1551); -INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (100, 90, 1551); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (128, 94, 247375); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (131, 108, 198811); INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (99, 89, 14583); -INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (101, 91, 1139); -INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (102, 92, 1551); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (132, 109, 17817); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (135, 110, 29294); INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (103, 93, 1551); -INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (104, 94, 1551); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (133, 90, 257700); INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (113, 101, 14488); INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (106, 95, 10233); INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (107, 75, 10233); INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (114, 77, 1139); INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (116, 104, 200131); INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (117, 13, 1551); -INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (112, 100, 13654); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (120, 80, 29294); INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (118, 102, 200131); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (119, 100, 17817); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (125, 107, 200131); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (123, 105, 200131); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (127, 87, 247375); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (136, 111, 247527); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (134, 92, 257700); -- @@ -10967,6 +11546,21 @@ INSERT INTO [[schema]].partners_interventionamendment VALUES (23, '2019-09-05 11 INSERT INTO [[schema]].partners_interventionamendment VALUES (24, '2019-10-01 08:57:12.871715+00', '2019-10-01 08:57:12.871715+00', '2019-04-14', 1, '', 77, '{no_cost}', NULL); INSERT INTO [[schema]].partners_interventionamendment VALUES (25, '2019-10-17 14:10:28.697744+00', '2019-10-17 14:10:28.697744+00', '2019-10-16', 4, '', 75, '{no_cost}', NULL); INSERT INTO [[schema]].partners_interventionamendment VALUES (26, '2019-10-28 08:32:43.106166+00', '2019-10-28 08:32:43.106166+00', '2019-06-30', 2, '', 65, '{budget_lte_20,no_cost}', NULL); +INSERT INTO [[schema]].partners_interventionamendment VALUES (27, '2019-12-01 14:55:16.414158+00', '2019-12-01 14:55:16.414158+00', '2019-10-09', 1, '', 100, '{budget_lte_20,other}', 'extended time'); +INSERT INTO [[schema]].partners_interventionamendment VALUES (28, '2019-12-08 13:07:05.420889+00', '2019-12-08 13:07:05.420889+00', '2019-03-17', 1, '', 80, '{budget_lte_20}', NULL); +INSERT INTO [[schema]].partners_interventionamendment VALUES (29, '2019-12-10 08:57:23.811256+00', '2019-12-10 08:57:23.811256+00', '2019-11-28', 2, '', 80, '{no_cost}', NULL); +INSERT INTO [[schema]].partners_interventionamendment VALUES (30, '2019-12-11 11:06:59.640046+00', '2019-12-11 11:06:59.640046+00', '2019-10-23', 1, '', 104, '{other}', 'add result framework'); +INSERT INTO [[schema]].partners_interventionamendment VALUES (31, '2019-12-18 14:00:53.541227+00', '2019-12-18 14:00:53.541227+00', '2019-11-13', 2, '', 104, '{admin_error}', 'correction in the PD due to'); +INSERT INTO [[schema]].partners_interventionamendment VALUES (32, '2019-12-19 10:27:32.580634+00', '2019-12-19 10:27:32.580634+00', '2019-10-01', 1, '', 102, '{admin_error}', NULL); +INSERT INTO [[schema]].partners_interventionamendment VALUES (33, '2020-01-13 08:48:13.409766+00', '2020-01-13 08:48:13.409766+00', '2019-12-31', 3, '', 80, '{budget_lte_20}', NULL); +INSERT INTO [[schema]].partners_interventionamendment VALUES (34, '2020-01-14 09:27:25.91562+00', '2020-01-14 09:27:25.91562+00', '2020-01-13', 2, '', 102, '{other}', 'amendment needed in indicators'); +INSERT INTO [[schema]].partners_interventionamendment VALUES (35, '2020-01-14 10:51:20.058747+00', '2020-01-14 10:51:20.058747+00', '2019-12-30', 1, '', 87, '{no_cost}', NULL); +INSERT INTO [[schema]].partners_interventionamendment VALUES (36, '2020-02-27 07:02:59.495359+00', '2020-02-27 07:02:59.495359+00', '2020-02-25', 1, '', 92, '{admin_error}', NULL); +INSERT INTO [[schema]].partners_interventionamendment VALUES (37, '2020-03-02 08:52:48.136868+00', '2020-03-02 08:52:48.136868+00', '2020-03-02', 1, '', 106, '{other}', 'annex G signed'); +INSERT INTO [[schema]].partners_interventionamendment VALUES (38, '2020-03-23 10:58:13.583581+00', '2020-03-23 10:58:13.583581+00', '2020-03-23', 2, '', 87, '{admin_error,budget_lte_20,change}', NULL); +INSERT INTO [[schema]].partners_interventionamendment VALUES (39, '2020-03-25 12:04:40.227236+00', '2020-03-25 12:04:40.227236+00', '2020-03-24', 1, '', 95, '{no_cost}', NULL); +INSERT INTO [[schema]].partners_interventionamendment VALUES (40, '2020-03-26 14:05:25.198647+00', '2020-03-26 14:05:25.198647+00', '2020-03-08', 3, '', 104, '{other}', 'amendment to timeline of the PD-changed to 1-1-20 for Tripoli and Sebha'); +INSERT INTO [[schema]].partners_interventionamendment VALUES (41, '2020-03-26 15:15:57.046325+00', '2020-03-26 15:15:57.046325+00', '2020-03-07', 4, '', 104, '{other}', 'timeline amendment to 01-01-2020 of Sebha and Tripoli'); -- @@ -11399,6 +11993,43 @@ INSERT INTO [[schema]].partners_interventionattachment VALUES (472, '', 104, 75, INSERT INTO [[schema]].partners_interventionattachment VALUES (473, '', 102, 75, '2019-10-28 09:37:29.357096+00', '2019-10-28 09:37:29.357096+00', true); INSERT INTO [[schema]].partners_interventionattachment VALUES (474, '', 85, 75, '2019-10-30 14:17:18.732392+00', '2019-11-05 14:08:32.084754+00', false); INSERT INTO [[schema]].partners_interventionattachment VALUES (475, '', 85, 75, '2019-11-05 14:09:21.981904+00', '2019-11-05 14:09:21.981904+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (476, '', 80, 75, '2019-12-08 13:08:27.008581+00', '2019-12-08 13:08:27.008581+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (477, '', 104, 75, '2019-12-17 15:51:30.699998+00', '2019-12-17 15:51:30.699998+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (478, '', 102, 75, '2019-12-19 15:29:46.859955+00', '2019-12-19 15:29:46.859955+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (480, '', 80, 73, '2020-01-13 08:25:51.941904+00', '2020-01-13 08:25:51.941904+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (481, '', 80, 75, '2020-01-13 08:26:17.763725+00', '2020-01-13 08:26:17.763725+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (482, '', 102, 75, '2020-01-13 14:49:45.642628+00', '2020-01-13 14:49:45.642628+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (483, '', 107, 75, '2020-01-16 15:25:15.246875+00', '2020-01-16 15:25:15.246875+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (484, '', 107, 75, '2020-01-16 15:25:35.373904+00', '2020-01-16 15:25:35.373904+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (485, '', 106, 75, '2020-01-16 16:32:20.227021+00', '2020-01-16 16:32:20.227021+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (486, '', 106, 75, '2020-01-16 16:32:30.415288+00', '2020-01-16 16:32:30.415288+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (487, '', 92, 75, '2020-01-20 11:00:10.868757+00', '2020-01-20 11:00:10.868757+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (488, '', 75, 73, '2020-01-23 12:00:55.986928+00', '2020-01-23 12:00:55.986928+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (489, '', 85, 73, '2020-01-23 12:01:31.211299+00', '2020-01-23 12:01:31.211299+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (479, '', 106, 75, '2020-01-08 08:58:43.823109+00', '2020-01-30 09:52:47.096653+00', false); +INSERT INTO [[schema]].partners_interventionattachment VALUES (496, '', 106, 75, '2020-01-30 09:53:16.863854+00', '2020-01-30 09:53:16.863854+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (492, '', 92, 3, '2020-01-26 07:31:22.514348+00', '2020-01-26 07:31:22.514348+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (493, '', 92, 3, '2020-01-26 07:32:03.439955+00', '2020-01-26 07:32:03.439955+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (490, '', 94, 3, '2020-01-26 07:26:20.83233+00', '2020-01-26 07:33:56.00456+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (491, '', 94, 3, '2020-01-26 07:28:06.188922+00', '2020-01-26 07:34:10.40828+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (494, '', 90, 3, '2020-01-26 07:55:44.752704+00', '2020-01-26 07:55:44.752704+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (495, '', 87, 3, '2020-01-26 08:09:28.647841+00', '2020-01-26 08:09:28.647841+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (497, '', 102, 75, '2020-02-11 12:40:24.552857+00', '2020-02-11 12:40:24.552857+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (498, '', 109, 75, '2020-02-25 14:02:06.904544+00', '2020-02-25 14:02:06.904544+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (499, '', 103, 75, '2020-03-02 14:34:22.804031+00', '2020-03-02 14:34:22.804031+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (500, '', 100, 75, '2020-03-03 10:39:24.245721+00', '2020-03-03 10:39:24.245721+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (501, '', 100, 75, '2020-03-03 10:39:50.431793+00', '2020-03-03 10:39:50.431793+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (502, '', 100, 75, '2020-03-03 10:40:11.658713+00', '2020-03-03 10:40:11.658713+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (503, '', 100, 75, '2020-03-03 14:45:53.167649+00', '2020-03-03 14:45:53.167649+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (504, '', 106, 75, '2020-03-06 13:47:54.405579+00', '2020-03-06 13:47:54.405579+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (505, '', 106, 75, '2020-03-06 13:50:15.405559+00', '2020-03-06 13:50:15.405559+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (506, '', 106, 75, '2020-03-06 13:50:37.026412+00', '2020-03-06 13:50:37.026412+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (507, '', 109, 75, '2020-03-15 12:15:23.40367+00', '2020-03-15 12:15:23.40367+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (508, '', 102, 75, '2020-03-17 10:53:49.883491+00', '2020-03-17 10:53:49.883491+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (509, '', 87, 75, '2020-03-23 11:01:07.189975+00', '2020-03-23 11:01:07.189975+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (510, '', 110, 75, '2020-04-07 10:22:37.055777+00', '2020-04-07 10:22:37.055777+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (511, '', 89, 73, '2020-04-07 11:00:03.577667+00', '2020-04-07 11:00:03.577667+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (512, '', 87, 75, '2020-04-21 07:50:37.638241+00', '2020-04-21 07:50:37.638241+00', true); -- @@ -11451,18 +12082,23 @@ INSERT INTO [[schema]].partners_interventionbudget VALUES (103, '2019-03-04 07:3 INSERT INTO [[schema]].partners_interventionbudget VALUES (101, '2019-01-13 12:53:25.331526+00', '2019-02-18 13:09:03.110405+00', 0.00, 0.00, 0.00, 133600.00, 602834.00, 0.00, 0.00, 85, 736434.00, 'USD'); INSERT INTO [[schema]].partners_interventionbudget VALUES (105, '2019-03-18 14:07:16.037579+00', '2019-04-04 11:13:56.340731+00', 0.00, 0.00, 0.00, 96485.00, 520835.00, 0.00, 0.00, 89, 617320.00, 'USD'); INSERT INTO [[schema]].partners_interventionbudget VALUES (82, '2018-03-28 10:49:00.875611+00', '2019-04-16 12:39:09.096969+00', 0.00, 0.00, 0.00, 64160.00, 501134.39, 0.00, 0.00, 65, 565294.39, 'USD'); -INSERT INTO [[schema]].partners_interventionbudget VALUES (107, '2019-04-18 11:09:06.879135+00', '2019-04-18 11:09:06.881954+00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 91, 0.00, 'LYD'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (124, '2020-02-12 10:59:54.985792+00', '2020-02-13 09:39:40.716194+00', 0.00, 0.00, 0.00, 37980.00, 77200.00, 300000.00, 0.00, 108, 415180.00, 'USD'); INSERT INTO [[schema]].partners_interventionbudget VALUES (108, '2019-04-30 12:04:33.846545+00', '2019-06-27 10:07:28.95506+00', 0.00, 0.00, 0.00, 42340.00, 295950.00, 10584.00, 0.00, 92, 348874.00, 'LYD'); INSERT INTO [[schema]].partners_interventionbudget VALUES (110, '2019-05-05 07:42:39.374818+00', '2019-05-22 08:11:01.715221+00', 0.00, 0.00, 0.00, 24000.00, 118250.00, 60312.00, 0.00, 94, 202562.00, 'USD'); INSERT INTO [[schema]].partners_interventionbudget VALUES (109, '2019-05-02 07:46:38.321381+00', '2019-05-26 07:55:08.297902+00', 0.00, 0.00, 0.00, 0.00, 49179.86, 3274.77, 0.00, 93, 52454.63, 'USD'); INSERT INTO [[schema]].partners_interventionbudget VALUES (111, '2019-05-27 11:05:44.47834+00', '2019-05-28 12:36:05.158695+00', 0.00, 0.00, 0.00, 91120.00, 361180.00, 0.00, 0.00, 95, 452300.00, 'LYD'); INSERT INTO [[schema]].partners_interventionbudget VALUES (106, '2019-04-10 14:00:57.122452+00', '2019-06-23 14:15:12.192843+00', 0.00, 0.00, 0.00, 48934.00, 297816.00, 54636.00, 0.00, 90, 401386.00, 'LYD'); INSERT INTO [[schema]].partners_interventionbudget VALUES (117, '2019-06-16 11:10:40.418183+00', '2019-07-09 10:49:54.526264+00', 0.00, 0.00, 0.00, 20450.00, 118050.00, 0.00, 0.00, 101, 138500.00, 'USD'); -INSERT INTO [[schema]].partners_interventionbudget VALUES (116, '2019-06-12 12:08:55.499019+00', '2019-06-12 12:08:55.50267+00', 0.00, 0.00, 0.00, 35935.21, 171115.48, 6906.90, 0.00, 100, 213957.59, 'LYD'); INSERT INTO [[schema]].partners_interventionbudget VALUES (119, '2019-09-25 14:52:24.683261+00', '2019-10-16 08:15:00.396029+00', 0.00, 0.00, 0.00, 121444.00, 688181.00, 0.00, 0.00, 103, 809625.00, 'USD'); INSERT INTO [[schema]].partners_interventionbudget VALUES (120, '2019-10-24 10:12:53.531395+00', '2019-10-24 10:12:53.531395+00', 0.00, 0.00, 0.00, 204511.28, 621390.44, 2700.40, 0.00, 104, 828602.12, 'USD'); INSERT INTO [[schema]].partners_interventionbudget VALUES (118, '2019-09-10 17:45:24.262089+00', '2019-10-28 09:23:19.485882+00', 0.00, 0.00, 0.00, 374320.00, 1740684.00, 9522.00, 0.00, 102, 2124526.00, 'USD'); -INSERT INTO [[schema]].partners_interventionbudget VALUES (121, '2019-11-06 14:45:25.25305+00', '2019-11-06 14:45:25.25305+00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 105, 0.00, 'LYD'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (121, '2019-11-06 14:45:25.25305+00', '2019-12-19 08:54:39.972832+00', 0.00, 0.00, 0.00, 154460.82, 577673.40, 0.00, 0.00, 105, 732134.22, 'USD'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (116, '2019-06-12 12:08:55.499019+00', '2019-12-22 15:06:55.896732+00', 0.00, 0.00, 0.00, 42335.21, 278115.48, 9563.40, 0.00, 100, 330014.09, 'LYD'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (122, '2019-12-29 13:35:03.61564+00', '2019-12-29 13:46:30.028027+00', 0.00, 0.00, 0.00, 154800.00, 860569.00, 8156.00, 0.00, 106, 1023525.00, 'USD'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (123, '2020-01-03 13:00:22.021564+00', '2020-01-03 14:06:02.54496+00', 0.00, 0.00, 0.00, 154800.00, 860569.00, 8156.00, 0.00, 107, 1023525.00, 'USD'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (125, '2020-02-25 13:46:28.057071+00', '2020-02-25 13:56:57.544846+00', 0.00, 0.00, 0.00, 141180.00, 685634.00, 0.00, 0.00, 109, 826814.00, 'USD'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (126, '2020-04-07 10:21:10.354324+00', '2020-04-07 10:21:10.354324+00', 0.00, 0.00, 0.00, 639.00, 5050.00, 57177.00, 0.00, 110, 62866.00, 'USD'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (127, '2020-04-13 15:39:00.851836+00', '2020-04-21 08:51:46.45721+00', 0.00, 0.00, 0.00, 37862.00, 176653.00, 44499.00, 0.00, 111, 259014.00, 'LYD'); -- @@ -11499,7 +12135,12 @@ INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (63, 2018, 2, 7 INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (64, 2019, 1, 77, '2019-03-03 15:05:32.260894+00', '2019-03-03 15:05:32.261325+00', 3, 3, 3); INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (65, 2019, 2, 87, '2019-03-04 07:33:14.397613+00', '2019-03-04 07:33:14.399481+00', 1, 2, 1); INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (66, 2019, 0, 89, '2019-04-04 09:08:57.694091+00', '2019-04-04 09:08:57.694649+00', 0, 4, 4); -INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (71, 2019, 1, 100, '2019-06-12 12:08:55.558941+00', '2019-06-12 12:08:55.559458+00', 0, 1, 1); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (72, 2020, 1, 103, '2019-12-22 13:53:46.832663+00', '2019-12-22 13:53:46.832663+00', 0, 1, 2); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (71, 2019, 0, 100, '2019-06-12 12:08:55.558941+00', '2019-12-22 15:06:55.969768+00', 0, 1, 2); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (73, 2020, 1, 100, '2019-12-22 15:06:56.020904+00', '2019-12-22 15:06:56.020904+00', 0, 0, 0); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (74, 2020, 1, 108, '2020-02-13 09:39:40.773176+00', '2020-02-13 09:39:40.773176+00', 2, 1, 2); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (75, 2020, 1, 109, '2020-02-25 13:56:57.596698+00', '2020-02-25 13:56:57.596698+00', 1, 1, 1); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (76, 2020, 2, 111, '2020-04-14 13:12:13.96447+00', '2020-04-15 16:03:57.906835+00', 4, 2, 3); -- @@ -11536,8 +12177,26 @@ INSERT INTO [[schema]].partners_interventionresultlink VALUES (55, 108, 70, '201 INSERT INTO [[schema]].partners_interventionresultlink VALUES (56, 110, 73, '2018-08-26 12:31:15.698207+00', '2018-08-26 12:31:15.698845+00'); INSERT INTO [[schema]].partners_interventionresultlink VALUES (57, 47, 78, '2018-09-26 12:31:10.210113+00', '2018-09-26 12:32:45.071931+00'); INSERT INTO [[schema]].partners_interventionresultlink VALUES (58, 108, 75, '2018-10-24 09:22:47.859956+00', '2018-10-24 09:22:47.860601+00'); -INSERT INTO [[schema]].partners_interventionresultlink VALUES (60, 220, 102, '2019-10-02 09:30:03.097437+00', '2019-10-02 09:30:03.097437+00'); INSERT INTO [[schema]].partners_interventionresultlink VALUES (62, 216, 103, '2019-10-16 08:13:02.560919+00', '2019-10-16 08:13:02.560919+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (63, 216, 104, '2019-12-11 11:16:08.051696+00', '2019-12-11 11:16:08.051696+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (75, 216, 95, '2019-12-31 09:13:48.864511+00', '2019-12-31 09:13:48.864511+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (69, 220, 92, '2019-12-22 09:29:24.248378+00', '2019-12-25 14:20:41.145018+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (80, 220, 102, '2020-01-14 09:28:25.450069+00', '2020-01-30 08:22:21.528879+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (65, 216, 105, '2019-12-18 11:24:06.081918+00', '2019-12-18 11:24:06.081918+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (72, 216, 100, '2019-12-22 14:17:41.889905+00', '2019-12-22 14:17:41.889905+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (68, 216, 102, '2019-12-19 15:26:15.457483+00', '2020-01-13 14:37:32.306434+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (64, 220, 90, '2019-12-18 08:01:55.992477+00', '2019-12-23 12:51:46.203562+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (81, 216, 107, '2020-01-16 14:09:10.039597+00', '2020-01-16 14:09:10.039597+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (82, 220, 107, '2020-01-16 14:50:54.946378+00', '2020-01-16 14:50:54.946378+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (79, 216, 106, '2020-01-08 09:21:51.006623+00', '2020-01-16 15:32:14.831487+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (83, 220, 106, '2020-01-16 16:01:28.213441+00', '2020-01-16 16:01:28.213441+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (70, 220, 94, '2019-12-22 10:01:10.320585+00', '2020-01-28 14:20:03.715391+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (71, 218, 94, '2019-12-22 10:15:36.918334+00', '2020-01-29 10:19:10.445628+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (73, 216, 94, '2019-12-29 08:02:18.194756+00', '2020-01-29 10:20:01.210642+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (84, 220, 87, '2020-01-29 11:40:16.790316+00', '2020-01-29 11:42:01.12841+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (91, 208, 111, '2020-04-19 07:25:21.697179+00', '2020-04-19 07:25:40.482945+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (87, 208, 108, '2020-04-05 11:17:40.882043+00', '2020-04-16 18:55:11.1126+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (86, 209, 108, '2020-04-05 11:13:04.374227+00', '2020-04-05 15:51:18.681493+00'); -- @@ -11575,66 +12234,110 @@ INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (63 INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (64, 57, 134); INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (65, 58, 144); INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (66, 58, 142); -INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (68, 60, 152); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (91, 69, 174); INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (70, 62, 185); INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (71, 62, 156); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (72, 63, 185); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (73, 63, 147); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (92, 69, 175); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (150, 91, 146); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (112, 75, 185); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (113, 75, 156); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (79, 64, 174); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (80, 64, 175); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (81, 65, 185); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (82, 65, 147); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (94, 69, 152); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (143, 86, 183); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (96, 70, 174); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (88, 68, 177); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (89, 68, 185); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (90, 68, 147); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (97, 70, 175); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (98, 70, 180); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (99, 70, 152); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (132, 71, 179); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (144, 87, 149); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (122, 80, 152); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (121, 79, 185); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (123, 81, 177); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (106, 72, 185); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (107, 72, 156); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (108, 64, 152); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (124, 81, 185); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (125, 81, 147); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (126, 82, 152); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (127, 79, 147); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (128, 83, 152); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (133, 71, 167); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (134, 73, 185); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (135, 73, 147); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (136, 84, 174); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (137, 84, 175); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (138, 84, 180); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (139, 84, 152); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (140, 84, 153); -- -- Data for Name: partners_partnerorganization; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].partners_partnerorganization VALUES (75, '', NULL, 'Partner75', '', '', 'Address75', 'email75@nowhere.org', '75', '75', NULL, '', '', '', NULL, NULL, false, true, false, 75.00, 75.00, false, 'City 75', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.902202+00', 75.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (34, 'Civil Society Organization', 'National', 'Partner34', '', '', 'Address34', 'email34@nowhere.org', '34', '34', NULL, '', 'Low', 'Micro Assessment', '2015-11-02', '2015-11-02', true, false, false, 34.00, 34.00, false, 'City 34', 'Palestine St.of', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.919628+00', 34.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (85, 'Civil Society Organization', 'National', 'Partner85', '', '', 'Address85', 'email85@nowhere.org', '85', '85', NULL, NULL, 'High', 'High Risk Assumed', '2019-04-30', '2018-09-28', true, false, false, 85.00, 85.00, false, 'City 85', '258', '00218', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-05-02 07:23:57.6699+00', '2020-04-02 17:19:51.921845+00', 85.00, 0.00, 49179.86, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (79, 'Civil Society Organization', 'National', 'Partner79', '', '', 'Address79', 'email79@nowhere.org', '79', '79', NULL, '', 'High', 'High Risk Assumed', '2018-04-11', '2018-01-15', true, false, false, 79.00, 79.00, false, 'City 79', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 3, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 3}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-04-30 00:05:37.768892+00', '2020-04-02 17:19:51.924148+00', 79.00, 259700.00, 132900.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (2, 'Civil Society Organization', 'National', 'Partner2', '', '', 'Address2', 'email2@nowhere.org', '2', '2', NULL, '', 'High', 'High Risk Assumed', '2016-09-06', '2016-09-06', true, false, false, 2.00, 2.00, false, 'City 2', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.926763+00', 2.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (18, 'Civil Society Organization', 'National', 'Partner18', '', '', 'Address18', 'email18@nowhere.org', '18', '18', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 18.00, 18.00, true, 'City 18', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.929153+00', 18.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (40, 'Civil Society Organization', 'National', 'Partner40', '', '', 'Address40', 'email40@nowhere.org', '40', '40', NULL, '', 'High', 'High Risk Assumed', '2017-08-07', '2017-07-12', true, false, false, 40.00, 40.00, false, 'City 40', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.931532+00', 40.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (8, 'Civil Society Organization', 'National', 'Partner8', '', '', 'Address8', 'email8@nowhere.org', '8', '8', NULL, '', 'High', 'High Risk Assumed', '2016-05-30', '2016-05-30', true, false, false, 8.00, 8.00, false, 'City 8', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.933816+00', 8.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (17, 'Civil Society Organization', 'National', 'Partner17', '', '', 'Address17', 'email17@nowhere.org', '17', '17', NULL, '', 'Medium', 'Micro Assessment', '2017-06-01', '2017-06-01', true, false, false, 17.00, 17.00, false, 'City 17', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"partial\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 2, \"q3\": 0, \"q4\": 0, \"total\": 2}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.936406+00', 17.00, 68449.15, 152566.96, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (23, 'Civil Society Organization', 'National', 'Partner23', '', '', 'Address23', 'email23@nowhere.org', '23', '23', NULL, '', 'Low', 'Micro Assessment', '2018-06-06', '2016-09-20', true, false, false, 23.00, 23.00, false, 'City 23', '222', '24128', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.939027+00', 23.00, 364596.15, 756509.39, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (39, 'Civil Society Organization', 'National', 'Partner39', '', '', 'Address39', 'email39@nowhere.org', '39', '39', NULL, '', 'High', 'High Risk Assumed', '2017-07-03', '2017-06-20', true, false, false, 39.00, 39.00, false, 'City 39', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.94147+00', 39.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (25, 'Civil Society Organization', 'International', 'Partner25', '', '', 'Address25', 'email25@nowhere.org', '25', '25', NULL, '', 'Low', 'Micro Assessment', '2016-01-01', '2018-04-09', true, false, false, 25.00, 25.00, false, 'City 25', '120', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.944323+00', 25.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (4, 'Civil Society Organization', 'National', 'Partner4', '', '', 'Address4', 'email4@nowhere.org', '4', '4', NULL, '', 'Medium', 'Micro Assessment', '2017-05-30', '2016-04-23', true, false, false, 4.00, 4.00, false, 'City 4', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.946976+00', 4.00, 89630.52, 134731.95, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (38, 'Civil Society Organization', 'National', 'Partner38', '', '', 'Address38', 'email38@nowhere.org', '38', '38', NULL, '', 'High', 'High Risk Assumed', '2017-06-01', '2017-05-29', true, false, false, 38.00, 38.00, false, 'City 38', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"complete\", \"programmatic_visits\": {\"planned\": {\"q1\": 2, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 2}, \"completed\": {\"q1\": 0, \"q2\": 4, \"q3\": 0, \"q4\": 0, \"total\": 4}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.949341+00', 38.00, 36200.00, 109480.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (1, 'Civil Society Organization', 'National', 'Partner1', '', '', 'Address1', 'email1@nowhere.org', '1', '1', NULL, '', 'High', 'High Risk Assumed', '2019-11-11', '2019-05-11', true, false, false, 1.00, 1.00, false, 'City 1', '258', '00218', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 3, \"q2\": 3, \"q3\": 3, \"q4\": 3, \"total\": 12}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.951923+00', 1.00, 482893.00, 275179.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (22, 'Civil Society Organization', 'International', 'Partner22', '', '', 'Address22', 'email22@nowhere.org', '22', '22', NULL, '', 'High', 'High Risk Assumed', '2016-11-13', '2019-05-16', true, false, false, 22.00, 22.00, false, 'City 22', '147', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.954488+00', 22.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (87, 'Civil Society Organization', 'National', 'Partner87', '', '', 'Address87', 'email87@nowhere.org', '87', '87', NULL, NULL, 'High', 'High Risk Assumed', '2019-05-22', '2019-04-25', true, false, false, 87.00, 87.00, false, 'City 87', '258', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-05-26 12:35:41.732388+00', '2020-04-02 17:19:51.956825+00', 87.00, 0.00, 105207.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (91, 'Government', NULL, 'Partner91', '', '', 'Address91', 'email91@nowhere.org', '91', '91', NULL, NULL, 'High', 'High Risk Assumed', '2019-09-02', NULL, true, false, false, 91.00, 91.00, false, 'City 91', '258', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-11-07 01:46:31.450276+00', '2020-04-02 17:19:51.959195+00', 91.00, 0.00, 27843.75, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (90, 'Government', NULL, 'Partner90', '', '', 'Address90', 'email90@nowhere.org', '90', '90', NULL, NULL, 'High', 'High Risk Assumed', '2019-10-07', NULL, true, false, false, 90.00, 90.00, false, 'City 90', '258', '00218', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-10-09 14:42:43.393827+00', '2020-04-02 17:19:51.961384+00', 90.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (83, 'Civil Society Organization', 'National', 'Partner83', '', '', 'Address83', 'email83@nowhere.org', '83', '83', NULL, NULL, 'Not Required', 'Micro Assessment', '2018-12-03', '2018-12-03', true, false, false, 83.00, 83.00, false, 'City 83', '258', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-01-01 00:07:47.25562+00', '2020-04-02 17:19:51.963695+00', 83.00, 18175.29, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (78, 'Civil Society Organization', 'International', 'Partner78', '', '', 'Address78', 'email78@nowhere.org', '78', '78', NULL, '', 'Low', 'Low Risk Assumed', '2018-03-02', '2018-01-03', true, false, false, 78.00, 78.00, false, 'City 78', '027', '2067', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"complete\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 7, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 7}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-16 00:11:36.177682+00', '2020-04-02 17:19:51.96627+00', 78.00, 177196.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (9, 'Civil Society Organization', 'International', 'Partner9', '', '', 'Address9', 'email9@nowhere.org', '9', '9', NULL, '', 'Low', 'Micro Assessment', '2016-01-01', '2015-12-22', true, false, false, 9.00, 9.00, false, 'City 9', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.968861+00', 9.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (88, 'Civil Society Organization', 'International', 'Partner88', '', '', 'Address88', 'email88@nowhere.org', '88', '88', NULL, NULL, 'High', 'High Risk Assumed', '2019-05-07', '2018-01-10', true, false, false, 88.00, 88.00, false, 'City 88', '258', '00218', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-09-25 09:06:15.761533+00', '2020-04-02 17:19:51.971957+00', 88.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (89, 'Civil Society Organization', 'International', 'Partner89', '', '', 'Address89', 'email89@nowhere.org', '89', '89', NULL, 'Pietro de Nicolai', 'High', 'High Risk Assumed', '2019-10-07', '2019-03-26', true, false, false, 89.00, 89.00, false, 'City 89', '258', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-10-08 12:55:49.987165+00', '2020-04-02 17:19:51.97466+00', 89.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (3, 'Civil Society Organization', 'National', 'Partner3', '', '', 'Address3', 'email3@nowhere.org', '3', '3', NULL, '', 'Medium', 'Micro Assessment', '2016-12-20', '2016-04-23', true, false, false, 3.00, 3.00, false, 'City 3', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.977208+00', 3.00, 91918.00, 6013.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (10, 'Civil Society Organization', 'National', 'Partner10', '', '', 'Address10', 'email10@nowhere.org', '10', '10', NULL, '', 'High', 'Micro Assessment', '2016-11-17', '2016-11-08', true, false, false, 10.00, 10.00, false, 'City 10', '258', '1045', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.980012+00', 10.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (21, 'Civil Society Organization', 'National', 'Partner21', '', '', 'Address21', 'email21@nowhere.org', '21', '21', NULL, '', 'High', 'High Risk Assumed', '2016-09-25', '2016-09-25', true, false, false, 21.00, 21.00, false, 'City 21', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.982601+00', 21.00, 112554.00, 112554.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (74, 'Civil Society Organization', 'National', 'Partner74', '', '', 'Address74', 'email74@nowhere.org', '74', '74', NULL, '', 'High', 'High Risk Assumed', '2018-01-23', '2018-01-18', true, false, false, 74.00, 74.00, false, 'City 74', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.985128+00', 74.00, 48800.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (12, 'Civil Society Organization', 'National', 'Partner12', '', '', 'Address12', 'email12@nowhere.org', '12', '12', NULL, '', 'High', 'High Risk Assumed', '2019-05-20', '2019-05-20', true, false, false, 12.00, 12.00, false, 'City 12', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"partial\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 1, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 1}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.987711+00', 12.00, 77137.50, 96189.90, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (35, 'Civil Society Organization', 'National', 'Partner35', '', '', 'Address35', 'email35@nowhere.org', '35', '35', NULL, '', 'High', 'High Risk Assumed', '2017-03-24', '2017-03-14', true, false, false, 35.00, 35.00, false, 'City 35', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.990292+00', 35.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (14, 'Civil Society Organization', 'National', 'Partner14', '', '', 'Address14', 'email14@nowhere.org', '14', '14', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 14.00, 14.00, true, 'City 14', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.99285+00', 14.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (15, 'Civil Society Organization', 'National', 'Partner15', '', '', 'Address15', 'email15@nowhere.org', '15', '15', NULL, '', 'Low', '', NULL, NULL, true, true, true, 15.00, 15.00, true, 'City 15', '453', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.995341+00', 15.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (37, 'Civil Society Organization', 'National', 'Partner37', '', '', 'Address37', 'email37@nowhere.org', '37', '37', NULL, '', 'High', 'High Risk Assumed', '2017-02-08', '2016-12-16', true, false, false, 37.00, 37.00, false, 'City 37', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 3, \"q2\": 3, \"q3\": 1, \"q4\": 0, \"total\": 7}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.997859+00', 37.00, 87940.00, 32100.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (5, 'Government', NULL, 'Partner5', '', '', 'Address5', 'email5@nowhere.org', '5', '5', NULL, '', 'High', 'Micro Assessment', '2016-10-28', NULL, true, false, false, 5.00, 5.00, false, 'City 5', '258', '71171', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"partial\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 5, \"q3\": 0, \"q4\": 0, \"total\": 5}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:52.00053+00', 5.00, 451562.70, 45000.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (81, 'Civil Society Organization', 'National', 'Partner81', '', '', 'Address81', 'email81@nowhere.org', '81', '81', NULL, NULL, 'High', 'High Risk Assumed', '2018-07-11', '2018-06-13', true, false, false, 81.00, 81.00, false, 'City 81', '258', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"partial\", \"programmatic_visits\": {\"planned\": {\"q1\": 3, \"q2\": 3, \"q3\": 0, \"q4\": 0, \"total\": 6}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 4, \"q4\": 0, \"total\": 4}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-07-30 09:26:44.948943+00', '2020-04-02 17:19:52.003234+00', 81.00, 98888.00, 89668.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (84, 'Civil Society Organization', 'International', 'Partner84', '', '', 'Address84', 'email84@nowhere.org', '84', '84', NULL, NULL, 'Low', 'Micro Assessment', '2017-06-06', '2019-04-09', true, false, false, 84.00, 84.00, false, 'City 84', '324', '0102', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 1, \"q2\": 2, \"q3\": 1, \"q4\": 2, \"total\": 6}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-01-23 15:05:47.103108+00', '2020-04-02 17:19:52.006282+00', 84.00, 0.00, 321230.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (19, 'Civil Society Organization', 'National', 'Partner19', '', '', 'Address19', 'email19@nowhere.org', '19', '19', NULL, '', 'High', 'High Risk Assumed', '2016-09-16', '2016-09-16', true, false, false, 19.00, 19.00, false, 'City 19', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:52.009314+00', 19.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (92, 'Government', NULL, 'Partner92', '', '', 'Address92', 'email92@nowhere.org', '92', '92', NULL, NULL, 'High', 'High Risk Assumed', '2019-01-04', NULL, true, false, false, 92.00, 92.00, false, 'City 92', '258', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-11-07 09:50:41.267244+00', '2020-04-02 17:19:52.024569+00', 92.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (24, 'Civil Society Organization', 'National', 'Partner24', '', '', 'Address24', 'email24@nowhere.org', '24', '24', NULL, '', 'Not Required', 'Micro Assessment', '2013-09-20', NULL, true, true, true, 24.00, 24.00, true, 'City 24', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:52.027492+00', 24.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (20, 'Civil Society Organization', 'Academic Institution', 'Partner20', '', '', 'Address20', 'email20@nowhere.org', '20', '20', NULL, '', 'Not Required', 'Micro Assessment', '2016-03-01', '2016-02-01', true, false, false, 20.00, 20.00, false, 'City 20', '456', '02111', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:52.03062+00', 20.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (7, 'Civil Society Organization', 'National', 'Partner7', '', '', 'Address7', 'email7@nowhere.org', '7', '7', NULL, '', 'High', 'Others', '2016-12-08', '2016-11-22', true, false, false, 7.00, 7.00, false, 'City 7', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:52.03383+00', 7.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (76, '', NULL, 'Partner76', '', '', 'Address76', 'email76@nowhere.org', '76', '76', NULL, '', '', '', NULL, NULL, false, true, true, 76.00, 76.00, true, 'City 76', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.905337+00', 76.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (77, '', NULL, 'Partner77', '', '', 'Address77', 'email77@nowhere.org', '77', '77', NULL, '', '', '', NULL, NULL, false, true, true, 77.00, 77.00, true, 'City 77', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.907919+00', 77.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (80, 'Civil Society Organization', 'National', 'Partner80', '', '', 'Address80', 'email80@nowhere.org', '80', '80', NULL, NULL, 'High', 'High Risk Assumed', '2018-02-08', '2017-10-30', true, false, false, 80.00, 80.00, false, 'City 80', '258', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-05-11 00:10:18.770301+00', '2020-04-02 17:19:51.910166+00', 80.00, 70400.00, 86650.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (16, 'Civil Society Organization', 'International', 'Partner16', '', '', 'Address16', 'email16@nowhere.org', '16', '16', NULL, '', 'Low', 'Micro Assessment', '2017-03-13', '2019-03-19', true, false, false, 16.00, 16.00, false, 'City 16', '147', '75009', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.912466+00', 16.00, 135509.21, 17821.21, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (73, 'Civil Society Organization', 'National', 'Partner73', '', '', 'Address73', 'email73@nowhere.org', '73', '73', NULL, '', 'High', 'High Risk Assumed', '2017-08-28', '2017-07-26', true, false, false, 73.00, 73.00, false, 'City 73', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"partial\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 4, \"q3\": 4, \"q4\": 0, \"total\": 8}, \"completed\": {\"q1\": 0, \"q2\": 5, \"q3\": 3, \"q4\": 1, \"total\": 9}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.914809+00', 73.00, 266435.00, 520835.00, '', false, 147400.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (13, 'Civil Society Organization', 'National', 'Partner13', '', '', 'Address13', 'email13@nowhere.org', '13', '13', NULL, '', 'Medium', 'Micro Assessment', '2017-08-04', '2017-08-31', true, false, false, 13.00, 13.00, false, 'City 13', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:51.917305+00', 13.00, 161956.00, 46226.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (36, 'Civil Society Organization', 'National', 'Partner36', '', '', 'Address36', 'email36@nowhere.org', '36', '36', NULL, '', 'High', 'High Risk Assumed', '2017-03-24', '2017-03-13', true, false, false, 36.00, 36.00, false, 'City 36', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:52.012339+00', 36.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (86, 'Civil Society Organization', 'National', 'Partner86', '', '', 'Address86', 'email86@nowhere.org', '86', '86', NULL, NULL, 'High', 'High Risk Assumed', '2019-04-17', '2019-03-15', true, false, false, 86.00, 86.00, false, 'City 86', '258', '00218', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"complete\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 1, \"q3\": 1, \"q4\": 1, \"total\": 3}, \"completed\": {\"q1\": 0, \"q2\": 1, \"q3\": 0, \"q4\": 0, \"total\": 1}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-05-25 00:07:58.557627+00', '2020-04-02 17:19:52.015364+00', 86.00, 0.00, 104552.95, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (6, 'Civil Society Organization', 'National', 'Partner6', '', '', 'Address6', 'email6@nowhere.org', '6', '6', NULL, '', 'Medium', 'Micro Assessment', '2017-06-02', '2014-10-30', true, false, false, 6.00, 6.00, false, 'City 6', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"partial\", \"programmatic_visits\": {\"planned\": {\"q1\": 3, \"q2\": 3, \"q3\": 3, \"q4\": 1, \"total\": 10}, \"completed\": {\"q1\": 0, \"q2\": 10, \"q3\": 0, \"q4\": 0, \"total\": 10}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:52.018426+00', 6.00, 119230.98, 119231.00, '', false, 99931.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (11, 'Civil Society Organization', 'National', 'Partner11', '', '', 'Address11', 'email11@nowhere.org', '11', '11', NULL, '', 'Low', 'Micro Assessment', '2014-09-16', '2014-10-30', true, false, false, 11.00, 11.00, false, 'City 11', '258', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:57:12.304183+00', '2020-04-02 17:19:52.02149+00', 11.00, 0.00, 0.00, '', false, 0.00, 0.00); +INSERT INTO [[schema]].partners_partnerorganization VALUES (76, '', NULL, 'Partner76', '', '', 'Address76', 'email76@nowhere.org', '76', '76', NULL, '', '', '', NULL, NULL, false, true, true, 76.00, 76.00, true, 'City 76', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 02:59:18.075384+00', 76.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (39, 'Civil Society Organization', 'National', 'Partner39', '', '', 'Address39', 'email39@nowhere.org', '39', '39', NULL, '', 'High', 'High Risk Assumed', '2017-07-03', '2017-06-20', true, false, false, 39.00, 39.00, false, 'City 39', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.450068+00', 39.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (37, 'Civil Society Organization', 'National', 'Partner37', '', '', 'Address37', 'email37@nowhere.org', '37', '37', NULL, '', 'High', 'High Risk Assumed', '2017-02-08', '2016-12-16', true, false, false, 37.00, 37.00, false, 'City 37', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 12:51:37.879215+00', 37.00, 67008.00, 2808.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (96, 'Government', NULL, 'Partner96', '', '', 'Address96', 'email96@nowhere.org', '96', '96', NULL, NULL, 'High', 'High Risk Assumed', '2019-10-07', NULL, true, false, false, 96.00, 96.00, false, 'City 96', '258', '00218', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2020-01-13 08:46:52.866461+00', '2020-02-04 20:56:50.432441+00', 96.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (24, 'Civil Society Organization', 'National', 'Partner24', '', '', 'Address24', 'email24@nowhere.org', '24', '24', NULL, '', 'Not Required', 'Micro Assessment', '2013-09-20', NULL, true, true, true, 24.00, 24.00, true, 'City 24', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.491485+00', 24.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (80, 'Civil Society Organization', 'National', 'Partner80', '', '', 'Address80', 'email80@nowhere.org', '80', '80', NULL, NULL, 'High', 'High Risk Assumed', '2018-02-08', '2017-10-30', true, false, false, 80.00, 80.00, false, 'City 80', '258', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-05-11 00:10:18.770301+00', '2020-04-21 12:51:35.570756+00', 80.00, 95100.00, 23150.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (79, 'Civil Society Organization', 'National', 'Partner79', '', '', 'Address79', 'email79@nowhere.org', '79', '79', NULL, '', 'High', 'High Risk Assumed', '2018-04-11', '2018-01-15', true, false, false, 79.00, 79.00, false, 'City 79', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-04-30 00:05:37.768892+00', '2020-04-21 03:01:13.347721+00', 79.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (12, 'Civil Society Organization', 'National', 'Partner12', '', '', 'Address12', 'email12@nowhere.org', '12', '12', NULL, '', 'High', 'High Risk Assumed', '2019-05-20', '2019-05-20', true, false, false, 12.00, 12.00, false, 'City 12', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 4, "q2": 2, "q3": 3, "q4": 2, "total": 11}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 12:51:37.727235+00', 12.00, 118050.00, 49000.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (93, 'Government', NULL, 'Partner93', '', '', 'Address93', 'email93@nowhere.org', '93', '93', NULL, NULL, 'High', 'High Risk Assumed', '2019-11-20', NULL, true, false, false, 93.00, 93.00, false, 'City 93', '258', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2019-11-27 10:02:27.993841+00', '2020-02-04 20:56:50.181783+00', 93.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (34, 'Civil Society Organization', 'National', 'Partner34', '', '', 'Address34', 'email34@nowhere.org', '34', '34', NULL, '', 'Low', 'Micro Assessment', '2015-11-02', '2015-11-02', true, false, false, 34.00, 34.00, false, 'City 34', 'Palestine St.of', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-02-04 20:56:50.007192+00', 34.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (3, 'Civil Society Organization', 'National', 'Partner3', '', '', 'Address3', 'email3@nowhere.org', '3', '3', NULL, '', 'Medium', 'Micro Assessment', '2016-12-20', '2016-04-23', true, false, false, 3.00, 3.00, false, 'City 3', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.194854+00', 3.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (22, 'Civil Society Organization', 'International', 'Partner22', '', '', 'Address22', 'email22@nowhere.org', '22', '22', NULL, '', 'High', 'High Risk Assumed', '2016-11-13', '2019-05-16', true, false, false, 22.00, 22.00, false, 'City 22', '147', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.466408+00', 22.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (13, 'Civil Society Organization', 'National', 'Partner13', '', '', 'Address13', 'email13@nowhere.org', '13', '13', NULL, '', 'Medium', 'Micro Assessment', '2017-08-04', '2017-08-31', true, false, false, 13.00, 13.00, false, 'City 13', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.133694+00', 13.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (94, 'Government', NULL, 'Partner94', '', '', 'Address94', 'email94@nowhere.org', '94', '94', NULL, NULL, 'High', 'High Risk Assumed', '2019-12-16', NULL, true, false, false, 94.00, 94.00, false, 'City 94', '258', '00218', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2019-12-22 11:37:19.380938+00', '2020-02-04 20:56:50.421097+00', 94.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (20, 'Civil Society Organization', 'Academic Institution', 'Partner20', '', '', 'Address20', 'email20@nowhere.org', '20', '20', NULL, '', 'Not Required', 'Micro Assessment', '2016-03-01', '2016-02-01', true, false, false, 20.00, 20.00, false, 'City 20', '456', '02111', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.416744+00', 20.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (18, 'Civil Society Organization', 'National', 'Partner18', '', '', 'Address18', 'email18@nowhere.org', '18', '18', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 18.00, 18.00, true, 'City 18', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.433396+00', 18.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (95, 'Government', NULL, 'Partner95', '', '', 'Address95', 'email95@nowhere.org', '95', '95', NULL, NULL, 'High', 'High Risk Assumed', '2019-12-16', NULL, true, false, false, 95.00, 95.00, false, 'City 95', '258', '00218', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2019-12-22 11:37:40.864955+00', '2020-02-04 20:56:50.410809+00', 95.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (15, 'Civil Society Organization', 'National', 'Partner15', '', '', 'Address15', 'email15@nowhere.org', '15', '15', NULL, '', 'Low', '', NULL, NULL, true, true, true, 15.00, 15.00, true, 'City 15', '453', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.305377+00', 15.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (73, 'Civil Society Organization', 'National', 'Partner73', '', '', 'Address73', 'email73@nowhere.org', '73', '73', NULL, '', 'High', 'High Risk Assumed', '2017-08-28', '2017-07-26', true, false, false, 73.00, 73.00, false, 'City 73', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 12:51:35.884926+00', 73.00, 324750.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (38, 'Civil Society Organization', 'National', 'Partner38', '', '', 'Address38', 'email38@nowhere.org', '38', '38', NULL, '', 'High', 'High Risk Assumed', '2017-06-01', '2017-05-29', true, false, false, 38.00, 38.00, false, 'City 38', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 12:51:36.662168+00', 38.00, 73280.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (88, 'Civil Society Organization', 'International', 'Partner88', '', '', 'Address88', 'email88@nowhere.org', '88', '88', NULL, NULL, 'High', 'High Risk Assumed', '2019-05-07', '2018-01-10', true, false, false, 88.00, 88.00, false, 'City 88', '258', '00218', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 1, "q3": 2, "q4": 1, "total": 4}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 3}, "outstanding_findings": 0}', '2019-09-25 09:06:15.761533+00', '2020-04-21 12:51:37.404791+00', 88.00, 0.00, 164238.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (86, 'Civil Society Organization', 'National', 'Partner86', '', '', 'Address86', 'email86@nowhere.org', '86', '86', NULL, NULL, 'High', 'High Risk Assumed', '2019-04-17', '2019-03-15', true, false, false, 86.00, 86.00, false, 'City 86', '258', '00218', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 1, "total": 1}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 3}, "outstanding_findings": 0}', '2019-05-25 00:07:58.557627+00', '2020-04-21 12:51:38.49374+00', 86.00, 151893.49, 79142.66, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (89, 'Civil Society Organization', 'International', 'Partner89', '', '', 'Address89', 'email89@nowhere.org', '89', '89', NULL, 'Pietro de Nicolai', 'High', 'High Risk Assumed', '2019-10-07', '2019-03-26', true, false, false, 89.00, 89.00, false, 'City 89', '258', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 3}, "outstanding_findings": 0}', '2019-10-08 12:55:49.987165+00', '2020-04-21 12:51:37.552192+00', 89.00, 0.00, 322983.17, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (84, 'Civil Society Organization', 'International', 'Partner84', '', '', 'Address84', 'email84@nowhere.org', '84', '84', NULL, NULL, 'Low', 'Micro Assessment', '2017-06-06', '2019-04-09', true, false, false, 84.00, 84.00, false, 'City 84', '324', '0102', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2019-01-23 15:05:47.103108+00', '2020-04-21 12:51:38.343838+00', 84.00, 458736.45, 186380.45, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (7, 'Civil Society Organization', 'National', 'Partner7', '', '', 'Address7', 'email7@nowhere.org', '7', '7', NULL, '', 'High', 'Others', '2016-12-08', '2016-11-22', true, false, false, 7.00, 7.00, false, 'City 7', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.322047+00', 7.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (36, 'Civil Society Organization', 'National', 'Partner36', '', '', 'Address36', 'email36@nowhere.org', '36', '36', NULL, '', 'High', 'High Risk Assumed', '2017-03-24', '2017-03-13', true, false, false, 36.00, 36.00, false, 'City 36', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.508085+00', 36.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (23, 'Civil Society Organization', 'National', 'Partner23', '', '', 'Address23', 'email23@nowhere.org', '23', '23', NULL, '', 'Low', 'Micro Assessment', '2018-06-06', '2016-09-20', true, false, false, 23.00, 23.00, false, 'City 23', '222', '24128', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "partial", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 1, "q2": 0, "q3": 0, "q4": 0, "total": 1}, "minimum_requirements": 2}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 12:51:36.369828+00', 23.00, 612486.12, 450659.88, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (16, 'Civil Society Organization', 'International', 'Partner16', '', '', 'Address16', 'email16@nowhere.org', '16', '16', NULL, '', 'Low', 'Micro Assessment', '2017-03-13', '2019-03-19', true, false, false, 16.00, 16.00, false, 'City 16', '147', '75009', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 12:51:35.723956+00', 16.00, 0.00, 170232.50, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (19, 'Civil Society Organization', 'National', 'Partner19', '', '', 'Address19', 'email19@nowhere.org', '19', '19', NULL, '', 'High', 'High Risk Assumed', '2016-09-16', '2016-09-16', true, true, true, 19.00, 19.00, true, 'City 19', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.142257+00', 19.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (17, 'Civil Society Organization', 'National', 'Partner17', '', '', 'Address17', 'email17@nowhere.org', '17', '17', NULL, NULL, 'Medium', 'Micro Assessment', '2017-06-01', '2017-06-01', true, false, false, 17.00, 17.00, false, 'City 17', '258', '', '{}', '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 12:51:36.224522+00', 17.00, 178466.42, 38031.91, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (21, 'Civil Society Organization', 'National', 'Partner21', '', '', 'Address21', 'email21@nowhere.org', '21', '21', NULL, '', 'High', 'High Risk Assumed', '2016-09-25', '2016-09-25', true, false, false, 21.00, 21.00, false, 'City 21', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.399606+00', 21.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (2, 'Civil Society Organization', 'National', 'Partner2', '', '', 'Address2', 'email2@nowhere.org', '2', '2', NULL, '', 'High', 'High Risk Assumed', '2016-09-06', '2016-09-06', true, true, true, 2.00, 2.00, true, 'City 2', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.483066+00', 2.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (83, 'Civil Society Organization', 'National', 'Partner83', '', '', 'Address83', 'email83@nowhere.org', '83', '83', NULL, NULL, 'Not Required', 'Micro Assessment', '2018-12-03', '2018-12-03', true, false, false, 83.00, 83.00, false, 'City 83', '258', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2019-01-01 00:07:47.25562+00', '2020-04-21 03:01:13.186308+00', 83.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (90, 'Government', NULL, 'Partner90', '', '', 'Address90', 'email90@nowhere.org', '90', '90', NULL, NULL, 'High', 'High Risk Assumed', '2019-10-07', NULL, true, false, false, 90.00, 90.00, false, 'City 90', '258', '00218', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2019-10-09 14:42:43.393827+00', '2020-04-21 12:51:37.243576+00', 90.00, 35000.00, 0.00, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (74, 'Civil Society Organization', 'National', 'Partner74', '', '', 'Address74', 'email74@nowhere.org', '74', '74', NULL, '', 'High', 'High Risk Assumed', '2018-01-23', '2018-01-18', true, false, false, 74.00, 74.00, false, 'City 74', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.372945+00', 74.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (81, 'Civil Society Organization', 'National', 'Partner81', '', '', 'Address81', 'email81@nowhere.org', '81', '81', NULL, NULL, 'High', 'High Risk Assumed', '2018-07-11', '2018-06-13', true, false, false, 81.00, 81.00, false, 'City 81', '258', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-07-30 09:26:44.948943+00', '2020-04-21 12:51:38.204025+00', 81.00, 84020.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (40, 'Civil Society Organization', 'National', 'Partner40', '', '', 'Address40', 'email40@nowhere.org', '40', '40', NULL, '', 'High', 'High Risk Assumed', '2017-08-07', '2017-07-12', true, false, false, 40.00, 40.00, false, 'City 40', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.40842+00', 40.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (35, 'Civil Society Organization', 'National', 'Partner35', '', '', 'Address35', 'email35@nowhere.org', '35', '35', NULL, '', 'High', 'High Risk Assumed', '2017-03-24', '2017-03-14', true, false, false, 35.00, 35.00, false, 'City 35', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.383073+00', 35.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (5, 'Government', NULL, 'Partner5', '', '', 'Address5', 'email5@nowhere.org', '5', '5', NULL, '', 'High', 'Micro Assessment', '2016-10-28', NULL, true, false, false, 5.00, 5.00, false, 'City 5', '258', '71171', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 3}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 12:51:38.02003+00', 5.00, 115000.00, 70000.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (11, 'Civil Society Organization', 'National', 'Partner11', '', '', 'Address11', 'email11@nowhere.org', '11', '11', NULL, '', 'Low', 'Micro Assessment', '2014-09-16', '2014-10-30', true, true, true, 11.00, 11.00, true, 'City 11', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.391309+00', 11.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (9, 'Civil Society Organization', 'International', 'Partner9', '', '', 'Address9', 'email9@nowhere.org', '9', '9', NULL, '', 'Low', 'Micro Assessment', '2016-01-01', '2015-12-22', true, true, true, 9.00, 9.00, true, 'City 9', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.474804+00', 9.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (87, 'Civil Society Organization', 'National', 'Partner87', '', '', 'Address87', 'email87@nowhere.org', '87', '87', NULL, NULL, 'High', 'High Risk Assumed', '2019-05-22', '2019-04-25', true, false, false, 87.00, 87.00, false, 'City 87', '258', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2019-05-26 12:35:41.732388+00', '2020-04-21 12:51:36.961835+00', 87.00, 204177.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (85, 'Civil Society Organization', 'National', 'Partner85', '', '', 'Address85', 'email85@nowhere.org', '85', '85', NULL, NULL, 'High', 'High Risk Assumed', '2019-04-30', '2018-09-28', true, false, false, 85.00, 85.00, false, 'City 85', '258', '00218', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2019-05-02 07:23:57.6699+00', '2020-04-21 12:51:36.047354+00', 85.00, 49179.86, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (77, '', NULL, 'Partner77', '', '', 'Address77', 'email77@nowhere.org', '77', '77', NULL, '', '', '', NULL, NULL, false, true, true, 77.00, 77.00, true, 'City 77', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 02:59:18.2646+00', 77.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (75, '', NULL, 'Partner75', '', '', 'Address75', 'email75@nowhere.org', '75', '75', NULL, '', '', '', NULL, NULL, false, true, false, 75.00, 75.00, false, 'City 75', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 02:59:18.529031+00', 75.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (78, 'Civil Society Organization', 'International', 'Partner78', '', '', 'Address78', 'email78@nowhere.org', '78', '78', NULL, '', 'Low', 'Low Risk Assumed', '2018-03-02', '2018-01-03', true, false, false, 78.00, 78.00, false, 'City 78', '027', '2067', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-16 00:11:36.177682+00', '2020-04-21 03:01:13.424964+00', 78.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (10, 'Civil Society Organization', 'National', 'Partner10', '', '', 'Address10', 'email10@nowhere.org', '10', '10', NULL, '', 'High', 'Micro Assessment', '2016-11-17', '2016-11-08', true, true, true, 10.00, 10.00, true, 'City 10', '258', '1045', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.499683+00', 10.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (1, 'Civil Society Organization', 'National', 'Partner1', '', '', 'Address1', 'email1@nowhere.org', '1', '1', NULL, '', 'High', 'High Risk Assumed', '2019-11-11', '2019-05-11', true, false, false, 1.00, 1.00, false, 'City 1', '258', '00218', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 1, "q2": 1, "q3": 1, "q4": 1, "total": 4}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 3}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 12:51:36.811908+00', 1.00, 248300.00, 308410.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (4, 'Civil Society Organization', 'National', 'Partner4', '', '', 'Address4', 'email4@nowhere.org', '4', '4', NULL, NULL, 'Medium', 'Micro Assessment', '2017-05-30', '2016-04-23', true, false, false, 4.00, 4.00, false, 'City 4', '258', '', '{}', '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 2}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 12:51:36.515409+00', 4.00, 150545.41, 60425.53, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (14, 'Civil Society Organization', 'National', 'Partner14', '', '', 'Address14', 'email14@nowhere.org', '14', '14', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 14.00, 14.00, true, 'City 14', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.44198+00', 14.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (6, 'Civil Society Organization', 'National', 'Partner6', '', '', 'Address6', 'email6@nowhere.org', '6', '6', NULL, '', 'Medium', 'Micro Assessment', '2017-06-02', '2014-10-30', true, false, false, 6.00, 6.00, false, 'City 6', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 12:51:38.662485+00', 6.00, 99931.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (25, 'Civil Society Organization', 'International', 'Partner25', '', '', 'Address25', 'email25@nowhere.org', '25', '25', NULL, '', 'Low', 'Micro Assessment', '2016-01-01', '2018-04-09', true, false, false, 25.00, 25.00, false, 'City 25', '120', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.458095+00', 25.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (92, 'Government', NULL, 'Partner92', '', '', 'Address92', 'email92@nowhere.org', '92', '92', NULL, NULL, 'High', 'High Risk Assumed', '2019-01-04', NULL, true, false, false, 92.00, 92.00, false, 'City 92', '258', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2019-11-07 09:50:41.267244+00', '2020-04-21 12:51:38.808095+00', 92.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (8, 'Civil Society Organization', 'National', 'Partner8', '', '', 'Address8', 'email8@nowhere.org', '8', '8', NULL, '', 'High', 'High Risk Assumed', '2016-05-30', '2016-05-30', true, false, false, 8.00, 8.00, false, 'City 8', '258', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:57:12.304183+00', '2020-04-21 03:01:13.158589+00', 8.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (91, 'Government', NULL, 'Partner91', '', '', 'Address91', 'email91@nowhere.org', '91', '91', NULL, NULL, 'High', 'High Risk Assumed', '2019-09-02', NULL, true, false, false, 91.00, 91.00, false, 'City 91', '258', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2019-11-07 01:46:31.450276+00', '2020-04-21 12:51:37.116113+00', 91.00, 9281.25, 6187.50, '', false, NULL, NULL, '', '', NULL, ''); -- @@ -11660,102 +12363,117 @@ INSERT INTO [[schema]].partners_partnerplannedvisits VALUES (13, '2018-06-04 18: -- Data for Name: partners_partnerstaffmember; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (1, 'Director', 'Dr. Salih Elhewij', 'Elhewij', 'elssafac@gmail.com', '00218912148843', true, 1, '2018-03-15 16:57:13.205825+00', '2018-03-15 16:57:13.523001+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (2, 'Chairman', 'Mufida', 'Jab Allah Mohammad', 'cvdga2015@gmail.com', '00218917943486', true, 39, '2018-03-15 16:57:13.205825+00', '2018-03-15 16:57:13.523001+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (17, 'General Director', 'Salima', 'Salem', 'hamzastar395@gmail.com', '+218923745394', true, 17, '2018-03-15 16:57:13.205825+00', '2018-03-15 16:57:13.523001+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (6, 'Director', 'Abedlrazag', 'Malmos', 'Mleos1974@gmail.com', '+218916365441', true, 37, '2018-03-15 16:57:13.205825+00', '2018-03-15 16:57:13.523001+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (8, 'Head Executive Board', 'Saad Faraj', 'Al Shoukani', 'attaieb40@gmail.com', '+218925135940', true, 21, '2018-03-15 16:57:13.205825+00', '2018-03-15 16:57:13.523001+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (9, 'Chairman', 'Nidaa', 'Ben Ayad', '[[schema]]nw.union@ymail.com', '00218945939860', true, 35, '2018-03-15 16:57:13.205825+00', '2018-03-15 16:57:13.523001+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (11, 'Head of executive Board', 'Idris Ali', 'Saad', 'aliidiris@gmail.com', '+218-925314055', true, 4, '2018-03-15 16:57:13.205825+00', '2018-03-15 16:57:13.523001+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (52, 'CEO', 'Hanan', 'Kadoshi', 'kadoshi.h@gmail.com', '00218925380336', true, 40, '2018-03-15 16:57:13.205825+00', '2018-03-15 16:57:13.523001+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (10, 'Chairman', 'Salem', 'Abdelsalam Algamody', 'salemalgamody@staco.org.ly', '002189187777888', true, 6, '2018-03-15 16:57:13.205825+00', '2018-03-15 16:57:13.523001+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (7, 'Project Manager', 'Gino', 'Barsella', 'barsella@cir-onlus.org', '+39066920014', true, 3, '2018-03-15 16:57:13.205825+00', '2018-03-15 16:57:13.523001+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (14, 'Director', 'Fiorella', 'Rathaus', '_cir@cir-onlus.org', '+39066920014', true, 3, '2018-03-15 16:57:13.205825+00', '2018-03-15 16:57:13.523001+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (5, 'Program Focal Person', 'Aburawi', 'Sheybani', 'rawetour@yahoo.com', '+218919994693', true, 8, '2018-03-15 16:57:13.205825+00', '2018-03-15 16:57:13.523001+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (4, 'General Commander', 'Ali', 'Shamsi', 'randa_mg2001@yahoo.com', '+218917045674', true, 8, '2018-03-15 16:57:13.205825+00', '2018-03-15 16:57:13.523001+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (15, 'Chairperson', 'Ali', 'Mosa', 'mosa@alemdad.ly', '00218913138642', true, 38, '2018-03-15 16:57:13.205825+00', '2018-03-15 16:57:13.523001+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (12, 'Project Manager', 'DR Masoud', 'Barakeh', 'masoud838ali@yahoo.com', '00218925137402', true, 6, '2018-03-15 16:57:13.205825+00', '2018-03-15 16:57:13.523001+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (19, 'Executive Manager', 'Nadia', 'Abusrewil', 'nadia.abusrewil@gmail.com', '00218913124538', true, 13, '2018-03-15 16:57:13.205825+00', '2018-03-15 16:57:13.523001+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (54, 'Head of Organization', 'Abtisam', 'Altahir Alqusbi', 'ebtesam.algusbi@yahoo.com', '0021620395815', true, 36, '2018-03-15 16:57:13.205825+00', '2018-03-15 16:57:13.523001+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (56, 'President', 'Sayf', 'Alhangary', 'sayf.alhangary@gmail.com', '+21892341727', true, 73, '2018-03-15 16:57:13.205825+00', '2018-03-15 16:57:13.523001+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (57, 'General Director', 'Marie Pierre', 'Caley', 'marie-pierre.caley@acted.org', '+33142653333', true, 16, '2018-03-15 16:57:13.205825+00', '2018-03-15 16:57:13.523001+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (58, 'REACH Senior Assessment Officer', 'Ayah', 'Alzayat', 'ayah.alzayat@reach-initiative.org', '+41225662963', true, 16, '2018-03-15 16:57:13.205825+00', '2018-03-15 16:57:13.523001+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (18, 'Desk Officer', 'Francesca', 'Pini', 'francescapini@cesvi.org', '00390352058058', true, 23, '2018-03-15 16:57:13.205825+00', '2018-03-23 11:35:36.021099+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (59, 'General Manager and Legal Representative', 'Daniela', 'Bernacchi', 'danielabernacchi@cesvi.org', '00390352058058', true, 23, '2018-03-23 11:35:36.049625+00', '2018-03-23 11:35:36.052955+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (60, 'Executive Chairman', 'Steve', 'Killetea', 'steve.killetea@ir.com', '0021699018500', true, 78, '2018-03-23 13:05:16.340543+00', '2018-03-23 13:09:02.056271+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (16, 'Chairperson', 'Abdelkareem Mustafa', 'Abu Esbouleh', 'sostw13@gmail.com', '218913203330', true, 12, '2018-03-15 16:57:13.205825+00', '2018-04-20 10:38:46.600174+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (63, 'Administration and Financial Manager', 'Abdulaziz', 'Hassan Mahmoud', 'aljadidcart@gmail.com', '00218913780554', true, 12, '2018-04-20 10:38:46.629611+00', '2018-04-20 10:38:46.633237+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (61, 'Research director', 'Daniel', 'Hyslop', 'hyslop@economicsandpeace.org', '', true, 78, '2018-03-23 13:09:02.086731+00', '2018-03-23 13:09:02.090724+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (62, 'Secretary General', 'Omar', 'Agouda', 'omar.agouda.lrcs@gmail.com', '', true, 74, '2018-03-23 13:58:29.509239+00', '2018-03-23 13:58:29.51228+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (64, 'Director', 'Ibrahim', 'Almadani', 'center.rehabilitating.fighters@gmail.com', '00249919598314', true, 79, '2018-05-04 08:50:59.654251+00', '2018-05-04 08:50:59.654833+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (65, 'Director', 'Abdallah', 'Tahir Ahmed', 'abdallasab@gmail.com', '00218918528496', true, 80, '2018-05-24 16:26:14.338227+00', '2018-05-24 16:26:14.338669+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (66, 'Chairman/Director', 'Sami', 'Eljawadi', 'info@nooralhayat.net', '00218 924913655', true, 81, '2018-07-30 09:37:14.969393+00', '2018-07-30 09:37:14.970238+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (67, 'Country Director', 'Thomas', 'White', 'thomas.white@nrc.no', NULL, true, 84, '2019-01-23 15:10:44.538125+00', '2019-01-23 15:10:44.53891+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (68, 'Chairman', 'Mustafa', 'Ben Raba', 'insan.fcd@gmail.com', '00218913228592', true, 83, '2019-02-28 10:22:19.016722+00', '2019-02-28 10:22:29.073598+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (69, 'Community Development Officer', 'Mohamed', 'Lagha', 'mohammadlagha60@gmail.com', '00218914777792', true, 8, '2019-03-07 09:33:19.180519+00', '2019-03-07 09:33:19.180967+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (71, 'Director / Program Manager', 'Rabie', 'Jawashi', 'rjawashi@freefields.org', '+218914352881', true, 87, '2019-05-27 12:29:55.017035+00', '2019-05-27 12:29:55.01763+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (70, 'Director of Al Safwa Charity', 'Yousef', 'Alsagir', 'info@sco.org.ly', '', true, 85, '2019-05-26 07:38:32.347043+00', '2019-05-28 08:24:37.314191+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (72, 'Scouts Leader', 'Mohammed', 'Agha', 'Mohammalaga60@gmail.com', '00218914777792', true, 86, '2019-06-12 11:43:18.473671+00', '2019-06-12 11:43:18.474139+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (73, 'deputy director for programmer', 'Mina', 'Zingariello', 'mina.zingariello@rescue.org', '0021699458603', true, 88, '2019-09-25 14:44:18.488911+00', '2019-09-25 14:44:18.488911+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (74, 'Head of Mission', 'Pietro', 'de Nicolai', 'ibya@intersos.org', '(+216) 51861252', true, 89, '2019-10-24 11:08:23.007011+00', '2019-10-24 11:08:23.007011+00'); -INSERT INTO [[schema]].partners_partnerstaffmember VALUES (75, 'PM focal Point', 'Rosa Maria', 'Lesti', 'rosamarialesti@cesvioverseas.org', '+216 56239528', true, 23, '2019-10-28 09:18:15.156751+00', '2019-10-28 09:18:15.156751+00'); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (1, 'Director', 'Dr. Salih Elhewij', 'Elhewij', 'elssafac@gmail.com', '00218912148843', true, 1, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.696636+00', 282144); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (2, 'Chairman', 'Mufida', 'Jab Allah Mohammad', 'cvdga2015@gmail.com', '00218917943486', true, 39, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.702957+00', 282145); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (6, 'Director', 'Abedlrazag', 'Malmos', 'Mleos1974@gmail.com', '+218916365441', true, 37, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.714614+00', 282146); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (8, 'Head Executive Board', 'Saad Faraj', 'Al Shoukani', 'attaieb40@gmail.com', '+218925135940', true, 21, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.725254+00', 282147); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (9, 'Chairman', 'Nidaa', 'Ben Ayad', '[[schema]]nw.union@ymail.com', '00218945939860', true, 35, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.738048+00', 282148); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (52, 'CEO', 'Hanan', 'Kadoshi', 'kadoshi.h@gmail.com', '00218925380336', true, 40, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.750266+00', 282149); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (10, 'Chairman', 'Salem', 'Abdelsalam Algamody', 'salemalgamody@staco.org.ly', '002189187777888', true, 6, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.761417+00', 282150); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (7, 'Project Manager', 'Gino', 'Barsella', 'barsella@cir-onlus.org', '+39066920014', true, 3, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.770091+00', 282151); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (14, 'Director', 'Fiorella', 'Rathaus', '_cir@cir-onlus.org', '+39066920014', true, 3, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.778562+00', 282152); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (5, 'Program Focal Person', 'Aburawi', 'Sheybani', 'rawetour@yahoo.com', '+218919994693', true, 8, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.783546+00', 282153); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (4, 'General Commander', 'Ali', 'Shamsi', 'randa_mg2001@yahoo.com', '+218917045674', true, 8, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.788794+00', 282154); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (15, 'Chairperson', 'Ali', 'Mosa', 'mosa@alemdad.ly', '00218913138642', true, 38, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.798067+00', 282155); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (12, 'Project Manager', 'DR Masoud', 'Barakeh', 'masoud838ali@yahoo.com', '00218925137402', true, 6, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.804921+00', 282156); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (85, 'Country Director', 'Dax', 'Bennett Roque', 'dax.roque@nrc.no', '', true, 84, '2020-02-26 13:49:54.742143+00', '2020-11-03 18:55:43.992328+00', 282186); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (19, 'Executive Manager', 'Nadia', 'Abusrewil', 'nadia.abusrewil@gmail.com', '00218913124538', true, 13, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.810524+00', 282157); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (54, 'Head of Organization', 'Abtisam', 'Altahir Alqusbi', 'ebtesam.algusbi@yahoo.com', '0021620395815', true, 36, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.815647+00', 282158); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (56, 'President', 'Sayf', 'Alhangary', 'sayf.alhangary@gmail.com', '+21892341727', true, 73, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.819936+00', 282159); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (57, 'General Director', 'Marie Pierre', 'Caley', 'marie-pierre.caley@acted.org', '+33142653333', true, 16, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.824408+00', 282160); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (58, 'REACH Senior Assessment Officer', 'Ayah', 'Alzayat', 'ayah.alzayat@reach-initiative.org', '+41225662963', true, 16, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.828238+00', 282161); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (18, 'Desk Officer', 'Francesca', 'Pini', 'francescapini@cesvi.org', '00390352058058', true, 23, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.831995+00', 282162); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (59, 'General Manager and Legal Representative', 'Daniela', 'Bernacchi', 'danielabernacchi@cesvi.org', '00390352058058', true, 23, '2018-03-23 11:35:36.049625+00', '2020-11-03 18:55:43.835728+00', 282163); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (60, 'Executive Chairman', 'Steve', 'Killetea', 'steve.killetea@ir.com', '0021699018500', true, 78, '2018-03-23 13:05:16.340543+00', '2020-11-03 18:55:43.840531+00', 282164); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (16, 'Chairperson', 'Abdelkareem Mustafa', 'Abu Esbouleh', 'sostw13@gmail.com', '218913203330', true, 12, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.845844+00', 282165); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (63, 'Administration and Financial Manager', 'Abdulaziz', 'Hassan Mahmoud', 'aljadidcart@gmail.com', '00218913780554', true, 12, '2018-04-20 10:38:46.629611+00', '2020-11-03 18:55:43.852487+00', 282166); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (61, 'Research director', 'Daniel', 'Hyslop', 'hyslop@economicsandpeace.org', '', true, 78, '2018-03-23 13:09:02.086731+00', '2020-11-03 18:55:43.864165+00', 282167); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (64, 'Director', 'Ibrahim', 'Almadani', 'center.rehabilitating.fighters@gmail.com', '00249919598314', true, 79, '2018-05-04 08:50:59.654251+00', '2020-11-03 18:55:43.872263+00', 282168); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (65, 'Director', 'Abdallah', 'Tahir Ahmed', 'abdallasab@gmail.com', '00218918528496', true, 80, '2018-05-24 16:26:14.338227+00', '2020-11-03 18:55:43.876984+00', 282169); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (66, 'Chairman/Director', 'Sami', 'Eljawadi', 'info@nooralhayat.net', '00218 924913655', true, 81, '2018-07-30 09:37:14.969393+00', '2020-11-03 18:55:43.881717+00', 282170); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (68, 'Chairman', 'Mustafa', 'Ben Raba', 'insan.fcd@gmail.com', '00218913228592', true, 83, '2019-02-28 10:22:19.016722+00', '2020-11-03 18:55:43.887422+00', 282171); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (69, 'Community Development Officer', 'Mohamed', 'Lagha', 'mohammadlagha60@gmail.com', '00218914777792', true, 8, '2019-03-07 09:33:19.180519+00', '2020-11-03 18:55:43.899803+00', 282172); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (71, 'Director / Program Manager', 'Rabie', 'Jawashi', 'rjawashi@freefields.org', '+218914352881', true, 87, '2019-05-27 12:29:55.017035+00', '2020-11-03 18:55:43.905788+00', 282173); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (70, 'Director of Al Safwa Charity', 'Yousef', 'Alsagir', 'info@sco.org.ly', '', true, 85, '2019-05-26 07:38:32.347043+00', '2020-11-03 18:55:43.910839+00', 282174); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (73, 'deputy director for programmer', 'Mina', 'Zingariello', 'mina.zingariello@rescue.org', '0021699458603', true, 88, '2019-09-25 14:44:18.488911+00', '2020-11-03 18:55:43.915894+00', 282175); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (75, 'PM focal Point', 'Rosa Maria', 'Lesti', 'rosamarialesti@cesvioverseas.org', '+216 56239528', true, 23, '2019-10-28 09:18:15.156751+00', '2020-11-03 18:55:43.921384+00', 282176); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (76, 'Head of High Commission of Children', 'Mahmoud', 'Sherif', 'msherif57@yahoo.com', '00218912221186', true, 90, '2019-12-08 12:38:54.836357+00', '2020-11-03 18:55:43.928912+00', 282177); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (78, 'Country Director', 'Emily', 'Beadle', 'emily.Beadle@acted.org', '+21652232198', true, 16, '2019-12-29 13:19:40.81962+00', '2020-11-03 18:55:43.935865+00', 282178); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (79, 'Head of Executive Board', 'Idris Ali', 'Saad', 'aliidris791@gmail.com', '+218925314055', true, 4, '2020-01-15 08:27:54.942798+00', '2020-11-03 18:55:43.943056+00', 282179); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (80, 'Head of mission', 'Pietro', 'De Nicolai', '[[schema]]@intersos.org', '+393663104214', true, 89, '2020-01-16 11:48:29.792325+00', '2020-11-03 18:55:43.950139+00', 282180); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (81, 'General Director and Head of NGO', 'Salma Salem', 'Al Barakah', 'jasser.muftah@gmail.com', '', true, 17, '2020-01-27 07:59:03.681707+00', '2020-11-03 18:55:43.958348+00', 282181); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (82, 'Scouts Leader', 'Mohammed', 'Agha', 'mohmmadlaga60@gmail.com', '00218914777792', true, 86, '2020-02-11 15:00:23.677935+00', '2020-11-03 18:55:43.962909+00', 282182); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (83, 'Secretary General', 'Marai', 'Aldressi', 'm.aldressi@lrc.org.ly', '+218925577058', true, 74, '2020-02-12 09:51:53.614096+00', '2020-11-03 18:55:43.972178+00', 282183); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (84, 'Secretary General', 'Marai', 'Aldressi', 'mariealdressi@gmail.com', '+218915577058', true, 74, '2020-02-12 09:52:35.20257+00', '2020-11-03 18:55:43.981959+00', 282184); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (86, 'Country Director', 'Lucy', 'Coley', 'lucy.coley@acted.org', '+21652232198', true, 16, '2020-03-02 09:05:02.753026+00', '2020-11-03 18:55:43.987153+00', 282185); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (17, 'General Director', 'Salima', 'Salem', 'hamzastar395@gmail.com', '+218923745394', false, 17, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.996185+00', NULL); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (11, 'Head of executive Board', 'Idris Ali', 'Saad', 'aliidiris@gmail.com', '+218-925314055', false, 4, '2018-03-15 16:57:13.205825+00', '2020-11-03 18:55:43.998431+00', NULL); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (74, 'Head of Mission', 'Pietro', 'de Nicolai', 'ibya@intersos.org', '(+216) 51861252', false, 89, '2019-10-24 11:08:23.007011+00', '2020-11-03 18:55:44.000625+00', NULL); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (77, 'General Director and Head of NGO', 'Salma Salem', 'Al Barakah', '[[schema]]naseem@yahoo.com', '0923745394', false, 17, '2019-12-22 09:49:58.284433+00', '2020-11-03 18:55:44.002778+00', NULL); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (72, 'Scouts Leader', 'Mohammed', 'Agha', 'Mohammalaga60@gmail.com', '00218914777792', false, 86, '2019-06-12 11:43:18.473671+00', '2020-11-03 18:55:44.005125+00', NULL); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (62, 'Secretary General', 'Omar', 'Agouda', 'omar.agouda.lrcs@gmail.com', '', false, 74, '2018-03-23 13:58:29.509239+00', '2020-11-03 18:55:44.007627+00', NULL); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (67, 'Country Director', 'Thomas', 'White', 'thomas.white@nrc.no', NULL, false, 84, '2019-01-23 15:10:44.538125+00', '2020-11-03 18:55:44.010107+00', NULL); -- -- Data for Name: partners_plannedengagement; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].partners_plannedengagement VALUES (1, '2018-03-15 16:57:43.279139+00', '2018-12-31 13:08:31.819972+00', 0, 0, 0, 0, false, false, 75, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (3, '2018-03-15 16:57:43.320127+00', '2018-12-31 13:08:31.83574+00', 0, 0, 0, 0, false, false, 76, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (42, '2019-01-01 00:07:47.308245+00', '2019-01-01 00:07:47.308793+00', 0, 0, 0, 0, false, false, 83, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (2, '2018-03-15 16:57:43.300429+00', '2018-12-31 13:08:31.849593+00', 0, 0, 0, 0, false, false, 77, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (40, '2018-05-11 00:10:18.821583+00', '2018-12-31 13:08:31.891772+00', 0, 0, 0, 0, false, false, 80, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (4, '2018-03-15 16:57:43.340127+00', '2018-12-31 13:08:31.929653+00', 0, 0, 0, 0, false, false, 16, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (5, '2018-03-15 16:57:43.36052+00', '2018-12-31 13:08:31.967779+00', 0, 0, 0, 0, false, false, 73, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (6, '2018-03-15 16:57:43.381739+00', '2018-12-31 13:08:32.006709+00', 0, 0, 0, 0, false, false, 13, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (7, '2018-03-15 16:57:43.40142+00', '2018-12-31 13:08:32.021015+00', 0, 0, 0, 0, false, false, 34, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (39, '2018-04-30 00:05:37.832034+00', '2018-12-31 13:08:32.05865+00', 0, 0, 0, 0, false, false, 79, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (8, '2018-03-15 16:57:43.421294+00', '2018-12-31 13:08:32.075179+00', 0, 0, 0, 0, false, false, 2, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (9, '2018-03-15 16:57:43.442064+00', '2018-12-31 13:08:32.089515+00', 0, 0, 0, 0, false, false, 18, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (10, '2018-03-15 16:57:43.462656+00', '2018-12-31 13:08:32.127686+00', 0, 0, 0, 0, false, false, 40, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (11, '2018-03-15 16:57:43.482206+00', '2018-12-31 13:08:32.141581+00', 0, 0, 0, 0, false, false, 8, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (12, '2018-03-15 16:57:43.501473+00', '2018-12-31 13:08:32.179478+00', 0, 0, 0, 0, false, false, 17, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (13, '2018-03-15 16:57:43.521236+00', '2018-12-31 13:08:32.217843+00', 0, 0, 0, 0, false, false, 23, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (14, '2018-03-15 16:57:43.540877+00', '2018-12-31 13:08:32.232691+00', 0, 0, 0, 0, false, false, 39, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (15, '2018-03-15 16:57:43.560437+00', '2018-12-31 13:08:32.246851+00', 0, 0, 0, 0, false, false, 25, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (16, '2018-03-15 16:57:43.580515+00', '2018-12-31 13:08:32.285467+00', 0, 0, 0, 0, false, false, 4, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (17, '2018-03-15 16:57:43.600514+00', '2018-12-31 13:08:32.323592+00', 0, 0, 0, 0, false, false, 38, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (18, '2018-03-15 16:57:43.620366+00', '2018-12-31 13:08:32.36222+00', 0, 0, 0, 0, false, false, 1, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (19, '2018-03-15 16:57:43.639581+00', '2018-12-31 13:08:32.377635+00', 0, 0, 0, 0, false, false, 22, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (38, '2018-03-16 00:11:36.235922+00', '2018-12-31 13:08:32.415688+00', 0, 0, 0, 0, false, false, 78, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (20, '2018-03-15 16:57:43.659451+00', '2018-12-31 13:08:32.436382+00', 0, 0, 0, 0, false, false, 9, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (21, '2018-03-15 16:57:43.679457+00', '2018-12-31 13:08:32.473542+00', 0, 0, 0, 0, false, false, 3, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (22, '2018-03-15 16:57:43.70089+00', '2018-12-31 13:08:32.487785+00', 0, 0, 0, 0, false, false, 10, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (23, '2018-03-15 16:57:43.721981+00', '2018-12-31 13:08:32.525477+00', 0, 0, 0, 0, false, false, 21, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (24, '2018-03-15 16:57:43.742387+00', '2018-12-31 13:08:32.563713+00', 0, 0, 0, 0, false, false, 74, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (25, '2018-03-15 16:57:43.762304+00', '2018-12-31 13:08:32.603611+00', 0, 0, 0, 0, false, false, 12, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (26, '2018-03-15 16:57:43.782134+00', '2018-12-31 13:08:32.6416+00', 0, 0, 0, 0, false, false, 35, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (27, '2018-03-15 16:57:43.802509+00', '2018-12-31 13:08:32.655625+00', 0, 0, 0, 0, false, false, 14, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (28, '2018-03-15 16:57:43.822551+00', '2018-12-31 13:08:32.670771+00', 0, 0, 0, 0, false, false, 15, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (29, '2018-03-15 16:57:43.842558+00', '2018-12-31 13:08:32.711385+00', 0, 0, 0, 0, false, false, 37, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (30, '2018-03-15 16:57:43.867093+00', '2018-12-31 13:08:32.748877+00', 0, 0, 0, 0, false, false, 5, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (41, '2018-07-30 09:26:44.981661+00', '2018-12-31 13:08:32.786597+00', 0, 0, 0, 0, false, false, 81, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (31, '2018-03-15 16:57:43.888066+00', '2018-12-31 13:08:32.800635+00', 0, 0, 0, 0, false, false, 19, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (32, '2018-03-15 16:57:43.908515+00', '2018-12-31 13:08:32.841628+00', 0, 0, 0, 0, false, false, 36, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (33, '2018-03-15 16:57:43.928516+00', '2018-12-31 13:08:32.881576+00', 0, 0, 0, 0, false, false, 6, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (34, '2018-03-15 16:57:43.948182+00', '2018-12-31 13:08:32.8955+00', 0, 0, 0, 0, false, false, 11, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (35, '2018-03-15 16:57:43.968458+00', '2018-12-31 13:08:32.909455+00', 0, 0, 0, 0, false, false, 24, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (36, '2018-03-15 16:57:43.988183+00', '2018-12-31 13:08:32.94768+00', 0, 0, 0, 0, false, false, 20, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (37, '2018-03-15 16:57:44.008195+00', '2018-12-31 13:08:32.96164+00', 0, 0, 0, 0, false, false, 7, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (43, '2019-01-23 15:05:47.137484+00', '2019-01-23 15:05:47.138182+00', 0, 0, 0, 0, false, false, 84, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (44, '2019-05-02 07:23:57.706056+00', '2019-05-02 07:23:57.707242+00', 0, 0, 0, 0, false, false, 85, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (45, '2019-05-25 00:07:58.609053+00', '2019-05-25 00:07:58.60953+00', 0, 0, 0, 0, false, false, 86, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (46, '2019-05-26 12:35:41.767247+00', '2019-05-26 12:35:41.767617+00', 0, 0, 0, 0, false, false, 87, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (47, '2019-09-25 09:06:15.799032+00', '2019-09-25 09:06:15.799032+00', 0, 0, 0, 0, false, false, 88, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (48, '2019-10-08 12:55:50.02035+00', '2019-10-08 12:55:50.02035+00', 0, 0, 0, 0, false, false, 89, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (49, '2019-10-09 14:42:43.418842+00', '2019-10-09 14:42:43.418842+00', 0, 0, 0, 0, false, false, 90, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (50, '2019-11-07 01:46:31.486991+00', '2019-11-07 01:46:31.486991+00', 0, 0, 0, 0, false, false, 91, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (51, '2019-11-07 09:50:41.296361+00', '2019-11-07 09:50:41.296361+00', 0, 0, 0, 0, false, false, 92, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (55, '2020-01-13 08:46:52.911166+00', '2020-01-13 08:46:52.911166+00', 0, 0, 0, 0, false, false, 96, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (1, '2018-03-15 16:57:43.279139+00', '2019-12-31 03:35:03.669542+00', 0, 0, 0, 0, false, false, 75, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (3, '2018-03-15 16:57:43.320127+00', '2019-12-31 03:35:03.685379+00', 0, 0, 0, 0, false, false, 76, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (2, '2018-03-15 16:57:43.300429+00', '2019-12-31 03:35:03.700013+00', 0, 0, 0, 0, false, false, 77, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (40, '2018-05-11 00:10:18.821583+00', '2019-12-31 03:35:03.747484+00', 0, 0, 0, 0, false, false, 80, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (4, '2018-03-15 16:57:43.340127+00', '2019-12-31 03:35:03.78633+00', 0, 0, 0, 0, false, false, 16, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (5, '2018-03-15 16:57:43.36052+00', '2019-12-31 03:35:03.827516+00', 0, 0, 0, 0, false, false, 73, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (6, '2018-03-15 16:57:43.381739+00', '2019-12-31 03:35:03.866509+00', 0, 0, 0, 0, false, false, 13, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (7, '2018-03-15 16:57:43.40142+00', '2019-12-31 03:35:03.881304+00', 0, 0, 0, 0, false, false, 34, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (44, '2019-05-02 07:23:57.706056+00', '2019-12-31 03:35:03.923356+00', 0, 0, 0, 0, false, false, 85, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (39, '2018-04-30 00:05:37.832034+00', '2019-12-31 03:35:03.970283+00', 0, 0, 0, 0, false, false, 79, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (8, '2018-03-15 16:57:43.421294+00', '2019-12-31 03:35:03.984418+00', 0, 0, 0, 0, false, false, 2, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (9, '2018-03-15 16:57:43.442064+00', '2019-12-31 03:35:03.99891+00', 0, 0, 0, 0, false, false, 18, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (10, '2018-03-15 16:57:43.462656+00', '2019-12-31 03:35:04.015392+00', 0, 0, 0, 0, false, false, 40, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (11, '2018-03-15 16:57:43.482206+00', '2019-12-31 03:35:04.03255+00', 0, 0, 0, 0, false, false, 8, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (12, '2018-03-15 16:57:43.501473+00', '2019-12-31 03:35:04.092465+00', 0, 0, 0, 0, false, false, 17, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (13, '2018-03-15 16:57:43.521236+00', '2019-12-31 03:35:04.1368+00', 0, 0, 0, 0, false, false, 23, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (14, '2018-03-15 16:57:43.540877+00', '2019-12-31 03:35:04.154919+00', 0, 0, 0, 0, false, false, 39, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (15, '2018-03-15 16:57:43.560437+00', '2019-12-31 03:35:04.174774+00', 0, 0, 0, 0, false, false, 25, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (16, '2018-03-15 16:57:43.580515+00', '2019-12-31 03:35:04.218297+00', 0, 0, 0, 0, false, false, 4, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (17, '2018-03-15 16:57:43.600514+00', '2019-12-31 03:35:04.268515+00', 0, 0, 0, 0, false, false, 38, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (18, '2018-03-15 16:57:43.620366+00', '2019-12-31 03:35:04.328507+00', 0, 0, 0, 0, false, false, 1, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (19, '2018-03-15 16:57:43.639581+00', '2019-12-31 03:35:04.352461+00', 0, 0, 0, 0, false, false, 22, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (46, '2019-05-26 12:35:41.767247+00', '2019-12-31 03:35:04.405456+00', 0, 0, 0, 0, false, false, 87, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (52, '2019-11-27 10:02:28.022933+00', '2019-12-31 03:35:04.420084+00', 0, 0, 0, 0, false, false, 93, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (50, '2019-11-07 01:46:31.486991+00', '2019-12-31 03:35:04.434021+00', 0, 0, 0, 0, false, false, 91, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (49, '2019-10-09 14:42:43.418842+00', '2019-12-31 03:35:04.449035+00', 0, 0, 0, 0, false, false, 90, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (42, '2019-01-01 00:07:47.308245+00', '2019-12-31 03:35:04.489749+00', 0, 0, 0, 0, false, false, 83, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (38, '2018-03-16 00:11:36.235922+00', '2019-12-31 03:35:04.530788+00', 0, 0, 0, 0, false, false, 78, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (20, '2018-03-15 16:57:43.659451+00', '2019-12-31 03:35:04.545391+00', 0, 0, 0, 0, false, false, 9, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (47, '2019-09-25 09:06:15.799032+00', '2019-12-31 03:35:04.561723+00', 0, 0, 0, 0, false, false, 88, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (48, '2019-10-08 12:55:50.02035+00', '2019-12-31 03:35:04.575449+00', 0, 0, 0, 0, false, false, 89, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (21, '2018-03-15 16:57:43.679457+00', '2019-12-31 03:35:04.615427+00', 0, 0, 0, 0, false, false, 3, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (22, '2018-03-15 16:57:43.70089+00', '2019-12-31 03:35:04.632277+00', 0, 0, 0, 0, false, false, 10, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (23, '2018-03-15 16:57:43.721981+00', '2019-12-31 03:35:04.684434+00', 0, 0, 0, 0, false, false, 21, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (24, '2018-03-15 16:57:43.742387+00', '2019-12-31 03:35:04.7278+00', 0, 0, 0, 0, false, false, 74, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (25, '2018-03-15 16:57:43.762304+00', '2019-12-31 03:35:04.769018+00', 0, 0, 0, 0, false, false, 12, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (26, '2018-03-15 16:57:43.782134+00', '2019-12-31 03:35:04.783486+00', 0, 0, 0, 0, false, false, 35, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (27, '2018-03-15 16:57:43.802509+00', '2019-12-31 03:35:04.800712+00', 0, 0, 0, 0, false, false, 14, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (28, '2018-03-15 16:57:43.822551+00', '2019-12-31 03:35:04.815983+00', 0, 0, 0, 0, false, false, 15, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (54, '2019-12-22 11:37:40.897251+00', '2019-12-31 03:35:04.839301+00', 0, 0, 0, 0, false, false, 95, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (53, '2019-12-22 11:37:19.410008+00', '2019-12-31 03:35:04.859954+00', 0, 0, 0, 0, false, false, 94, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (29, '2018-03-15 16:57:43.842558+00', '2019-12-31 03:35:04.900444+00', 0, 0, 0, 0, false, false, 37, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (30, '2018-03-15 16:57:43.867093+00', '2019-12-31 03:35:04.937962+00', 0, 0, 0, 0, false, false, 5, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (41, '2018-07-30 09:26:44.981661+00', '2019-12-31 03:35:04.976563+00', 0, 0, 0, 0, false, false, 81, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (43, '2019-01-23 15:05:47.137484+00', '2019-12-31 03:35:05.018588+00', 0, 0, 0, 0, false, false, 84, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (31, '2018-03-15 16:57:43.888066+00', '2019-12-31 03:35:05.03446+00', 0, 0, 0, 0, false, false, 19, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (32, '2018-03-15 16:57:43.908515+00', '2019-12-31 03:35:05.049105+00', 0, 0, 0, 0, false, false, 36, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (45, '2019-05-25 00:07:58.609053+00', '2019-12-31 03:35:05.093472+00', 0, 0, 0, 0, false, false, 86, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (33, '2018-03-15 16:57:43.928516+00', '2019-12-31 03:35:05.148454+00', 0, 0, 0, 0, false, false, 6, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (34, '2018-03-15 16:57:43.948182+00', '2019-12-31 03:35:05.164784+00', 0, 0, 0, 0, false, false, 11, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (51, '2019-11-07 09:50:41.296361+00', '2019-12-31 03:35:05.18+00', 0, 0, 0, 0, false, false, 92, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (35, '2018-03-15 16:57:43.968458+00', '2019-12-31 03:35:05.19462+00', 0, 0, 0, 0, false, false, 24, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (36, '2018-03-15 16:57:43.988183+00', '2019-12-31 03:35:05.209224+00', 0, 0, 0, 0, false, false, 20, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (37, '2018-03-15 16:57:44.008195+00', '2019-12-31 03:35:05.22528+00', 0, 0, 0, 0, false, false, 7, 0); -- @@ -11810,42 +12528,52 @@ INSERT INTO [[schema]].partners_plannedengagement VALUES (51, '2019-11-07 09:50: -- Data for Name: psea_evidence; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].psea_evidence VALUES (1, '2019-10-04 17:29:59.685922+00', '2019-10-04 17:29:59.685933+00', 'Code of Conduct', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (2, '2019-10-04 17:29:59.69309+00', '2019-10-04 17:29:59.6931+00', 'PSEA Policy', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (3, '2019-10-04 17:29:59.700316+00', '2019-10-04 17:29:59.700327+00', 'Other (please specify)', true, true); -INSERT INTO [[schema]].psea_evidence VALUES (4, '2019-10-04 17:29:59.70725+00', '2019-10-04 17:29:59.707261+00', 'Relevant human resources policies', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (5, '2019-10-04 17:29:59.715463+00', '2019-10-04 17:29:59.715479+00', 'Recruitment procedure (e.g. screening of candidates)', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (6, '2019-10-04 17:29:59.722609+00', '2019-10-04 17:29:59.722619+00', 'ToR (e.g. PSEA-related responsibilities)', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (7, '2019-10-04 17:29:59.730276+00', '2019-10-04 17:29:59.730286+00', 'Contracts/partnership agreements', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (8, '2019-10-04 17:29:59.737381+00', '2019-10-04 17:29:59.737391+00', 'Training Agenda', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (9, '2019-10-04 17:29:59.744272+00', '2019-10-04 17:29:59.744282+00', 'Attendance sheets', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (10, '2019-10-04 17:29:59.752254+00', '2019-10-04 17:29:59.752264+00', 'Communication materials', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (11, '2019-10-04 17:29:59.759367+00', '2019-10-04 17:29:59.759386+00', 'Needs assessments', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (12, '2019-10-04 17:29:59.766376+00', '2019-10-04 17:29:59.766387+00', 'Risk assessments', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (13, '2019-10-04 17:29:59.773615+00', '2019-10-04 17:29:59.773636+00', 'M&E framework', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (14, '2019-10-04 17:29:59.78144+00', '2019-10-04 17:29:59.781542+00', 'Description of reporting mechanism(s)', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (15, '2019-10-04 17:29:59.78844+00', '2019-10-04 17:29:59.788448+00', 'Whistleblower policy', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (16, '2019-10-04 17:29:59.795298+00', '2019-10-04 17:29:59.795325+00', 'List of service providers', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (17, '2019-10-04 17:29:59.802637+00', '2019-10-04 17:29:59.802648+00', 'Referral form for survivors of GBV/SEA', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (18, '2019-10-04 17:29:59.810234+00', '2019-10-04 17:29:59.810242+00', 'Name(s) of possible investigator(s)', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (19, '2019-10-04 17:29:59.817767+00', '2019-10-04 17:29:59.817779+00', 'Dedicated resources for investigation(s) and/or commitment of partner for support', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (20, '2019-10-04 17:29:59.825178+00', '2019-10-04 17:29:59.825188+00', 'PSEA investigation policy/procedure', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (21, '2019-10-04 17:29:59.832409+00', '2019-10-04 17:29:59.832418+00', 'Documentation of standard procedure', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (22, '2019-10-04 17:29:59.840219+00', '2019-10-04 17:29:59.84023+00', 'Annual training plan', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (23, '2019-10-04 17:29:59.847248+00', '2019-10-04 17:29:59.847256+00', 'Description of referral process for survivors of GBV/SEA', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (24, '2019-10-04 17:29:59.853869+00', '2019-10-04 17:29:59.853878+00', 'Written process for review of SEA allegations', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (1, '2019-10-04 17:29:37.528+00', '2019-10-04 17:29:37.528+00', 'Code of Conduct', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (2, '2019-10-04 17:29:37.535+00', '2019-10-04 17:29:37.535+00', 'PSEA Policy', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (3, '2019-10-04 17:29:37.542+00', '2019-10-04 17:29:37.542+00', 'Other (please specify)', true, true); +INSERT INTO [[schema]].psea_evidence VALUES (4, '2019-10-04 17:29:37.549+00', '2019-10-04 17:29:37.549+00', 'Relevant human resources policies', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (5, '2019-10-04 17:29:37.556+00', '2019-10-04 17:29:37.556+00', 'Recruitment procedure (e.g. screening of candidates)', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (6, '2019-10-04 17:29:37.563+00', '2019-10-04 17:29:37.563+00', 'ToR (e.g. PSEA-related responsibilities)', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (7, '2019-10-04 17:29:37.57+00', '2019-10-04 17:29:37.57+00', 'Contracts/partnership agreements', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (8, '2019-10-04 17:29:37.577+00', '2019-10-04 17:29:37.577+00', 'Training Agenda', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (9, '2019-10-04 17:29:37.584+00', '2019-10-04 17:29:37.584+00', 'Attendance sheets', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (10, '2019-10-04 17:29:37.591+00', '2019-10-04 17:29:37.591+00', 'Communication materials', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (11, '2019-10-04 17:29:37.598+00', '2019-10-04 17:29:37.598+00', 'Needs assessments', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (12, '2019-10-04 17:29:37.604+00', '2019-10-04 17:29:37.604+00', 'Risk assessments', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (13, '2019-10-04 17:29:37.611+00', '2019-10-04 17:29:37.611+00', 'M&E framework', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (14, '2019-10-04 17:29:37.617+00', '2019-10-04 17:29:37.617+00', 'Description of reporting mechanism(s)', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (15, '2019-10-04 17:29:37.625+00', '2019-10-04 17:29:37.625+00', 'Whistleblower policy', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (16, '2019-10-04 17:29:37.633+00', '2019-10-04 17:29:37.633+00', 'List of service providers', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (17, '2019-10-04 17:29:37.641+00', '2019-10-04 17:29:37.641+00', 'Referral form for survivors of GBV/SEA', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (18, '2019-10-04 17:29:37.648+00', '2019-10-04 17:29:37.648+00', 'Name(s) of possible investigator(s)', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (19, '2019-10-04 17:29:37.655+00', '2019-10-04 17:29:37.655+00', 'Dedicated resources for investigation(s) and/or commitment of partner for support', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (20, '2019-10-04 17:29:37.663+00', '2019-10-04 17:29:37.663+00', 'PSEA investigation policy/procedure', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (21, '2019-10-04 17:29:37.67+00', '2019-10-04 17:29:37.67+00', 'Documentation of standard procedure', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (22, '2019-10-04 17:29:37.678+00', '2019-10-04 17:29:37.678+00', 'Annual training plan', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (23, '2019-10-04 17:29:37.686+00', '2019-10-04 17:29:37.686+00', 'Description of referral process for survivors of GBV/SEA', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (24, '2019-10-04 17:29:37.693+00', '2019-10-04 17:29:37.693+00', 'Written process for review of SEA allegations', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (25, '2020-01-17 16:12:21.712+00', '2020-01-17 16:12:21.712+00', 'PSEA awareness-raising plan', false, true); -- -- Data for Name: psea_indicator; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].psea_indicator VALUES (1, '2019-10-04 17:29:59.860629+00', '2019-10-04 17:29:59.86064+00', 'Core Standard 1: Organizational Policy', 'An organizational policy exists and is signed by all personnel (see: PSEA Toolkit Section 4.2.1. Policies). (Note that the policy may exist as part of a code of conduct and/or a comprehensive SEA policy.)', true, 1, ''); -INSERT INTO [[schema]].psea_indicator VALUES (2, '2019-10-04 17:29:59.894445+00', '2019-10-04 17:29:59.894457+00', 'Core Standard 2: Organizational Management and HR Systems', 'The organization’s management and HR systems account for PSEA (see : PSEA Toolkit Section 4.2.2. Procedures).', true, 2, ''); -INSERT INTO [[schema]].psea_indicator VALUES (3, '2019-10-04 17:29:59.927964+00', '2019-10-04 17:29:59.928048+00', 'Core Standard 3: Mandatory Training', 'The organization holds mandatory trainings for personnel on the organization’s SEA policy and procedures (see : PSEA Toolkit Section 4.3.1. Training). (Note this training can be delivered online or in-person.)', true, 3, ''); -INSERT INTO [[schema]].psea_indicator VALUES (4, '2019-10-04 17:29:59.957121+00', '2019-10-04 17:29:59.957142+00', 'Core Standard 4: Reporting', 'The organization has mechanisms and procedures for personnel, beneficiaries and communities, including children, to report SEA allegations that comply with core standards for reporting (i.e. safety, confidentiality, transparency, accessibility) and ensures that beneficiaries are aware of these (see PSEA Toolkit Section 4.3.2. Awareness-raising and Section 5.2. Reporting Mechanisms).', true, 4, ''); -INSERT INTO [[schema]].psea_indicator VALUES (5, '2019-10-04 17:29:59.988486+00', '2019-10-04 17:29:59.988505+00', 'Core Standard 5: Assistance and Referrals', 'The organization has a system to ensure survivors of SEA, including children, receive immediate professional assistance, referring them to relevant service providers (see PSEA Toolkit Section 6.2. Assistance and Referrals).', true, 5, ''); -INSERT INTO [[schema]].psea_indicator VALUES (6, '2019-10-04 17:30:00.017946+00', '2019-10-04 17:30:00.017958+00', 'Core Standard 6: Investigations', 'The organization has a process and plan for ensuring investigation into SEA allegations involving its personnel (see PSEA Toolkit Section 7.2. Investigation Procedures).', true, 6, ''); +INSERT INTO [[schema]].psea_indicator VALUES (1, '2019-10-04 17:29:37.7+00', '2020-01-17 15:56:49.785+00', 'Core Standard 1: Organizational Policy', 'Refer: PSEA Toolkit Section 4.2.1. Policies.
Required 1: An organizational policy on PSEA exists and describes appropriate standards of conduct, other preventive measures, reporting, monitoring, investigation and corrective measures.
(UN IP Protocol para 15 & Annex A.4)', true, 1, ''); +INSERT INTO [[schema]].psea_indicator VALUES (2, '2019-10-04 17:29:37.734+00', '2020-01-17 16:18:50.755+00', 'Core Standard 2: Organizational Management and HR Systems', 'Refer: PSEA Toolkit Section 4.2.2. Procedures +Required 1: The organization’s contracts and partnership agreements include a standard clause requiring contractors, suppliers, consultants and sub-partners to commit to a zero-tolerance policy on SEA and to take measures to prevent and respond to SEA. +Required 2: There is a systematic vetting procedure in place for job candidates (e.g. reference checks, police records, Google searches) in accordance with local laws regarding employment, privacy and data protection, including checking for prior involvement in SEA. +(UN IP Protocol para 11; 15; & Annex A.1, A.2)', true, 2, ''); +INSERT INTO [[schema]].psea_indicator VALUES (3, '2019-10-04 17:29:37.765+00', '2020-01-17 16:09:07.966+00', 'Core Standard 3: Mandatory Training', 'Refer PSEA Toolkit Section 4.3.1. Training +Required 1: The organization holds mandatory trainings for all personnel on the organization’s SEA policy and procedures and the training includes 1) a definition of SEA (that is aligned with the UN''s definition); 2) a prohibition of SEA; and 3) actions that personnel are required to take (i.e. prompt reporting of allegations and referral of survivors). +(UN IP Protocol para 17 & Annex A.5)', true, 3, ''); +INSERT INTO [[schema]].psea_indicator VALUES (4, '2019-10-04 17:29:37.795+00', '2020-01-17 16:13:32.26+00', 'Core Standard 4: Reporting', 'Refer PSEA Toolkit Section 4.3.2. Awareness-raising and Section 5.2. Reporting Mechanisms +Required 1: The organization has mechanisms and procedures for personnel, beneficiaries and communities, including children, to report SEA allegations that comply with core standards for reporting (i.e. safety, confidentiality, transparency, accessibility) and ensures that beneficiaries are aware of these.
(UN IP Protocol para 19 & Annex A.3)', true, 4, ''); +INSERT INTO [[schema]].psea_indicator VALUES (5, '2019-10-04 17:29:37.826+00', '2020-01-17 16:17:14.743+00', 'Core Standard 5: Assistance and Referrals', 'Refer PSEA Toolkit Section 6.2. Assistance and Referrals +Required 1:The organization has a system to ensure survivors of SEA, including children, receive immediate professional assistance, referring them to qualified service providers.
(UN IP Protocol para 22.d.)', true, 5, ''); +INSERT INTO [[schema]].psea_indicator VALUES (6, '2019-10-04 17:29:37.857+00', '2020-01-17 16:18:03.295+00', 'Core Standard 6: Investigations', 'Refer PSEA Toolkit Section 7.2. Investigation Procedures). +Required 1: The organization has a process for investigation of allegations of SEA and can provide evidence that it has appropriately dealt with past SEA allegations, if any, through investigation and corrective action. +(UN IP Protocol para 20, 22.a., & Annex A.6)', true, 6, ''); -- @@ -11875,6 +12603,8 @@ INSERT INTO [[schema]].psea_indicator_evidences VALUES (20, 6, 19); INSERT INTO [[schema]].psea_indicator_evidences VALUES (21, 6, 24); INSERT INTO [[schema]].psea_indicator_evidences VALUES (22, 6, 3); INSERT INTO [[schema]].psea_indicator_evidences VALUES (23, 6, 20); +INSERT INTO [[schema]].psea_indicator_evidences VALUES (24, 4, 25); +INSERT INTO [[schema]].psea_indicator_evidences VALUES (25, 4, 10); -- @@ -11905,27 +12635,1900 @@ INSERT INTO [[schema]].psea_indicator_ratings VALUES (18, 6, 3); -- Data for Name: psea_rating; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].psea_rating VALUES (1, '2019-10-04 17:29:59.655933+00', '2019-10-04 17:29:59.655944+00', 'Absent', 1, true); -INSERT INTO [[schema]].psea_rating VALUES (2, '2019-10-04 17:29:59.671722+00', '2019-10-04 17:29:59.671732+00', 'Progressing', 2, true); -INSERT INTO [[schema]].psea_rating VALUES (3, '2019-10-04 17:29:59.679357+00', '2019-10-04 17:29:59.679367+00', 'Adequate', 3, true); +INSERT INTO [[schema]].psea_rating VALUES (1, '2019-10-04 17:29:37.497+00', '2019-10-04 17:29:37.497+00', 'Absent', 1, true); +INSERT INTO [[schema]].psea_rating VALUES (2, '2019-10-04 17:29:37.513+00', '2019-10-04 17:29:37.513+00', 'Progressing', 2, true); +INSERT INTO [[schema]].psea_rating VALUES (3, '2019-10-04 17:29:37.52+00', '2019-10-04 17:29:37.52+00', 'Adequate', 3, true); -- -- Data for Name: reports_appliedindicator; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].reports_appliedindicator VALUES (194, NULL, NULL, 0, 159, 54, 'case management database, accountability documentation (medical/edu invoice and receipt)', NULL, NULL, NULL, '2020-01-30 08:43:16.156897+00', '2020-03-11 14:58:44.549757+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "75"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (250, NULL, NULL, 0, 208, 65, 'Distribution Forms', NULL, NULL, NULL, '2020-02-02 08:21:47.897942+00', '2020-02-02 08:21:47.897942+00', NULL, 2, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "5"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (159, NULL, NULL, 0, 32, 24, '-Training reports +-Attendance sheet of trainees', NULL, NULL, NULL, '2020-01-29 10:02:17.296622+00', '2020-03-03 10:00:33.341252+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "120"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (90, NULL, '', 0, 77, 30, 'IMSMA reportsAttendance logsPhotos', NULL, NULL, NULL, '2019-12-31 09:33:09.713954+00', '2020-02-26 12:39:01.020263+00', NULL, 1, false, true, '{"d": 1, "v": null}', NULL, '', '', NULL, '{"d": 1, "v": "24000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (276, NULL, NULL, 0, 229, 65, 'Pictures +Attendance sheet', NULL, NULL, NULL, '2020-03-23 11:07:37.656003+00', '2020-03-23 11:07:37.656003+00', NULL, 2, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (254, NULL, NULL, 0, 212, 30, 'Radio and TV broadcast feedback', NULL, NULL, NULL, '2020-02-03 15:25:15.384639+00', '2020-02-26 12:40:20.333717+00', NULL, 1, false, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "500000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (242, NULL, NULL, 0, 200, 48, 'Enrollment and attendance record', NULL, NULL, NULL, '2020-02-02 07:41:37.898649+00', '2020-03-03 08:27:05.714245+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "2400"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (88, NULL, NULL, 0, 76, 21, 'Intervention report with a set of 20 photos', NULL, NULL, NULL, '2019-12-31 09:24:40.758347+00', '2020-02-02 14:54:17.668735+00', NULL, 1, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "8000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (268, NULL, NULL, 0, 226, 30, '3F behavior tracking', NULL, NULL, NULL, '2020-02-03 16:14:44.712463+00', '2020-02-26 12:40:25.637531+00', NULL, 1, false, false, '{"d": 100, "v": null}', '', '', NULL, '', '{"d": 100, "v": 90}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (59, NULL, '', 0, 57, 21, 'Daily/weekly/monthly reports', NULL, NULL, NULL, '2019-12-22 15:14:50.650177+00', '2020-03-02 12:56:14.825715+00', NULL, 1, true, false, '{"d": 1, "v": null}', NULL, '', '', NULL, '{"d": 1, "v": "18"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (83, NULL, '', 0, 74, 21, 'Pre and Post test, attendance list', NULL, NULL, NULL, '2019-12-30 18:33:49.223256+00', '2020-03-02 12:57:24.44052+00', NULL, 1, true, true, '{"d": 1, "v": "0"}', NULL, '', '', NULL, '{"d": 1, "v": "36"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (259, NULL, NULL, 0, 217, 66, 'beneficiaries list, progress report', NULL, NULL, NULL, '2020-02-03 15:41:55.549781+00', '2020-03-11 15:28:15.786799+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', '', NULL, '', '{"d": 100, "v": 15}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (246, NULL, NULL, 0, 204, 65, 'Enrollment and attendance record', NULL, NULL, NULL, '2020-02-02 08:15:19.115923+00', '2020-03-03 08:31:04.741357+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "500"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (181, NULL, NULL, 0, 147, 49, 'attendance sheet and pre and post test', NULL, NULL, NULL, '2020-01-29 14:05:35.443982+00', '2020-03-03 08:38:39.099318+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "10"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (32, NULL, NULL, 0, 32, 11, '1. Teachers training reports (attendance and pre & post training survey) by partner 2. Programmatic visit reports by UNICEF 3. Monitoring reports by Third Party Monitor', NULL, NULL, NULL, '2019-12-19 09:24:19.969528+00', '2020-03-03 10:00:33.569068+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "80"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (64, NULL, NULL, 0, 60, 18, '1.Attendance records 2.Weekly, monthly quarterly progress reports by partner 3.Programmatic visit reports by UNICEF4.Monitoring reports by Third Party Monitor5. Rehab work completion report certified by the education authority’s engineer/UNICEF engineer', NULL, NULL, NULL, '2019-12-25 14:57:11.578084+00', '2020-03-03 09:54:40.213492+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "560"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (50, NULL, NULL, 0, 33, 19, '- Attendance records by partner +- Weekly, monthly quarterly progress reports by partner +- Programmatic visit reports by UNICEF +- Monitoring reports by Third Party Monitor', NULL, NULL, NULL, '2019-12-22 09:35:51.190458+00', '2020-03-03 09:55:27.146617+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1800"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (274, NULL, NULL, 0, 226, 68, '3F behavior tracking', NULL, NULL, NULL, '2020-02-26 13:42:38.451786+00', '2020-03-24 08:26:56.137235+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', '', NULL, '', '{"d": 100, "v": 90}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (263, NULL, NULL, 0, 221, 67, 'beneficiaries list, progress report', NULL, NULL, NULL, '2020-02-03 15:47:33.648297+00', '2020-03-11 15:29:10.582024+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "300"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (271, NULL, NULL, 0, 212, 68, 'Radio and TV broadcast feedback', NULL, NULL, NULL, '2020-02-26 13:32:22.054858+00', '2020-03-25 12:46:08.751393+00', NULL, 1, true, false, '{"d": 1, "v": "500000"}', '', NULL, NULL, '', '{"d": 1, "v": "500000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (299, NULL, NULL, 0, 246, 78, NULL, NULL, NULL, NULL, '2020-04-16 15:36:10.858461+00', '2020-04-16 15:36:10.858461+00', NULL, 4, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "45000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (290, NULL, NULL, 0, 238, 79, NULL, NULL, NULL, NULL, '2020-04-06 15:08:50.974276+00', '2020-04-06 15:23:41.08+00', NULL, 3, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "24"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (302, NULL, NULL, 0, 249, 82, 'Photos, weekly monitoring reports, final report, 3rd party monitoring reports, and joint field visit report.', NULL, NULL, NULL, '2020-04-19 07:32:47.497556+00', '2020-04-21 08:47:16.669768+00', NULL, 3, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "20000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (293, NULL, NULL, 0, 241, 80, NULL, NULL, NULL, NULL, '2020-04-08 15:35:20.656344+00', '2020-04-09 08:11:50.364118+00', NULL, 3, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "6"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (296, NULL, NULL, 0, 30, 78, NULL, NULL, NULL, NULL, '2020-04-09 08:44:51.141301+00', '2020-04-16 15:59:14.992815+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "5000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (284, NULL, NULL, 0, 235, 78, NULL, NULL, NULL, NULL, '2020-04-06 14:52:10.276615+00', '2020-04-16 15:06:12.371628+00', NULL, 3, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "55000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (305, NULL, NULL, 0, 252, 83, 'Photos, weekly monitoring reports, final report, 3rd party monitoring reports, and joint field visit report.', NULL, NULL, NULL, '2020-04-19 07:37:55.971356+00', '2020-04-21 08:47:30.673294+00', NULL, 3, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "2800"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (300, NULL, NULL, 0, 247, 82, 'Photos, weekly monitoring reports, final report, 3rd party monitoring reports, and joint field visit report.', NULL, NULL, NULL, '2020-04-19 07:30:13.938993+00', '2020-04-21 08:47:49.68005+00', NULL, 3, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "20000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (120, NULL, NULL, 0, 104, 38, 'attendance list', NULL, NULL, NULL, '2020-01-16 14:13:07.554503+00', '2020-01-16 14:13:07.554503+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3240"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (123, NULL, NULL, 0, 107, 38, 'case management client satisfaction survey', NULL, NULL, NULL, '2020-01-16 14:27:08.232239+00', '2020-01-16 14:27:08.232239+00', NULL, 1, true, false, '{"d": 100, "v": null}', '', '', NULL, '', '{"d": 100, "v": 75}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (127, NULL, NULL, 0, 111, 39, 'AME pre and post training surveys', NULL, NULL, NULL, '2020-01-16 14:48:15.247138+00', '2020-01-16 14:48:15.247138+00', NULL, 1, true, false, '{"d": 100, "v": null}', '', '', NULL, '', '{"d": 100, "v": 80}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (31, NULL, NULL, 0, 31, 8, 'Partner reports', NULL, NULL, NULL, '2019-12-19 09:19:38.81605+00', '2019-12-23 13:27:14.297607+00', NULL, 2, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (37, NULL, NULL, 0, 37, 13, 'training reports, attendance lists', NULL, NULL, NULL, '2019-12-19 15:41:05.968629+00', '2019-12-29 15:29:07.564294+00', NULL, 2, false, true, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "18"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (38, NULL, NULL, 0, 38, 14, 'vulnerability assessment database, vulnerability assessment report', NULL, NULL, NULL, '2019-12-19 15:42:47.652051+00', '2019-12-30 08:31:57.754226+00', NULL, 1, false, true, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "1160"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (41, NULL, NULL, 0, 41, 16, 'CM database, BIA reports', NULL, NULL, NULL, '2019-12-19 15:47:29.435121+00', '2019-12-30 08:44:05.495721+00', NULL, 1, false, true, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "150"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (42, NULL, NULL, 0, 42, 16, 'CM database, accountability documentation', NULL, NULL, NULL, '2019-12-19 15:48:33.501492+00', '2019-12-30 08:44:08.682751+00', NULL, 1, false, true, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "75"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (43, NULL, NULL, 0, 43, 17, 'events attendance lists, centre database', NULL, NULL, NULL, '2019-12-19 15:51:19.861311+00', '2019-12-30 08:52:04.448675+00', NULL, 1, false, true, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "3150"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (51, NULL, NULL, 0, 49, 20, 'Primero data ase, GBVIMS, and Monthly activities report PSS support Group', NULL, NULL, NULL, '2019-12-22 13:19:29.720175+00', '2019-12-31 09:07:17.696496+00', NULL, 1, false, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (48, NULL, NULL, 0, 48, 18, 'Partner reports', NULL, NULL, NULL, '2019-12-22 09:34:26.865284+00', '2019-12-25 14:55:48.562792+00', NULL, 2, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1500"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (252, NULL, NULL, 0, 210, 21, NULL, NULL, NULL, NULL, '2020-02-02 14:46:47.522422+00', '2020-03-02 12:59:21.970435+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "50"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (121, NULL, NULL, 0, 105, 38, 'referrals database, case management database', NULL, NULL, NULL, '2020-01-16 14:15:21.658002+00', '2020-01-16 14:15:21.658002+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "565"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (53, NULL, NULL, 0, 51, 20, 'nomthly report IEC material development', NULL, NULL, NULL, '2019-12-22 13:43:57.92935+00', '2019-12-30 18:14:05.116575+00', NULL, 1, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (58, NULL, NULL, 0, 56, 21, 'Attendance sheet, weekly report, photographs', NULL, NULL, NULL, '2019-12-22 15:00:29.110586+00', '2019-12-30 18:31:40.923955+00', NULL, 1, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "36"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (255, NULL, NULL, 0, 213, 66, 'beneficiairies list, progress report', NULL, NULL, NULL, '2020-02-03 15:36:23.539433+00', '2020-03-11 15:27:28.440779+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "2000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (69, NULL, NULL, 0, 61, 26, '1.Training reports 2. Attendance sheet of trainees', NULL, NULL, NULL, '2019-12-29 13:53:44.71498+00', '2020-01-29 10:03:04.84112+00', NULL, 1, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "25827"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (56, NULL, '', 0, 54, 21, 'daily/weekly/monthly reports/photographs', NULL, NULL, NULL, '2019-12-22 14:52:30.685305+00', '2020-03-02 12:55:40.493915+00', NULL, 1, true, true, '{"d": 1, "v": null}', NULL, '', '', NULL, '{"d": 1, "v": "35000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (62, NULL, NULL, 0, 59, 18, '1. School registration/ attendance records 2. Weekly, monthly quarterly progress reports by partner 3.Assessment pre & post catch-up classes by partner 4.Programmatic visit reports by UNICEF +5.Monitoring reports by Third Party Monitor', NULL, NULL, NULL, '2019-12-25 14:25:44.138539+00', '2020-01-29 08:06:53.289845+00', NULL, 2, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1800"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (63, NULL, NULL, 0, 30, 18, '- Distribution reports by partner +- Post-distribution monitoring reports by partner +- Programmatic visit reports by UNICEF +- Monitoring reports by Third Party Monitor', NULL, NULL, NULL, '2019-12-25 14:55:32.016629+00', '2020-03-03 09:54:31.360163+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1800"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (49, NULL, NULL, 0, 32, 19, '- Teachers training reports (attendance and pre & post training survey) by partner +- Programmatic visit reports by UNICEF +- Monitoring reports by Third Party Monitor', NULL, NULL, NULL, '2019-12-22 09:35:17.581737+00', '2020-03-03 09:55:17.899719+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "30"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (52, NULL, NULL, 0, 50, 20, 'Data base and monthly activities report. PSS support group', NULL, NULL, NULL, '2019-12-22 13:36:48.311106+00', '2019-12-30 18:06:52.672666+00', NULL, 1, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (16, NULL, NULL, 0, 16, 8, 'Partner reports', NULL, NULL, NULL, '2019-12-18 08:39:05.823513+00', '2019-12-23 13:30:46.134803+00', NULL, 2, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "9000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (30, NULL, NULL, 0, 30, 8, '1. Distribution reports by partner 2. Post- distribution monitoring reports by partner 3. Programmatic visit reports by UNICEF 4. Monitoring reports by Third Party Monitor', NULL, NULL, NULL, '2019-12-19 09:18:41.218778+00', '2020-03-03 09:59:53.745273+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "9000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (70, NULL, '', 0, 62, 25, '1. Attendance list/database 2. Weekly reports 3. field visit reports with photos', NULL, NULL, NULL, '2019-12-29 13:56:46.864916+00', '2020-03-03 10:00:23.536332+00', NULL, 1, true, true, '{"d": 1, "v": null}', NULL, '', '', NULL, '{"d": 1, "v": "130"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (124, NULL, NULL, 0, 108, 38, 'attendance list', NULL, NULL, NULL, '2020-01-16 14:28:24.115351+00', '2020-01-16 14:28:24.115351+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3240"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (128, NULL, NULL, 0, 112, 39, 'facesheets shared with UNICEF', NULL, NULL, NULL, '2020-01-16 14:49:47.498752+00', '2020-01-16 14:49:47.498752+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (131, NULL, NULL, 0, 115, 40, 'school academic records', NULL, NULL, NULL, '2020-01-16 14:57:02.735188+00', '2020-01-16 14:57:02.735188+00', NULL, 2, true, false, '{"d": 100, "v": null}', '', '', NULL, '', '{"d": 100, "v": 70}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (61, NULL, NULL, 0, 59, 8, '1. School registration/attendance records 2. Weekly, monthly quarterly progress reports by partner 3. Assessment pre & post catch-up classes by partner 4. Programmatic visit reports by UNICEF 5. Monitoring reports by Third Party Monitor', NULL, NULL, NULL, '2019-12-23 13:32:10.216991+00', '2020-01-29 10:32:43.64314+00', NULL, 2, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "6000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (137, NULL, NULL, 0, 120, 41, 'case management database', NULL, NULL, NULL, '2020-01-16 15:21:57.636771+00', '2020-01-16 15:21:57.636771+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (45, NULL, NULL, 0, 45, 18, 'Partner reports', NULL, NULL, NULL, '2019-12-22 09:31:47.911921+00', '2019-12-25 14:27:45.385232+00', NULL, 2, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "300"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (46, NULL, NULL, 0, 46, 18, 'Partner reports', NULL, NULL, NULL, '2019-12-22 09:32:45.155607+00', '2019-12-25 14:27:49.544224+00', NULL, 2, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1500"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (47, NULL, NULL, 0, 47, 18, 'Partner Reports', NULL, NULL, NULL, '2019-12-22 09:33:47.199277+00', '2019-12-25 14:55:44.612765+00', NULL, 2, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "300"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (33, NULL, NULL, 0, 33, 11, '1. Attendance records by partner 2. Weekly, monthly quarterly progress reports by partner 3. Programmatic visit reports by UNICEF 4. Monitoring reports by Third Party Monitor', NULL, NULL, NULL, '2019-12-19 11:38:04.517482+00', '2020-03-03 10:00:48.063937+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "6000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (243, NULL, NULL, 0, 201, 48, 'Distribution Forms', NULL, NULL, NULL, '2020-02-02 07:45:35.540186+00', '2020-03-03 08:27:31.661089+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "4400"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (89, NULL, NULL, 0, 72, 21, 'Attendance report with a set of 20 photos', NULL, NULL, NULL, '2019-12-31 09:27:41.963284+00', '2020-02-02 14:51:00.967602+00', NULL, 1, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (189, NULL, NULL, 0, 64, 51, 'training reports, attendance lists', NULL, NULL, NULL, '2020-01-30 08:32:20.63767+00', '2020-03-11 14:57:47.832204+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "18"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (54, NULL, NULL, 0, 52, 20, 'pre and post-tests. reports', NULL, NULL, NULL, '2019-12-22 13:46:53.930884+00', '2019-12-30 18:11:36.331801+00', NULL, 1, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "150"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (55, NULL, NULL, 0, 53, 20, 'Pre and post tests', NULL, NULL, NULL, '2019-12-22 13:48:04.554767+00', '2019-12-30 18:11:40.400526+00', NULL, 1, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "60"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (192, NULL, NULL, 0, 157, 53, 'parents attendance lists, centre database activity report', NULL, NULL, NULL, '2020-01-30 08:38:47.767486+00', '2020-03-11 14:58:24.397471+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "480"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (60, NULL, NULL, 0, 58, 21, 'weekly reports,monthly reports, attendance sheet.', NULL, NULL, NULL, '2019-12-22 15:16:44.860802+00', '2019-12-30 18:34:16.784037+00', NULL, 1, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (57, NULL, NULL, 0, 55, 21, 'Referral sheet/Daily/weekly/monthly reports', NULL, NULL, NULL, '2019-12-22 14:56:16.533798+00', '2019-12-30 18:35:40.95168+00', NULL, 1, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "50"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (186, NULL, NULL, 0, 152, 50, 'ditribtuion lists, activity report', NULL, NULL, NULL, '2020-01-30 08:26:58.222906+00', '2020-03-11 15:07:33.431652+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1400"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (285, NULL, NULL, 0, 233, 78, NULL, NULL, NULL, NULL, '2020-04-06 14:54:09.874609+00', '2020-04-16 15:57:39.219646+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "10000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (303, NULL, NULL, 0, 250, 83, 'Photos, weekly monitoring reports, final report, 3rd party monitoring reports, and joint field visit report.', NULL, NULL, NULL, '2020-04-19 07:35:08.025038+00', '2020-04-21 08:47:21.966512+00', NULL, 3, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "10000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (244, NULL, NULL, 0, 202, 48, 'Distribution Forms', NULL, NULL, NULL, '2020-02-02 07:52:58.278401+00', '2020-03-03 08:41:06.587552+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "4400"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (44, NULL, NULL, 0, 44, 17, 'training reports, attendance list', NULL, NULL, NULL, '2019-12-19 15:52:51.972217+00', '2019-12-30 08:51:57.627072+00', NULL, 1, false, true, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "50"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (85, NULL, '', 0, 66, 21, 'Referral sheet/Daily/weekly/monthly reports', NULL, NULL, NULL, '2019-12-30 18:37:16.219599+00', '2020-02-02 14:45:44.662219+00', NULL, 1, false, true, '{"d": 1, "v": "0"}', NULL, '', '', NULL, '{"d": 1, "v": "50"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (79, NULL, NULL, 0, 70, 20, 'Database, Monthly activities Report', NULL, NULL, NULL, '2019-12-30 18:09:24.549425+00', '2019-12-31 09:08:33.077695+00', NULL, 1, false, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "6000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (80, NULL, NULL, 0, 71, 20, 'Pre and Post tests, Reports', NULL, NULL, NULL, '2019-12-30 18:13:43.097174+00', '2020-01-30 08:54:15.067449+00', NULL, 1, false, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "210"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (187, NULL, NULL, 0, 153, 50, 'Children attendance lists, centre database activity report', NULL, NULL, NULL, '2020-01-30 08:28:08.305651+00', '2020-03-11 14:57:13.064865+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1400"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (82, NULL, NULL, 0, 73, 21, 'Intervention report with a set of 20 photos', NULL, NULL, NULL, '2019-12-30 18:31:27.030565+00', '2019-12-30 18:58:49.734466+00', NULL, 1, false, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "8000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (125, NULL, NULL, 0, 109, 39, 'site visits', NULL, NULL, NULL, '2020-01-16 14:44:13.460676+00', '2020-01-16 14:44:13.460676+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (65, NULL, NULL, 0, 59, 23, '1. Attendance list/database 2. Weekly reports 3. field visit reports with photos', NULL, NULL, NULL, '2019-12-29 13:24:17.272149+00', '2020-01-28 11:41:50.119806+00', NULL, 2, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1846"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (94, NULL, NULL, 0, 80, 24, '1. Training reports 2. Attendance sheet of trainees', NULL, NULL, NULL, '2019-12-31 13:08:04.052368+00', '2020-01-29 10:01:23.73301+00', NULL, 2, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "120"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (92, NULL, '', 0, 78, 30, 'Training reportsAttendance logsPhotos', NULL, NULL, NULL, '2019-12-31 09:46:03.508976+00', '2020-02-26 12:40:15.811832+00', NULL, 1, false, false, '{"d": 1, "v": null}', NULL, '', '', NULL, '{"d": 1, "v": "36"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (87, NULL, NULL, 0, 76, 20, 'Primero database, GBVIMS, monthly activities report, PSS support group', NULL, NULL, NULL, '2019-12-31 09:12:31.526953+00', '2020-01-30 08:59:49.627617+00', NULL, 1, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (116, NULL, NULL, 0, 101, 20, 'Monthly report, IEC Material developed.', NULL, NULL, NULL, '2020-01-14 13:01:21.477987+00', '2020-01-14 13:01:53.091573+00', NULL, 1, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": 100}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (81, NULL, NULL, 0, 72, 20, 'Monthly Reports, IEC material developed', NULL, NULL, NULL, '2019-12-30 18:15:18.963524+00', '2020-01-14 12:59:15.151203+00', NULL, 1, false, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (86, NULL, NULL, 0, 70, 21, 'Intervention report with a set of 20 photos', NULL, NULL, NULL, '2019-12-30 19:00:07.1833+00', '2019-12-31 09:23:47.029612+00', NULL, 1, false, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "8000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (190, NULL, NULL, 0, 155, 52, 'Vulnerabiity assessment database, Vulnerability assessment report', NULL, NULL, NULL, '2020-01-30 08:34:39.485811+00', '2020-03-11 14:58:02.367999+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1160"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (84, NULL, NULL, 0, 75, 21, 'weekly reports,monthly reports, attendance sheet.', NULL, NULL, NULL, '2019-12-30 18:35:16.276007+00', '2019-12-31 09:25:06.581145+00', NULL, 1, false, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "3000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (91, NULL, NULL, 0, 72, 30, 'IMSMA reports +Attendance logs +Photos', NULL, NULL, NULL, '2019-12-31 09:39:07.173403+00', '2020-02-03 15:17:05.028663+00', NULL, 1, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "16000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (160, NULL, NULL, 0, 131, 47, '-Attendance list/database, +- Weekly report, +- Field visit reports with photos', NULL, NULL, NULL, '2020-01-29 10:05:25.22456+00', '2020-03-03 10:00:14.513559+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "23827"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (93, NULL, '', 0, 79, 30, 'MSMA Victim reports, MRM', NULL, NULL, NULL, '2019-12-31 09:55:01.765839+00', '2020-02-26 12:40:18.208055+00', NULL, 1, false, false, '{"d": 1, "v": null}', NULL, '', '', NULL, '{"d": 100, "v": 80}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (260, NULL, NULL, 0, 218, 66, 'protection monitoring reports', NULL, NULL, NULL, '2020-02-03 15:42:59.835613+00', '2020-02-03 15:42:59.835613+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "2"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (67, NULL, NULL, 0, 30, 24, '1. Training reports 2. Attendance sheet of trainees', NULL, NULL, NULL, '2019-12-29 13:31:11.040716+00', '2019-12-31 13:06:33.841443+00', NULL, 2, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "120"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (193, NULL, NULL, 0, 158, 54, 'case management database, BIA activity report', NULL, NULL, NULL, '2020-01-30 08:40:19.031071+00', '2020-03-11 14:58:34.775559+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "150"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (195, NULL, NULL, 0, 160, 55, 'Events attendance lists, center database', NULL, NULL, NULL, '2020-01-30 08:45:54.468064+00', '2020-03-11 14:58:58.63524+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3150"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (115, NULL, NULL, 0, 100, 20, 'Data base and monthly activities reports, PSS support groups.', NULL, NULL, NULL, '2020-01-14 12:54:34.007266+00', '2020-01-30 08:59:52.579356+00', NULL, 1, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (117, NULL, NULL, 0, 102, 20, 'Monthly report, IEC Material developed', NULL, NULL, NULL, '2020-01-14 13:02:56.859264+00', '2020-01-30 08:59:56.971004+00', NULL, 1, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (201, NULL, NULL, 0, 123, 56, 'factsheets shared with UNICEF', NULL, NULL, NULL, '2020-01-30 09:39:25.05936+00', '2020-01-30 09:39:25.05936+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (203, NULL, NULL, 0, 165, 57, 'strenghts and difficulties questionnaire (pre and post project)', NULL, NULL, NULL, '2020-01-30 09:42:11.604662+00', '2020-01-30 09:42:11.604662+00', NULL, 1, true, false, '{"d": 100, "v": null}', '', '', NULL, '', '{"d": 100, "v": 60}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (199, NULL, NULL, 0, 110, 56, 'attendance lists for trainings', NULL, NULL, NULL, '2020-01-30 09:37:39.206609+00', '2020-03-11 15:02:47.587554+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "60"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (205, NULL, NULL, 0, 167, 57, 'referrals database, service with service providers', NULL, NULL, NULL, '2020-01-30 09:44:25.233094+00', '2020-03-11 15:04:44.138333+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "450"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (207, NULL, NULL, 0, 108, 57, 'attendance lists', NULL, NULL, NULL, '2020-01-30 09:48:55.960184+00', '2020-03-11 15:04:52.20147+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3240"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (129, NULL, NULL, 0, 113, 40, 'attendance lists', NULL, NULL, NULL, '2020-01-16 14:53:47.947187+00', '2020-01-16 14:53:47.947187+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "450"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (132, NULL, NULL, 0, 116, 40, 'attendance list', NULL, NULL, NULL, '2020-01-16 14:58:02.927706+00', '2020-01-16 14:58:02.927706+00', NULL, 2, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "225"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (135, NULL, NULL, 0, 72, 41, 'attedance lists', NULL, NULL, NULL, '2020-01-16 15:18:04.619881+00', '2020-01-16 15:18:24.99446+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "980"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (138, NULL, NULL, 0, 121, 42, 'attendance list', NULL, NULL, NULL, '2020-01-16 15:35:39.562276+00', '2020-01-16 15:37:16.530531+00', NULL, 1, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3240"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (209, NULL, NULL, 0, 115, 58, 'school academic records', NULL, NULL, NULL, '2020-01-30 10:11:44.85443+00', '2020-03-11 15:06:05.357618+00', NULL, 2, true, false, '{"d": 1, "v": null}', '', '', NULL, '', '{"d": 100, "v": 70}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (211, NULL, NULL, 0, 170, 58, 'distribution lists, program records', NULL, NULL, NULL, '2020-01-30 10:23:26.514396+00', '2020-03-11 15:06:34.909843+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "675"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (256, NULL, NULL, 0, 214, 66, 'situational report', NULL, NULL, NULL, '2020-02-03 15:37:40.816026+00', '2020-03-11 15:27:37.054773+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "800"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (286, NULL, NULL, 0, 231, 78, NULL, NULL, NULL, NULL, '2020-04-06 14:57:02.741418+00', '2020-04-16 16:01:13.566117+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "10000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (264, NULL, NULL, 0, 222, 67, 'beneficiaries list, progress report', NULL, NULL, NULL, '2020-02-03 15:48:43.720424+00', '2020-03-11 15:29:24.598952+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "200"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (165, NULL, NULL, 0, 63, 48, 'Enrollment and attendance records', NULL, NULL, NULL, '2020-01-29 12:09:05.805101+00', '2020-02-02 07:39:29.819775+00', NULL, 2, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "2400"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (166, NULL, '', 0, 30, 48, 'Distribution forms', NULL, NULL, NULL, '2020-01-29 12:13:24.861369+00', '2020-02-02 07:42:58.735995+00', NULL, 2, false, true, '{"d": 1, "v": null}', NULL, '', '', NULL, '{"d": 1, "v": "4400"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (122, NULL, NULL, 0, 106, 38, 'strengths and difficulties questionnaire (pre and post project)', NULL, NULL, NULL, '2020-01-16 14:18:46.484979+00', '2020-01-16 14:18:46.484979+00', NULL, 1, true, false, '{"d": 100, "v": null}', '', '', NULL, '', '{"d": 100, "v": 60}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (130, NULL, NULL, 0, 114, 40, 'distribution lists, program records', NULL, NULL, NULL, '2020-01-16 14:54:54.874034+00', '2020-01-16 14:54:54.874034+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "675"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (133, NULL, NULL, 0, 117, 39, 'attendance lists for trainings', NULL, NULL, NULL, '2020-01-16 15:00:09.756772+00', '2020-01-16 15:00:09.756772+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "60"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (136, NULL, NULL, 0, 119, 41, 'AME endline survey, AME post-awareness raising sessions survey', NULL, NULL, NULL, '2020-01-16 15:20:22.807758+00', '2020-01-16 15:20:22.807758+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "75"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (169, NULL, NULL, 0, 136, 48, 'Distribution Forms', NULL, NULL, NULL, '2020-01-29 13:23:51.045711+00', '2020-02-02 07:49:13.94434+00', NULL, 2, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "4400"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (179, NULL, NULL, 0, 145, 49, 'attendance sheet and pre and post test', NULL, NULL, NULL, '2020-01-29 13:59:51.3558+00', '2020-02-02 07:57:42.820565+00', NULL, 2, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "140"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (168, NULL, NULL, 0, 135, 48, 'photos', NULL, NULL, NULL, '2020-01-29 13:20:18.684484+00', '2020-02-02 08:26:38.858499+00', NULL, 2, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "8"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (173, NULL, NULL, 0, 140, 48, 'Attendance records', NULL, NULL, NULL, '2020-01-29 13:36:14.323244+00', '2020-03-03 08:25:25.104291+00', NULL, 5, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "150"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (172, NULL, NULL, 0, 139, 48, 'Distribution Forms', NULL, NULL, NULL, '2020-01-29 13:33:29.702951+00', '2020-02-02 08:27:19.643503+00', NULL, 2, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "10"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (269, NULL, NULL, 0, 77, 68, 'IMSMA reports, attendance logs, photos', NULL, NULL, NULL, '2020-02-26 12:53:29.47248+00', '2020-03-24 08:25:40.051262+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "40000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (174, NULL, NULL, 0, 141, 48, 'attendance sheet', NULL, NULL, NULL, '2020-01-29 13:38:47.66393+00', '2020-03-03 08:25:55.034098+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "10"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (158, NULL, NULL, 0, 63, 25, 'Attendance list/database, +- Weekly report, +- Field visit reports with photos', NULL, NULL, NULL, '2020-01-29 09:57:35.654492+00', '2020-01-29 09:58:25.499144+00', NULL, 2, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1864"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (157, NULL, NULL, 0, 130, 18, '-School registration/ attendance records +- Weekly, monthly quarterly progress reports by partner +- Assessment pre & post catch-up classes by partner +- Programmatic visit reports by UNICEF +- Monitoring reports by Third Party Monitor', NULL, NULL, NULL, '2020-01-29 08:08:22.993377+00', '2020-01-29 11:18:52.971506+00', NULL, 2, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1800"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (177, NULL, NULL, 0, 143, 49, 'attendance records', NULL, NULL, NULL, '2020-01-29 13:51:30.574776+00', '2020-03-03 08:28:26.671306+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "2900"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (171, NULL, NULL, 0, 138, 48, 'enrolments records from formal schools', NULL, NULL, NULL, '2020-01-29 13:31:19.259082+00', '2020-03-03 08:24:48.181102+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "180"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (175, NULL, '', 0, 142, 48, 'Enrolment and attendance records', NULL, NULL, NULL, '2020-01-29 13:43:32.137506+00', '2020-03-03 08:26:40.688428+00', NULL, 2, true, true, '{"d": 1, "v": null}', NULL, '', '', NULL, '{"d": 1, "v": "2400"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (257, NULL, NULL, 0, 215, 66, 'coded beneficiaries list, progress report', NULL, NULL, NULL, '2020-02-03 15:39:15.081167+00', '2020-03-11 15:27:47.045702+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "300"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (170, NULL, NULL, 0, 137, 48, 'Enrollment and attendance record', NULL, NULL, NULL, '2020-01-29 13:27:17.916491+00', '2020-01-29 13:39:35.590854+00', NULL, 2, false, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "2400"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (162, NULL, NULL, 0, 133, 8, 'Attendance records +- Weekly, monthly quarterly +progress reports by partner +- Assessment pre & post +literacy classes by partner +- Programmatic visit reports +by UNICEF +- Monitoring reports by Third +Party Monitor', NULL, NULL, NULL, '2020-01-29 10:30:45.13177+00', '2020-03-03 10:00:07.574544+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (161, NULL, NULL, 0, 132, 47, '-Attendance list/database, +- Weekly report, +- Field visit reports with photos', NULL, NULL, NULL, '2020-01-29 10:09:55.065913+00', '2020-03-03 10:00:01.792075+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "2000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (301, NULL, NULL, 0, 248, 82, 'Photos, weekly monitoring reports, final report, 3rd party monitoring reports, and joint field visit report.', NULL, NULL, NULL, '2020-04-19 07:31:23.764898+00', '2020-04-21 08:47:10.852844+00', NULL, 3, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "20000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (253, NULL, NULL, 0, 211, 21, NULL, NULL, NULL, NULL, '2020-02-02 14:53:50.116193+00', '2020-03-02 12:58:28.978774+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (167, NULL, NULL, 0, 134, 48, 'Post implementation monitoring', NULL, NULL, NULL, '2020-01-29 12:18:20.904121+00', '2020-03-03 08:24:10.483212+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "5000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (245, NULL, NULL, 0, 203, 49, 'Attendance sheet and pre and post test', NULL, NULL, NULL, '2020-02-02 07:59:33.656736+00', '2020-03-03 08:30:38.200535+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "140"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (178, NULL, NULL, 0, 144, 49, 'attendance sheet', NULL, NULL, NULL, '2020-01-29 13:54:12.517096+00', '2020-03-03 08:28:57.674571+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "50"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (248, NULL, NULL, 0, 206, 65, 'Distribution Forms', NULL, NULL, NULL, '2020-02-02 08:18:23.388834+00', '2020-03-03 08:32:00.145557+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1200"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (251, NULL, NULL, 0, 209, 65, 'Enrollment and attendance record', NULL, NULL, NULL, '2020-02-02 08:25:53.690382+00', '2020-03-03 08:37:10.277375+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "500"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (156, NULL, NULL, 0, 63, 23, NULL, NULL, NULL, NULL, '2020-01-28 11:41:37.074886+00', '2020-03-03 09:58:47.540831+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1864"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (164, NULL, NULL, 0, 63, 18, '-School registration/ attendance records +- Weekly, monthly quarterly progress reports by partner +- Assessment pre & post catch-up classes by partner +- Programmatic visit reports by UNICEF +- Monitoring reports by Third Party Monitoring', NULL, NULL, NULL, '2020-01-29 11:25:11.011255+00', '2020-03-03 09:54:49.441762+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1800"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (163, NULL, NULL, 0, 63, 8, 'School registration/ +attendance records +- Weekly, monthly quarterly +progress reports by partner +- Assessment pre & post +catch-up classes by partner +- Programmatic visit reports +by UNICEF +- Monitoring reports by Third +Party Monitor', NULL, NULL, NULL, '2020-01-29 10:32:32.88316+00', '2020-03-03 10:00:20.551429+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "6000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (261, NULL, NULL, 0, 219, 67, 'beneficiaires list, progress report', NULL, NULL, NULL, '2020-02-03 15:45:07.814558+00', '2020-03-11 15:28:31.366697+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "100"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (265, NULL, NULL, 0, 223, 67, 'beneficiaries list, progress report', NULL, NULL, NULL, '2020-02-03 15:49:42.001654+00', '2020-03-11 15:29:44.464907+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "600"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (176, NULL, NULL, 0, 32, 49, 'attendance sheet and pre and post test', NULL, NULL, NULL, '2020-01-29 13:49:41.578346+00', '2020-03-23 11:05:51.881986+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "140"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (272, NULL, NULL, 0, 79, 68, 'IMSMA victim reports', NULL, NULL, NULL, '2020-02-26 13:36:06.484948+00', '2020-03-24 08:26:17.637814+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', '', NULL, '', '{"d": 100, "v": 80}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (287, NULL, NULL, 0, 234, 78, NULL, NULL, NULL, NULL, '2020-04-06 14:58:29.432431+00', '2020-04-19 10:18:27.245644+00', NULL, 3, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "24"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (180, NULL, NULL, 0, 146, 49, 'attendance record', NULL, NULL, NULL, '2020-01-29 14:02:05.666665+00', '2020-01-29 14:02:05.666665+00', NULL, 2, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "10"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (188, NULL, NULL, 0, 154, 50, 'database, cash distribution payment receipt', NULL, NULL, NULL, '2020-01-30 08:29:42.282718+00', '2020-03-11 14:57:25.046206+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1400"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (182, NULL, NULL, 0, 148, 49, 'Document produced and shared with sector', NULL, NULL, NULL, '2020-01-29 14:08:40.299137+00', '2020-01-29 14:08:40.299137+00', NULL, 2, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "2"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (183, NULL, NULL, 0, 149, 49, 'Co-lead ToR', NULL, NULL, NULL, '2020-01-29 14:11:24.400469+00', '2020-01-29 14:11:24.400469+00', NULL, 2, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (184, NULL, NULL, 0, 150, 49, 'attendance sheet', NULL, NULL, NULL, '2020-01-29 14:13:23.873931+00', '2020-01-29 14:13:23.873931+00', NULL, 2, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "6"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (198, NULL, NULL, 0, 163, 56, 'site visits', NULL, NULL, NULL, '2020-01-30 09:36:55.783691+00', '2020-01-30 09:36:55.783691+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (206, NULL, NULL, 0, 168, 57, 'case management client satisfaction survey', NULL, NULL, NULL, '2020-01-30 09:45:24.208023+00', '2020-01-30 09:45:24.208023+00', NULL, 1, true, false, '{"d": 100, "v": null}', '', '', NULL, '', '{"d": 100, "v": 75}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (215, NULL, NULL, 0, 120, 59, 'case management database', NULL, NULL, NULL, '2020-01-30 10:27:18.105933+00', '2020-01-30 10:27:18.105933+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (221, NULL, NULL, 0, 179, 60, 'beneficiaries list, progress report', NULL, NULL, NULL, '2020-01-30 10:42:28.748451+00', '2020-03-11 15:23:42.734065+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "400"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (230, NULL, NULL, 0, 188, 62, 'beneficiaries lists, progress report', NULL, NULL, NULL, '2020-01-30 10:58:10.453935+00', '2020-03-11 15:25:37.543984+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "450"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (185, NULL, NULL, 0, 151, 49, 'referral record is sent and acknowledged by a partner organization', NULL, NULL, NULL, '2020-01-29 14:16:47.75824+00', '2020-03-03 08:30:12.97491+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "40"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (247, NULL, NULL, 0, 205, 65, 'Distribution Forms', NULL, NULL, NULL, '2020-02-02 08:16:45.617305+00', '2020-03-03 08:31:32.665941+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1200"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (66, NULL, '', 0, 30, 23, '1. Attendance list/database 2. Weekly reports 3. field visit reports with photos', NULL, NULL, NULL, '2019-12-29 13:25:55.617018+00', '2020-03-03 09:58:35.374748+00', NULL, 2, true, true, '{"d": 1, "v": null}', NULL, '', '', NULL, '{"d": 1, "v": "21827"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (68, NULL, NULL, 0, 33, 24, '1. Attendance list/database 2. Weekly reports 3. field visit reports with photos', NULL, NULL, NULL, '2019-12-29 13:32:57.345223+00', '2020-03-03 09:59:00.477271+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "21827"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (191, NULL, NULL, 0, 156, 53, 'children attendance list, centre database activitiy report', NULL, NULL, NULL, '2020-01-30 08:36:41.930087+00', '2020-03-11 14:58:13.762956+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1400"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (196, NULL, NULL, 0, 161, 55, 'training reports, attendance lists', NULL, NULL, NULL, '2020-01-30 08:47:25.229761+00', '2020-03-11 14:59:06.877177+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "50"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (200, NULL, NULL, 0, 111, 56, 'AME pre and post training surveys', NULL, NULL, NULL, '2020-01-30 09:38:57.058146+00', '2020-03-11 15:03:07.583257+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', '', NULL, '', '{"d": 100, "v": 80}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (204, NULL, NULL, 0, 166, 57, 'case management database', NULL, NULL, NULL, '2020-01-30 09:43:14.365683+00', '2020-03-11 15:04:21.992913+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "115"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (202, NULL, NULL, 0, 164, 57, 'attendance lists', NULL, NULL, NULL, '2020-01-30 09:41:15.303023+00', '2020-03-11 15:04:04.180994+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3240"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (213, NULL, NULL, 0, 172, 59, 'attendance lists', NULL, NULL, NULL, '2020-01-30 10:25:48.435599+00', '2020-03-11 15:05:28.003147+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "180"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (214, NULL, NULL, 0, 173, 59, 'AME endline survey, AME post awareness raising session survey', NULL, NULL, NULL, '2020-01-30 10:26:45.365759+00', '2020-03-11 15:05:38.22043+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', '', NULL, '', '{"d": 100, "v": 75}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (212, NULL, NULL, 0, 171, 59, 'attendance lists, outreach activitiy reports', NULL, NULL, NULL, '2020-01-30 10:25:01.580198+00', '2020-03-11 15:05:21.666232+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "800"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (208, NULL, NULL, 0, 169, 58, 'attendance lists', NULL, NULL, NULL, '2020-01-30 09:51:49.862658+00', '2020-03-11 15:05:56.117157+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "450"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (216, NULL, NULL, 0, 174, 60, 'beneficiaries list, progress report, third party monitoring', NULL, NULL, NULL, '2020-01-30 10:36:01.834288+00', '2020-03-11 15:21:59.832112+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1600"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (210, NULL, NULL, 0, 116, 58, 'attendance lists', NULL, NULL, NULL, '2020-01-30 10:22:22.98975+00', '2020-03-11 15:06:22.155738+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "225"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (217, NULL, NULL, 0, 175, 60, 'beneficiaries list, progress report', NULL, NULL, NULL, '2020-01-30 10:37:11.866719+00', '2020-03-11 15:22:08.285831+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "700"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (218, NULL, NULL, 0, 176, 60, 'progress reports, photos', NULL, NULL, NULL, '2020-01-30 10:39:25.095817+00', '2020-03-11 15:22:17.05199+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "2500"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (220, NULL, NULL, 0, 178, 60, 'progress report, referrals list', NULL, NULL, NULL, '2020-01-30 10:41:20.26091+00', '2020-03-11 15:23:32.886497+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "25"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (219, NULL, NULL, 0, 177, 60, 'progress report, referrals list', NULL, NULL, NULL, '2020-01-30 10:40:15.896237+00', '2020-03-11 15:22:38.416836+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "175"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (222, NULL, NULL, 0, 180, 60, 'beneficiaries list, progress report', NULL, NULL, NULL, '2020-01-30 10:44:51.805667+00', '2020-03-11 15:23:53.958363+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "200"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (223, NULL, NULL, 0, 181, 60, 'beneficiaries list, progress report', NULL, NULL, NULL, '2020-01-30 10:45:55.018007+00', '2020-03-11 15:24:05.552852+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', '', NULL, '', '{"d": 100, "v": 50}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (224, NULL, NULL, 0, 182, 61, 'progree report, photos', NULL, NULL, NULL, '2020-01-30 10:48:34.639127+00', '2020-03-11 15:24:17.655774+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "4000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (225, NULL, NULL, 0, 183, 61, 'participants lists, progress reports, photos', NULL, NULL, NULL, '2020-01-30 10:49:33.138796+00', '2020-03-11 15:24:26.31996+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "2"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (226, NULL, NULL, 0, 184, 61, 'participants list, progress report, photos', NULL, NULL, NULL, '2020-01-30 10:50:45.672854+00', '2020-03-11 15:24:37.264991+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "30"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (227, NULL, NULL, 0, 185, 62, 'beneficiaries list, progress report, third party monitoring', NULL, NULL, NULL, '2020-01-30 10:52:02.573152+00', '2020-03-11 15:24:48.730741+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1300"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (232, NULL, NULL, 0, 190, 63, 'beneficiaries lists, progress reports, third party monitoring', NULL, NULL, NULL, '2020-01-30 11:00:51.176708+00', '2020-03-11 15:26:03.727585+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "750"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (229, NULL, NULL, 0, 187, 62, 'pre and post test report', NULL, NULL, NULL, '2020-01-30 10:55:46.996966+00', '2020-03-11 15:25:19.429255+00', NULL, 2, true, false, '{"d": 1, "v": null}', '', '', NULL, '', '{"d": 100, "v": 60}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (231, NULL, NULL, 0, 189, 62, 'progress report, beneficiaries lists', NULL, NULL, NULL, '2020-01-30 10:58:47.535504+00', '2020-03-11 15:25:53.683438+00', NULL, 2, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "150"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (233, NULL, NULL, 0, 191, 63, 'progress report, third party monitoring', NULL, NULL, NULL, '2020-01-30 11:01:56.489069+00', '2020-03-11 15:26:14.968976+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "8"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (234, NULL, NULL, 0, 192, 63, 'beneficiaries lists, progress report, third party monitoring', NULL, NULL, NULL, '2020-01-30 11:03:07.722672+00', '2020-03-11 15:26:24.7407+00', NULL, 2, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "160"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (288, NULL, NULL, 0, 236, 79, NULL, NULL, NULL, NULL, '2020-04-06 15:02:17.759865+00', '2020-04-09 08:10:21.890736+00', NULL, 3, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "2"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (267, NULL, NULL, 0, 225, 30, 'Pre, Post-tests', NULL, NULL, NULL, '2020-02-03 16:12:39.335173+00', '2020-02-26 12:40:22.505328+00', NULL, 1, false, false, '{"d": 1, "v": null}', '', '', NULL, '', '{"d": 100, "v": 90}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (249, NULL, NULL, 0, 207, 65, 'Attendance sheets and pre and post tests', NULL, NULL, NULL, '2020-02-02 08:20:33.57792+00', '2020-03-03 08:32:31.370194+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "75"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (197, NULL, NULL, 0, 162, 20, 'Primero data base, GBVIMS, and monthly activities, report PSS support Group', NULL, NULL, NULL, '2020-01-30 08:59:34.070514+00', '2020-02-06 10:36:23.332758+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "3000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (228, NULL, NULL, 0, 186, 62, 'distribution lists, beneficiaries list', NULL, NULL, NULL, '2020-01-30 10:53:21.815425+00', '2020-03-11 15:24:59.604392+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1300"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (235, NULL, NULL, 0, 193, 63, 'initiatives report, photos', NULL, NULL, NULL, '2020-01-30 11:04:14.306833+00', '2020-03-11 15:26:40.23747+00', NULL, 2, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "18"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (238, NULL, '', 0, 196, 20, 'Pre post-test, reports', NULL, NULL, NULL, '2020-01-30 11:54:19.968321+00', '2020-02-06 12:37:43.413985+00', NULL, 1, true, true, '{"d": 1, "v": null}', NULL, '', '', NULL, '{"d": 1, "v": "150"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (239, NULL, '', 0, 197, 20, 'Pre and post-test', NULL, NULL, NULL, '2020-01-30 11:56:22.057304+00', '2020-02-06 12:38:23.994065+00', NULL, 1, true, true, '{"d": 1, "v": null}', NULL, '', '', NULL, '{"d": 1, "v": "60"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (240, NULL, '', 0, 198, 20, 'Database and monthly activities reports, PSS support group', NULL, NULL, NULL, '2020-01-30 11:59:47.121701+00', '2020-02-06 12:39:16.028572+00', NULL, 1, true, true, '{"d": 1, "v": null}', NULL, '', '', NULL, '{"d": 1, "v": "3000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (241, NULL, '', 0, 199, 20, 'Monthly report, IEC material developed', NULL, NULL, NULL, '2020-01-30 12:44:29.029791+00', '2020-02-06 12:39:53.905662+00', NULL, 1, true, true, '{"d": 1, "v": null}', NULL, '', '', NULL, '{"d": 1, "v": "3000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (275, NULL, NULL, 0, 228, 18, '- Attendance records +- Weekly, monthly quarterly progress reports by partner +- Programmatic visit reports by UNICEF +- Monitoring reports by Third Party Monitor', NULL, NULL, NULL, '2020-02-27 07:10:37.272532+00', '2020-03-03 09:55:08.266987+00', NULL, 2, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1200"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (236, NULL, NULL, 0, 194, 64, 'participants lists, progress report, training agenda', NULL, NULL, NULL, '2020-01-30 11:08:03.946731+00', '2020-03-11 15:26:48.426578+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "30"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (237, NULL, NULL, 0, 195, 64, 'pre and post test, progress report', NULL, NULL, NULL, '2020-01-30 11:08:52.553731+00', '2020-03-11 15:26:54.209398+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', '', NULL, '', '{"d": 100, "v": 70}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (270, NULL, NULL, 0, 78, 68, 'Training reports, attendance logs, photos', NULL, NULL, NULL, '2020-02-26 13:04:16.664669+00', '2020-03-25 12:42:14.989287+00', NULL, 1, true, false, '{"d": 1, "v": "68"}', '', NULL, NULL, '', '{"d": 1, "v": "36"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (258, NULL, NULL, 0, 216, 66, 'beneficiaries list, progress report', NULL, NULL, NULL, '2020-02-03 15:40:45.371682+00', '2020-03-11 15:28:02.316297+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "200"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (262, NULL, NULL, 0, 220, 67, 'referral list, progress report', NULL, NULL, NULL, '2020-02-03 15:45:50.887199+00', '2020-03-11 15:28:41.418989+00', NULL, 1, true, true, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "500"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (266, NULL, NULL, 0, 224, 67, 'beneficiaries list, progress report', NULL, NULL, NULL, '2020-02-03 15:51:20.435506+00', '2020-03-11 15:29:51.565754+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "600"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (273, NULL, NULL, 0, 227, 68, 'Pre-post tests', NULL, NULL, NULL, '2020-02-26 13:40:13.456869+00', '2020-03-24 08:26:32.80312+00', NULL, 1, true, false, '{"d": 1, "v": null}', '', '', NULL, '', '{"d": 100, "v": 90}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (289, NULL, NULL, 0, 237, 79, NULL, NULL, NULL, NULL, '2020-04-06 15:03:19.607952+00', '2020-04-09 08:10:55.063096+00', NULL, 3, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (304, NULL, NULL, 0, 251, 83, 'Photos, weekly monitoring reports, final report, 3rd party monitoring reports, and joint field visit report.', NULL, NULL, NULL, '2020-04-19 07:36:20.209734+00', '2020-04-21 08:47:26.500758+00', NULL, 3, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "10000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (306, NULL, NULL, 0, 253, 84, 'Training reports, photos and partners reports', NULL, NULL, NULL, '2020-04-19 07:39:36.877095+00', '2020-04-21 08:49:31.290399+00', NULL, 3, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "10"}'); -- -- Data for Name: reports_appliedindicator_disaggregation; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (774, 269, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (847, 186, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (775, 269, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (776, 269, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (699, 242, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (781, 272, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (782, 272, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (700, 242, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (783, 272, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (851, 190, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (708, 245, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (709, 245, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (855, 194, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (859, 200, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (791, 275, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (863, 207, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (711, 246, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (793, 56, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (794, 56, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (712, 246, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (800, 252, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (801, 252, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (867, 208, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (804, 167, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (807, 174, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (720, 249, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (810, 243, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (813, 178, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (721, 249, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (816, 245, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (872, 217, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (819, 248, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (177, 45, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (178, 45, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (729, 252, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (179, 45, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (180, 46, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (822, 244, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (126, 31, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (181, 46, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (734, 254, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (182, 46, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (183, 47, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (44, 16, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (184, 47, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (876, 221, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (823, 63, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (185, 47, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (186, 48, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (827, 64, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (877, 222, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (187, 48, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (831, 49, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (134, 16, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (135, 16, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (832, 49, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (136, 30, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (137, 30, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (836, 156, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (138, 31, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (839, 70, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (842, 30, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (900, 284, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (742, 257, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (743, 257, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (903, 286, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (751, 261, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (752, 261, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (906, 285, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (760, 264, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (761, 264, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (768, 267, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (769, 267, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (770, 267, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (845, 32, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (881, 227, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (885, 231, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (890, 256, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (894, 261, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (922, 300, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (923, 300, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (909, 284, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (930, 304, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (915, 286, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (916, 286, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (931, 304, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (935, 306, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (139, 31, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (140, 32, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (141, 32, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (142, 33, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (143, 33, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (399, 120, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (400, 120, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (401, 120, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (405, 122, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (406, 122, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (407, 122, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (411, 124, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (412, 124, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (413, 124, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (153, 37, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (154, 37, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (155, 37, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (156, 38, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (157, 38, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (158, 38, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (165, 41, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (166, 41, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (167, 41, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (168, 42, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (169, 42, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (170, 42, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (171, 43, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (172, 43, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (173, 43, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (174, 44, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (175, 44, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (176, 44, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (188, 48, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (190, 49, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (193, 50, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (195, 51, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (196, 51, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (197, 51, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (198, 52, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (199, 52, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (200, 52, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (201, 53, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (202, 53, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (203, 53, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (204, 54, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (205, 54, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (206, 54, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (207, 55, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (208, 55, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (209, 55, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (211, 56, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (213, 57, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (214, 57, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (215, 57, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (216, 58, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (217, 58, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (218, 58, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (222, 60, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (223, 60, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (224, 60, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (225, 61, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (226, 61, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (227, 61, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (228, 62, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (229, 62, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (230, 62, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (232, 63, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (848, 187, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (852, 191, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (235, 64, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (856, 195, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (237, 65, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (238, 65, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (239, 65, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (240, 67, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (241, 67, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (242, 67, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (860, 202, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (244, 68, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (245, 68, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (246, 69, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (247, 69, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (248, 69, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (864, 212, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (250, 70, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (251, 70, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (402, 121, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (403, 121, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (404, 121, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (408, 123, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (409, 123, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (410, 123, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (869, 210, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (487, 156, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (488, 156, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (873, 218, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (702, 243, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (703, 243, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (878, 223, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (714, 247, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (715, 247, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (417, 127, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (418, 127, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (419, 127, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (882, 228, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (723, 251, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (724, 251, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (805, 171, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (732, 253, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (808, 175, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (276, 79, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (277, 79, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (278, 79, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (279, 80, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (280, 80, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (281, 80, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (282, 81, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (283, 81, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (284, 81, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (285, 82, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (286, 82, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (287, 82, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (811, 176, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (289, 83, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (814, 181, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (291, 84, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (292, 84, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (293, 84, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (294, 86, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (295, 86, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (296, 86, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (297, 85, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (298, 85, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (299, 85, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (300, 87, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (301, 87, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (302, 87, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (303, 88, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (304, 88, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (305, 88, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (306, 89, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (307, 89, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (308, 89, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (309, 90, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (310, 90, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (311, 90, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (312, 91, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (911, 285, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (314, 91, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (315, 91, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (316, 92, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (317, 92, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (318, 92, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (319, 93, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (320, 93, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (321, 93, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (322, 94, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (323, 94, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (324, 94, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (777, 270, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (778, 270, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (779, 270, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (784, 273, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (785, 273, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (786, 273, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (489, 157, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (736, 255, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (490, 157, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (491, 157, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (737, 255, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (904, 296, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (745, 258, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (746, 258, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (912, 285, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (754, 262, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (755, 262, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (917, 296, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (763, 265, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (764, 265, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (771, 268, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (772, 268, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (773, 268, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (795, 59, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (796, 59, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (797, 59, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (802, 253, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (803, 253, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (817, 246, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (820, 249, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (824, 64, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (828, 164, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (829, 164, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (833, 50, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (834, 50, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (837, 68, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (840, 160, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (843, 162, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (846, 33, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (886, 232, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (891, 257, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (895, 262, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (896, 263, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (918, 296, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (924, 301, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (925, 301, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (932, 305, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (933, 305, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (384, 115, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (385, 115, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (386, 115, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (387, 116, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (388, 116, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (389, 116, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (390, 117, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (391, 117, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (392, 117, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (420, 129, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (421, 129, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (422, 129, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (423, 130, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (424, 130, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (425, 130, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (426, 131, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (427, 131, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (428, 131, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (429, 132, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (430, 132, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (431, 132, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (432, 133, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (433, 133, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (434, 133, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (438, 135, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (439, 135, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (440, 135, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (441, 136, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (442, 136, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (443, 136, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (444, 138, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (445, 138, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (446, 138, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (492, 158, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (493, 158, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (494, 158, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (849, 188, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (496, 159, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (497, 159, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (853, 192, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (499, 160, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (500, 160, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (857, 196, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (502, 161, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (503, 161, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (861, 204, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (505, 162, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (506, 162, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (865, 213, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (508, 163, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (509, 163, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (868, 209, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (511, 164, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (870, 211, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (513, 165, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (514, 165, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (515, 165, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (516, 166, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (517, 166, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (518, 166, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (874, 219, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (520, 167, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (521, 167, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (522, 169, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (523, 169, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (524, 169, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (525, 170, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (526, 170, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (527, 170, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (879, 224, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (529, 171, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (530, 171, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (883, 229, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (532, 173, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (533, 173, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (887, 233, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (535, 175, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (536, 175, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (888, 234, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (538, 176, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (539, 176, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (892, 258, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (541, 177, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (542, 177, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (897, 264, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (544, 178, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (545, 178, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (546, 179, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (547, 179, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (548, 179, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (926, 302, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (550, 181, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (551, 181, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (927, 302, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (553, 185, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (554, 185, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (919, 299, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (556, 186, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (557, 186, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (920, 299, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (559, 187, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (560, 187, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (921, 299, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (562, 188, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (563, 188, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (565, 189, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (567, 190, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (568, 190, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (570, 191, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (571, 191, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (573, 192, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (574, 192, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (576, 193, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (577, 193, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (579, 194, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (580, 194, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (582, 195, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (583, 195, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (585, 196, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (586, 196, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (587, 197, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (588, 197, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (589, 197, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (591, 199, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (593, 200, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (595, 202, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (596, 202, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (597, 203, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (598, 203, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (599, 203, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (601, 204, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (602, 204, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (604, 205, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (605, 205, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (606, 206, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (607, 206, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (608, 206, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (610, 207, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (611, 207, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (613, 208, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (614, 208, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (616, 209, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (617, 209, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (619, 210, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (620, 210, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (622, 211, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (623, 211, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (625, 212, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (626, 212, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (628, 213, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (630, 214, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (632, 216, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (633, 216, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (635, 217, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (637, 218, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (638, 218, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (640, 219, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (641, 219, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (643, 220, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (644, 220, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (646, 221, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (647, 221, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (649, 222, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (650, 222, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (652, 66, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (653, 66, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (655, 223, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (656, 223, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (658, 224, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (659, 224, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (661, 226, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (663, 227, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (664, 227, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (666, 228, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (667, 228, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (669, 229, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (670, 229, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (672, 230, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (673, 230, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (674, 231, 2); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (677, 232, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (678, 232, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (914, 284, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (680, 233, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (681, 233, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (928, 303, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (683, 234, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (684, 234, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (685, 236, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (686, 238, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (687, 238, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (688, 238, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (689, 239, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (690, 239, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (691, 239, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (692, 240, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (693, 240, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (694, 240, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (695, 241, 3); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (696, 241, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (697, 241, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (850, 189, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (705, 244, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (706, 244, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (854, 193, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (717, 248, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (718, 248, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (858, 199, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (726, 174, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (727, 174, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (929, 303, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (739, 256, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (740, 256, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (748, 259, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (749, 259, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (757, 263, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (758, 263, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (766, 266, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (767, 266, 6); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (780, 271, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (787, 274, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (788, 274, 5); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (789, 274, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (798, 83, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (799, 83, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (806, 173, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (809, 242, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (812, 177, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (815, 185, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (818, 247, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (821, 251, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (825, 275, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (826, 63, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (830, 275, 7); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (835, 66, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (838, 159, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (841, 161, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (844, 163, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (862, 205, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (866, 214, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (871, 216, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (875, 220, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (880, 226, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (884, 230, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (889, 255, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (893, 259, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (898, 265, 8); +INSERT INTO [[schema]].reports_appliedindicator_disaggregation VALUES (899, 266, 8); -- -- Data for Name: reports_appliedindicator_locations; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (795, 242, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (796, 242, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (801, 245, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (802, 245, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (803, 246, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (847, 90, 1903); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (808, 249, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (811, 252, 1915); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (812, 252, 1925); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (813, 252, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (814, 252, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (815, 252, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (816, 252, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (817, 252, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (241, 62, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (242, 62, 1863); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (245, 64, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (246, 64, 1863); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (247, 65, 1919); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (545, 120, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (546, 120, 2204); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (547, 120, 2191); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (554, 123, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (555, 123, 2204); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (556, 123, 2191); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (560, 125, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (561, 125, 2204); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (562, 125, 2191); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (566, 127, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (567, 127, 2204); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (568, 127, 2191); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (58, 37, 1920); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (59, 37, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (60, 37, 1899); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (61, 37, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (62, 38, 1920); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (63, 38, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (64, 38, 1899); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (65, 38, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (818, 252, 1928); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (819, 252, 1903); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (820, 252, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (821, 252, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (822, 252, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (823, 252, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (824, 252, 1881); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (825, 252, 1946); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (74, 41, 1920); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (75, 41, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (76, 41, 1899); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (77, 41, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (78, 42, 1920); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (79, 42, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (80, 42, 1899); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (81, 42, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (82, 43, 1920); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (83, 43, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (84, 43, 1899); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (85, 43, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (86, 44, 1920); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (87, 44, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (88, 44, 1899); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (89, 44, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (249, 67, 1919); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (91, 16, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (251, 69, 1919); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (572, 129, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (573, 129, 2204); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (574, 129, 2191); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (578, 131, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (579, 131, 2204); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (98, 30, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (580, 131, 2191); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (584, 133, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (585, 133, 2204); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (586, 133, 2191); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (103, 31, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (590, 135, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (591, 135, 2204); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (826, 252, 1947); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (827, 252, 1918); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (108, 32, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (828, 252, 1951); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (852, 254, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (853, 254, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (854, 254, 1897); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (113, 33, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (855, 254, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (856, 254, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (284, 79, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (117, 45, 1863); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (118, 45, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (285, 79, 1915); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (286, 79, 1916); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (287, 79, 1917); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (122, 46, 1863); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (123, 46, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (292, 81, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (293, 81, 1915); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (294, 81, 1916); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (127, 47, 1863); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (128, 47, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (295, 81, 1917); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (314, 83, 1915); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (315, 83, 1925); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (132, 48, 1863); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (133, 48, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (316, 83, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (317, 83, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (857, 254, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (137, 49, 1863); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (138, 49, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (858, 254, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (859, 254, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (860, 254, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (142, 50, 1863); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (143, 50, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (861, 254, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (145, 51, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (146, 52, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (147, 53, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (148, 54, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (149, 55, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (150, 56, 1915); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (151, 56, 1925); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (152, 56, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (153, 56, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (154, 56, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (155, 56, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (156, 56, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (157, 56, 1928); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (158, 56, 1903); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (159, 56, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (160, 56, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (161, 56, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (162, 56, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (163, 56, 1881); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (164, 56, 1946); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (165, 56, 1947); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (166, 56, 1918); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (167, 56, 1951); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (168, 57, 1915); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (169, 57, 1925); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (170, 57, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (171, 57, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (172, 57, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (173, 57, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (174, 57, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (175, 57, 1928); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (176, 57, 1903); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (177, 57, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (178, 57, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (179, 57, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (180, 57, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (181, 57, 1881); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (182, 57, 1946); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (183, 57, 1947); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (184, 57, 1918); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (185, 57, 1951); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (186, 58, 1915); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (187, 58, 1925); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (188, 58, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (189, 58, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (190, 58, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (863, 256, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (865, 258, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (867, 260, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (869, 262, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (871, 264, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (873, 266, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (874, 267, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (875, 267, 1897); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (876, 267, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (877, 267, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (878, 267, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (879, 267, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (880, 267, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (881, 267, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (882, 267, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (899, 267, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (900, 267, 1899); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (901, 267, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (902, 267, 1905); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (191, 58, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (192, 58, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (193, 58, 1928); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (194, 58, 1903); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (195, 58, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (196, 58, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (197, 58, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (198, 58, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (199, 58, 1881); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (200, 58, 1946); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (201, 58, 1947); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (202, 58, 1918); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (203, 58, 1951); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (204, 59, 1915); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (205, 59, 1925); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (206, 59, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (207, 59, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (208, 59, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (209, 59, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (210, 59, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (211, 59, 1928); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (212, 59, 1903); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (213, 59, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (214, 59, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (215, 59, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (216, 59, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (217, 59, 1881); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (218, 59, 1946); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (219, 59, 1947); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (220, 59, 1918); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (221, 59, 1951); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (222, 60, 1915); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (223, 60, 1925); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (224, 60, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (225, 60, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (226, 60, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (227, 60, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (228, 60, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (229, 60, 1928); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (230, 60, 1903); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (231, 60, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (232, 60, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (233, 60, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (234, 60, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (235, 60, 1881); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (236, 60, 1946); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (237, 60, 1947); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (238, 60, 1918); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (239, 60, 1951); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (240, 61, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (243, 63, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (244, 63, 1863); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (248, 66, 1919); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (250, 68, 1919); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (252, 70, 1919); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (548, 121, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (549, 121, 2204); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (550, 121, 2191); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (557, 124, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (797, 243, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (798, 243, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (805, 247, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (809, 250, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (829, 253, 1915); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (830, 253, 1925); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (831, 253, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (288, 80, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (289, 80, 1915); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (290, 80, 1916); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (291, 80, 1917); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (296, 82, 1915); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (297, 82, 1925); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (298, 82, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (299, 82, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (300, 82, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (301, 82, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (302, 82, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (303, 82, 1928); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (304, 82, 1903); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (305, 82, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (306, 82, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (307, 82, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (308, 82, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (309, 82, 1881); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (310, 82, 1946); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (311, 82, 1947); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (312, 82, 1918); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (313, 82, 1951); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (318, 83, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (319, 83, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (320, 83, 1928); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (321, 83, 1903); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (322, 83, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (323, 83, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (324, 83, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (325, 83, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (326, 83, 1881); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (327, 83, 1946); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (328, 83, 1947); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (329, 83, 1918); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (330, 83, 1951); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (331, 84, 1915); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (332, 84, 1925); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (333, 84, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (334, 84, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (335, 84, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (336, 84, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (337, 84, 1928); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (338, 84, 1903); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (339, 84, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (340, 84, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (341, 84, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (342, 84, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (343, 84, 1881); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (344, 84, 1946); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (345, 84, 1947); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (346, 84, 1918); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (347, 84, 1951); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (348, 85, 1915); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (349, 85, 1925); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (350, 85, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (351, 85, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (352, 85, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (353, 85, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (354, 85, 1928); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (355, 85, 1903); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (356, 85, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (357, 85, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (358, 85, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (359, 85, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (360, 85, 1881); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (361, 85, 1946); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (362, 85, 1947); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (363, 85, 1918); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (364, 85, 1951); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (365, 86, 1915); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (366, 86, 1925); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (367, 86, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (368, 86, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (369, 86, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (370, 86, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (371, 86, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (372, 86, 1928); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (373, 86, 1903); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (374, 86, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (375, 86, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (376, 86, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (377, 86, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (378, 86, 1881); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (379, 86, 1946); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (380, 86, 1947); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (381, 86, 1918); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (382, 86, 1951); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (383, 87, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (384, 87, 1915); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (385, 87, 1916); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (386, 87, 1917); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (387, 88, 1915); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (388, 88, 1925); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (389, 88, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (390, 88, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (391, 88, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (392, 88, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (393, 88, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (394, 88, 1928); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (395, 88, 1903); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (396, 88, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (397, 88, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (398, 88, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (399, 88, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (400, 88, 1881); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (401, 88, 1946); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (402, 88, 1947); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (403, 88, 1918); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (404, 88, 1951); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (405, 89, 1915); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (406, 89, 1925); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (407, 89, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (408, 89, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (409, 89, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (410, 89, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (411, 89, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (412, 89, 1928); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (413, 89, 1903); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (832, 253, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (414, 89, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (415, 89, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (416, 89, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (417, 89, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (418, 89, 1881); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (419, 89, 1946); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (420, 89, 1947); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (421, 89, 1918); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (422, 89, 1951); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (906, 269, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (424, 90, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (425, 90, 1897); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (426, 90, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (907, 269, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (908, 269, 1897); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (429, 90, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (430, 90, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (909, 269, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (910, 269, 1899); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (433, 90, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (911, 269, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (435, 90, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (436, 90, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (437, 90, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (912, 269, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (439, 91, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (440, 91, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (441, 91, 1897); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (442, 91, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (443, 91, 1899); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (444, 91, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (445, 91, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (446, 91, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (447, 91, 1905); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (448, 91, 1906); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (449, 91, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (450, 91, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (451, 91, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (452, 91, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (453, 91, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (454, 91, 1919); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (455, 92, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (456, 92, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (617, 156, 1919); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (458, 93, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (618, 157, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (619, 158, 1919); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (620, 159, 1919); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (621, 160, 1919); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (622, 161, 1919); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (464, 93, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (623, 162, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (624, 163, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (625, 164, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (626, 164, 1863); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (469, 93, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (627, 165, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (471, 93, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (628, 165, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (473, 94, 1919); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (913, 269, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (914, 269, 1903); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (629, 166, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (630, 166, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (631, 167, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (632, 167, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (633, 168, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (634, 168, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (635, 169, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (636, 169, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (637, 170, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (638, 170, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (639, 171, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (640, 171, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (641, 172, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (642, 172, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (643, 173, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (644, 173, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (645, 174, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (646, 174, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (647, 175, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (648, 175, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (649, 176, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (650, 176, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (651, 177, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (652, 177, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (653, 178, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (654, 178, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (655, 179, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (656, 179, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (657, 180, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (658, 180, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (659, 181, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (660, 181, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (661, 182, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (662, 182, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (663, 183, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (664, 183, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (665, 184, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (666, 184, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (667, 185, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (915, 269, 1905); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (916, 269, 1906); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (531, 115, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (532, 116, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (533, 117, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (534, 117, 1915); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (535, 117, 1916); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (536, 117, 1917); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (551, 122, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (552, 122, 2204); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (553, 122, 2191); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (558, 124, 2204); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (559, 124, 2191); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (668, 185, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (669, 186, 1920); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (670, 186, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (569, 128, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (570, 128, 2204); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (571, 128, 2191); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (575, 130, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (576, 130, 2204); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (577, 130, 2191); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (581, 132, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (582, 132, 2204); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (583, 132, 2191); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (671, 186, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (672, 187, 1920); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (673, 187, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (592, 135, 2191); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (593, 136, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (594, 136, 2204); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (595, 136, 2191); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (596, 137, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (597, 137, 2204); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (598, 137, 2191); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (599, 138, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (674, 187, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (675, 188, 1920); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (676, 188, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (677, 188, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (678, 189, 1920); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (679, 189, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (680, 189, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (681, 190, 1920); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (682, 190, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (683, 190, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (684, 191, 1920); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (685, 191, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (686, 191, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (687, 192, 1920); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (688, 192, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (689, 192, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (690, 193, 1920); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (691, 193, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (692, 193, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (693, 194, 1920); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (694, 194, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (695, 194, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (696, 195, 1920); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (697, 195, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (698, 195, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (699, 196, 1920); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (700, 196, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (701, 196, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (702, 197, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (706, 198, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (707, 199, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (708, 200, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (709, 201, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (710, 202, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (711, 203, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (712, 204, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (713, 205, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (714, 206, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (715, 207, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (716, 208, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (717, 209, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (718, 210, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (719, 211, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (720, 212, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (721, 213, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (722, 214, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (723, 215, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (724, 216, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (725, 216, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (726, 216, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (727, 217, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (728, 217, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (729, 217, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (730, 218, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (731, 218, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (732, 218, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (733, 219, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (734, 220, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (735, 221, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (736, 221, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (737, 222, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (738, 222, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (739, 223, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (740, 223, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (741, 224, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (742, 224, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (743, 224, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (744, 225, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (745, 225, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (746, 225, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (747, 226, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (748, 226, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (749, 226, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (750, 227, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (751, 227, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (752, 227, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (753, 228, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (754, 228, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (755, 228, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (756, 229, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (757, 229, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (758, 229, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (759, 230, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (760, 230, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (761, 231, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (762, 231, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (763, 232, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (764, 232, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (765, 232, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (766, 233, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (767, 233, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (768, 233, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (769, 234, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (770, 234, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (771, 234, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (772, 235, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (773, 235, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (774, 235, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (775, 236, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (776, 236, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (777, 237, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (778, 237, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (779, 238, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (917, 269, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (918, 269, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (919, 269, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (783, 239, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (920, 269, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (921, 269, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (922, 269, 1919); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (787, 240, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (923, 270, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (924, 270, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (925, 270, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (791, 241, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1241, 284, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (927, 271, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1242, 284, 1845); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (799, 244, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (800, 244, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (807, 248, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (810, 251, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (833, 253, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (834, 253, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (835, 253, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (836, 253, 1928); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (837, 253, 1903); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (838, 253, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (839, 253, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (840, 253, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (841, 253, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (842, 253, 1881); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (843, 253, 1946); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (844, 253, 1947); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (845, 253, 1918); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (846, 253, 1951); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (848, 92, 1897); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (849, 92, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (850, 92, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (851, 92, 1903); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (862, 255, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (864, 257, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (866, 259, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (868, 261, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (870, 263, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (872, 265, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (883, 268, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (884, 268, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (885, 268, 1897); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (886, 268, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (887, 268, 1899); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (888, 268, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (889, 268, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (890, 268, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (891, 268, 1905); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (892, 268, 1906); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (893, 268, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (894, 268, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (895, 268, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (896, 268, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (897, 268, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (898, 268, 1919); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (903, 267, 1906); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (904, 267, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (905, 267, 1919); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1243, 284, 1846); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1244, 284, 1848); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1245, 284, 1849); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (932, 271, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (933, 272, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (934, 272, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (935, 272, 1897); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (936, 272, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (937, 272, 1899); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (938, 272, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (939, 272, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (940, 272, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (941, 273, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (942, 273, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (943, 273, 1897); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (944, 273, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (945, 273, 1899); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (946, 273, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (947, 273, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (948, 273, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (949, 273, 1903); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (950, 273, 1905); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (951, 273, 1906); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (952, 273, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (953, 273, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (954, 273, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (955, 273, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (956, 273, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (957, 273, 1919); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (958, 274, 1895); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (959, 274, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (960, 274, 1897); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (961, 274, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (962, 274, 1899); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (963, 274, 1900); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (964, 274, 1896); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (965, 274, 1898); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (966, 274, 1903); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (967, 274, 1905); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (968, 274, 1906); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (969, 274, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (970, 274, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (971, 274, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (972, 274, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (973, 274, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (974, 274, 1919); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (975, 272, 1861); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (976, 272, 1863); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (977, 272, 1865); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (978, 272, 1929); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (979, 272, 1903); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (980, 272, 1905); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (981, 272, 1906); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (982, 272, 1907); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (983, 272, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (984, 272, 1914); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (985, 272, 1854); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (986, 272, 1919); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (987, 275, 1864); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (988, 275, 1863); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (989, 276, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1267, 285, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1268, 285, 1845); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (992, 269, 1925); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (993, 270, 1925); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (994, 272, 1925); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (995, 273, 1925); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (996, 274, 1925); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (997, 270, 1877); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1246, 293, 1831); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (999, 271, 1942); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1247, 293, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1248, 293, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1249, 293, 1834); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1250, 293, 1835); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1251, 293, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1252, 293, 1837); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1253, 293, 1838); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1254, 293, 1839); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1255, 293, 1840); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1256, 293, 1842); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1257, 293, 1843); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1258, 293, 1844); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1259, 293, 1845); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1260, 293, 1846); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1261, 293, 1847); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1262, 293, 1848); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1263, 293, 1849); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1264, 293, 1850); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1265, 293, 1851); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1266, 293, 1852); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1269, 285, 1846); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1270, 285, 1848); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1271, 285, 1849); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1272, 286, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1273, 286, 1845); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1274, 286, 1846); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1275, 286, 1848); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1276, 286, 1849); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1277, 287, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1278, 287, 1845); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1279, 287, 1846); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1280, 287, 1848); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1281, 287, 1849); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1282, 289, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1283, 289, 1845); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1284, 289, 1846); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1285, 289, 1848); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1286, 289, 1849); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1372, 299, 1831); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1373, 299, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1374, 299, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1375, 299, 1834); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1376, 299, 1835); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1377, 299, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1378, 299, 1837); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1379, 299, 1838); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1380, 299, 1839); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1381, 299, 1840); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1382, 299, 1842); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1383, 299, 1843); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1384, 299, 1844); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1385, 299, 1845); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1386, 299, 1846); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1387, 299, 1847); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1388, 299, 1848); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1389, 299, 1849); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1390, 299, 1850); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1391, 299, 1851); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1392, 299, 1852); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1411, 300, 1844); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1104, 284, 1831); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1105, 284, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1106, 284, 1834); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1107, 284, 1835); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1108, 284, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1109, 284, 1837); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1110, 284, 1838); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1111, 284, 1839); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1112, 284, 1840); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1113, 284, 1842); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1114, 284, 1843); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1115, 284, 1844); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1116, 284, 1847); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1117, 284, 1850); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1118, 284, 1851); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1119, 284, 1852); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1120, 285, 1831); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1121, 285, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1122, 285, 1834); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1123, 285, 1835); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1124, 285, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1125, 285, 1837); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1126, 285, 1838); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1127, 285, 1839); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1128, 285, 1840); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1129, 285, 1842); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1130, 285, 1843); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1131, 285, 1844); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1132, 285, 1847); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1133, 285, 1850); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1134, 285, 1851); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1135, 285, 1852); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1136, 286, 1831); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1137, 286, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1138, 286, 1834); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1139, 286, 1835); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1140, 286, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1141, 286, 1837); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1142, 286, 1838); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1143, 286, 1839); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1144, 286, 1840); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1145, 286, 1842); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1146, 286, 1843); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1147, 286, 1844); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1148, 286, 1847); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1149, 286, 1850); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1150, 286, 1851); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1151, 286, 1852); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1152, 287, 1831); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1153, 287, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1154, 287, 1834); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1155, 287, 1835); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1156, 287, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1157, 287, 1837); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1158, 287, 1838); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1159, 287, 1839); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1160, 287, 1840); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1161, 287, 1842); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1162, 287, 1843); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1163, 287, 1844); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1164, 287, 1847); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1165, 287, 1850); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1166, 287, 1851); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1167, 287, 1852); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1168, 288, 1835); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1171, 288, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1172, 289, 1831); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1173, 289, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1174, 289, 1834); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1175, 289, 1835); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1176, 289, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1177, 289, 1837); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1178, 289, 1838); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1179, 289, 1839); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1180, 289, 1840); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1181, 289, 1842); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1182, 289, 1843); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1183, 289, 1844); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1184, 289, 1847); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1185, 289, 1850); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1186, 289, 1851); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1187, 289, 1852); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1188, 290, 1831); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1189, 290, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1190, 290, 1834); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1191, 290, 1835); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1192, 290, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1193, 290, 1837); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1194, 290, 1838); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1195, 290, 1839); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1196, 290, 1840); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1197, 290, 1842); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1198, 290, 1843); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1199, 290, 1844); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1200, 290, 1847); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1201, 290, 1850); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1202, 290, 1851); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1203, 290, 1852); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1329, 296, 1831); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1330, 296, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1331, 296, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1332, 296, 1834); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1333, 296, 1835); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1334, 296, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1335, 296, 1837); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1336, 296, 1838); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1337, 296, 1839); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1338, 296, 1840); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1339, 296, 1842); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1340, 296, 1843); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1341, 296, 1844); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1342, 296, 1845); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1343, 296, 1846); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1344, 296, 1847); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1345, 296, 1848); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1346, 296, 1849); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1347, 296, 1850); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1348, 296, 1851); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1349, 296, 1852); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1444, 306, 1840); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1451, 301, 1844); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1452, 302, 1844); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1453, 303, 1844); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1454, 304, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1455, 305, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1456, 300, 1831); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1457, 300, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1458, 300, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1459, 300, 1834); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1460, 300, 1835); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1461, 300, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1462, 300, 1837); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1463, 300, 1838); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1464, 300, 1839); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1465, 300, 1840); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1466, 300, 1841); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1467, 300, 1842); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1468, 300, 1843); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1469, 300, 1845); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1470, 300, 1846); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1471, 300, 1847); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1472, 300, 1848); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1473, 300, 1849); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1474, 300, 1850); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1475, 300, 1851); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1476, 300, 1852); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1477, 301, 1831); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1478, 301, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1479, 301, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1480, 301, 1834); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1481, 301, 1835); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1482, 301, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1483, 301, 1837); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1484, 301, 1838); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1485, 301, 1839); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1486, 301, 1840); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1487, 301, 1841); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1488, 301, 1842); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1489, 301, 1843); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1490, 301, 1845); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1491, 301, 1846); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1492, 301, 1847); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1493, 301, 1848); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1494, 301, 1849); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1495, 301, 1850); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1496, 301, 1851); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1497, 301, 1852); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1498, 302, 1831); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1499, 302, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1500, 302, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1501, 302, 1834); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1502, 302, 1835); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1503, 302, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1504, 302, 1837); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1505, 302, 1838); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1506, 302, 1839); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1507, 302, 1840); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1508, 302, 1841); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1509, 302, 1842); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1510, 302, 1843); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1511, 302, 1845); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1512, 302, 1846); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1513, 302, 1847); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1514, 302, 1848); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1515, 302, 1849); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1516, 302, 1850); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1517, 302, 1851); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1518, 302, 1852); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1519, 303, 1831); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1520, 303, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1521, 303, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1522, 303, 1834); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1523, 303, 1835); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1524, 303, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1525, 303, 1837); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1526, 303, 1838); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1527, 303, 1839); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1528, 303, 1840); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1529, 303, 1841); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1530, 303, 1842); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1531, 303, 1843); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1532, 303, 1845); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1533, 303, 1846); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1534, 303, 1847); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1535, 303, 1848); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1536, 303, 1849); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1537, 303, 1850); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1538, 303, 1851); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1539, 303, 1852); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1540, 304, 1831); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1541, 304, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1542, 304, 1834); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1543, 304, 1835); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1544, 304, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1545, 304, 1837); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1546, 304, 1838); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1547, 304, 1839); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1548, 304, 1840); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1549, 304, 1841); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1550, 304, 1842); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1551, 304, 1843); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1552, 304, 1844); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1553, 304, 1845); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1554, 304, 1846); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1555, 304, 1847); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1556, 304, 1848); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1557, 304, 1849); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1558, 304, 1850); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1559, 304, 1851); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1560, 304, 1852); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1561, 305, 1831); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1562, 305, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1563, 305, 1834); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1564, 305, 1835); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1565, 305, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1566, 305, 1837); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1567, 305, 1838); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1568, 305, 1839); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1569, 305, 1840); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1570, 305, 1841); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1571, 305, 1842); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1572, 305, 1843); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1573, 305, 1844); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1574, 305, 1845); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1575, 305, 1846); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1576, 305, 1847); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1577, 305, 1848); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1578, 305, 1849); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1579, 305, 1850); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1580, 305, 1851); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1581, 305, 1852); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1582, 306, 1831); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1583, 306, 1832); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1584, 306, 1833); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1585, 306, 1834); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1586, 306, 1835); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1587, 306, 1836); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1588, 306, 1837); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1589, 306, 1838); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1590, 306, 1839); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1591, 306, 1841); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1592, 306, 1842); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1593, 306, 1843); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1594, 306, 1844); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1595, 306, 1845); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1596, 306, 1846); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1597, 306, 1847); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1598, 306, 1848); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1599, 306, 1849); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1600, 306, 1850); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1601, 306, 1851); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1602, 306, 1852); -- @@ -11941,7 +14544,14 @@ INSERT INTO [[schema]].reports_countryprogramme VALUES (1, 'LIBYA CP (2013 - 201 -- Data for Name: reports_disaggregation; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].reports_disaggregation VALUES (1, '2019-09-30 10:14:47.475824+00', '2019-10-03 08:24:57.984435+00', 'Age', false); +INSERT INTO [[schema]].reports_disaggregation VALUES (5, '2019-12-18 13:46:13.504067+00', '2019-12-18 13:46:13.504067+00', 'Gender & Age', true); +INSERT INTO [[schema]].reports_disaggregation VALUES (4, '2019-11-28 10:04:36.875155+00', '2020-02-25 08:48:28.134249+00', 'Age & UASC', false); +INSERT INTO [[schema]].reports_disaggregation VALUES (6, '2019-12-18 13:48:21.046638+00', '2019-12-18 13:48:52.89667+00', 'Disability & UASC', true); +INSERT INTO [[schema]].reports_disaggregation VALUES (2, '2019-11-28 08:56:56.712573+00', '2019-11-28 08:56:56.712573+00', 'Gender & Condition', true); +INSERT INTO [[schema]].reports_disaggregation VALUES (3, '2019-11-28 09:57:10.510384+00', '2019-11-28 09:57:10.510384+00', 'Status & Frequency', true); +INSERT INTO [[schema]].reports_disaggregation VALUES (1, '2019-09-30 10:14:47.475824+00', '2019-11-28 09:58:08.580329+00', 'Age', false); +INSERT INTO [[schema]].reports_disaggregation VALUES (7, '2020-02-26 12:43:49.889038+00', '2020-02-26 12:44:06.290164+00', 'Disability', true); +INSERT INTO [[schema]].reports_disaggregation VALUES (8, '2020-02-26 12:46:37.257127+00', '2020-02-26 12:46:37.257127+00', 'Status', true); -- @@ -11954,6 +14564,52 @@ INSERT INTO [[schema]].reports_disaggregationvalue VALUES (3, '2019-09-30 10:14: INSERT INTO [[schema]].reports_disaggregationvalue VALUES (4, '2019-09-30 10:14:47.73618+00', '2019-09-30 10:14:47.73618+00', '18-23', true, 1); INSERT INTO [[schema]].reports_disaggregationvalue VALUES (5, '2019-09-30 10:14:47.745212+00', '2019-09-30 10:14:47.745212+00', '24-59', true, 1); INSERT INTO [[schema]].reports_disaggregationvalue VALUES (6, '2019-09-30 10:14:47.756234+00', '2019-09-30 10:14:47.756234+00', '60+', true, 1); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (7, '2019-11-28 08:56:56.723569+00', '2019-11-28 08:56:56.723569+00', 'MaleDisabled', true, 2); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (8, '2019-11-28 08:56:56.738225+00', '2019-11-28 08:56:56.738225+00', 'MaleNoDisable', true, 2); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (9, '2019-11-28 08:56:56.747013+00', '2019-11-28 08:56:56.747013+00', 'FemaleDisabled', true, 2); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (10, '2019-11-28 08:56:56.75605+00', '2019-11-28 08:56:56.75605+00', 'FemaleNoDisable', true, 2); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (11, '2019-11-28 09:57:10.519869+00', '2019-11-28 09:57:10.519869+00', 'IDP(NEW)', true, 3); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (12, '2019-11-28 09:57:10.531672+00', '2019-11-28 09:57:10.531672+00', 'IDP (R)', true, 3); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (13, '2019-11-28 09:57:10.539929+00', '2019-11-28 09:57:10.539929+00', 'NonDisp.(NEW)', true, 3); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (14, '2019-11-28 09:57:10.562704+00', '2019-11-28 09:57:10.562704+00', 'NonDisp. (R)', true, 3); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (15, '2019-11-28 09:57:10.573622+00', '2019-11-28 09:57:10.573622+00', 'Returnee(NEW)', true, 3); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (16, '2019-11-28 09:57:10.583429+00', '2019-11-28 09:57:10.583429+00', 'Returnee(R', true, 3); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (17, '2019-11-28 09:57:10.638848+00', '2019-11-28 09:57:10.638848+00', 'Migrant(NEW)', true, 3); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (18, '2019-11-28 09:57:10.648323+00', '2019-11-28 09:57:10.648323+00', 'Migrant(R)', true, 3); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (19, '2019-11-28 09:57:10.657626+00', '2019-11-28 09:57:10.657626+00', 'Refugee(NEW)', true, 3); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (20, '2019-11-28 09:57:10.669298+00', '2019-11-28 09:57:10.669298+00', 'Refugee(R)', true, 3); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (21, '2019-11-28 10:04:36.885549+00', '2019-11-28 10:04:36.885549+00', '0-5', true, 4); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (22, '2019-11-28 10:04:36.895068+00', '2019-11-28 10:04:36.895068+00', '0-5 (UASC)', true, 4); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (23, '2019-11-28 10:04:36.903537+00', '2019-11-28 10:04:36.903537+00', '6-12', true, 4); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (24, '2019-11-28 10:04:36.91228+00', '2019-11-28 10:04:36.91228+00', '6-12 (UASC)', true, 4); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (25, '2019-11-28 10:04:36.922883+00', '2019-11-28 10:04:36.922883+00', '13-17', true, 4); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (26, '2019-11-28 10:04:36.931429+00', '2019-11-28 10:04:36.931429+00', '13-17 (UASC)', true, 4); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (27, '2019-11-28 10:04:36.943092+00', '2019-11-28 10:04:36.943092+00', '18-23', true, 4); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (28, '2019-11-28 10:04:36.968311+00', '2019-11-28 10:04:36.968311+00', '24-59', true, 4); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (29, '2019-11-28 10:04:36.977252+00', '2019-11-28 10:04:36.977252+00', '60+', true, 4); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (30, '2019-12-18 13:46:13.514978+00', '2019-12-18 13:46:13.514978+00', 'Boy (0-5)', true, 5); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (31, '2019-12-18 13:46:13.526563+00', '2019-12-18 13:46:13.526563+00', 'Girl (0-5)', true, 5); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (32, '2019-12-18 13:46:13.535823+00', '2019-12-18 13:46:13.535823+00', 'Boy (6-12)', true, 5); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (33, '2019-12-18 13:46:13.546412+00', '2019-12-18 13:46:13.546412+00', 'Girl (6-12)', true, 5); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (34, '2019-12-18 13:46:13.555069+00', '2019-12-18 13:46:13.555069+00', 'Boy (13-17)', true, 5); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (35, '2019-12-18 13:46:13.564159+00', '2019-12-18 13:46:13.564159+00', 'Girl (13-17)', true, 5); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (36, '2019-12-18 13:46:13.57294+00', '2019-12-18 13:46:13.57294+00', 'Male (18-23)', true, 5); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (37, '2019-12-18 13:46:13.58096+00', '2019-12-18 13:46:13.58096+00', 'Female (18-23)', true, 5); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (38, '2019-12-18 13:46:13.590005+00', '2019-12-18 13:46:13.590005+00', 'Male (24-59)', true, 5); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (39, '2019-12-18 13:46:13.598286+00', '2019-12-18 13:46:13.598286+00', 'Female (24-59)', true, 5); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (40, '2019-12-18 13:46:13.606621+00', '2019-12-18 13:46:13.606621+00', 'Male 60+', true, 5); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (41, '2019-12-18 13:46:13.615761+00', '2019-12-18 13:46:13.615761+00', 'Female 60+', true, 5); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (42, '2019-12-18 13:48:21.058528+00', '2019-12-18 13:48:21.058528+00', 'noDisabl noUASC', true, 6); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (43, '2019-12-18 13:48:21.070695+00', '2019-12-18 13:48:21.070695+00', 'Disabled noUASC', true, 6); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (44, '2019-12-18 13:48:21.081107+00', '2019-12-18 13:48:21.081107+00', 'noDisabled UASC', true, 6); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (45, '2019-12-18 13:48:21.091102+00', '2019-12-18 13:48:21.091102+00', 'Disabled & UASC', true, 6); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (46, '2020-02-26 12:43:49.901162+00', '2020-02-26 12:43:49.901162+00', 'Not Disabled', true, 7); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (47, '2020-02-26 12:43:49.913465+00', '2020-02-26 12:43:49.913465+00', 'Disabled', true, 7); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (48, '2020-02-26 12:46:37.266011+00', '2020-02-26 12:46:37.266011+00', 'IDP', true, 8); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (49, '2020-02-26 12:46:37.274489+00', '2020-02-26 12:46:37.274489+00', 'Non Displaced', true, 8); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (50, '2020-02-26 12:46:37.283259+00', '2020-02-26 12:46:37.283259+00', 'Returnees', true, 8); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (51, '2020-02-26 12:46:37.291971+00', '2020-02-26 12:46:37.291971+00', 'Migrants', true, 8); +INSERT INTO [[schema]].reports_disaggregationvalue VALUES (52, '2020-02-26 12:46:37.30082+00', '2020-02-26 12:46:37.30082+00', 'Refugees', true, 8); -- @@ -12088,30 +14744,329 @@ INSERT INTO [[schema]].reports_indicator VALUES (78, 'Report78', '03-05-L3-09', INSERT INTO [[schema]].reports_indicator VALUES (79, 'Report79', '03-05-L3-14', NULL, NULL, 0, NULL, '', '10000', 'na', true, false, 110, NULL, NULL, false, '2018-03-15 16:57:50.91617+00', '2018-03-15 16:57:51.242901+00'); INSERT INTO [[schema]].reports_indicator VALUES (80, 'Report80', '01-06-L3-02', NULL, NULL, 0, NULL, '', '1200000', 'na', true, false, 112, NULL, NULL, false, '2018-03-15 16:57:50.91617+00', '2018-03-15 16:57:51.242901+00'); INSERT INTO [[schema]].reports_indicator VALUES (113, 'Report113', '53186', NULL, NULL, 0, NULL, '', '95,000', 'N/A', true, false, 110, NULL, NULL, true, '2018-03-31 00:09:22.591606+00', '2018-03-31 00:09:22.597675+00'); -INSERT INTO [[schema]].reports_indicator VALUES (150, 'Report150', '61787', NULL, NULL, 0, NULL, NULL, '1000 children <5', '0', true, false, 208, NULL, NULL, true, '2019-03-27 00:17:54.722587+00', '2019-04-20 00:15:13.380276+00'); INSERT INTO [[schema]].reports_indicator VALUES (112, 'Report112', '22-01-L3-14', NULL, NULL, 0, NULL, '', '26,639', 'na', true, false, 102, NULL, NULL, false, '2018-03-15 16:57:50.91617+00', '2018-03-31 00:09:22.570865+00'); -INSERT INTO [[schema]].reports_indicator VALUES (18, 'Report18', '18758', NULL, NULL, 0, NULL, '', 'MRE Strategy and standards published; MRE standards practiced', 'No', true, false, 26, NULL, NULL, true, '2018-03-15 16:57:50.91617+00', '2019-10-31 01:40:06.551327+00'); -INSERT INTO [[schema]].reports_indicator VALUES (178, 'Report178', '22-03-L3-05', NULL, NULL, 0, NULL, NULL, '14,000', '0', true, false, 221, NULL, NULL, true, '2019-03-27 00:17:54.725856+00', '2019-04-20 00:15:13.425189+00'); -INSERT INTO [[schema]].reports_indicator VALUES (147, 'Report147', '23-01-L3-12', NULL, NULL, 0, NULL, NULL, '7,000', '0', true, false, 216, NULL, NULL, true, '2019-02-14 00:20:15.617771+00', '2019-11-12 15:59:13.243869+00'); +INSERT INTO [[schema]].reports_indicator VALUES (18, 'Report18', '18758', NULL, NULL, 0, NULL, '', 'MRE Strategy and standards published; MRE standards practiced', 'No', true, false, 26, NULL, NULL, true, '2018-03-15 16:57:50.91617+00', '2020-04-09 00:13:36.894211+00'); +INSERT INTO [[schema]].reports_indicator VALUES (178, 'Report178', '22-03-L3-05', NULL, NULL, 0, NULL, NULL, '28,000', '0', true, false, 221, NULL, NULL, true, '2019-03-27 00:17:54.725856+00', '2020-01-16 00:16:29.28364+00'); INSERT INTO [[schema]].reports_indicator VALUES (179, 'Report179', '23-01-L3-13', NULL, NULL, 0, NULL, NULL, '40,000', '0', true, false, 218, NULL, NULL, true, '2019-03-27 00:17:54.725948+00', '2019-08-15 00:43:21.306126+00'); INSERT INTO [[schema]].reports_indicator VALUES (183, 'Report183', '66315', NULL, NULL, 0, NULL, NULL, '5', '0', true, false, 209, NULL, NULL, true, '2019-08-15 00:43:21.335523+00', '2019-08-15 00:43:21.336943+00'); INSERT INTO [[schema]].reports_indicator VALUES (184, 'Report184', '66316', NULL, NULL, 0, NULL, NULL, '1 in progress', '0', true, false, 210, NULL, NULL, true, '2019-08-15 00:43:21.335625+00', '2019-08-15 00:43:21.337105+00'); INSERT INTO [[schema]].reports_indicator VALUES (185, 'Report185', '66317', NULL, NULL, 0, NULL, NULL, '93,450', '90,682', true, false, 216, NULL, NULL, true, '2019-08-15 00:43:21.335712+00', '2019-08-15 00:43:21.337233+00'); INSERT INTO [[schema]].reports_indicator VALUES (186, 'Report186', '66312', NULL, NULL, 0, NULL, NULL, '100%', '0', true, false, 195, NULL, NULL, true, '2019-08-15 00:43:21.335822+00', '2019-08-15 00:43:21.337296+00'); INSERT INTO [[schema]].reports_indicator VALUES (175, 'Report175', '22-02-L3-53', NULL, NULL, 0, NULL, NULL, '400', '0', true, false, 220, NULL, NULL, true, '2019-03-27 00:17:54.725554+00', '2019-08-15 00:43:21.325478+00'); +INSERT INTO [[schema]].reports_indicator VALUES (150, 'Report150', '61787', NULL, NULL, 0, NULL, NULL, '1000 children <5', '0', true, false, 208, NULL, NULL, true, '2019-03-27 00:17:54.722587+00', '2020-01-18 00:17:37.304936+00'); +INSERT INTO [[schema]].reports_indicator VALUES (147, 'Report147', '23-01-L3-12', NULL, NULL, 0, NULL, NULL, '7,000', '0', true, false, 216, NULL, NULL, true, '2019-02-14 00:20:15.617771+00', '2020-04-20 03:11:05.775996+00'); -- -- Data for Name: reports_indicatorblueprint; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (2, '# of girls and boys (disaggregated by gender, age, disabilities and status) participating in structured, sustained child protection and/or PSS programmes;', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-11 13:31:08.408312+00', 'number', '2019-12-11 13:31:08.408312+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (3, '# of women and men (disaggregated by gender, age, disabilities and status) participating in structured and sustained better parenting or PSS programmes;', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-11 13:37:30.647229+00', 'number', '2019-12-11 13:37:30.647229+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (4, '# of WGBM benefitting from CP general awareness raising (including inter-agency information campaigns) (One off events, non-structured, Community events)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-11 13:38:26.18133+00', 'number', '2019-12-11 13:38:26.18133+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (5, '# of girls and boys (disaggregated by gender, age, disabilities and status) identified and referred to more specialized CP services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-11 13:58:26.513615+00', 'number', '2019-12-11 13:58:26.513615+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (6, '# of girls and boys (disaggregated by gender, age, disabilities and status) identified and referred to more specialized GBV services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-11 14:01:15.219343+00', 'number', '2019-12-11 14:01:15.219343+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (7, 'Number of WGBM receiving information about services through Bayti outreach (disaggregated by Education/CP)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-11 14:03:19.458994+00', 'number', '2019-12-11 14:03:19.458994+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (8, '# of members of communities and volunteers (women and men) trained on child protection/PSS;', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-11 14:04:16.730883+00', 'number', '2019-12-11 14:04:16.730883+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (9, '# of children and adolescents (disaggregated by gender, age, disabilities and status) enrolled in non-formal education services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-11 14:05:34.606458+00', 'number', '2019-12-11 14:05:34.606458+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (10, '# Number of school aged children (disaggregated by gender, age, disabilities and status) provided with essential learning materials/school supplies (ADD)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-11 14:23:23.314998+00', 'number', '2019-12-11 14:23:23.314998+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (11, '% of children (disaggregated by gender, age, disabilities and status) demonstrating academic progress;', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2019-12-11 14:25:24.397921+00', 'percentage', '2019-12-11 14:25:24.397921+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (12, '# of children, youth and adolescent (disaggregated by gender, age, disabilities and status) benefiting from Life skills based Education (enrolment)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-11 14:28:10.525208+00', 'number', '2019-12-11 14:28:10.525208+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (13, '# of peer educators/interns trained and recruited', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-11 14:29:11.299615+00', 'number', '2019-12-11 14:29:11.299615+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (14, '# of young people age 10-24 (disaggregated by gender, age, disabilities and status) active in civic engagement initiatives', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-11 14:30:26.342828+00', 'number', '2019-12-11 14:30:26.342828+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (15, '# of adolescents and youth-led initiatives /civic engagement projects implemented by young people (10-24) at community level', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-11 14:31:17.112779+00', 'number', '2019-12-11 14:31:17.112779+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (16, 'Number of school aged children (girls & boys) accessing formal and non-formal education services (remedial & catch-up classes)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-18 08:39:05.787953+00', 'number', '2019-12-18 08:39:05.787953+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (17, '# of WGBM receiving information through the help desk services.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-18 11:41:55.352543+00', 'number', '2019-12-18 11:41:55.352543+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (18, '# of identified cases handled through case management (disaggregated by gender, age, disabilities and status)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-18 11:43:07.346904+00', 'number', '2019-12-18 11:43:07.346904+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (19, 'Number of unaccompanied and separated children (disaggregated by gender, age, disabilities and status) who have benefitted from a formal UNICEF-supported (best interest assessment (BIA)/ best interest determination (BID) process', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-18 11:46:10.108054+00', 'number', '2019-12-18 11:46:10.108054+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (20, '# of UASC and of families with missing children identified, registered and supported with RFL (disaggregated by gender, age, disabilities and status);', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-18 11:47:37.116591+00', 'number', '2019-12-18 11:47:37.116591+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (21, '% of UASC or families with missing children whose family links were restored (disaggregated by gender, age, disabilities and status)', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2019-12-18 11:49:19.765321+00', 'percentage', '2019-12-18 11:49:19.765321+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (22, '# of strategy paper for programmatic response designed based on protection monitoring', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-18 16:22:44.058857+00', 'number', '2019-12-18 16:22:44.058857+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (23, '# of WGBM (disaggregated by gender, age, disabilities and status) referred to local clinic for basic health services.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-18 16:29:26.827294+00', 'number', '2019-12-18 16:29:26.827294+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (24, '# of girls and boys (disaggregated by gender, age, disabilities and status) referred to Bayti centre', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 08:22:52.87687+00', 'number', '2019-12-19 08:22:52.87687+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (25, '# parents and caregivers benefitted from structured and semi-structured counselling.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 08:24:20.253902+00', 'number', '2019-12-19 08:24:20.253902+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (26, '# of WGBM (disaggregated by gender, age, disabilities and status) benefitted, at least once, from specialized psychological counselling sessions. (the minimum package provided is 8 hours)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 08:25:57.954559+00', 'number', '2019-12-19 08:25:57.954559+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (27, '# of adolescent girls and women attended and benefitted from the established women space.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 08:27:08.304453+00', 'number', '2019-12-19 08:27:08.304453+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (28, '# of women and girls benefitted from specialised counselling in maternal and antenatal health and children care', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 08:28:18.969598+00', 'number', '2019-12-19 08:28:18.969598+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (29, '# of identified cases received NFI and dignity kits', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 08:29:13.481216+00', 'number', '2019-12-19 08:29:13.481216+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (206, 'Number of Children receiving students kits (Francaphone and Anglophone Non-Libyans)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-02 08:18:23.364558+00', 'number', '2020-02-02 08:18:23.364558+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (31, 'Number of adolescents and youth accessing non-formal education services (literacy programmes)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 09:19:38.788147+00', 'number', '2019-12-19 09:19:38.788147+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (32, 'Number of teachers and education personnel trained on child centred and protective pedagogy', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 09:24:19.947222+00', 'number', '2019-12-19 09:24:19.947222+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (33, 'Number of children receiving recreational activities in schools and learning spaces', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 11:38:04.493948+00', 'number', '2019-12-19 11:38:04.493948+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (34, '# of school aged children (girls and boys) provided with essential learning materials/school supplies', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 15:37:11.347281+00', 'number', '2019-12-19 15:37:11.347281+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (35, '# of school aged children accessing formal and non formal education services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 15:38:25.100572+00', 'number', '2019-12-19 15:38:25.100572+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (36, '# of vulnerable households who receive cash support for acces to education services for children', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 15:39:50.384539+00', 'number', '2019-12-19 15:39:50.384539+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (37, '# of teachers and education personnel trained on child centred and protective pedagogy', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 15:41:05.944395+00', 'number', '2019-12-19 15:41:05.944395+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (38, '# of individuals screened by Cesvi Vulnerability Assessment', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 15:42:47.630389+00', 'number', '2019-12-19 15:42:47.630389+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (39, '# of girls and boys participating in structured and sustained psychosocial support group activities', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 15:44:35.324388+00', 'number', '2019-12-19 15:44:35.324388+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (40, '# of caregivers participating in programs on child well-being, development and parenting skills', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 15:46:12.686249+00', 'number', '2019-12-19 15:46:12.686249+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (41, '# boys and girls at-risk or affected by abuse or violence provided with integrated case management services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 15:47:29.413514+00', 'number', '2019-12-19 15:47:29.413514+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (44, '# CP staff from Cesvi and others service providers and/or institutions trained on CP approaches, methodologies, standards and monitoring', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 15:52:51.950331+00', 'number', '2019-12-19 15:52:51.950331+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (42, '# boys and girls are at-risk or affected by abuse or violence, are supported to access services according to their needs (for example: medical care ,education services, transportation cost )', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 15:48:33.475306+00', 'number', '2019-12-19 15:48:33.475306+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (43, '# of girls, boys, women and men who participated in community-based activities promoting social cohesion (Child rights day, National days, recreational activities)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 15:51:19.839496+00', 'number', '2019-12-19 15:51:19.839496+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (45, 'Number of school aged children (girls & boys) with disabilities accessing formal/non-formal education services (remedial & catch-up classes)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-22 09:31:47.888565+00', 'number', '2019-12-22 09:31:47.888565+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (46, 'Number of pre-school age children (girls & boys) accessing pre-sechool services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-22 09:32:45.133725+00', 'number', '2019-12-22 09:32:45.133725+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (47, 'Number of school aged children (girls & boys) with disabilities provided with essential learning materials/school supplies (School in a bag kits, recreational kits, ECD kits)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-22 09:33:47.176187+00', 'number', '2019-12-22 09:33:47.176187+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (48, 'Number of pre-school age children (girls & boys) provided with essential learning materials/school supplies (ECD kits)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-22 09:34:26.839851+00', 'number', '2019-12-22 09:34:26.839851+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (49, 'Number of women and girls (adolescent girls between 14-17 years) participating in structured group psychosocial activities at the safe spaces. Disaggregated by age, nationality and gender.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-22 13:19:29.698675+00', 'number', '2019-12-22 13:19:29.698675+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (50, 'Number of boys and girls participating at PSS group activities including case management, disaggregated by age, nationality and gender.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-22 13:36:48.284157+00', 'number', '2019-12-22 13:36:48.284157+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (51, 'Number of men, women, boys and girls reached with key messages on GBV including available GBV referral pathways, Disaggregated by age, nationality and gender.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-22 13:43:57.906319+00', 'number', '2019-12-22 13:43:57.906319+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (52, 'Number of givernment and NGO service providers supported with capacity building on GBV prevention and response, disaggregated by age, nationality and gender.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-22 13:46:53.906632+00', 'number', '2019-12-22 13:46:53.906632+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (53, 'Number of agency staff trained on GBV mainstreaming. disaggregated by age, nationality and gender', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-22 13:48:04.528763+00', 'number', '2019-12-22 13:48:04.528763+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (55, 'Girls and boys referred for specialized Psychosocial support (disaggregated by age, nationality and gender)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-22 14:56:16.510665+00', 'number', '2019-12-22 14:56:16.510665+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (56, 'Social workers and child protection actors trained on providing support to vulnerable boys and girls (including boys and girls with disabilities and special needs) during emergencies (disaggregated by nationality and age and gender)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-22 15:00:29.085384+00', 'number', '2019-12-22 15:00:29.085384+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (77, 'Number of boys and girls, as well as their caregivers receiving Mine Risk Education', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-31 09:33:09.688837+00', 'number', '2020-02-03 14:22:25.741039+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (58, 'Women and men, parents, caregivers, and community memebers benefiting from awareness sessions on how to deal with children during conflict and emergencies (disaggregated by nationality, age and gender)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-22 15:16:44.839281+00', 'number', '2019-12-22 15:16:44.839281+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (59, 'Number of School-aged children (boys and girls) accessing formal/non-formal education services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-23 13:32:10.192003+00', 'number', '2019-12-23 13:32:10.192003+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (60, 'Number of school aged children (girls & boys) accessing rehabilitated and repaired educational facilities', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-25 14:57:11.556382+00', 'number', '2019-12-25 14:57:11.556382+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (61, '# of children (girls and boys) received psychosocial support and recreational activities in schools, community centers or child-friendly spaces', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-29 13:53:44.691443+00', 'number', '2019-12-29 13:53:44.691443+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (200, 'Number of school aged children (girls & boys) accessing formal/non-formal education services (Libyans and Arabic Speaking Non-Libyans)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-02 07:41:37.873527+00', 'number', '2020-02-02 07:41:37.873527+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (63, 'Number of school aged children (girls & boys) accessing formal/non-formal education services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-29 15:26:21.874764+00', 'number', '2019-12-29 15:26:21.874764+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (64, 'Number of teachers and education personnel trained on child centered and protective pedagogy', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-29 15:32:04.372775+00', 'number', '2019-12-29 15:32:04.372775+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (65, 'Number of house holds receive cash support for access to education services for children', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-30 08:12:59.56045+00', 'number', '2019-12-30 08:12:59.56045+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (67, 'Number of children participating (girls and boys) received psychosocial support and recreational activities', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-30 08:49:12.825016+00', 'number', '2019-12-30 08:49:12.825016+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (68, 'Number of actors'' males and females from service providers and/or institutions trained', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-30 08:51:33.088008+00', 'number', '2019-12-30 08:51:33.088008+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (69, 'Number of individuals reached by awareness raising activities', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-30 08:56:27.394298+00', 'number', '2019-12-30 08:56:27.394298+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (70, 'Number of children girls and boys received psychosocial support and recreational activities in schools community centers or child friendly spaces', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-30 18:09:24.521807+00', 'number', '2019-12-30 18:09:24.521807+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (71, 'Number of actors males and females from service providers and/or institutions trained on CP approaches', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-30 18:13:43.070054+00', 'number', '2019-12-30 18:13:43.070054+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (72, 'Number of individuals reached by awareness raising activities (Communicating with Communities)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-30 18:15:18.937216+00', 'number', '2019-12-30 18:15:18.937216+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (73, 'Number of girls and boys participating in structured and sustained psychosocial support group activities.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-30 18:31:27.009083+00', 'number', '2019-12-30 18:31:27.009083+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (79, 'Percentage of identified child victims/survivors referred to victim Assistance and other existing protection services providers', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2019-12-31 09:55:01.735266+00', 'percentage', '2020-02-03 14:56:50.767122+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (75, 'Number of individuals reached by awareness raising activities Communicating with Communities', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-30 18:35:16.249974+00', 'number', '2019-12-30 18:35:16.249974+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (76, 'Number of children (girls and boys) received psychosocial support and recreational activities in schools, community centers or child-friendly spaces', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-31 09:12:31.503535+00', 'number', '2019-12-31 09:12:31.503535+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (80, 'Number of Teachers and education personnel trained on child centered and protective pedagogy', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-31 13:08:04.028124+00', 'number', '2019-12-31 13:08:04.028124+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (81, 'Number of unaccompanied and separated children who have benefitted from a formal UNICEF-supported (best interest assessment (BIA)/ best interest determination (BID) process', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-31 14:24:46.70305+00', 'number', '2019-12-31 14:24:46.70305+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (66, 'Number of Children girls and boys supported with specialized child protection services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-30 08:42:19.920145+00', 'number', '2020-02-02 14:45:20.00404+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (54, 'Number of girls and boys benefiting from psychosocial support (disaggregated by age, nationality and gender)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-22 14:52:30.664342+00', 'number', '2020-02-02 14:56:32.685704+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (78, 'Number of community volunteers trained to deliver Risk Education', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-31 09:46:03.480233+00', 'number', '2020-02-03 15:00:21.077964+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (212, 'Number of individuals (boys, girls, men, and women) indirectly sensitized with key MRE messages through radio programs and other mass media', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-03 15:25:15.362281+00', 'number', '2020-02-03 15:25:15.362281+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (220, 'Number of boys and girls referred to baity center', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-03 15:45:50.868024+00', 'number', '2020-02-03 15:45:50.868024+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (82, 'of Child Resilience Centers established', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-03 13:06:17.276531+00', 'number', '2020-01-03 13:06:17.276531+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (83, 'of local child protection stakeholders trained', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-03 13:07:28.259518+00', 'number', '2020-01-03 13:07:28.259518+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (84, 'of trainees demonstrating increased knowledge on key child protection tipics', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-01-03 13:10:59.334977+00', 'percentage', '2020-01-03 13:10:59.334977+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (85, 'of children (boys and girls) who participate in extracurricular activities in the CRC', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-03 13:39:31.690421+00', 'number', '2020-01-03 13:39:31.690421+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (86, 'of children demonstrating improved psycho-social well-being subsequent to CRC activities', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-01-03 13:40:44.120258+00', 'percentage', '2020-01-03 13:40:44.120258+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (87, 'of children (disaggregated by gender and status) who benefit from the emergency case management fund', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-03 13:42:09.101232+00', 'number', '2020-01-03 13:42:09.101232+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (88, 'of children (disaggregated by gender, status) who receive specialized case management services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-03 13:43:45.816718+00', 'number', '2020-01-03 13:43:45.816718+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (89, 'of children and caregivers reporting case management services successfully met their needs', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-01-03 13:45:40.980276+00', 'percentage', '2020-01-03 13:45:40.980276+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (90, 'of children (disaggregated by gender and status) benefitting from recreational materials', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-03 13:46:53.121621+00', 'number', '2020-01-03 13:46:53.121621+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (91, 'of children (disaggregated by gender and status) who participate in remedial and catch up classes', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-03 13:49:33.173272+00', 'number', '2020-01-03 13:49:33.173272+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (92, 'of children in remedial and catch up classes with improved academic performance', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-01-03 13:50:31.899795+00', 'percentage', '2020-01-03 13:50:31.899795+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (93, 'of children (disaggregated by gender and status) who participate in vocational trainings and life skills sessions', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-03 13:51:38.182531+00', 'number', '2020-01-03 13:51:38.182531+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (94, 'of children (disaggregated by gender and status) having received essential learning materials and supplies', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-03 13:52:58.864946+00', 'number', '2020-01-03 13:52:58.864946+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (95, 'of community members reached through outreach activities', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-03 13:56:13.043137+00', 'number', '2020-01-03 13:56:13.043137+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (96, 'of parents and caregivers who participate in the awareness-raising sessions', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-03 14:01:07.745359+00', 'number', '2020-01-03 14:01:07.745359+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (97, 'of parents and caregivers in awareness-raising sessions who know key child protection principles', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-01-03 14:02:36.65479+00', 'percentage', '2020-01-03 14:02:36.65479+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (98, 'of protection helplines operated', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-03 14:03:34.612101+00', 'number', '2020-01-03 14:03:34.612101+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (99, 'Number of school aged children provided with essential learning materials/school supplies', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-14 09:50:05.207303+00', 'number', '2020-01-14 09:50:05.207303+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (100, 'Number of children referred to specialized child protection services.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-14 12:54:33.957836+00', 'number', '2020-01-14 12:54:33.957836+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (101, '20,000 children and women accessing GBV risk mitigation, prevention or response interventions  (M/F)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-14 13:01:21.445996+00', 'number', '2020-01-14 13:01:21.445996+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (102, 'Number of children and women accessing GBV risk mitigation, prevention or response interventions  (M/F)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-14 13:02:56.82007+00', 'number', '2020-01-14 13:02:56.82007+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (103, 'Number of school aged children accessing formal/non-formal education services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-14 15:03:39.386297+00', 'number', '2020-01-14 15:03:39.386297+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (104, 'Number of children accessing mental health and psycosocial support', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-16 14:13:07.532946+00', 'number', '2020-01-16 14:13:07.532946+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (105, 'Number of children referred to specialized child protection services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-16 14:15:21.637703+00', 'number', '2020-01-16 14:15:21.637703+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (106, 'Percentage of children demonstrating improved psychosocial wellbeing subsequent to CRC activities', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-01-16 14:18:46.467206+00', 'percentage', '2020-01-16 14:18:46.467206+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (107, 'Percentage of children and caregivers reporting case management successfully met their needs', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-01-16 14:27:08.213253+00', 'percentage', '2020-01-16 14:27:08.213253+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (108, 'Number of children benefitting from recreational materials', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-16 14:28:24.096415+00', 'number', '2020-01-16 14:28:24.096415+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (109, 'Number of child resilience centers established', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-16 14:44:13.443104+00', 'number', '2020-01-16 14:44:13.443104+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (110, 'Number of local child protection stakeholders trained', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-16 14:46:10.415096+00', 'number', '2020-01-16 14:46:10.415096+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (111, 'Percentage of trainees demonstrating increased knowledge on key child protection topics', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-01-16 14:48:15.22813+00', 'percentage', '2020-01-16 14:48:15.22813+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (112, 'Number of factsheets shared with UNICEF', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-16 14:49:47.480446+00', 'number', '2020-01-16 14:49:47.480446+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (113, 'Number of children accessing formal''non formal education services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-16 14:53:47.928904+00', 'number', '2020-01-16 14:53:47.928904+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (114, 'Number of school-aged children provided with essential learning materials/school supplies', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-16 14:54:54.854674+00', 'number', '2020-01-16 14:54:54.854674+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (115, 'Percentage of children in remedial and catch up classes with improved academic performance', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-01-16 14:57:02.712464+00', 'percentage', '2020-01-16 14:57:02.712464+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (116, 'Number of children who participate in vocational training and life skills sessions', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-16 14:58:02.904173+00', 'number', '2020-01-16 14:58:02.904173+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (117, 'Number of actors from service providers and/or institutions trained on CP approaches (M/F)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-16 15:00:09.739291+00', 'number', '2020-01-16 15:00:09.739291+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (118, 'Number of community members reached through outreach activities', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-16 15:15:21.136516+00', 'number', '2020-01-16 15:15:21.136516+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (119, 'Percentage of parents and caregivers in awareness-raising sessions know key child protection principles', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-16 15:20:22.788069+00', 'number', '2020-01-16 15:20:22.788069+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (120, 'Number of protection helplines operated', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-16 15:21:57.617895+00', 'number', '2020-01-16 15:21:57.617895+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (121, 'Number of children accessing mental health and psychosocial support services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-16 15:35:39.543185+00', 'number', '2020-01-16 15:35:39.543185+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (122, 'Percentage of trainees demonstrating increased knowledge on child protection topics', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-01-16 15:40:15.243152+00', 'percentage', '2020-01-16 15:40:15.243152+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (123, 'Number of factsheets produced', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-16 15:41:13.275339+00', 'number', '2020-01-16 15:41:13.275339+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (124, 'Percentage of children demonstrating improved psychosocial wellbeing subsequent to CRC activities', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-16 15:51:54.731237+00', 'number', '2020-01-16 15:51:54.731237+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (125, '% Percentage of children and caregivers reporting case management successfully met their needs', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-01-16 15:54:50.084027+00', 'percentage', '2020-01-16 15:54:50.084027+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (126, 'Percentage of children demonstarating improved psychosocial wellbeing subsequent to CRC activities', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-01-16 15:57:09.419987+00', 'percentage', '2020-01-16 15:57:09.419987+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (127, 'Number of children who benefitting from recreational materials', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-16 15:59:09.867054+00', 'number', '2020-01-16 15:59:09.867054+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (128, 'Number of school-aged children accessing formal/non-formal education services (M/F)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-16 16:03:16.595747+00', 'number', '2020-01-16 16:03:16.595747+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (129, 'Percentage of parents and caregivers in awareness-raising sessions know key child protection principles', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-01-16 16:29:09.173914+00', 'percentage', '2020-01-16 16:29:09.173914+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (130, 'Number of school aged children (girls & boys) accessing formal/non-formal education', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 08:08:22.970241+00', 'number', '2020-01-29 08:08:22.970241+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (131, 'Number of children and adults reached by awareness raising activities (Communicating with Communities)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 10:05:25.202874+00', 'number', '2020-01-29 10:05:25.202874+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (132, 'Number of children participating in structured sustained psychosocial activities', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 10:09:55.041897+00', 'number', '2020-01-29 10:09:55.041897+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (133, 'Number of adolescents and youth accessing nonformal education services (literacy programmes)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 10:30:45.110059+00', 'number', '2020-01-29 10:30:45.110059+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (134, 'Number of school aged children (girls & boys) accessing rehabilitated and repaired educational facilities/prefabricated classrooms', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 12:18:20.880944+00', 'number', '2020-01-29 12:18:20.880944+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (135, 'Number of non formal school support centers (SSCs) established within formal schools in key nighbourhoods with OOSC ([[schema]]ns and Non Libyans)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 13:20:18.660934+00', 'number', '2020-01-29 13:20:18.660934+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (136, 'Number of children receiving students kits (formal and Non formal)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 13:23:51.02355+00', 'number', '2020-01-29 13:23:51.02355+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (137, 'Number of OOSC enrolled in non-formal Education (basic litracy/Numeracy instruction and PSS)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 13:27:17.894349+00', 'number', '2020-01-29 13:27:17.894349+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (138, 'Number of children who are integrated in formal education/other learning opprotunities by the end of the NFE Intervention', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 13:31:19.24023+00', 'number', '2020-01-29 13:31:19.24023+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (139, 'Number of Institutions receiving teaching/learning materials and maintaniance support', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 13:33:29.67931+00', 'number', '2020-01-29 13:33:29.67931+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (140, 'Number of adolescent girls participating in club activities', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 13:36:14.302385+00', 'number', '2020-01-29 13:36:14.302385+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (141, 'Number of PSS/EIE mobile team memebers (persons) trained', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 13:38:47.643076+00', 'number', '2020-01-29 13:38:47.643076+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (213, 'Number of women girls boys and men receiving information through the help desk services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-03 15:36:23.516555+00', 'number', '2020-02-03 15:36:23.516555+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (143, 'Number of children receiving psychosocial/recreational activities in schools and learning spaces', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 13:51:30.552328+00', 'number', '2020-01-29 13:51:30.552328+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (144, 'Number of education actors(f/m) trained on policy, planning, data collection, sector coordination and INEE MS', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 13:54:12.496488+00', 'number', '2020-01-29 13:54:12.496488+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (145, 'Number of teachers trained in improved teaching methods and NRC better learning programme (PSS)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 13:59:51.334626+00', 'number', '2020-01-29 13:59:51.334626+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (146, 'Number of PTAs re-established or strengthened', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 14:02:05.644161+00', 'number', '2020-01-29 14:02:05.644161+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (147, 'Number of non-teaching education professionals trained (Headteachers and/or authorities) on relevant topics', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 14:05:35.422188+00', 'number', '2020-01-29 14:05:35.422188+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (148, 'Number of OOSC bridging pathway and enrollment support methods established with MoE and NRC''s ICLA programme', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 14:08:40.274717+00', 'number', '2020-01-29 14:08:40.274717+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (149, 'Number of sector co-leads assigned support coordination', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 14:11:24.379497+00', 'number', '2020-01-29 14:11:24.379497+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (150, 'Number of Institutions receiving technical guidance/training', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 14:13:23.853706+00', 'number', '2020-01-29 14:13:23.853706+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (151, 'Number of girls and boys refered to health or child protection actors', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 14:16:47.736713+00', 'number', '2020-01-29 14:16:47.736713+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (152, 'Number of school aged children (girls and boys) provided with essential learning materials/school supplies', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 08:26:58.195415+00', 'number', '2020-01-30 08:26:58.195415+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (153, 'Number of school aged children (girls and boys) accessing formal/non-formal education services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 08:28:08.283314+00', 'number', '2020-01-30 08:28:08.283314+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (154, 'Number of vulnerable households receive cash support for access to education services for children', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 08:29:42.263405+00', 'number', '2020-01-30 08:29:42.263405+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (155, 'Number of individuals screened by CESVI vulnerability assessment', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 08:34:39.464067+00', 'number', '2020-01-30 08:34:39.464067+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (156, 'Number of girls and boys participating in structured and sustained psychosocial support group activities', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 08:36:41.908616+00', 'number', '2020-01-30 08:36:41.908616+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (157, 'Number of caregivers participating in programs on child wellbeing, development and parenting skills', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 08:38:47.743756+00', 'number', '2020-01-30 08:38:47.743756+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (158, 'Number of boys and girls at-risk or affected by abuse or violence provided with integrated case management services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 08:40:19.010579+00', 'number', '2020-01-30 08:40:19.010579+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (159, 'Number of girls and boys at risk or affected by abuse or violence, are supported to access services according to their needs (for example: medical care, education services, transportation costs)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 08:43:16.132857+00', 'number', '2020-01-30 08:43:16.132857+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (160, 'Number of girls, boys, women and men who participated in community-based activities promoting social cohesion (Child rights day, National days, Recreational activities)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 08:45:54.446374+00', 'number', '2020-01-30 08:45:54.446374+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (161, 'Number of Child Protection staff from CESVI and other service providers and/or institutions trained on child protection approaches, methodologies, standards and monitoring', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 08:47:25.210189+00', 'number', '2020-01-30 08:47:25.210189+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (162, 'Number of women and girls (adolescent girls between 14-17) participating in structured group psychosocial activities at the safe spaces, disaggregated by age, nationality and gender', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 08:59:34.048379+00', 'number', '2020-01-30 08:59:34.048379+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (163, 'Number of Child resilience centers established', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 09:36:55.76091+00', 'number', '2020-01-30 09:36:55.76091+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (164, 'Number of children (girls and boys) who participate in extra curricula activities in the CRC', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 09:41:15.283056+00', 'number', '2020-01-30 09:41:15.283056+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (165, 'Percentage of children demonstrating improved psycho-social wellbeing subsequent to CRC activities', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-01-30 09:42:11.581741+00', 'percentage', '2020-01-30 09:42:11.581741+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (166, 'Number of children who benefit from the emergency case management fund', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 09:43:14.343163+00', 'number', '2020-01-30 09:43:14.343163+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (167, 'Number of children who received specialized case management services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 09:44:25.211487+00', 'number', '2020-01-30 09:44:25.211487+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (168, 'Percentage of children and caregivers reporting case management services successfully met their needs', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-01-30 09:45:24.185893+00', 'percentage', '2020-01-30 09:45:24.185893+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (169, 'Number of children who participate in remedial and catch up classes', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 09:51:49.840876+00', 'number', '2020-01-30 09:51:49.840876+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (170, 'Number of children having received essential learning materials and supplies', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 10:23:26.493463+00', 'number', '2020-01-30 10:23:26.493463+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (171, 'Numbers of community members reached through outreach activities', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 10:25:01.55798+00', 'number', '2020-01-30 10:25:01.55798+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (172, 'Number of parents and caregivers who participate in the awareness raising sessions', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 10:25:48.410019+00', 'number', '2020-01-30 10:25:48.410019+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (173, 'Percentage of parents and caregivers in awareness raisins sessions know key child protection principles', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-01-30 10:26:45.345446+00', 'percentage', '2020-01-30 10:26:45.345446+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (174, 'Number of girls and boy participating in structured, sustained child protection and/or PSS programs', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 10:36:01.814473+00', 'number', '2020-01-30 10:36:01.814473+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (189, 'Number of adults participating in computer classes', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 10:58:47.512894+00', 'number', '2020-01-30 10:58:47.512894+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (175, 'number of women and men participating in structured and sustained and better parenting PSS programs', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 10:37:11.843654+00', 'number', '2020-01-30 10:37:11.843654+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (176, 'Number of women girls boys and men benefitting from CP general awareness raising (including inter-agency information campaigns) (one-off events, non structured community events)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 10:39:25.071272+00', 'number', '2020-01-30 10:39:25.071272+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (177, 'Number of girls and boys identified and referred to more specialized CP services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 10:40:15.87693+00', 'number', '2020-01-30 10:40:15.87693+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (178, 'Number of girls and boys identified and referred to more specialized GBV services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 10:41:20.24164+00', 'number', '2020-01-30 10:41:20.24164+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (179, 'Number of cases identified and assessed to be involved in the case management services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 10:42:28.723774+00', 'number', '2020-01-30 10:42:28.723774+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (180, 'Number of cases actually involved in case management services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 10:44:51.783091+00', 'number', '2020-01-30 10:44:51.783091+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (181, 'Percentage of cases involved in case management closed or transferred', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-01-30 10:45:54.997278+00', 'percentage', '2020-01-30 10:45:54.997278+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (182, 'Number of women, girls, boys and men receiving information about services through baity outreach (disaggregated by education/CP)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 10:48:34.615539+00', 'number', '2020-01-30 10:48:34.615539+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (183, 'Number of Community based Child protection committees (CbCPC) established', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 10:49:33.11542+00', 'number', '2020-01-30 10:49:33.11542+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (184, 'Number of members of community committees (women and men) trained on CP risks, identification and referrals', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 10:50:45.651778+00', 'number', '2020-01-30 10:50:45.651778+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (185, 'Number of children and adolescents enrolled in non-formal education services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 10:52:02.550363+00', 'number', '2020-01-30 10:52:02.550363+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (186, 'Number of school-aged children provided with essential learning materials/school supplies (ADD)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 10:53:21.794341+00', 'number', '2020-01-30 10:53:21.794341+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (187, 'Percentage of children demonstrating academic progress', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-01-30 10:55:46.974872+00', 'percentage', '2020-01-30 10:55:46.974872+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (188, 'Number of children participating in computer classes', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 10:58:10.43133+00', 'number', '2020-01-30 10:58:10.43133+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (62, 'Number of individual community  members trained on protection approaches,  norms, and humanitarian  and human rights laws', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-29 13:56:46.839408+00', 'number', '2020-01-30 11:00:10.209117+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (190, 'Number of children, youth and adolescents benefiting from life skills based education (enrollment)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 11:00:51.153926+00', 'number', '2020-01-30 11:00:51.153926+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (191, 'Number of peer educators/interns trained and recruited', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 11:01:56.468861+00', 'number', '2020-01-30 11:01:56.468861+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (192, 'Number of young people aged 10-24 active in civic engagement initiatives', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 11:03:07.69622+00', 'number', '2020-01-30 11:03:07.69622+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (193, 'Number of adolescents and youth led initiatives/civic engagement projects implemented by young people 10/24 at community level', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 11:04:14.285419+00', 'number', '2020-01-30 11:04:14.285419+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (194, 'Number of paticipants (female and male) from the 7 targeted IPs and authorities trained', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 11:08:03.926293+00', 'number', '2020-01-30 11:08:03.926293+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (195, 'Percentage of participants demonstrated better understanding of agreed upon topics', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-01-30 11:08:52.533931+00', 'percentage', '2020-01-30 11:08:52.533931+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (196, 'Number of government and NGO service providers supported with capacity building on GBV prevention and response, disaggregated by age, nationality and gender', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 11:54:19.944291+00', 'number', '2020-01-30 11:54:19.944291+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (197, 'Number of agency staff trained on GBV mainstreaming, disaggregated by age, nationality and gender', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 11:56:22.035897+00', 'number', '2020-01-30 11:56:22.035897+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (198, 'Number of boys and girls participating in PSS group activities including case management, disagregated by age, nationality and gender', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 11:59:47.102776+00', 'number', '2020-01-30 11:59:47.102776+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (30, 'Number of school aged children (girls & boys) provided with essential learning materials/school supplies', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-19 09:18:41.188016+00', 'number', '2020-01-30 12:40:28.6833+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (199, 'Number of women, men, boys and girls reached with key messages on GBV including available GBV referral pathways, disaggregated by age, nationality and gender', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-30 12:44:29.009694+00', 'number', '2020-01-30 12:44:29.009694+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (201, 'Number of school aged children (girls & boys) provided with essential learning materials/school supplies (Libyans and Arabic Speaking Non-Libyans)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-02 07:45:35.520721+00', 'number', '2020-02-02 07:45:35.520721+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (202, 'Number of Children receiving students kits (formal and Non formal)- (Libyans and Arabic Speaking Non-Libyans)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-02 07:52:58.25832+00', 'number', '2020-02-02 07:52:58.25832+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (203, 'Number of teachers trained in improved teaching methods and NRC better learning programme (PSS) (Libyans and Arabic Speaking Non-Libyans)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-02 07:59:33.635579+00', 'number', '2020-02-02 07:59:33.635579+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (204, 'Number of school aged children (girls & boys) accessing formal/non-formal education services (Francaphone and Anglophone Non-Libyans)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-02 08:15:19.092033+00', 'number', '2020-02-02 08:15:19.092033+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (205, 'Number of school aged children (girls & boys) provided with essential learning materials/school supplies (Francaphone and Anglophone Non-Libyans)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-02 08:16:45.595333+00', 'number', '2020-02-02 08:16:45.595333+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (207, 'Number of teachers trained in improved teaching methods and NRC better learning programme (PSS) (Francaphone and Anglophone Non-Libyans)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-02 08:20:33.557652+00', 'number', '2020-02-02 08:20:33.557652+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (208, 'Number of Institutions receiving teaching/learning materials', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-02 08:21:47.875988+00', 'number', '2020-02-02 08:21:47.875988+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (209, 'Number of OOSC enrolled in non-formal Education (Basic literacy/Numeracy instruction and PSS) aimed to bridge them into community schools', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-02 08:25:53.667763+00', 'number', '2020-02-02 08:25:53.667763+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (142, 'Number of learners enrolled in non-formal education in SSCs (Basic literacy/Numeracy instruction and PSS)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-01-29 13:43:32.113328+00', 'number', '2020-02-02 10:41:28.75622+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (57, 'Number of focal group discussions with women and young girls conducted (disaggregated by nationality, age and gender)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-22 15:14:50.624494+00', 'number', '2020-02-02 14:33:16.746511+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (74, 'Number of social workers and child protection actors trained on providing support to vulnerable boys and girls (including boys and girls with disabilities and special needs) during emergencies (disaggregated by nationality, age and gender)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2019-12-30 18:33:49.196776+00', 'number', '2020-02-02 14:37:57.214348+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (210, 'Number of girls and boys referred for specialized psychosocial support (disaggregaed by age, nationality and gender)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-02 14:46:47.502816+00', 'number', '2020-02-02 14:46:47.502816+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (211, 'Number of women and men, parents, caregivers, and community members benefiting from awareness sessions on how to deal with children during conflict and emergencies (disaggregated by nationality, age and gender)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-02 14:53:50.095628+00', 'number', '2020-02-02 14:53:50.095628+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (214, 'Number of identified cases handled through case management', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-03 15:37:40.795491+00', 'number', '2020-02-03 15:37:40.795491+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (215, 'Number of unaccompanied and separated children who have benefitted from a formal UNICEF-supported Best interest assessment (BIA) or best interest determination process (BID)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-03 15:39:15.058579+00', 'number', '2020-02-03 15:39:15.058579+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (216, 'Number of UASC and families with missing children identified, registered and supported with RFL', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-03 15:40:45.350075+00', 'number', '2020-02-03 15:40:45.350075+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (217, 'Percentage of UASC whose families with missing children whose family links were restored', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-02-03 15:41:55.529347+00', 'percentage', '2020-02-03 15:41:55.529347+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (218, 'Number of strategy papers for programmatic response designed based on protection monitoring', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-03 15:42:59.814359+00', 'number', '2020-02-03 15:42:59.814359+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (219, 'Number of women, girls, boys and men referred to local clinics for basic health services', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-03 15:45:07.792582+00', 'number', '2020-02-03 15:45:07.792582+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (221, 'Number of parents and caregivers benefitting from structured and semi-structured counselling', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-03 15:47:33.624751+00', 'number', '2020-02-03 15:47:33.624751+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (222, 'number of women, girls, boys and men benefitted at least once from specialized psychological counseling (minimum package provided is 8 hours)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-03 15:48:43.696216+00', 'number', '2020-02-03 15:48:43.696216+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (223, 'number of adolescent girls and women attended and benefitted from established women space', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-03 15:49:41.980669+00', 'number', '2020-02-03 15:49:41.980669+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (224, 'Number of women and girls who benefitted from specialised counselling in maternal and antenatal health and children care', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-03 15:51:20.414372+00', 'number', '2020-02-03 15:51:20.414372+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (225, 'Percentage of children and caregivers demonstrating increased knowledge after RE sessions', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-02-03 16:12:39.299649+00', 'percentage', '2020-02-03 16:12:39.299649+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (227, 'Percentage of children and caregivers demonstrating increased knowledge after RE sessions % of children and caregivers interviewed report safe behaviors', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-02-26 13:40:13.434067+00', 'percentage', '2020-02-26 13:40:13.434067+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (228, 'Number of adults reached by awareness raising activities (Communicating with Communities)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-27 07:10:37.249844+00', 'number', '2020-02-27 07:10:37.249844+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (229, 'Number of community centres established', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-03-23 11:07:37.634017+00', 'number', '2020-03-23 11:07:37.634017+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (230, 'Number of capacity building training/initiatives done with the Libyan Red Crescent including the roll-out plan on EPR', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-05 15:55:58.443991+00', 'number', '2020-04-05 15:55:58.443991+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (232, 'Number of people received essential hygiene items and critical WASH-related information', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 10:58:54.393471+00', 'number', '2020-04-06 10:58:54.393471+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (234, 'Number of Rapid Needs Assessments done', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 11:05:51.300956+00', 'number', '2020-04-06 11:05:51.300956+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (235, '#Number of people received essential hygiene items and critical WASH-related information', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 14:52:10.25159+00', 'number', '2020-04-06 14:52:10.25159+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (237, 'Number of Emergency SOPs established an designed by both UNICEF and LRCs', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 15:03:19.586749+00', 'number', '2020-04-06 15:03:19.586749+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (239, 'Number of Rapid Needs assessments conducted', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 15:09:58.867611+00', 'number', '2020-04-06 15:09:58.867611+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (241, 'Number of capacity building trainings/initiatives done with the Libyan Red Crescent', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-08 15:35:20.629301+00', 'number', '2020-04-08 15:35:20.629301+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (242, 'Number of people received esstineal medical supplies', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-09 08:01:01.031721+00', 'number', '2020-04-09 08:01:01.031721+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (244, '# Number of people received essential medical supplies', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-09 08:58:19.321655+00', 'number', '2020-04-09 08:58:19.321655+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (245, 'Number of people provided with safe drinking water', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-16 10:14:59.994753+00', 'number', '2020-04-16 10:14:59.994753+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (246, 'Number of children and women received primary healthcare in UNICEF supported facilities', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-16 15:36:10.836321+00', 'number', '2020-04-16 15:36:10.836321+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (247, 'Number of people provided with the minimum quantity of safe drinking water in line with international standards', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-19 07:30:13.910187+00', 'number', '2020-04-19 07:30:13.910187+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (249, 'Number of people received essential hygiene items and critical WASH-related information.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-19 07:32:47.478312+00', 'number', '2020-04-19 07:32:47.478312+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (251, 'Number of Tree planted in areas of interventions.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-19 07:36:20.188081+00', 'number', '2020-04-19 07:36:20.188081+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (253, 'Number of governmental and NGO staff member trained', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-19 07:39:36.857299+00', 'number', '2020-04-19 07:39:36.857299+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (226, 'Percentage of children and caregivers interviewed report safe behaviors', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-02-03 16:14:44.69014+00', 'percentage', '2020-02-03 16:14:44.69014+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (231, 'Number of children provided access to recreational supplies, as a result of UNICEF emergency programme', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-05 15:59:31.838682+00', 'number', '2020-04-05 15:59:31.838682+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (233, 'Number of children and caregivers accessing mine/explosive weapons risk education', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 11:02:15.440173+00', 'number', '2020-04-06 11:02:15.440173+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (236, 'Number of warehouses managed and established in Benghazi and Sabha and supplies delivered.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 15:02:17.739419+00', 'number', '2020-04-06 15:02:17.739419+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (238, 'Number of emergency responses respond to in the east/west/south in 72 hours.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 15:08:50.954647+00', 'number', '2020-04-06 15:08:50.954647+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (240, 'Number of capacity building trainings/initiatives done with the Libyan Red', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 15:12:44.247504+00', 'number', '2020-04-06 15:12:44.247504+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (243, 'number of children/teachers benefiting from education supplies', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-09 08:02:24.449174+00', 'number', '2020-04-09 08:02:24.449174+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (248, 'Number of people with improved access to sanitation facilities', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-19 07:31:23.74273+00', 'number', '2020-04-19 07:31:23.74273+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (250, 'Number of schoolchildren provided with key hygiene items messages.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-19 07:35:08.001352+00', 'number', '2020-04-19 07:35:08.001352+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (252, 'Number of Global events celebrated/organized (GHWD, WTD, WED)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-19 07:37:55.949573+00', 'number', '2020-04-19 07:37:55.949573+00'); -- -- Data for Name: reports_lowerresult; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].reports_lowerresult VALUES (3, '999', '102-1', 60, '2019-10-02 09:31:09.308666+00', '2019-10-02 09:31:09.308666+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (18, 'Scale up equitable access to formal and non formal education for vulnerable school aged children affected by protracted crisis', '92-1', 69, '2019-12-22 09:30:27.160953+00', '2019-12-22 09:30:27.160953+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (65, 'Community School Support (for Francophone /Anglophone Non-Libyans)', '87-50', 84, '2020-02-02 08:13:37.50395+00', '2020-02-02 08:13:37.50395+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (66, 'Libyan and non-[[schema]]ns women, girls,boys and men have access to appropriate, dignified and specialized legal and protection services', '105-1', 65, '2020-02-03 15:34:17.117647+00', '2020-02-03 15:34:17.117647+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (67, 'Vulnerable and marginalized women, girls, boys and men Libyan and non-[[schema]]n have access to appropriate, dignified and specialized health and social services', '105-67', 65, '2020-02-03 15:44:10.10519+00', '2020-02-03 15:44:10.10519+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (68, 'At-risk individuals, particularly children and caregivers, receive Emergency Mine and ERW Risk Education', '95-31', 75, '2020-02-26 12:49:10.573009+00', '2020-02-26 12:49:10.573009+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (8, 'Scale up equitable access to formal and non-formal education for vulnerable', '90-1', 64, '2019-12-18 08:17:42.27394+00', '2019-12-18 08:36:49.109481+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (11, 'Improve the quality of education services in protective learning environments (Education sector strategic objective)', '90-9', 64, '2019-12-19 09:20:59.182085+00', '2019-12-19 09:20:59.182085+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (13, 'Capacity to provide quality educational services enhanced', '102-13', 68, '2019-12-19 15:40:17.750623+00', '2019-12-19 15:40:17.750623+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (14, 'Needs and protection risk of affected population are identified', '102-14', 68, '2019-12-19 15:41:28.10033+00', '2019-12-19 15:43:09.628623+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (16, 'Specialized services provided to girls, boys, men and women', '102-16', 68, '2019-12-19 15:46:27.648268+00', '2019-12-19 15:46:27.648268+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (17, 'Organization of community-based activities promoting social cohesion (Child Rights day, National days, recreational activities)', '102-17', 68, '2019-12-19 15:49:48.347395+00', '2019-12-19 15:49:48.347395+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (19, 'Improve the quality of education services in protective learning environments', '92-19', 69, '2019-12-22 09:34:39.292464+00', '2019-12-22 09:34:39.292464+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (20, 'Women, girls and boys, including survivors of gender-based violence have greater access to age-appropriate, survivor centered services', '103-1', 62, '2019-12-22 13:04:55.143976+00', '2019-12-22 13:04:55.143976+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (21, 'Protection and psychological wellbeing of conflict-affected IDP,host community and migrant boys and girls is improved through Psychosocial support, and awareness of community is raised on child rights and child protection in Emergencies, and capacity to provide services in emergency is enhance.', '100-1', 72, '2019-12-22 14:23:38.52735+00', '2019-12-22 14:23:38.52735+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (24, 'Improve the quality of education services in protective learning environments', '94-24', 70, '2019-12-29 13:28:50.387369+00', '2019-12-29 13:28:50.387369+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (38, 'The psychosocial wellbeing of children is enhanced, and their immediate environment is made more inclusive and safe through the establishment of Child resilience centers', '107-1', 81, '2020-01-16 14:10:04.924548+00', '2020-01-16 14:16:43.838067+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (30, 'At-risk individuals, particularly children and caregivers, receive Emergency Mine and ERW Risk Education', '95-1', 75, '2019-12-31 09:14:31.917685+00', '2019-12-31 09:14:31.917685+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (23, 'Scale up equitable access to formal and non-formal education for vulnerable school aged children affected by protracted crisis', '94-1', 70, '2019-12-29 13:20:07.202804+00', '2020-01-28 14:22:24.970159+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (26, 'Provide specialized protection assistance and services (child protection services) to vulnerable and conflict affected Libyans and non-Libyans', '94-1', 73, '2019-12-29 13:37:31.767709+00', '2019-12-31 13:09:06.258717+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (25, 'Engage with authorities and humanitarian partners to promote full adherence to international protection norms, humanitarian and human rights law and facilitate community-based approaches to protection', '94-1', 71, '2019-12-29 13:35:41.757959+00', '2019-12-31 13:09:17.365078+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (47, 'Provide specialized protection assistance and services (child protection services) to vulnerable and conflict affected Libyans and non-Libyan', '94-27', 73, '2020-01-29 10:03:50.866352+00', '2020-01-29 10:03:50.866352+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (48, 'Access to Quality Formal + NFE (for Libyans & Arabic Speaking Non Libyans)', '87-1', 84, '2020-01-29 11:51:43.836523+00', '2020-01-29 11:51:43.836523+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (49, 'Improve the quality of education services in protective learning inviroments', '87-49', 84, '2020-01-29 13:47:10.79121+00', '2020-01-29 13:47:10.79121+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (39, 'Operational and technical capacities of existing local child protection actors are strengthened', '107-39', 81, '2020-01-16 14:34:04.032454+00', '2020-01-16 14:34:04.032454+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (40, 'Educational gaps are overcome to fulfill equal rights to education for all children and tosupport in accessing future employment opportunities adolescents', '107-1', 82, '2020-01-16 14:51:55.889724+00', '2020-01-16 14:51:55.889724+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (41, 'Awareness of child protection issues in the community is increased through targeted outreach to parents and caregivers', '107-41', 82, '2020-01-16 15:13:02.231011+00', '2020-01-16 15:13:02.231011+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (42, 'The psycho-social and emotional wellbeing of children is enhanced, and their immediate environment is made more inclusive and safe thrugh the establishment of child resilience centers', '106-1', 79, '2020-01-16 15:33:41.312763+00', '2020-01-16 15:37:02.469215+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (50, 'Access to conducive learning environment, education for vulnerable children and youth enhanced', '102-1', 80, '2020-01-30 08:25:14.239569+00', '2020-01-30 08:25:14.239569+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (51, 'Capacity to provide quality educational services enhanced', '102-51', 80, '2020-01-30 08:30:05.156191+00', '2020-01-30 08:30:05.156191+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (52, 'Needs and protection risks of affected population are identified', '102-30', 68, '2020-01-30 08:33:19.821471+00', '2020-01-30 08:33:19.821471+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (53, 'Psychosocial wellbeing of girls, boys, women and men improved', '102-53', 68, '2020-01-30 08:35:32.984281+00', '2020-01-30 08:35:32.984281+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (54, 'Specialized services provided to girls, boys, men and women', '102-54', 68, '2020-01-30 08:39:08.913586+00', '2020-01-30 08:39:08.913586+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (55, 'Organization of community based activities promoting social cohesion (Child Rights day, national days, recreational activities)', '102-55', 68, '2020-01-30 08:43:52.01185+00', '2020-01-30 08:43:52.01185+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (56, 'Operational and technical capacities of existing local child protection actors are strenghtened', '106-43', 79, '2020-01-30 09:36:24.793627+00', '2020-01-30 09:36:24.793627+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (57, 'The psycho-social and emotional wellbeing of children is enhanced and their immediate environment is made more inclusive and safe through the establishment of the child resilience centers', '106-57', 79, '2020-01-30 09:40:09.367203+00', '2020-01-30 09:40:09.367203+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (58, 'Educational gaps are overcome to fulfill equal rights to education for all children and to support adolescents iin accessing future employment opportunities', '106-1', 83, '2020-01-30 09:50:04.100919+00', '2020-01-30 09:50:04.100919+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (59, 'Awareness of child protection issues in the communities is increased through targeted outreach to parents and caregivers', '106-58', 79, '2020-01-30 10:24:09.487932+00', '2020-01-30 10:24:09.487932+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (60, 'Community based child protection and PSS interventions are avaiable for vulnerable girls and boys', '104-1', 63, '2020-01-30 10:29:14.508816+00', '2020-01-30 10:29:14.508816+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (61, 'Outreach and community involvement: vulnerable population, including community members, parents, children and youth are aware about services provided at Baity centers and participate actively in community-based child protection committees (CbCPCs) for active prevention, identification and to respond to child protection and GBV issues', '104-61', 63, '2020-01-30 10:47:24.899554+00', '2020-01-30 10:47:24.899554+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (62, 'School-aged children have access to equitable, safe and quality non-formal education services through enrollment at Baity center', '104-62', 63, '2020-01-30 10:51:13.160652+00', '2020-01-30 10:51:13.160652+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (63, 'Opportunities available for vulnerable young people to actively engage in life skills based trainings, decision-making, community life and social cohesion', '104-63', 63, '2020-01-30 10:59:41.24925+00', '2020-01-30 10:59:41.24925+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (64, 'Technical knowledge of UNICEF IPs enhanced through capapcity building/trainings', '104-64', 63, '2020-01-30 11:04:38.419992+00', '2020-01-30 11:04:38.419992+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (79, 'Emergency Preparedness and Response-contingency provisions', '108-79', 87, '2020-04-06 14:59:42.39158+00', '2020-04-08 15:33:18.816266+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (82, 'Most vulnerable people affected by protracted crisis are provided with improved access to water, sanitation and hygiene services.', '111-1', 91, '2020-04-19 07:27:44.462794+00', '2020-04-19 07:27:44.462794+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (83, 'Most Vulnerable children in schools are reached with essential hygiene items and information.', '111-83', 91, '2020-04-19 07:33:42.715256+00', '2020-04-19 07:33:42.715256+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (84, 'Capacity building of partners and Government officials', '111-84', 91, '2020-04-19 07:38:39.120995+00', '2020-04-19 07:38:39.120995+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (78, '"25000 households, or 125,000 individuals, or 50,000 children are responded to in 72hrs in an onset emergency in West, East and the South of Libya "', '108-1', 87, '2020-04-06 14:49:35.78755+00', '2020-04-06 14:49:35.78755+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (80, 'Capacity building training for LRCS & UNICEF partners on emergency preparedness and response', '108-1', 86, '2020-04-06 15:11:50.787099+00', '2020-04-06 15:11:50.787099+00'); -- @@ -12132,13 +15087,584 @@ INSERT INTO [[schema]].reports_office VALUES (209, 'Tunis'); -- Data for Name: reports_reportingrequirement; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].reports_reportingrequirement VALUES (48, '2019-12-18 08:45:19.799647+00', '2019-12-18 08:45:19.799647+00', '2019-09-01', '2019-11-30', '2019-12-30', 'QPR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (6, '2019-12-12 13:26:39.696409+00', '2019-12-12 13:26:39.696409+00', '2019-12-28', '2020-01-03', '2020-01-04', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (7, '2019-12-12 13:26:39.701376+00', '2019-12-12 13:26:39.701376+00', '2020-01-04', '2020-01-10', '2020-01-11', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (8, '2019-12-12 13:26:39.704528+00', '2019-12-12 13:26:39.704528+00', '2020-01-11', '2020-01-17', '2020-01-18', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (9, '2019-12-12 13:26:39.708163+00', '2019-12-12 13:26:39.708163+00', '2020-01-18', '2020-01-24', '2020-01-25', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (10, '2019-12-12 13:26:39.711393+00', '2019-12-12 13:26:39.711393+00', '2020-01-25', '2020-01-31', '2020-02-01', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (11, '2019-12-12 13:26:39.715189+00', '2019-12-12 13:26:39.715189+00', '2020-02-01', '2020-02-07', '2020-02-08', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (12, '2019-12-12 13:26:39.718483+00', '2019-12-12 13:26:39.718483+00', '2020-02-08', '2020-02-14', '2020-02-15', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (13, '2019-12-12 13:26:39.721503+00', '2019-12-12 13:26:39.721503+00', '2020-02-15', '2020-02-21', '2020-02-22', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (14, '2019-12-12 13:26:39.725211+00', '2019-12-12 13:26:39.725211+00', '2020-02-22', '2020-02-28', '2020-02-29', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (15, '2019-12-12 13:26:39.728344+00', '2019-12-12 13:26:39.728344+00', '2020-02-29', '2020-03-06', '2020-03-07', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (16, '2019-12-12 13:26:39.731642+00', '2019-12-12 13:26:39.731642+00', '2020-03-07', '2020-03-13', '2020-03-14', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (17, '2019-12-12 13:26:39.734881+00', '2019-12-12 13:26:39.734881+00', '2020-03-14', '2020-03-20', '2020-03-21', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (18, '2019-12-12 13:26:39.738471+00', '2019-12-12 13:26:39.738471+00', '2020-03-21', '2020-03-27', '2020-03-28', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (19, '2019-12-12 13:26:39.74181+00', '2019-12-12 13:26:39.74181+00', '2020-03-28', '2020-04-03', '2020-04-04', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (20, '2019-12-12 13:26:39.74516+00', '2019-12-12 13:26:39.74516+00', '2020-04-04', '2020-04-10', '2020-04-11', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (21, '2019-12-12 13:26:39.748482+00', '2019-12-12 13:26:39.748482+00', '2020-04-11', '2020-04-17', '2020-04-18', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (22, '2019-12-12 13:26:39.751802+00', '2019-12-12 13:26:39.751802+00', '2020-04-18', '2020-04-24', '2020-04-25', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (23, '2019-12-12 13:26:39.755324+00', '2019-12-12 13:26:39.755324+00', '2020-04-25', '2020-05-01', '2020-05-02', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (24, '2019-12-12 13:26:39.758398+00', '2019-12-12 13:26:39.758398+00', '2020-05-02', '2020-05-08', '2020-05-09', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (25, '2019-12-12 13:26:39.761451+00', '2019-12-12 13:26:39.761451+00', '2020-05-09', '2020-05-15', '2020-05-16', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (26, '2019-12-12 13:26:39.764633+00', '2019-12-12 13:26:39.764633+00', '2020-05-16', '2020-05-22', '2020-05-23', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (27, '2019-12-12 13:26:39.768005+00', '2019-12-12 13:26:39.768005+00', '2020-05-23', '2020-05-29', '2020-05-30', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (28, '2019-12-12 13:26:39.771442+00', '2019-12-12 13:26:39.771442+00', '2020-05-30', '2020-06-05', '2020-06-06', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (29, '2019-12-12 13:26:39.774488+00', '2019-12-12 13:26:39.774488+00', '2020-06-06', '2020-06-12', '2020-06-13', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (30, '2019-12-12 13:26:39.777613+00', '2019-12-12 13:26:39.777613+00', '2020-06-13', '2020-06-19', '2020-06-20', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (31, '2019-12-12 13:26:39.780549+00', '2019-12-12 13:26:39.780549+00', '2020-06-20', '2020-06-26', '2020-06-27', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (32, '2019-12-12 13:26:39.783896+00', '2019-12-12 13:26:39.783896+00', '2020-06-27', '2020-07-03', '2020-07-04', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (33, '2019-12-12 13:26:39.787278+00', '2019-12-12 13:26:39.787278+00', '2020-07-04', '2020-07-10', '2020-07-11', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (34, '2019-12-12 13:26:39.790414+00', '2019-12-12 13:26:39.790414+00', '2020-07-11', '2020-07-17', '2020-07-18', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (35, '2019-12-12 13:26:39.793369+00', '2019-12-12 13:26:39.793369+00', '2020-07-18', '2020-07-24', '2020-07-25', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (36, '2019-12-12 13:26:39.796586+00', '2019-12-12 13:26:39.796586+00', '2020-07-25', '2020-07-31', '2020-08-01', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (37, '2019-12-12 13:26:39.799707+00', '2019-12-12 13:26:39.799707+00', '2020-08-01', '2020-08-07', '2020-08-08', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (38, '2019-12-12 13:26:39.803001+00', '2019-12-12 13:26:39.803001+00', '2020-08-08', '2020-08-14', '2020-08-15', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (39, '2019-12-12 13:26:39.806356+00', '2019-12-12 13:26:39.806356+00', '2020-08-15', '2020-08-21', '2020-08-22', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (40, '2019-12-12 13:26:39.809742+00', '2019-12-12 13:26:39.809742+00', '2020-08-22', '2020-08-28', '2020-08-29', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (41, '2019-12-12 13:26:39.812736+00', '2019-12-12 13:26:39.812736+00', '2020-08-29', '2020-09-04', '2020-09-05', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (42, '2019-12-12 13:26:39.815962+00', '2019-12-12 13:26:39.815962+00', '2020-09-05', '2020-09-11', '2020-09-12', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (43, '2019-12-12 13:26:39.819325+00', '2019-12-12 13:26:39.819325+00', '2020-09-12', '2020-09-18', '2020-09-19', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (44, '2019-12-12 13:26:39.822371+00', '2019-12-12 13:26:39.822371+00', '2020-09-19', '2020-09-25', '2020-09-26', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (45, '2019-12-12 13:26:39.825597+00', '2019-12-12 13:26:39.825597+00', '2020-09-26', '2020-10-02', '2020-10-03', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (46, '2019-12-12 13:26:39.828847+00', '2019-12-12 13:26:39.828847+00', '2020-10-03', '2020-10-09', '2020-10-10', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (47, '2019-12-12 13:26:39.832371+00', '2019-12-12 13:26:39.832371+00', '2020-10-10', '2020-10-16', '2020-10-17', 'HR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (49, '2019-12-18 08:45:19.804745+00', '2019-12-18 08:45:19.804745+00', '2019-12-01', '2020-02-29', '2020-03-30', 'QPR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (50, '2019-12-18 08:45:19.808465+00', '2019-12-18 08:45:19.808465+00', '2020-03-01', '2020-04-30', '2020-05-30', 'QPR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (545, '2020-04-09 08:05:07.010784+00', '2020-04-09 08:05:07.010784+00', '2020-04-01', '2020-05-31', '2020-06-30', 'QPR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (393, '2020-01-03 14:06:22.712012+00', '2020-01-03 14:06:22.712012+00', '2019-12-04', '2020-02-29', '2020-03-30', 'QPR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (394, '2020-01-03 14:06:22.717358+00', '2020-01-03 14:06:22.717358+00', '2020-03-01', '2020-05-31', '2020-06-30', 'QPR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (395, '2020-01-03 14:06:22.720398+00', '2020-01-03 14:06:22.720398+00', '2020-06-01', '2020-08-31', '2020-09-30', 'QPR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (396, '2020-01-03 14:06:22.723782+00', '2020-01-03 14:06:22.723782+00', '2020-09-01', '2020-11-30', '2020-12-30', 'QPR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (397, '2020-01-03 14:06:22.726945+00', '2020-01-03 14:06:22.726945+00', '2020-12-01', '2020-12-03', '2021-01-02', 'QPR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (436, '2020-01-03 14:09:05.4065+00', '2020-01-03 14:09:05.4065+00', '2020-08-29', '2020-09-04', '2020-09-05', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (437, '2020-01-03 14:09:05.409919+00', '2020-01-03 14:09:05.409919+00', '2020-09-05', '2020-09-11', '2020-09-12', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (438, '2020-01-03 14:09:05.413404+00', '2020-01-03 14:09:05.413404+00', '2020-09-12', '2020-09-18', '2020-09-19', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (51, '2019-12-18 08:49:43.474723+00', '2019-12-18 08:49:43.474723+00', '2020-01-04', '2020-01-09', '2020-01-10', 'HR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (439, '2020-01-03 14:09:05.416968+00', '2020-01-03 14:09:05.416968+00', '2020-09-19', '2020-09-25', '2020-09-26', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (440, '2020-01-03 14:09:05.420243+00', '2020-01-03 14:09:05.420243+00', '2020-09-26', '2020-10-02', '2020-10-03', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (441, '2020-01-03 14:09:05.424615+00', '2020-01-03 14:09:05.424615+00', '2020-10-03', '2020-10-09', '2020-10-10', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (442, '2020-01-03 14:09:05.430444+00', '2020-01-03 14:09:05.430444+00', '2020-10-10', '2020-10-16', '2020-10-17', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (443, '2020-01-03 14:09:05.433882+00', '2020-01-03 14:09:05.433882+00', '2020-10-17', '2020-10-23', '2020-10-24', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (444, '2020-01-03 14:09:05.437625+00', '2020-01-03 14:09:05.437625+00', '2020-10-24', '2020-10-30', '2020-10-31', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (445, '2020-01-03 14:09:05.441145+00', '2020-01-03 14:09:05.441145+00', '2020-10-31', '2020-11-06', '2020-11-07', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (451, '2020-01-08 08:53:59.877195+00', '2020-01-08 08:53:59.877195+00', '2019-12-04', '2020-02-29', '2020-03-30', 'QPR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (452, '2020-01-08 08:53:59.88574+00', '2020-01-08 08:53:59.88574+00', '2020-03-01', '2020-05-31', '2020-06-30', 'QPR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (453, '2020-01-08 08:53:59.890556+00', '2020-01-08 08:53:59.890556+00', '2020-06-01', '2020-08-31', '2020-09-30', 'QPR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (454, '2020-01-08 08:53:59.894155+00', '2020-01-08 08:53:59.894155+00', '2020-09-01', '2020-11-30', '2020-12-30', 'QPR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (455, '2020-01-08 08:53:59.897994+00', '2020-01-08 08:53:59.897994+00', '2020-12-01', '2020-12-03', '2021-01-02', 'QPR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (476, '2020-02-03 12:22:09.712445+00', '2020-02-03 12:22:09.712445+00', '2019-12-04', '2020-01-03', '2020-01-04', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (1, '2019-12-11 13:31:47.788234+00', '2019-12-11 13:31:47.788234+00', '2020-01-01', '2020-03-31', '2020-04-30', 'QPR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (2, '2019-12-11 13:31:47.791926+00', '2019-12-11 13:31:47.791926+00', '2020-04-01', '2020-06-30', '2020-07-30', 'QPR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (71, '2019-12-19 08:30:15.873601+00', '2019-12-19 08:30:15.873601+00', '2019-11-22', '2020-02-29', '2020-03-30', 'QPR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (72, '2019-12-19 08:30:15.88083+00', '2019-12-19 08:30:15.88083+00', '2020-03-01', '2020-05-31', '2020-06-30', 'QPR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (73, '2019-12-19 08:30:15.884522+00', '2019-12-19 08:30:15.884522+00', '2020-06-01', '2020-08-31', '2020-09-30', 'QPR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (74, '2019-12-19 08:30:15.887895+00', '2019-12-19 08:30:15.887895+00', '2020-09-01', '2020-11-21', '2020-12-21', 'QPR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (238, '2019-12-22 13:24:40.597151+00', '2019-12-22 13:24:40.597151+00', '2019-10-07', '2019-12-31', '2020-01-30', 'QPR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (239, '2019-12-22 13:24:40.603569+00', '2019-12-22 13:24:40.603569+00', '2020-01-01', '2020-03-31', '2020-04-30', 'QPR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (240, '2019-12-22 13:24:40.607309+00', '2019-12-22 13:24:40.607309+00', '2020-04-01', '2020-06-30', '2020-07-30', 'QPR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (241, '2019-12-22 13:24:40.610591+00', '2019-12-22 13:24:40.610591+00', '2020-07-01', '2020-10-07', '2020-10-30', 'QPR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (75, '2019-12-19 08:32:33.104751+00', '2019-12-19 08:32:33.104751+00', '2019-11-22', '2019-11-29', '2019-11-30', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (147, '2019-12-19 08:58:30.000938+00', '2019-12-19 08:58:30.000938+00', '2020-03-28', '2020-04-03', '2020-04-04', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (148, '2019-12-19 08:58:30.00499+00', '2019-12-19 08:58:30.00499+00', '2020-04-04', '2020-04-10', '2020-04-11', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (149, '2019-12-19 08:58:30.008247+00', '2019-12-19 08:58:30.008247+00', '2020-04-11', '2020-04-17', '2020-04-18', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (150, '2019-12-19 08:58:30.011363+00', '2019-12-19 08:58:30.011363+00', '2020-04-18', '2020-04-24', '2020-04-25', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (156, '2019-12-19 08:59:20.724317+00', '2019-12-19 08:59:20.724317+00', '2020-05-30', '2020-06-05', '2020-06-06', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (157, '2019-12-19 08:59:20.728343+00', '2019-12-19 08:59:20.728343+00', '2020-06-06', '2020-06-12', '2020-06-13', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (158, '2019-12-19 08:59:20.732058+00', '2019-12-19 08:59:20.732058+00', '2020-06-13', '2020-06-19', '2020-06-20', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (159, '2019-12-19 08:59:20.736416+00', '2019-12-19 08:59:20.736416+00', '2020-06-20', '2020-06-26', '2020-06-27', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (165, '2019-12-19 09:00:06.894971+00', '2019-12-19 09:00:06.894971+00', '2020-08-01', '2020-08-07', '2020-08-08', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (166, '2019-12-19 09:00:06.898609+00', '2019-12-19 09:00:06.898609+00', '2020-08-08', '2020-08-14', '2020-08-15', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (167, '2019-12-19 09:00:06.902097+00', '2019-12-19 09:00:06.902097+00', '2020-08-15', '2020-08-21', '2020-08-22', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (173, '2019-12-19 09:01:02.405727+00', '2019-12-19 09:01:02.405727+00', '2020-09-26', '2020-10-02', '2020-10-03', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (186, '2019-12-19 15:53:44.517395+00', '2019-12-19 15:53:44.517395+00', '2019-10-01', '2019-10-04', '2019-10-05', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (187, '2019-12-19 15:53:44.525465+00', '2019-12-19 15:53:44.525465+00', '2019-10-05', '2019-10-11', '2019-10-12', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (188, '2019-12-19 15:53:44.529073+00', '2019-12-19 15:53:44.529073+00', '2019-10-12', '2019-10-18', '2019-10-19', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (189, '2019-12-19 15:53:44.535556+00', '2019-12-19 15:53:44.535556+00', '2019-10-19', '2019-10-25', '2019-10-26', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (190, '2019-12-19 15:53:44.538946+00', '2019-12-19 15:53:44.538946+00', '2019-10-26', '2019-11-01', '2019-11-02', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (191, '2019-12-19 15:53:44.543733+00', '2019-12-19 15:53:44.543733+00', '2019-11-02', '2019-11-08', '2019-11-09', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (192, '2019-12-19 15:53:44.547986+00', '2019-12-19 15:53:44.547986+00', '2019-11-09', '2019-11-15', '2019-11-16', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (193, '2019-12-19 15:53:44.551909+00', '2019-12-19 15:53:44.551909+00', '2019-11-16', '2019-11-22', '2019-11-23', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (172, '2019-12-19 09:00:27.458+00', '2019-12-19 09:00:27.458+00', '2020-09-19', '2020-09-25', '2020-09-26', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (174, '2019-12-19 09:01:02.409809+00', '2019-12-19 09:01:02.409809+00', '2020-10-03', '2020-10-09', '2020-10-10', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (175, '2019-12-19 09:01:02.413402+00', '2019-12-19 09:01:02.413402+00', '2020-10-10', '2020-10-16', '2020-10-17', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (176, '2019-12-19 09:01:02.417229+00', '2019-12-19 09:01:02.417229+00', '2020-10-17', '2020-10-23', '2020-10-24', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (177, '2019-12-19 09:01:02.420999+00', '2019-12-19 09:01:02.420999+00', '2020-10-24', '2020-10-30', '2020-10-31', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (178, '2019-12-19 09:01:02.424147+00', '2019-12-19 09:01:02.424147+00', '2020-10-31', '2020-11-06', '2020-11-07', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (179, '2019-12-19 09:01:02.427444+00', '2019-12-19 09:01:02.427444+00', '2020-11-07', '2020-11-13', '2020-11-14', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (180, '2019-12-19 09:01:02.430827+00', '2019-12-19 09:01:02.430827+00', '2020-11-14', '2020-11-20', '2020-11-21', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (181, '2019-12-19 09:01:02.434511+00', '2019-12-19 09:01:02.434511+00', '2020-11-21', '2020-11-27', '2020-11-28', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (182, '2019-12-19 15:27:21.799697+00', '2019-12-19 15:27:21.799697+00', '2019-10-01', '2019-12-31', '2020-01-30', 'QPR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (183, '2019-12-19 15:27:21.804995+00', '2019-12-19 15:27:21.804995+00', '2020-01-01', '2020-03-31', '2020-04-30', 'QPR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (184, '2019-12-19 15:27:21.807935+00', '2019-12-19 15:27:21.807935+00', '2020-04-01', '2020-06-30', '2020-07-30', 'QPR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (185, '2019-12-19 15:27:21.811177+00', '2019-12-19 15:27:21.811177+00', '2020-07-01', '2020-09-30', '2020-10-30', 'QPR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (194, '2019-12-19 15:53:44.555189+00', '2019-12-19 15:53:44.555189+00', '2019-11-23', '2019-11-29', '2019-11-30', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (195, '2019-12-19 15:55:28.484997+00', '2019-12-19 15:55:28.484997+00', '2019-11-30', '2019-12-06', '2019-12-07', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (196, '2019-12-19 15:55:28.488823+00', '2019-12-19 15:55:28.488823+00', '2019-12-07', '2019-12-13', '2019-12-14', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (197, '2019-12-19 15:55:28.492229+00', '2019-12-19 15:55:28.492229+00', '2019-12-14', '2019-12-20', '2019-12-21', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (198, '2019-12-19 15:55:28.495449+00', '2019-12-19 15:55:28.495449+00', '2019-12-21', '2019-12-27', '2019-12-28', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (199, '2019-12-19 15:55:28.499035+00', '2019-12-19 15:55:28.499035+00', '2019-12-28', '2020-01-03', '2020-01-04', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (200, '2019-12-19 15:55:28.503218+00', '2019-12-19 15:55:28.503218+00', '2020-01-04', '2020-01-10', '2020-01-11', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (201, '2019-12-19 15:55:28.506664+00', '2019-12-19 15:55:28.506664+00', '2020-01-11', '2020-01-17', '2020-01-18', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (202, '2019-12-19 15:55:28.510848+00', '2019-12-19 15:55:28.510848+00', '2020-01-18', '2020-01-24', '2020-01-25', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (126, '2019-12-19 08:55:22.165115+00', '2019-12-19 08:55:22.165115+00', '2019-11-30', '2019-12-06', '2019-12-07', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (130, '2019-12-19 08:55:38.495088+00', '2019-12-19 08:55:38.495088+00', '2019-12-07', '2019-12-13', '2019-12-14', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (131, '2019-12-19 08:55:46.265228+00', '2019-12-19 08:55:46.265228+00', '2019-12-14', '2019-12-20', '2019-12-21', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (133, '2019-12-19 08:55:58.962184+00', '2019-12-19 08:55:58.962184+00', '2019-12-21', '2020-01-03', '2020-01-04', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (134, '2019-12-19 08:56:06.707879+00', '2019-12-19 08:56:06.707879+00', '2020-01-04', '2020-01-10', '2020-01-11', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (135, '2019-12-19 08:56:31.378797+00', '2019-12-19 08:56:31.378797+00', '2020-01-11', '2020-01-17', '2020-01-18', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (136, '2019-12-19 08:56:40.362183+00', '2019-12-19 08:56:40.362183+00', '2020-01-18', '2020-01-24', '2020-01-25', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (138, '2019-12-19 08:57:08.23053+00', '2019-12-19 08:57:08.23053+00', '2020-01-25', '2020-01-31', '2020-02-01', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (139, '2019-12-19 08:57:42.326169+00', '2019-12-19 08:57:42.326169+00', '2020-02-01', '2020-02-07', '2020-02-08', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (140, '2019-12-19 08:57:42.329813+00', '2019-12-19 08:57:42.329813+00', '2020-02-08', '2020-02-14', '2020-02-15', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (141, '2019-12-19 08:57:42.333191+00', '2019-12-19 08:57:42.333191+00', '2020-02-15', '2020-02-21', '2020-02-22', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (142, '2019-12-19 08:57:42.337436+00', '2019-12-19 08:57:42.337436+00', '2020-02-22', '2020-02-28', '2020-02-29', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (143, '2019-12-19 08:58:04.798554+00', '2019-12-19 08:58:04.798554+00', '2020-02-29', '2020-03-06', '2020-03-07', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (144, '2019-12-19 08:58:04.80371+00', '2019-12-19 08:58:04.80371+00', '2020-03-07', '2020-03-13', '2020-03-14', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (145, '2019-12-19 08:58:04.808037+00', '2019-12-19 08:58:04.808037+00', '2020-03-14', '2020-03-20', '2020-03-21', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (146, '2019-12-19 08:58:04.811674+00', '2019-12-19 08:58:04.811674+00', '2020-03-21', '2020-03-27', '2020-03-28', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (151, '2019-12-19 08:58:56.979228+00', '2019-12-19 08:58:56.979228+00', '2020-04-25', '2020-05-01', '2020-05-02', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (152, '2019-12-19 08:58:56.983388+00', '2019-12-19 08:58:56.983388+00', '2020-05-02', '2020-05-08', '2020-05-09', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (153, '2019-12-19 08:58:56.986778+00', '2019-12-19 08:58:56.986778+00', '2020-05-09', '2020-05-15', '2020-05-16', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (154, '2019-12-19 08:58:56.990494+00', '2019-12-19 08:58:56.990494+00', '2020-05-16', '2020-05-22', '2020-05-23', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (155, '2019-12-19 08:58:56.995173+00', '2019-12-19 08:58:56.995173+00', '2020-05-23', '2020-05-29', '2020-05-30', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (160, '2019-12-19 08:59:45.248497+00', '2019-12-19 08:59:45.248497+00', '2020-06-27', '2020-07-03', '2020-07-04', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (161, '2019-12-19 08:59:45.251973+00', '2019-12-19 08:59:45.251973+00', '2020-07-04', '2020-07-10', '2020-07-11', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (162, '2019-12-19 08:59:45.255129+00', '2019-12-19 08:59:45.255129+00', '2020-07-11', '2020-07-17', '2020-07-18', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (163, '2019-12-19 08:59:45.258234+00', '2019-12-19 08:59:45.258234+00', '2020-07-18', '2020-07-24', '2020-07-25', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (203, '2019-12-19 15:55:28.513989+00', '2019-12-19 15:55:28.513989+00', '2020-01-25', '2020-01-31', '2020-02-01', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (204, '2019-12-19 15:55:28.517031+00', '2019-12-19 15:55:28.517031+00', '2020-02-01', '2020-02-07', '2020-02-08', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (205, '2019-12-19 15:55:28.520145+00', '2019-12-19 15:55:28.520145+00', '2020-02-08', '2020-02-14', '2020-02-15', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (206, '2019-12-19 15:55:28.523469+00', '2019-12-19 15:55:28.523469+00', '2020-02-15', '2020-02-21', '2020-02-22', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (207, '2019-12-19 15:55:28.526651+00', '2019-12-19 15:55:28.526651+00', '2020-02-22', '2020-02-28', '2020-02-29', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (208, '2019-12-19 15:55:28.529705+00', '2019-12-19 15:55:28.529705+00', '2020-02-29', '2020-03-06', '2020-03-07', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (209, '2019-12-19 15:55:28.532733+00', '2019-12-19 15:55:28.532733+00', '2020-03-07', '2020-03-13', '2020-03-14', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (210, '2019-12-19 15:55:28.535924+00', '2019-12-19 15:55:28.535924+00', '2020-03-14', '2020-03-20', '2020-03-21', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (211, '2019-12-19 15:55:28.538938+00', '2019-12-19 15:55:28.538938+00', '2020-03-21', '2020-03-27', '2020-03-28', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (164, '2019-12-19 08:59:45.261696+00', '2019-12-19 08:59:45.261696+00', '2020-07-25', '2020-07-31', '2020-08-01', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (168, '2019-12-19 09:00:06.905109+00', '2019-12-19 09:00:06.905109+00', '2020-08-22', '2020-08-28', '2020-08-29', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (169, '2019-12-19 09:00:27.446732+00', '2019-12-19 09:00:27.446732+00', '2020-08-29', '2020-09-04', '2020-09-05', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (170, '2019-12-19 09:00:27.450887+00', '2019-12-19 09:00:27.450887+00', '2020-09-05', '2020-09-11', '2020-09-12', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (171, '2019-12-19 09:00:27.454396+00', '2019-12-19 09:00:27.454396+00', '2020-09-12', '2020-09-18', '2020-09-19', 'HR', 105); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (212, '2019-12-19 15:55:28.54189+00', '2019-12-19 15:55:28.54189+00', '2020-03-28', '2020-04-03', '2020-04-04', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (213, '2019-12-19 15:55:28.544689+00', '2019-12-19 15:55:28.544689+00', '2020-04-04', '2020-04-10', '2020-04-11', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (214, '2019-12-19 15:55:28.547856+00', '2019-12-19 15:55:28.547856+00', '2020-04-11', '2020-04-17', '2020-04-18', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (215, '2019-12-19 15:55:28.551519+00', '2019-12-19 15:55:28.551519+00', '2020-04-18', '2020-04-24', '2020-04-25', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (216, '2019-12-19 15:55:28.555018+00', '2019-12-19 15:55:28.555018+00', '2020-04-25', '2020-05-01', '2020-05-02', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (217, '2019-12-19 15:55:28.558801+00', '2019-12-19 15:55:28.558801+00', '2020-05-02', '2020-05-08', '2020-05-09', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (218, '2019-12-19 15:55:28.564954+00', '2019-12-19 15:55:28.564954+00', '2020-05-09', '2020-05-15', '2020-05-16', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (219, '2019-12-19 15:55:28.569113+00', '2019-12-19 15:55:28.569113+00', '2020-05-16', '2020-05-22', '2020-05-23', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (220, '2019-12-19 15:55:28.572236+00', '2019-12-19 15:55:28.572236+00', '2020-05-23', '2020-05-29', '2020-05-30', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (221, '2019-12-19 15:55:28.57517+00', '2019-12-19 15:55:28.57517+00', '2020-05-30', '2020-06-05', '2020-06-06', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (222, '2019-12-19 15:55:28.578273+00', '2019-12-19 15:55:28.578273+00', '2020-06-06', '2020-06-12', '2020-06-13', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (223, '2019-12-19 15:55:28.581228+00', '2019-12-19 15:55:28.581228+00', '2020-06-13', '2020-06-19', '2020-06-20', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (224, '2019-12-19 15:55:28.584518+00', '2019-12-19 15:55:28.584518+00', '2020-06-20', '2020-06-26', '2020-06-27', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (225, '2019-12-19 15:55:28.587628+00', '2019-12-19 15:55:28.587628+00', '2020-06-27', '2020-07-03', '2020-07-04', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (226, '2019-12-19 15:55:28.590944+00', '2019-12-19 15:55:28.590944+00', '2020-07-04', '2020-07-10', '2020-07-11', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (227, '2019-12-19 15:55:28.593939+00', '2019-12-19 15:55:28.593939+00', '2020-07-11', '2020-07-17', '2020-07-18', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (228, '2019-12-19 15:55:28.597074+00', '2019-12-19 15:55:28.597074+00', '2020-07-18', '2020-07-24', '2020-07-25', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (242, '2019-12-22 13:28:02.663913+00', '2019-12-22 13:28:02.663913+00', '2019-10-07', '2020-01-03', '2020-01-04', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (243, '2019-12-22 13:28:02.667578+00', '2019-12-22 13:28:02.667578+00', '2020-01-04', '2020-01-10', '2020-01-11', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (244, '2019-12-22 13:28:02.670705+00', '2019-12-22 13:28:02.670705+00', '2020-01-11', '2020-01-17', '2020-01-18', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (245, '2019-12-22 13:28:02.673785+00', '2019-12-22 13:28:02.673785+00', '2020-01-18', '2020-01-24', '2020-01-25', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (246, '2019-12-22 13:28:02.676944+00', '2019-12-22 13:28:02.676944+00', '2020-01-25', '2020-01-31', '2020-02-01', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (247, '2019-12-22 13:28:02.67999+00', '2019-12-22 13:28:02.67999+00', '2020-02-01', '2020-02-07', '2020-02-08', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (248, '2019-12-22 13:28:02.683337+00', '2019-12-22 13:28:02.683337+00', '2020-02-08', '2020-02-14', '2020-02-15', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (249, '2019-12-22 13:28:02.68652+00', '2019-12-22 13:28:02.68652+00', '2020-02-15', '2020-02-21', '2020-02-22', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (250, '2019-12-22 13:28:02.689904+00', '2019-12-22 13:28:02.689904+00', '2020-02-22', '2020-02-28', '2020-02-29', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (229, '2019-12-19 15:55:28.600627+00', '2019-12-19 15:55:28.600627+00', '2020-07-25', '2020-07-31', '2020-08-01', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (230, '2019-12-19 15:55:28.603983+00', '2019-12-19 15:55:28.603983+00', '2020-08-01', '2020-08-07', '2020-08-08', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (231, '2019-12-19 15:55:28.606999+00', '2019-12-19 15:55:28.606999+00', '2020-08-08', '2020-08-14', '2020-08-15', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (232, '2019-12-19 15:55:28.609947+00', '2019-12-19 15:55:28.609947+00', '2020-08-15', '2020-08-21', '2020-08-22', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (233, '2019-12-19 15:55:28.613621+00', '2019-12-19 15:55:28.613621+00', '2020-08-22', '2020-08-28', '2020-08-29', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (234, '2019-12-19 15:55:28.617209+00', '2019-12-19 15:55:28.617209+00', '2020-08-29', '2020-09-04', '2020-09-05', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (235, '2019-12-19 15:55:28.620569+00', '2019-12-19 15:55:28.620569+00', '2020-09-05', '2020-09-11', '2020-09-12', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (236, '2019-12-19 15:55:28.623896+00', '2019-12-19 15:55:28.623896+00', '2020-09-12', '2020-09-18', '2020-09-19', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (237, '2019-12-19 15:55:28.627226+00', '2019-12-19 15:55:28.627226+00', '2020-09-19', '2020-09-25', '2020-09-26', 'HR', 102); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (251, '2019-12-22 13:28:02.692871+00', '2019-12-22 13:28:02.692871+00', '2020-02-29', '2020-03-06', '2020-03-07', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (252, '2019-12-22 13:28:02.69594+00', '2019-12-22 13:28:02.69594+00', '2020-03-07', '2020-03-13', '2020-03-14', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (253, '2019-12-22 13:28:02.698938+00', '2019-12-22 13:28:02.698938+00', '2020-03-14', '2020-03-20', '2020-03-21', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (254, '2019-12-22 13:28:02.701971+00', '2019-12-22 13:28:02.701971+00', '2020-03-21', '2020-03-27', '2020-03-28', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (255, '2019-12-22 13:28:02.705082+00', '2019-12-22 13:28:02.705082+00', '2020-03-28', '2020-04-03', '2020-04-04', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (256, '2019-12-22 13:28:02.708532+00', '2019-12-22 13:28:02.708532+00', '2020-04-04', '2020-04-10', '2020-04-11', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (257, '2019-12-22 13:28:02.712105+00', '2019-12-22 13:28:02.712105+00', '2020-04-11', '2020-04-17', '2020-04-18', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (258, '2019-12-22 13:28:02.715083+00', '2019-12-22 13:28:02.715083+00', '2020-04-18', '2020-04-24', '2020-04-25', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (259, '2019-12-22 13:28:02.717964+00', '2019-12-22 13:28:02.717964+00', '2020-04-25', '2020-05-01', '2020-05-02', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (260, '2019-12-22 13:28:02.720914+00', '2019-12-22 13:28:02.720914+00', '2020-05-02', '2020-05-08', '2020-05-09', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (261, '2019-12-22 13:28:02.724091+00', '2019-12-22 13:28:02.724091+00', '2020-05-09', '2020-05-15', '2020-05-16', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (262, '2019-12-22 13:28:02.727116+00', '2019-12-22 13:28:02.727116+00', '2020-05-16', '2020-05-22', '2020-05-23', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (263, '2019-12-22 13:28:02.73034+00', '2019-12-22 13:28:02.73034+00', '2020-05-23', '2020-05-29', '2020-05-30', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (264, '2019-12-22 13:28:02.73368+00', '2019-12-22 13:28:02.73368+00', '2020-05-30', '2020-06-05', '2020-06-06', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (265, '2019-12-22 13:28:02.736888+00', '2019-12-22 13:28:02.736888+00', '2020-06-06', '2020-06-12', '2020-06-13', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (266, '2019-12-22 13:28:02.74+00', '2019-12-22 13:28:02.74+00', '2020-06-13', '2020-06-19', '2020-06-20', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (267, '2019-12-22 13:28:02.743179+00', '2019-12-22 13:28:02.743179+00', '2020-06-20', '2020-06-26', '2020-06-27', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (268, '2019-12-22 13:28:02.746222+00', '2019-12-22 13:28:02.746222+00', '2020-06-27', '2020-07-03', '2020-07-04', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (269, '2019-12-22 13:28:02.749616+00', '2019-12-22 13:28:02.749616+00', '2020-07-04', '2020-07-10', '2020-07-11', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (270, '2019-12-22 13:28:02.752755+00', '2019-12-22 13:28:02.752755+00', '2020-07-11', '2020-07-17', '2020-07-18', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (271, '2019-12-22 13:28:02.75757+00', '2019-12-22 13:28:02.75757+00', '2020-07-18', '2020-07-24', '2020-07-25', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (272, '2019-12-22 13:28:02.760893+00', '2019-12-22 13:28:02.760893+00', '2020-07-25', '2020-07-31', '2020-08-01', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (273, '2019-12-22 13:28:02.763967+00', '2019-12-22 13:28:02.763967+00', '2020-08-01', '2020-08-07', '2020-08-08', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (274, '2019-12-22 13:28:02.766951+00', '2019-12-22 13:28:02.766951+00', '2020-08-08', '2020-08-14', '2020-08-15', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (275, '2019-12-22 13:28:02.770258+00', '2019-12-22 13:28:02.770258+00', '2020-08-15', '2020-08-21', '2020-08-22', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (276, '2019-12-22 13:28:02.773888+00', '2019-12-22 13:28:02.773888+00', '2020-08-22', '2020-08-28', '2020-08-29', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (277, '2019-12-22 13:28:02.777753+00', '2019-12-22 13:28:02.777753+00', '2020-08-29', '2020-09-04', '2020-09-05', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (278, '2019-12-22 13:28:02.781884+00', '2019-12-22 13:28:02.781884+00', '2020-09-05', '2020-09-11', '2020-09-12', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (279, '2019-12-22 13:28:02.784914+00', '2019-12-22 13:28:02.784914+00', '2020-09-12', '2020-09-18', '2020-09-19', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (280, '2019-12-22 13:28:02.78798+00', '2019-12-22 13:28:02.78798+00', '2020-09-19', '2020-09-25', '2020-09-26', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (281, '2019-12-22 13:28:02.791012+00', '2019-12-22 13:28:02.791012+00', '2020-09-26', '2020-10-02', '2020-10-03', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (282, '2019-12-22 13:28:02.793867+00', '2019-12-22 13:28:02.793867+00', '2020-10-03', '2020-10-07', '2020-10-08', 'HR', 103); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (284, '2019-12-22 15:06:47.787208+00', '2019-12-22 15:06:47.787208+00', '2019-04-09', '2020-01-03', '2020-01-04', 'HR', 100); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (285, '2019-12-22 15:06:47.790677+00', '2019-12-22 15:06:47.790677+00', '2020-01-04', '2020-01-10', '2020-01-11', 'HR', 100); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (286, '2019-12-22 15:06:47.794231+00', '2019-12-22 15:06:47.794231+00', '2020-01-11', '2020-01-17', '2020-01-18', 'HR', 100); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (287, '2019-12-22 15:06:47.797409+00', '2019-12-22 15:06:47.797409+00', '2020-01-18', '2020-01-24', '2020-01-25', 'HR', 100); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (288, '2019-12-22 15:06:47.800475+00', '2019-12-22 15:06:47.800475+00', '2020-01-25', '2020-01-31', '2020-02-01', 'HR', 100); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (289, '2019-12-22 15:06:47.803568+00', '2019-12-22 15:06:47.803568+00', '2020-02-01', '2020-02-07', '2020-02-08', 'HR', 100); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (290, '2019-12-22 15:06:47.806994+00', '2019-12-22 15:06:47.806994+00', '2020-02-08', '2020-02-14', '2020-02-15', 'HR', 100); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (291, '2019-12-22 15:06:47.810261+00', '2019-12-22 15:06:47.810261+00', '2020-02-15', '2020-02-21', '2020-02-22', 'HR', 100); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (292, '2019-12-22 15:06:47.813658+00', '2019-12-22 15:06:47.813658+00', '2020-02-22', '2020-02-28', '2020-02-29', 'HR', 100); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (293, '2019-12-22 15:06:47.817956+00', '2019-12-22 15:06:47.817956+00', '2020-02-29', '2020-03-06', '2020-03-07', 'HR', 100); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (294, '2019-12-22 15:06:47.821684+00', '2019-12-22 15:06:47.821684+00', '2020-03-07', '2020-03-13', '2020-03-14', 'HR', 100); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (295, '2019-12-22 15:06:47.825665+00', '2019-12-22 15:06:47.825665+00', '2020-03-14', '2020-03-20', '2020-03-21', 'HR', 100); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (296, '2019-12-22 15:06:47.829899+00', '2019-12-22 15:06:47.829899+00', '2020-03-21', '2020-03-27', '2020-03-28', 'HR', 100); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (524, '2020-03-02 13:13:02.729282+00', '2020-03-02 13:13:02.729282+00', '2019-04-15', '2019-09-30', '2020-02-03', 'QPR', 100); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (456, '2020-01-29 14:46:28.801168+00', '2020-01-29 14:46:28.801168+00', '2019-01-06', '2020-01-03', '2020-01-04', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (369, '2019-12-31 10:16:15.168699+00', '2019-12-31 10:16:15.168699+00', '2019-09-01', '2019-12-31', '2020-01-15', 'QPR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (370, '2019-12-31 10:16:15.174825+00', '2019-12-31 10:16:15.174825+00', '2020-01-01', '2020-03-31', '2020-03-31', 'QPR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (371, '2019-12-31 10:16:15.177907+00', '2019-12-31 10:16:15.177907+00', '2020-04-01', '2020-05-20', '2020-06-19', 'QPR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (525, '2020-03-25 12:33:50.246678+00', '2020-03-25 12:33:50.246678+00', '2020-05-21', '2020-09-30', '2020-10-15', 'QPR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (457, '2020-01-29 14:46:28.805794+00', '2020-01-29 14:46:28.805794+00', '2020-01-04', '2020-01-10', '2020-01-11', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (458, '2020-01-29 14:46:28.8091+00', '2020-01-29 14:46:28.8091+00', '2020-01-11', '2020-01-17', '2020-01-18', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (459, '2020-01-29 14:46:28.812159+00', '2020-01-29 14:46:28.812159+00', '2020-01-18', '2020-01-24', '2020-01-25', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (557, '2020-04-16 11:30:51.917393+00', '2020-04-16 11:30:51.917393+00', '2020-07-01', '2020-09-30', '2020-10-31', 'QPR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (558, '2020-04-16 11:30:51.920619+00', '2020-04-16 11:30:51.920619+00', '2020-10-01', '2020-12-31', '2021-01-31', 'QPR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (381, '2019-12-31 10:22:13.76018+00', '2019-12-31 10:22:13.76018+00', '2020-03-01', '2020-03-07', '2020-03-08', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (382, '2019-12-31 10:22:13.764023+00', '2019-12-31 10:22:13.764023+00', '2020-03-08', '2020-03-14', '2020-03-15', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (383, '2019-12-31 10:22:13.767368+00', '2019-12-31 10:22:13.767368+00', '2020-03-15', '2020-03-21', '2020-03-22', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (398, '2020-01-03 14:07:08.187037+00', '2020-01-03 14:07:08.187037+00', '2019-12-04', '2019-12-06', '2019-12-07', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (399, '2020-01-03 14:07:08.191398+00', '2020-01-03 14:07:08.191398+00', '2019-12-07', '2019-12-13', '2019-12-14', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (297, '2019-12-29 08:48:50.872829+00', '2019-12-29 08:48:50.872829+00', '2019-05-20', '2020-01-03', '2020-01-04', 'HR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (298, '2019-12-29 08:49:57.867767+00', '2019-12-29 08:49:57.867767+00', '2020-01-10', '2020-01-17', '2020-01-18', 'HR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (299, '2019-12-29 08:49:57.873654+00', '2019-12-29 08:49:57.873654+00', '2020-01-18', '2020-01-24', '2020-01-25', 'HR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (300, '2019-12-29 08:49:57.877775+00', '2019-12-29 08:49:57.877775+00', '2020-01-25', '2020-01-31', '2020-02-01', 'HR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (301, '2019-12-29 08:49:57.88144+00', '2019-12-29 08:49:57.88144+00', '2020-02-01', '2020-02-07', '2020-02-08', 'HR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (302, '2019-12-29 08:49:57.885299+00', '2019-12-29 08:49:57.885299+00', '2020-02-08', '2020-02-14', '2020-02-15', 'HR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (303, '2019-12-29 08:49:57.889854+00', '2019-12-29 08:49:57.889854+00', '2020-02-15', '2020-02-21', '2020-02-22', 'HR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (304, '2019-12-29 08:49:57.893824+00', '2019-12-29 08:49:57.893824+00', '2020-02-22', '2020-02-28', '2020-02-29', 'HR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (305, '2019-12-29 08:49:57.897647+00', '2019-12-29 08:49:57.897647+00', '2020-02-29', '2020-03-06', '2020-03-07', 'HR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (306, '2019-12-29 08:49:57.901824+00', '2019-12-29 08:49:57.901824+00', '2020-03-07', '2020-03-13', '2020-03-14', 'HR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (307, '2019-12-29 08:49:57.905208+00', '2019-12-29 08:49:57.905208+00', '2020-03-14', '2020-03-20', '2020-03-21', 'HR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (400, '2020-01-03 14:07:08.195979+00', '2020-01-03 14:07:08.195979+00', '2019-12-14', '2019-12-20', '2019-12-21', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (612, '2020-04-16 15:47:24.67999+00', '2020-04-16 15:47:24.67999+00', '2020-05-01', '2020-05-07', '2020-05-08', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (613, '2020-04-16 15:47:24.683535+00', '2020-04-16 15:47:24.683535+00', '2020-05-08', '2020-05-14', '2020-05-15', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (614, '2020-04-16 15:47:24.686757+00', '2020-04-16 15:47:24.686757+00', '2020-05-15', '2020-05-21', '2020-05-22', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (615, '2020-04-16 15:47:24.690095+00', '2020-04-16 15:47:24.690095+00', '2020-05-22', '2020-05-28', '2020-05-29', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (651, '2020-04-18 21:04:52.915192+00', '2020-04-18 21:04:52.915192+00', '2020-11-27', '2020-12-03', '2020-12-04', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (652, '2020-04-18 21:04:52.919463+00', '2020-04-18 21:04:52.919463+00', '2020-12-04', '2020-12-10', '2020-12-11', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (653, '2020-04-18 21:04:52.922322+00', '2020-04-18 21:04:52.922322+00', '2020-12-11', '2020-12-17', '2020-12-18', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (308, '2019-12-29 08:49:57.909705+00', '2019-12-29 08:49:57.909705+00', '2020-03-21', '2020-03-27', '2020-03-28', 'HR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (309, '2019-12-29 08:49:57.913308+00', '2019-12-29 08:49:57.913308+00', '2020-03-28', '2020-04-03', '2020-04-04', 'HR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (310, '2019-12-29 08:49:57.917019+00', '2019-12-29 08:49:57.917019+00', '2020-04-04', '2020-04-10', '2020-04-11', 'HR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (311, '2019-12-29 08:49:57.920891+00', '2019-12-29 08:49:57.920891+00', '2020-04-11', '2020-04-17', '2020-04-18', 'HR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (312, '2019-12-29 08:49:57.925119+00', '2019-12-29 08:49:57.925119+00', '2020-04-18', '2020-04-24', '2020-04-25', 'HR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (313, '2019-12-29 08:49:57.928842+00', '2019-12-29 08:49:57.928842+00', '2020-04-25', '2020-05-01', '2020-05-02', 'HR', 90); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (314, '2019-12-29 12:58:36.746479+00', '2019-12-29 12:58:36.746479+00', '2019-06-24', '2019-09-30', '2019-10-30', 'QPR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (315, '2019-12-29 12:58:36.751461+00', '2019-12-29 12:58:36.751461+00', '2019-10-01', '2019-12-31', '2020-01-30', 'QPR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (316, '2019-12-29 12:58:36.754741+00', '2019-12-29 12:58:36.754741+00', '2020-01-01', '2020-03-31', '2020-04-30', 'QPR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (317, '2019-12-29 12:58:36.757676+00', '2019-12-29 12:58:36.757676+00', '2020-04-01', '2020-06-24', '2020-07-24', 'QPR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (318, '2019-12-29 13:15:45.631548+00', '2019-12-29 13:15:45.631548+00', '2019-06-24', '2020-01-03', '2020-01-04', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (319, '2019-12-29 13:15:45.635321+00', '2019-12-29 13:15:45.635321+00', '2020-01-04', '2020-01-10', '2020-01-11', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (320, '2019-12-29 13:15:45.638321+00', '2019-12-29 13:15:45.638321+00', '2020-01-11', '2020-01-17', '2020-01-18', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (321, '2019-12-29 13:15:45.641406+00', '2019-12-29 13:15:45.641406+00', '2020-01-18', '2020-01-24', '2020-01-25', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (322, '2019-12-29 13:15:45.645562+00', '2019-12-29 13:15:45.645562+00', '2020-01-25', '2020-01-31', '2020-02-01', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (323, '2019-12-29 13:15:45.651103+00', '2019-12-29 13:15:45.651103+00', '2020-02-01', '2020-02-07', '2020-02-08', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (324, '2019-12-29 13:15:45.654261+00', '2019-12-29 13:15:45.654261+00', '2020-02-08', '2020-02-14', '2020-02-15', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (325, '2019-12-29 13:15:45.657445+00', '2019-12-29 13:15:45.657445+00', '2020-02-15', '2020-02-21', '2020-02-22', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (326, '2019-12-29 13:15:45.661929+00', '2019-12-29 13:15:45.661929+00', '2020-02-22', '2020-02-28', '2020-02-29', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (327, '2019-12-29 13:15:45.668764+00', '2019-12-29 13:15:45.668764+00', '2020-02-29', '2020-03-06', '2020-03-07', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (328, '2019-12-29 13:15:45.672018+00', '2019-12-29 13:15:45.672018+00', '2020-03-07', '2020-03-13', '2020-03-14', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (329, '2019-12-29 13:15:45.675566+00', '2019-12-29 13:15:45.675566+00', '2020-03-14', '2020-03-20', '2020-03-21', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (330, '2019-12-29 13:15:45.67882+00', '2019-12-29 13:15:45.67882+00', '2020-03-21', '2020-03-27', '2020-03-28', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (331, '2019-12-29 13:15:45.682196+00', '2019-12-29 13:15:45.682196+00', '2020-03-28', '2020-04-03', '2020-04-04', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (332, '2019-12-29 13:15:45.685382+00', '2019-12-29 13:15:45.685382+00', '2020-04-04', '2020-04-10', '2020-04-11', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (333, '2019-12-29 13:15:45.688498+00', '2019-12-29 13:15:45.688498+00', '2020-04-11', '2020-04-17', '2020-04-18', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (334, '2019-12-29 13:15:45.691905+00', '2019-12-29 13:15:45.691905+00', '2020-04-18', '2020-04-24', '2020-04-25', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (335, '2019-12-29 13:15:45.69552+00', '2019-12-29 13:15:45.69552+00', '2020-04-25', '2020-05-01', '2020-05-02', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (336, '2019-12-29 13:15:45.698783+00', '2019-12-29 13:15:45.698783+00', '2020-05-02', '2020-05-08', '2020-05-09', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (337, '2019-12-29 13:15:45.702424+00', '2019-12-29 13:15:45.702424+00', '2020-05-09', '2020-05-15', '2020-05-16', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (338, '2019-12-29 13:15:45.70594+00', '2019-12-29 13:15:45.70594+00', '2020-05-16', '2020-05-22', '2020-05-23', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (339, '2019-12-29 13:15:45.711213+00', '2019-12-29 13:15:45.711213+00', '2020-05-23', '2020-05-29', '2020-05-30', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (340, '2019-12-29 13:15:45.714417+00', '2019-12-29 13:15:45.714417+00', '2020-05-30', '2020-06-05', '2020-06-06', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (341, '2019-12-29 13:15:45.718173+00', '2019-12-29 13:15:45.718173+00', '2020-06-06', '2020-06-12', '2020-06-13', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (342, '2019-12-29 13:15:45.721583+00', '2019-12-29 13:15:45.721583+00', '2020-06-13', '2020-06-19', '2020-06-20', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (343, '2019-12-29 13:15:45.724555+00', '2019-12-29 13:15:45.724555+00', '2020-06-20', '2020-06-26', '2020-06-27', 'HR', 92); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (344, '2019-12-29 13:17:12.453129+00', '2019-12-29 13:17:12.453129+00', '2019-05-20', '2019-08-31', '2019-09-30', 'QPR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (345, '2019-12-29 13:17:12.457397+00', '2019-12-29 13:17:12.457397+00', '2019-09-01', '2019-11-30', '2019-12-30', 'QPR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (346, '2019-12-29 13:17:12.4611+00', '2019-12-29 13:17:12.4611+00', '2019-12-01', '2020-02-29', '2020-03-30', 'QPR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (347, '2019-12-29 13:17:12.464452+00', '2019-12-29 13:17:12.464452+00', '2020-03-01', '2020-05-20', '2020-06-19', 'QPR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (348, '2019-12-29 13:59:21.750319+00', '2019-12-29 13:59:21.750319+00', '2019-05-20', '2020-01-03', '2020-01-04', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (349, '2019-12-29 13:59:21.754706+00', '2019-12-29 13:59:21.754706+00', '2020-01-04', '2020-01-10', '2020-01-11', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (350, '2019-12-29 13:59:21.759126+00', '2019-12-29 13:59:21.759126+00', '2020-01-11', '2020-01-17', '2020-01-18', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (351, '2019-12-29 13:59:21.762601+00', '2019-12-29 13:59:21.762601+00', '2020-01-18', '2020-01-24', '2020-01-25', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (352, '2019-12-29 13:59:21.765926+00', '2019-12-29 13:59:21.765926+00', '2020-01-25', '2020-01-31', '2020-02-01', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (353, '2019-12-29 13:59:21.769664+00', '2019-12-29 13:59:21.769664+00', '2020-02-01', '2020-02-07', '2020-02-08', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (354, '2019-12-29 13:59:21.77321+00', '2019-12-29 13:59:21.77321+00', '2020-02-08', '2020-02-14', '2020-02-15', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (355, '2019-12-29 13:59:21.777732+00', '2019-12-29 13:59:21.777732+00', '2020-02-15', '2020-02-21', '2020-02-22', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (356, '2019-12-29 13:59:21.781744+00', '2019-12-29 13:59:21.781744+00', '2020-02-22', '2020-02-28', '2020-02-29', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (357, '2019-12-29 13:59:21.785642+00', '2019-12-29 13:59:21.785642+00', '2020-02-29', '2020-03-06', '2020-03-07', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (358, '2019-12-29 13:59:21.789264+00', '2019-12-29 13:59:21.789264+00', '2020-03-07', '2020-03-13', '2020-03-14', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (359, '2019-12-29 13:59:21.792626+00', '2019-12-29 13:59:21.792626+00', '2020-03-14', '2020-03-20', '2020-03-21', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (360, '2019-12-29 13:59:21.79612+00', '2019-12-29 13:59:21.79612+00', '2020-03-21', '2020-03-27', '2020-03-28', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (361, '2019-12-29 13:59:21.80005+00', '2019-12-29 13:59:21.80005+00', '2020-03-28', '2020-04-03', '2020-04-04', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (362, '2019-12-29 13:59:21.803659+00', '2019-12-29 13:59:21.803659+00', '2020-04-04', '2020-04-10', '2020-04-11', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (363, '2019-12-29 13:59:21.807652+00', '2019-12-29 13:59:21.807652+00', '2020-04-11', '2020-04-17', '2020-04-18', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (364, '2019-12-29 13:59:21.811341+00', '2019-12-29 13:59:21.811341+00', '2020-04-18', '2020-04-24', '2020-04-25', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (365, '2019-12-29 13:59:21.820796+00', '2019-12-29 13:59:21.820796+00', '2020-04-25', '2020-05-01', '2020-05-02', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (366, '2019-12-29 13:59:21.824783+00', '2019-12-29 13:59:21.824783+00', '2020-05-02', '2020-05-08', '2020-05-09', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (367, '2019-12-29 13:59:21.828485+00', '2019-12-29 13:59:21.828485+00', '2020-05-09', '2020-05-15', '2020-05-16', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (368, '2019-12-29 13:59:21.832042+00', '2019-12-29 13:59:21.832042+00', '2020-05-16', '2020-05-22', '2020-05-23', 'HR', 94); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (401, '2020-01-03 14:07:08.199572+00', '2020-01-03 14:07:08.199572+00', '2019-12-21', '2019-12-27', '2019-12-28', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (402, '2020-01-03 14:07:08.203041+00', '2020-01-03 14:07:08.203041+00', '2019-12-28', '2020-01-03', '2020-01-04', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (403, '2020-01-03 14:07:08.20641+00', '2020-01-03 14:07:08.20641+00', '2020-01-04', '2020-01-10', '2020-01-11', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (404, '2020-01-03 14:07:08.210378+00', '2020-01-03 14:07:08.210378+00', '2020-01-11', '2020-01-24', '2020-01-25', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (405, '2020-01-03 14:07:08.214023+00', '2020-01-03 14:07:08.214023+00', '2020-01-25', '2020-01-31', '2020-02-01', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (406, '2020-01-03 14:09:05.295786+00', '2020-01-03 14:09:05.295786+00', '2020-02-01', '2020-02-07', '2020-02-08', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (407, '2020-01-03 14:09:05.299608+00', '2020-01-03 14:09:05.299608+00', '2020-02-08', '2020-02-14', '2020-02-15', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (408, '2020-01-03 14:09:05.303044+00', '2020-01-03 14:09:05.303044+00', '2020-02-15', '2020-02-21', '2020-02-22', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (409, '2020-01-03 14:09:05.306536+00', '2020-01-03 14:09:05.306536+00', '2020-02-22', '2020-02-28', '2020-02-29', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (410, '2020-01-03 14:09:05.309917+00', '2020-01-03 14:09:05.309917+00', '2020-02-29', '2020-03-06', '2020-03-07', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (411, '2020-01-03 14:09:05.314918+00', '2020-01-03 14:09:05.314918+00', '2020-03-07', '2020-03-13', '2020-03-14', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (412, '2020-01-03 14:09:05.31824+00', '2020-01-03 14:09:05.31824+00', '2020-03-14', '2020-03-20', '2020-03-21', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (413, '2020-01-03 14:09:05.32175+00', '2020-01-03 14:09:05.32175+00', '2020-03-21', '2020-03-27', '2020-03-28', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (414, '2020-01-03 14:09:05.325111+00', '2020-01-03 14:09:05.325111+00', '2020-03-28', '2020-04-03', '2020-04-04', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (415, '2020-01-03 14:09:05.32858+00', '2020-01-03 14:09:05.32858+00', '2020-04-04', '2020-04-10', '2020-04-11', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (416, '2020-01-03 14:09:05.331837+00', '2020-01-03 14:09:05.331837+00', '2020-04-11', '2020-04-17', '2020-04-18', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (417, '2020-01-03 14:09:05.335313+00', '2020-01-03 14:09:05.335313+00', '2020-04-18', '2020-04-24', '2020-04-25', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (418, '2020-01-03 14:09:05.338746+00', '2020-01-03 14:09:05.338746+00', '2020-04-25', '2020-05-01', '2020-05-02', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (419, '2020-01-03 14:09:05.342409+00', '2020-01-03 14:09:05.342409+00', '2020-05-02', '2020-05-08', '2020-05-09', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (420, '2020-01-03 14:09:05.346087+00', '2020-01-03 14:09:05.346087+00', '2020-05-09', '2020-05-15', '2020-05-16', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (421, '2020-01-03 14:09:05.351177+00', '2020-01-03 14:09:05.351177+00', '2020-05-16', '2020-05-22', '2020-05-23', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (422, '2020-01-03 14:09:05.354612+00', '2020-01-03 14:09:05.354612+00', '2020-05-23', '2020-05-29', '2020-05-30', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (423, '2020-01-03 14:09:05.358365+00', '2020-01-03 14:09:05.358365+00', '2020-05-30', '2020-06-05', '2020-06-06', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (424, '2020-01-03 14:09:05.362125+00', '2020-01-03 14:09:05.362125+00', '2020-06-06', '2020-06-12', '2020-06-13', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (425, '2020-01-03 14:09:05.365217+00', '2020-01-03 14:09:05.365217+00', '2020-06-13', '2020-06-19', '2020-06-20', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (426, '2020-01-03 14:09:05.368754+00', '2020-01-03 14:09:05.368754+00', '2020-06-20', '2020-06-26', '2020-06-27', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (427, '2020-01-03 14:09:05.372255+00', '2020-01-03 14:09:05.372255+00', '2020-06-27', '2020-07-03', '2020-07-04', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (428, '2020-01-03 14:09:05.37649+00', '2020-01-03 14:09:05.37649+00', '2020-07-04', '2020-07-10', '2020-07-11', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (429, '2020-01-03 14:09:05.379954+00', '2020-01-03 14:09:05.379954+00', '2020-07-11', '2020-07-17', '2020-07-18', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (430, '2020-01-03 14:09:05.383695+00', '2020-01-03 14:09:05.383695+00', '2020-07-18', '2020-07-24', '2020-07-25', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (431, '2020-01-03 14:09:05.387706+00', '2020-01-03 14:09:05.387706+00', '2020-07-25', '2020-07-31', '2020-08-01', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (432, '2020-01-03 14:09:05.391856+00', '2020-01-03 14:09:05.391856+00', '2020-08-01', '2020-08-07', '2020-08-08', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (433, '2020-01-03 14:09:05.395197+00', '2020-01-03 14:09:05.395197+00', '2020-08-08', '2020-08-14', '2020-08-15', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (434, '2020-01-03 14:09:05.398624+00', '2020-01-03 14:09:05.398624+00', '2020-08-15', '2020-08-21', '2020-08-22', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (435, '2020-01-03 14:09:05.403043+00', '2020-01-03 14:09:05.403043+00', '2020-08-22', '2020-08-28', '2020-08-29', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (446, '2020-01-03 14:09:05.444668+00', '2020-01-03 14:09:05.444668+00', '2020-11-07', '2020-11-13', '2020-11-14', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (447, '2020-01-03 14:09:05.448308+00', '2020-01-03 14:09:05.448308+00', '2020-11-14', '2020-11-20', '2020-11-21', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (448, '2020-01-03 14:09:05.452433+00', '2020-01-03 14:09:05.452433+00', '2020-11-21', '2020-11-27', '2020-11-28', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (449, '2020-01-03 14:09:05.455721+00', '2020-01-03 14:09:05.455721+00', '2020-11-28', '2020-12-04', '2020-12-05', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (450, '2020-01-03 14:09:05.460171+00', '2020-01-03 14:09:05.460171+00', '2020-12-05', '2020-12-11', '2020-12-12', 'HR', 107); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (460, '2020-01-29 14:46:28.815357+00', '2020-01-29 14:46:28.815357+00', '2020-01-25', '2020-01-31', '2020-02-01', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (461, '2020-01-29 14:46:28.818558+00', '2020-01-29 14:46:28.818558+00', '2020-02-01', '2020-02-07', '2020-02-08', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (462, '2020-01-29 14:46:28.821974+00', '2020-01-29 14:46:28.821974+00', '2020-02-08', '2020-02-14', '2020-02-15', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (463, '2020-01-29 14:46:28.825009+00', '2020-01-29 14:46:28.825009+00', '2020-02-15', '2020-02-21', '2020-02-22', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (464, '2020-01-29 14:46:28.828346+00', '2020-01-29 14:46:28.828346+00', '2020-02-22', '2020-02-28', '2020-02-29', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (477, '2020-02-03 12:22:09.717834+00', '2020-02-03 12:22:09.717834+00', '2020-01-04', '2020-01-10', '2020-01-11', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (478, '2020-02-03 12:22:09.721746+00', '2020-02-03 12:22:09.721746+00', '2020-01-11', '2020-01-17', '2020-01-18', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (479, '2020-02-03 12:22:09.725623+00', '2020-02-03 12:22:09.725623+00', '2020-01-18', '2020-01-24', '2020-01-25', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (480, '2020-02-03 12:22:09.728573+00', '2020-02-03 12:22:09.728573+00', '2020-01-25', '2020-01-31', '2020-02-01', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (481, '2020-02-03 12:22:09.73166+00', '2020-02-03 12:22:09.73166+00', '2020-02-01', '2020-02-07', '2020-02-08', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (482, '2020-02-03 12:22:09.73494+00', '2020-02-03 12:22:09.73494+00', '2020-02-08', '2020-02-14', '2020-02-15', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (483, '2020-02-03 12:22:09.738246+00', '2020-02-03 12:22:09.738246+00', '2020-02-15', '2020-02-21', '2020-02-22', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (484, '2020-02-03 12:22:09.741886+00', '2020-02-03 12:22:09.741886+00', '2020-02-22', '2020-02-28', '2020-02-29', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (485, '2020-02-03 12:22:09.745403+00', '2020-02-03 12:22:09.745403+00', '2020-02-29', '2020-03-06', '2020-03-07', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (486, '2020-02-03 12:22:09.748696+00', '2020-02-03 12:22:09.748696+00', '2020-03-07', '2020-03-13', '2020-03-14', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (487, '2020-02-03 12:22:09.752171+00', '2020-02-03 12:22:09.752171+00', '2020-03-14', '2020-03-20', '2020-03-21', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (488, '2020-02-03 12:22:09.755435+00', '2020-02-03 12:22:09.755435+00', '2020-03-21', '2020-03-27', '2020-03-28', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (489, '2020-02-03 12:22:09.758528+00', '2020-02-03 12:22:09.758528+00', '2020-03-28', '2020-04-03', '2020-04-04', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (490, '2020-02-03 12:22:09.761494+00', '2020-02-03 12:22:09.761494+00', '2020-04-04', '2020-04-10', '2020-04-11', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (491, '2020-02-03 12:22:09.764786+00', '2020-02-03 12:22:09.764786+00', '2020-04-11', '2020-04-17', '2020-04-18', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (492, '2020-02-03 12:22:09.76789+00', '2020-02-03 12:22:09.76789+00', '2020-04-18', '2020-04-24', '2020-04-25', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (493, '2020-02-03 12:22:09.771059+00', '2020-02-03 12:22:09.771059+00', '2020-04-25', '2020-05-01', '2020-05-02', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (494, '2020-02-03 12:22:09.774394+00', '2020-02-03 12:22:09.774394+00', '2020-05-02', '2020-05-08', '2020-05-09', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (495, '2020-02-03 12:22:09.777985+00', '2020-02-03 12:22:09.777985+00', '2020-05-09', '2020-05-15', '2020-05-16', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (496, '2020-02-03 12:22:09.781316+00', '2020-02-03 12:22:09.781316+00', '2020-05-16', '2020-05-22', '2020-05-23', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (497, '2020-02-03 12:22:09.787869+00', '2020-02-03 12:22:09.787869+00', '2020-05-23', '2020-05-29', '2020-05-30', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (498, '2020-02-03 12:22:09.791356+00', '2020-02-03 12:22:09.791356+00', '2020-05-30', '2020-06-05', '2020-06-06', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (499, '2020-02-03 12:22:09.794526+00', '2020-02-03 12:22:09.794526+00', '2020-06-06', '2020-06-12', '2020-06-13', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (500, '2020-02-03 12:22:09.798221+00', '2020-02-03 12:22:09.798221+00', '2020-06-13', '2020-06-19', '2020-06-20', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (501, '2020-02-03 12:22:09.801561+00', '2020-02-03 12:22:09.801561+00', '2020-06-20', '2020-06-26', '2020-06-27', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (502, '2020-02-03 12:22:09.804694+00', '2020-02-03 12:22:09.804694+00', '2020-06-27', '2020-07-03', '2020-07-04', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (503, '2020-02-03 12:22:09.807745+00', '2020-02-03 12:22:09.807745+00', '2020-07-04', '2020-07-17', '2020-07-18', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (504, '2020-02-03 12:22:09.810802+00', '2020-02-03 12:22:09.810802+00', '2020-07-18', '2020-07-24', '2020-07-25', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (505, '2020-02-03 12:22:09.814108+00', '2020-02-03 12:22:09.814108+00', '2020-07-25', '2020-07-31', '2020-08-01', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (506, '2020-02-03 12:22:09.817313+00', '2020-02-03 12:22:09.817313+00', '2020-08-01', '2020-08-07', '2020-08-08', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (507, '2020-02-03 12:22:09.820465+00', '2020-02-03 12:22:09.820465+00', '2020-08-08', '2020-08-14', '2020-08-15', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (508, '2020-02-03 12:22:09.823547+00', '2020-02-03 12:22:09.823547+00', '2020-08-15', '2020-08-21', '2020-08-22', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (509, '2020-02-03 12:22:09.826569+00', '2020-02-03 12:22:09.826569+00', '2020-08-22', '2020-08-28', '2020-08-29', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (510, '2020-02-03 12:22:09.829886+00', '2020-02-03 12:22:09.829886+00', '2020-08-29', '2020-09-04', '2020-09-05', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (511, '2020-02-03 12:22:09.832915+00', '2020-02-03 12:22:09.832915+00', '2020-09-05', '2020-09-11', '2020-09-12', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (512, '2020-02-03 12:22:09.835967+00', '2020-02-03 12:22:09.835967+00', '2020-09-12', '2020-09-18', '2020-09-19', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (513, '2020-02-03 12:22:09.839167+00', '2020-02-03 12:22:09.839167+00', '2020-09-19', '2020-09-25', '2020-09-26', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (514, '2020-02-03 12:22:09.842541+00', '2020-02-03 12:22:09.842541+00', '2020-09-26', '2020-10-02', '2020-10-03', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (515, '2020-02-03 12:22:09.846042+00', '2020-02-03 12:22:09.846042+00', '2020-10-03', '2020-10-09', '2020-10-10', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (516, '2020-02-03 12:22:09.84901+00', '2020-02-03 12:22:09.84901+00', '2020-10-10', '2020-10-16', '2020-10-17', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (517, '2020-02-03 12:22:09.85251+00', '2020-02-03 12:22:09.85251+00', '2020-10-17', '2020-10-23', '2020-10-24', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (518, '2020-02-03 12:22:09.855992+00', '2020-02-03 12:22:09.855992+00', '2020-10-24', '2020-10-30', '2020-10-31', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (519, '2020-02-03 12:22:09.859303+00', '2020-02-03 12:22:09.859303+00', '2020-10-31', '2020-11-06', '2020-11-07', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (520, '2020-02-03 12:22:09.862364+00', '2020-02-03 12:22:09.862364+00', '2020-11-07', '2020-11-13', '2020-11-14', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (521, '2020-02-03 12:22:09.865355+00', '2020-02-03 12:22:09.865355+00', '2020-11-14', '2020-11-20', '2020-11-21', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (522, '2020-02-03 12:22:09.869053+00', '2020-02-03 12:22:09.869053+00', '2020-11-21', '2020-11-27', '2020-11-28', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (523, '2020-02-03 12:22:09.872383+00', '2020-02-03 12:22:09.872383+00', '2020-11-28', '2020-12-04', '2020-12-05', 'HR', 106); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (470, '2020-01-29 14:51:51.548034+00', '2020-01-29 14:51:51.548034+00', '2019-01-06', '2019-03-31', '2019-04-30', 'QPR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (471, '2020-01-29 14:51:51.552146+00', '2020-01-29 14:51:51.552146+00', '2019-04-01', '2019-06-30', '2019-07-30', 'QPR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (472, '2020-01-29 14:51:51.555184+00', '2020-01-29 14:51:51.555184+00', '2019-07-01', '2019-09-30', '2019-10-30', 'QPR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (473, '2020-01-29 14:51:51.558192+00', '2020-01-29 14:51:51.558192+00', '2019-10-01', '2019-12-31', '2020-01-30', 'QPR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (474, '2020-01-29 14:51:51.561818+00', '2020-01-29 14:51:51.561818+00', '2020-01-01', '2020-03-31', '2020-04-30', 'QPR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (465, '2020-01-29 14:46:28.831595+00', '2020-01-29 14:46:28.831595+00', '2020-02-29', '2020-03-06', '2020-03-07', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (466, '2020-01-29 14:46:28.835016+00', '2020-01-29 14:46:28.835016+00', '2020-03-07', '2020-03-13', '2020-03-14', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (467, '2020-01-29 14:46:28.838327+00', '2020-01-29 14:46:28.838327+00', '2020-03-14', '2020-03-20', '2020-03-21', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (468, '2020-01-29 14:46:28.841262+00', '2020-01-29 14:46:28.841262+00', '2020-03-21', '2020-03-27', '2020-03-28', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (469, '2020-01-29 14:46:28.844375+00', '2020-01-29 14:46:28.844375+00', '2020-03-28', '2020-04-03', '2020-04-04', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (546, '2020-04-09 08:07:45.563705+00', '2020-04-09 08:07:45.563705+00', '2020-04-04', '2020-04-10', '2020-04-11', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (283, '2019-12-22 15:05:58.459355+00', '2019-12-22 15:05:58.459355+00', '2019-10-01', '2019-12-31', '2020-01-30', 'QPR', 100); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (475, '2020-02-02 14:58:35.088881+00', '2020-02-02 14:58:35.088881+00', '2020-01-01', '2020-03-31', '2020-02-27', 'QPR', 100); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (555, '2020-04-16 11:30:51.907997+00', '2020-04-16 11:30:51.907997+00', '2020-02-03', '2020-03-31', '2020-04-30', 'QPR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (556, '2020-04-16 11:30:51.914287+00', '2020-04-16 11:30:51.914287+00', '2020-04-01', '2020-06-30', '2020-07-31', 'QPR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (372, '2019-12-31 10:22:13.728189+00', '2019-12-31 10:22:13.728189+00', '2019-05-21', '2020-01-04', '2020-01-05', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (373, '2019-12-31 10:22:13.732155+00', '2019-12-31 10:22:13.732155+00', '2020-01-05', '2020-01-11', '2020-01-12', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (374, '2019-12-31 10:22:13.737655+00', '2019-12-31 10:22:13.737655+00', '2020-01-12', '2020-01-18', '2020-01-19', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (375, '2019-12-31 10:22:13.740703+00', '2019-12-31 10:22:13.740703+00', '2020-01-19', '2020-01-25', '2020-01-26', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (376, '2019-12-31 10:22:13.743894+00', '2019-12-31 10:22:13.743894+00', '2020-01-26', '2020-02-01', '2020-02-02', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (377, '2019-12-31 10:22:13.747117+00', '2019-12-31 10:22:13.747117+00', '2020-02-02', '2020-02-08', '2020-02-09', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (378, '2019-12-31 10:22:13.750238+00', '2019-12-31 10:22:13.750238+00', '2020-02-09', '2020-02-15', '2020-02-16', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (379, '2019-12-31 10:22:13.754015+00', '2019-12-31 10:22:13.754015+00', '2020-02-16', '2020-02-22', '2020-02-23', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (380, '2019-12-31 10:22:13.757255+00', '2019-12-31 10:22:13.757255+00', '2020-02-23', '2020-02-29', '2020-03-01', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (559, '2020-04-16 14:55:54.533551+00', '2020-04-16 14:55:54.533551+00', '2020-04-01', '2020-06-30', '2020-07-30', 'QPR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (560, '2020-04-16 14:55:54.538771+00', '2020-04-16 14:55:54.538771+00', '2020-07-01', '2020-09-30', '2020-10-30', 'QPR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (561, '2020-04-16 14:55:54.542189+00', '2020-04-16 14:55:54.542189+00', '2020-10-01', '2020-12-31', '2021-01-30', 'QPR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (562, '2020-04-16 14:55:54.545866+00', '2020-04-16 14:55:54.545866+00', '2021-01-01', '2021-04-01', '2021-05-01', 'QPR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (616, '2020-04-16 15:48:34.107577+00', '2020-04-16 15:48:34.107577+00', '2020-05-29', '2020-06-04', '2020-06-05', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (617, '2020-04-16 15:48:34.111109+00', '2020-04-16 15:48:34.111109+00', '2020-06-05', '2020-06-11', '2020-06-12', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (618, '2020-04-16 15:48:34.114267+00', '2020-04-16 15:48:34.114267+00', '2020-06-12', '2020-06-18', '2020-06-19', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (619, '2020-04-16 15:48:34.117328+00', '2020-04-16 15:48:34.117328+00', '2020-06-19', '2020-06-25', '2020-06-26', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (384, '2019-12-31 10:22:13.771056+00', '2019-12-31 10:22:13.771056+00', '2020-03-22', '2020-03-28', '2020-03-29', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (385, '2019-12-31 10:22:13.77434+00', '2019-12-31 10:22:13.77434+00', '2020-03-29', '2020-04-04', '2020-04-05', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (386, '2019-12-31 10:22:13.778017+00', '2019-12-31 10:22:13.778017+00', '2020-04-05', '2020-04-11', '2020-04-12', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (387, '2019-12-31 10:22:13.781191+00', '2019-12-31 10:22:13.781191+00', '2020-04-12', '2020-04-18', '2020-04-19', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (388, '2019-12-31 10:22:13.784299+00', '2019-12-31 10:22:13.784299+00', '2020-04-19', '2020-04-25', '2020-04-26', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (389, '2019-12-31 10:22:13.787412+00', '2019-12-31 10:22:13.787412+00', '2020-04-26', '2020-05-02', '2020-05-03', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (390, '2019-12-31 10:22:13.790616+00', '2019-12-31 10:22:13.790616+00', '2020-05-03', '2020-05-09', '2020-05-10', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (391, '2019-12-31 10:22:13.793917+00', '2019-12-31 10:22:13.793917+00', '2020-05-10', '2020-05-16', '2020-05-17', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (392, '2019-12-31 10:22:13.797077+00', '2019-12-31 10:22:13.797077+00', '2020-05-17', '2020-05-20', '2020-05-21', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (526, '2020-03-25 12:37:58.589274+00', '2020-03-25 12:37:58.589274+00', '2020-05-21', '2020-05-30', '2020-05-31', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (527, '2020-03-25 12:37:58.593566+00', '2020-03-25 12:37:58.593566+00', '2020-05-31', '2020-06-06', '2020-06-07', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (528, '2020-03-25 12:37:58.59994+00', '2020-03-25 12:37:58.59994+00', '2020-06-07', '2020-06-13', '2020-06-14', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (529, '2020-03-25 12:37:58.604599+00', '2020-03-25 12:37:58.604599+00', '2020-06-14', '2020-06-20', '2020-06-21', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (530, '2020-03-25 12:37:58.610067+00', '2020-03-25 12:37:58.610067+00', '2020-06-21', '2020-06-27', '2020-06-28', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (531, '2020-03-25 12:37:58.613771+00', '2020-03-25 12:37:58.613771+00', '2020-06-28', '2020-07-04', '2020-07-05', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (532, '2020-03-25 12:37:58.617294+00', '2020-03-25 12:37:58.617294+00', '2020-07-05', '2020-07-11', '2020-07-12', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (533, '2020-03-25 12:37:58.620271+00', '2020-03-25 12:37:58.620271+00', '2020-07-12', '2020-07-18', '2020-07-19', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (534, '2020-03-25 12:37:58.623343+00', '2020-03-25 12:37:58.623343+00', '2020-07-19', '2020-07-25', '2020-07-26', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (535, '2020-03-25 12:37:58.626375+00', '2020-03-25 12:37:58.626375+00', '2020-07-26', '2020-08-01', '2020-08-02', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (536, '2020-03-25 12:37:58.629385+00', '2020-03-25 12:37:58.629385+00', '2020-08-02', '2020-08-08', '2020-08-09', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (537, '2020-03-25 12:37:58.632533+00', '2020-03-25 12:37:58.632533+00', '2020-08-09', '2020-08-15', '2020-08-16', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (538, '2020-03-25 12:37:58.635662+00', '2020-03-25 12:37:58.635662+00', '2020-08-16', '2020-08-22', '2020-08-23', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (539, '2020-03-25 12:37:58.638565+00', '2020-03-25 12:37:58.638565+00', '2020-08-23', '2020-08-29', '2020-08-30', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (540, '2020-03-25 12:37:58.641379+00', '2020-03-25 12:37:58.641379+00', '2020-08-30', '2020-09-05', '2020-09-06', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (541, '2020-03-25 12:37:58.644195+00', '2020-03-25 12:37:58.644195+00', '2020-09-06', '2020-09-12', '2020-09-13', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (542, '2020-03-25 12:37:58.646987+00', '2020-03-25 12:37:58.646987+00', '2020-09-13', '2020-09-19', '2020-09-20', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (543, '2020-03-25 12:37:58.649885+00', '2020-03-25 12:37:58.649885+00', '2020-09-20', '2020-09-26', '2020-09-27', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (544, '2020-03-25 12:37:58.652709+00', '2020-03-25 12:37:58.652709+00', '2020-09-27', '2020-09-30', '2020-10-01', 'HR', 95); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (547, '2020-04-09 08:07:45.567187+00', '2020-04-09 08:07:45.567187+00', '2020-04-11', '2020-04-17', '2020-04-18', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (548, '2020-04-09 08:07:45.570936+00', '2020-04-09 08:07:45.570936+00', '2020-04-18', '2020-04-24', '2020-04-25', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (549, '2020-04-09 08:07:45.573823+00', '2020-04-09 08:07:45.573823+00', '2020-04-25', '2020-05-01', '2020-05-02', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (550, '2020-04-09 08:07:45.576676+00', '2020-04-09 08:07:45.576676+00', '2020-05-02', '2020-05-08', '2020-05-09', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (551, '2020-04-09 08:07:45.579806+00', '2020-04-09 08:07:45.579806+00', '2020-05-09', '2020-05-15', '2020-05-16', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (552, '2020-04-09 08:07:45.582861+00', '2020-04-09 08:07:45.582861+00', '2020-05-16', '2020-05-22', '2020-05-23', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (553, '2020-04-09 08:07:45.586157+00', '2020-04-09 08:07:45.586157+00', '2020-05-23', '2020-05-29', '2020-05-30', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (554, '2020-04-09 08:07:45.589117+00', '2020-04-09 08:07:45.589117+00', '2020-05-30', '2020-06-05', '2020-06-06', 'HR', 87); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (563, '2020-04-16 15:46:28.325423+00', '2020-04-16 15:46:28.325423+00', '2020-04-01', '2020-04-30', '2020-05-01', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (620, '2020-04-16 15:49:18.135744+00', '2020-04-16 15:49:18.135744+00', '2020-06-26', '2020-07-02', '2020-07-03', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (621, '2020-04-16 15:49:18.13921+00', '2020-04-16 15:49:18.13921+00', '2020-07-03', '2020-07-09', '2020-07-10', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (622, '2020-04-16 15:49:18.142254+00', '2020-04-16 15:49:18.142254+00', '2020-07-10', '2020-07-16', '2020-07-17', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (623, '2020-04-16 15:49:18.145259+00', '2020-04-16 15:49:18.145259+00', '2020-07-17', '2020-07-23', '2020-07-24', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (624, '2020-04-16 15:49:18.148236+00', '2020-04-16 15:49:18.148236+00', '2020-07-24', '2020-07-30', '2020-07-31', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (625, '2020-04-16 15:51:27.976491+00', '2020-04-16 15:51:27.976491+00', '2020-07-31', '2020-08-06', '2020-08-07', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (626, '2020-04-16 15:51:27.980006+00', '2020-04-16 15:51:27.980006+00', '2020-08-07', '2020-08-13', '2020-08-14', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (627, '2020-04-16 15:51:27.983276+00', '2020-04-16 15:51:27.983276+00', '2020-08-14', '2020-08-20', '2020-08-21', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (628, '2020-04-16 15:51:27.986865+00', '2020-04-16 15:51:27.986865+00', '2020-08-21', '2020-08-27', '2020-08-28', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (629, '2020-04-16 15:51:27.989987+00', '2020-04-16 15:51:27.989987+00', '2020-08-28', '2020-09-03', '2020-09-04', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (630, '2020-04-16 15:51:27.993022+00', '2020-04-16 15:51:27.993022+00', '2020-09-04', '2020-09-10', '2020-09-11', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (631, '2020-04-16 15:51:27.996349+00', '2020-04-16 15:51:27.996349+00', '2020-09-11', '2020-09-17', '2020-09-18', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (632, '2020-04-16 15:51:27.999931+00', '2020-04-16 15:51:27.999931+00', '2020-09-18', '2020-09-24', '2020-09-25', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (633, '2020-04-16 15:52:17.383591+00', '2020-04-16 15:52:17.383591+00', '2020-09-25', '2020-10-01', '2020-10-02', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (634, '2020-04-16 15:52:17.387392+00', '2020-04-16 15:52:17.387392+00', '2020-10-02', '2020-10-08', '2020-10-09', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (635, '2020-04-16 15:52:17.390403+00', '2020-04-16 15:52:17.390403+00', '2020-10-09', '2020-10-15', '2020-10-16', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (636, '2020-04-16 15:52:17.393702+00', '2020-04-16 15:52:17.393702+00', '2020-10-16', '2020-10-22', '2020-10-23', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (637, '2020-04-16 15:52:17.397076+00', '2020-04-16 15:52:17.397076+00', '2020-10-23', '2020-10-29', '2020-10-30', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (642, '2020-04-16 15:53:39.626977+00', '2020-04-16 15:53:39.626977+00', '2020-10-30', '2020-11-05', '2020-11-06', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (643, '2020-04-16 15:53:39.630381+00', '2020-04-16 15:53:39.630381+00', '2020-11-06', '2020-11-12', '2020-11-13', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (644, '2020-04-16 15:53:39.63348+00', '2020-04-16 15:53:39.63348+00', '2020-11-13', '2020-11-19', '2020-11-20', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (645, '2020-04-16 15:53:39.636568+00', '2020-04-16 15:53:39.636568+00', '2020-11-20', '2020-11-26', '2020-11-27', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (654, '2020-04-18 21:04:52.92534+00', '2020-04-18 21:04:52.92534+00', '2020-12-18', '2020-12-24', '2020-12-25', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (655, '2020-04-18 21:04:52.92847+00', '2020-04-18 21:04:52.92847+00', '2020-12-25', '2020-12-31', '2021-01-01', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (656, '2020-04-19 09:59:58.820042+00', '2020-04-19 09:59:58.820042+00', '2021-01-01', '2021-01-07', '2021-01-08', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (657, '2020-04-19 09:59:58.823753+00', '2020-04-19 09:59:58.823753+00', '2021-01-08', '2021-01-14', '2021-01-15', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (687, '2020-04-20 09:32:53.459779+00', '2020-04-20 09:32:53.459779+00', '2020-07-31', '2020-08-06', '2020-08-07', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (688, '2020-04-20 09:32:53.46388+00', '2020-04-20 09:32:53.46388+00', '2020-08-07', '2020-08-13', '2020-08-14', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (689, '2020-04-20 09:32:53.467262+00', '2020-04-20 09:32:53.467262+00', '2020-08-14', '2020-08-20', '2020-08-21', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (690, '2020-04-20 09:32:53.470729+00', '2020-04-20 09:32:53.470729+00', '2020-08-21', '2020-08-27', '2020-08-28', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (691, '2020-04-20 09:32:53.474243+00', '2020-04-20 09:32:53.474243+00', '2020-08-28', '2020-09-03', '2020-09-04', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (692, '2020-04-20 09:32:53.47756+00', '2020-04-20 09:32:53.47756+00', '2020-09-04', '2020-09-10', '2020-09-11', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (693, '2020-04-20 09:32:53.48094+00', '2020-04-20 09:32:53.48094+00', '2020-09-11', '2020-09-17', '2020-09-18', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (694, '2020-04-20 09:32:53.48449+00', '2020-04-20 09:32:53.48449+00', '2020-09-18', '2020-09-24', '2020-09-25', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (658, '2020-04-19 10:01:37.733333+00', '2020-04-19 10:01:37.733333+00', '2021-01-15', '2021-01-21', '2021-01-22', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (659, '2020-04-19 10:01:37.73701+00', '2020-04-19 10:01:37.73701+00', '2021-01-22', '2021-01-28', '2021-01-29', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (660, '2020-04-19 10:01:37.740064+00', '2020-04-19 10:01:37.740064+00', '2021-01-29', '2021-02-04', '2021-02-05', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (661, '2020-04-19 10:01:37.743288+00', '2020-04-19 10:01:37.743288+00', '2021-02-05', '2021-02-11', '2021-02-12', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (662, '2020-04-19 10:01:37.746339+00', '2020-04-19 10:01:37.746339+00', '2021-02-12', '2021-02-18', '2021-02-19', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (663, '2020-04-19 10:01:37.749857+00', '2020-04-19 10:01:37.749857+00', '2021-02-19', '2021-02-25', '2021-02-26', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (664, '2020-04-19 10:01:37.753242+00', '2020-04-19 10:01:37.753242+00', '2021-02-26', '2021-03-04', '2021-03-05', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (665, '2020-04-19 10:01:37.756446+00', '2020-04-19 10:01:37.756446+00', '2021-03-05', '2021-03-11', '2021-03-12', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (666, '2020-04-19 10:01:37.759519+00', '2020-04-19 10:01:37.759519+00', '2021-03-12', '2021-03-18', '2021-03-19', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (667, '2020-04-19 10:01:37.762942+00', '2020-04-19 10:01:37.762942+00', '2021-03-19', '2021-03-25', '2021-03-26', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (668, '2020-04-19 10:01:37.766262+00', '2020-04-19 10:01:37.766262+00', '2021-03-26', '2021-04-01', '2021-04-02', 'HR', 108); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (673, '2020-04-20 09:32:53.404839+00', '2020-04-20 09:32:53.404839+00', '2020-02-03', '2020-04-30', '2020-05-01', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (674, '2020-04-20 09:32:53.40825+00', '2020-04-20 09:32:53.40825+00', '2020-05-01', '2020-05-07', '2020-05-08', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (675, '2020-04-20 09:32:53.412258+00', '2020-04-20 09:32:53.412258+00', '2020-05-08', '2020-05-14', '2020-05-15', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (676, '2020-04-20 09:32:53.41586+00', '2020-04-20 09:32:53.41586+00', '2020-05-15', '2020-05-21', '2020-05-22', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (677, '2020-04-20 09:32:53.419166+00', '2020-04-20 09:32:53.419166+00', '2020-05-22', '2020-05-28', '2020-05-29', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (678, '2020-04-20 09:32:53.422417+00', '2020-04-20 09:32:53.422417+00', '2020-05-29', '2020-06-04', '2020-06-05', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (679, '2020-04-20 09:32:53.425783+00', '2020-04-20 09:32:53.425783+00', '2020-06-05', '2020-06-11', '2020-06-12', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (680, '2020-04-20 09:32:53.429254+00', '2020-04-20 09:32:53.429254+00', '2020-06-12', '2020-06-18', '2020-06-19', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (681, '2020-04-20 09:32:53.432681+00', '2020-04-20 09:32:53.432681+00', '2020-06-19', '2020-06-25', '2020-06-26', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (682, '2020-04-20 09:32:53.437452+00', '2020-04-20 09:32:53.437452+00', '2020-06-26', '2020-07-02', '2020-07-03', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (683, '2020-04-20 09:32:53.441003+00', '2020-04-20 09:32:53.441003+00', '2020-07-03', '2020-07-09', '2020-07-10', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (684, '2020-04-20 09:32:53.444496+00', '2020-04-20 09:32:53.444496+00', '2020-07-10', '2020-07-16', '2020-07-17', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (685, '2020-04-20 09:32:53.447625+00', '2020-04-20 09:32:53.447625+00', '2020-07-17', '2020-07-23', '2020-07-24', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (686, '2020-04-20 09:32:53.45595+00', '2020-04-20 09:32:53.45595+00', '2020-07-24', '2020-07-30', '2020-07-31', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (695, '2020-04-20 09:32:53.487599+00', '2020-04-20 09:32:53.487599+00', '2020-09-25', '2020-10-01', '2020-10-02', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (696, '2020-04-20 09:32:53.490769+00', '2020-04-20 09:32:53.490769+00', '2020-10-02', '2020-10-08', '2020-10-09', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (697, '2020-04-20 09:32:53.493857+00', '2020-04-20 09:32:53.493857+00', '2020-10-09', '2020-10-15', '2020-10-16', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (698, '2020-04-20 09:32:53.496955+00', '2020-04-20 09:32:53.496955+00', '2020-10-16', '2020-10-22', '2020-10-23', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (699, '2020-04-20 09:32:53.500054+00', '2020-04-20 09:32:53.500054+00', '2020-10-23', '2020-10-29', '2020-10-30', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (700, '2020-04-20 09:32:53.503319+00', '2020-04-20 09:32:53.503319+00', '2020-10-30', '2020-11-05', '2020-11-06', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (701, '2020-04-20 09:32:53.506401+00', '2020-04-20 09:32:53.506401+00', '2020-11-06', '2020-11-12', '2020-11-13', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (702, '2020-04-20 09:32:53.509604+00', '2020-04-20 09:32:53.509604+00', '2020-11-13', '2020-11-19', '2020-11-20', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (703, '2020-04-20 09:32:53.512947+00', '2020-04-20 09:32:53.512947+00', '2020-11-20', '2020-11-26', '2020-11-27', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (704, '2020-04-20 09:32:53.516003+00', '2020-04-20 09:32:53.516003+00', '2020-11-27', '2020-12-03', '2020-12-04', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (705, '2020-04-20 09:32:53.519287+00', '2020-04-20 09:32:53.519287+00', '2020-12-04', '2020-12-10', '2020-12-11', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (706, '2020-04-20 09:32:53.522512+00', '2020-04-20 09:32:53.522512+00', '2020-12-11', '2020-12-17', '2020-12-18', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (707, '2020-04-20 09:32:53.525648+00', '2020-04-20 09:32:53.525648+00', '2020-12-18', '2020-12-24', '2020-12-25', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (708, '2020-04-20 09:32:53.528951+00', '2020-04-20 09:32:53.528951+00', '2020-12-25', '2020-12-31', '2021-01-01', 'HR', 111); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (3, '2019-12-11 13:31:47.798193+00', '2019-12-11 13:31:47.798193+00', '2020-07-01', '2020-09-30', '2020-10-30', 'QPR', 104); +INSERT INTO [[schema]].reports_reportingrequirement VALUES (4, '2019-12-11 13:31:47.801268+00', '2019-12-11 13:31:47.801268+00', '2020-10-01', '2020-12-31', '2021-01-31', 'QPR', 104); -- -- Data for Name: reports_result; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].reports_result VALUES (226, 'Result226', NULL, '2019-01-01', '2020-12-31', false, '2580/A0/03/800/005', NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, 22, 23, 13, 1, 34, 192, 2, NULL, '2018-12-16 00:07:35.697415+00', '2018-12-16 00:07:35.705953+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (184, 'Result184', '', '2017-01-01', '2018-12-31', true, '2580/A0/02/883/008/002', '', '104', 'Service delivery (including delivery of essential services)', '23-01-20', 'Protective services for children on the move', '2', '2 Supply', false, false, 59, 60, 10, 2, 1, 104, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-11-10 00:07:50.668625+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (53, 'Result53', '26', '2013-01-01', '2018-12-31', false, '2580/A0/02/882', '', '', '', '', '', '', '', false, false, 1, 28, 9, 0, 1, NULL, 1, NULL, '2018-03-15 16:57:53.757579+00', '2018-06-03 00:06:53.160779+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (109, 'Result109', '', '2017-01-01', '2018-12-31', true, '2580/A0/02/883/010/001', '', '104', 'Service delivery (including delivery of essential services)', '23-01-23', 'Child Protection humanitarian AoR/humanitarian sector coordination', '2', '2 Supply', false, false, 67, 68, 10, 2, 1, 108, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-06-03 00:06:53.209596+00', NULL, NULL); @@ -12177,12 +15703,13 @@ INSERT INTO [[schema]].reports_result VALUES (5, 'Result5', '', '2013-01-01', '2 INSERT INTO [[schema]].reports_result VALUES (194, 'Result194', NULL, '2019-01-01', '2020-12-31', false, '2580/A0/03/800/001', NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, 2, 7, 13, 1, 34, 192, 2, NULL, '2018-09-15 00:07:14.845647+00', '2019-04-06 00:13:32.840238+00', '0', 'NONE'); INSERT INTO [[schema]].reports_result VALUES (205, 'Result205', NULL, '2019-01-01', '2020-12-31', true, '2580/A0/03/880/001/001', NULL, '802', 'Operating costs - staff', '27-01-15', 'CO programme coordination', '6', '6 Management/Operations', false, false, 3, 4, 14, 2, 34, 197, 3, NULL, '2018-09-15 00:07:15.394783+00', '2018-09-15 00:07:15.409536+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (206, 'Result206', NULL, '2019-01-01', '2020-12-31', true, '2580/A0/03/880/002/001', NULL, '802', 'Operating costs - staff', '27-01-16', 'CO advocacy and communication', '6', '6 Management/Operations', false, false, 7, 8, 14, 2, 34, 198, 3, NULL, '2018-09-15 00:07:15.442814+00', '2018-12-10 00:07:23.398372+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (226, 'Result226', NULL, '2019-01-01', '2020-12-31', false, '2580/A0/03/800/005', NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, 22, 23, 13, 1, 34, 192, 2, NULL, '2018-12-16 00:07:35.697415+00', '2018-12-16 00:07:35.705953+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (227, 'Result227', NULL, '2019-01-01', '2020-12-31', false, '2580/A0/03/800/006', NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, 24, 25, 13, 1, 34, 192, 2, NULL, '2018-12-16 00:07:35.723854+00', '2018-12-16 00:07:35.732419+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (228, 'Result228', NULL, '2019-01-01', '2020-12-31', false, '2580/A0/03/800/007', NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, 26, 27, 13, 1, 34, 192, 2, NULL, '2018-12-16 00:07:35.753873+00', '2018-12-16 00:07:35.76211+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (230, 'Result230', NULL, '2019-01-01', '2020-12-31', false, '2580/A0/03/883/004', NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, 6, 7, 16, 1, 34, 211, 2, NULL, '2018-12-16 00:07:35.809012+00', '2018-12-16 00:07:35.817573+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (211, 'Result211', '21', '2019-01-01', '2020-12-31', false, '2580/A0/03/883', NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, 1, 8, 16, 0, 34, NULL, 1, NULL, '2018-12-13 00:07:59.95438+00', '2019-11-14 00:19:25.805183+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (192, 'Result192', '26', '2019-01-01', '2020-12-31', false, '2580/A0/03/800', NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, 1, 28, 13, 0, 34, NULL, 1, NULL, '2018-09-15 00:07:14.747554+00', '2019-11-15 00:23:31.914607+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (193, 'Result193', '26', '2019-01-01', '2020-12-31', false, '2580/A0/03/880', NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, 1, 16, 14, 0, 34, NULL, 1, NULL, '2018-09-15 00:07:14.78333+00', '2019-11-15 00:23:31.926752+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (211, 'Result211', '21', '2019-01-01', '2020-12-31', false, '2580/A0/03/883', NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, 1, 8, 16, 0, 34, NULL, 1, NULL, '2018-12-13 00:07:59.95438+00', '2020-04-21 02:59:12.031543+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (192, 'Result192', '26', '2019-01-01', '2020-12-31', false, '2580/A0/03/800', NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, 1, 28, 13, 0, 34, NULL, 1, NULL, '2018-09-15 00:07:14.747554+00', '2020-04-19 03:08:42.882446+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (193, 'Result193', '26', '2019-01-01', '2020-12-31', false, '2580/A0/03/880', NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, 1, 16, 14, 0, 34, NULL, 1, NULL, '2018-09-15 00:07:14.78333+00', '2020-04-19 03:08:42.892374+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (198, 'Result198', NULL, '2019-01-01', '2020-12-31', false, '2580/A0/03/880/002', NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, 6, 9, 14, 1, 34, 193, 2, NULL, '2018-09-15 00:07:15.051447+00', '2019-04-06 00:13:32.785646+00', '0', 'NONE'); INSERT INTO [[schema]].reports_result VALUES (112, 'Result112', '', '2013-01-02', '2018-12-31', false, '2580/A0/02/883/012', '', '', '', '', '', '', '', false, true, 74, 77, 10, 1, 1, 62, 2, NULL, '2018-03-15 16:57:53.757579+00', '2019-04-06 00:13:32.849533+00', '3', 'PRINCIPAL'); INSERT INTO [[schema]].reports_result VALUES (14, 'Result14', '', '2013-01-01', '2018-12-31', false, '2580/A0/02/800/003', '', '', '', '', '', '', '', false, true, 20, 27, 2, 1, 1, 4, 2, NULL, '2018-03-15 16:57:53.757579+00', '2019-04-06 00:13:32.857993+00', '3', 'PRINCIPAL'); @@ -12195,7 +15722,6 @@ INSERT INTO [[schema]].reports_result VALUES (219, 'Result219', NULL, '2019-01-0 INSERT INTO [[schema]].reports_result VALUES (150, 'Result150', '', '2013-01-02', '2018-12-31', false, '2580/A0/02/881/006', '', '', '', '', '', '', '', false, false, 26, 29, 11, 1, 1, 83, 2, NULL, '2018-03-15 16:57:53.757579+00', '2019-04-06 00:13:32.906136+00', '3', 'PRINCIPAL'); INSERT INTO [[schema]].reports_result VALUES (207, 'Result207', NULL, '2019-01-01', '2020-12-31', false, '2580/A0/03/800/004', NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, 20, 21, 13, 1, 34, 192, 2, NULL, '2018-12-09 00:07:29.813586+00', '2019-04-06 00:13:32.915062+00', '0', 'NONE'); INSERT INTO [[schema]].reports_result VALUES (2, 'Result2', '', '2014-01-02', '2018-12-31', false, '2580/A0/02/777/001', '', '', '', '', '', '', '', false, false, 2, 5, 1, 1, 1, 1, 2, NULL, '2018-03-15 16:57:53.757579+00', '2019-04-06 00:13:32.920478+00', '3', 'PRINCIPAL'); -INSERT INTO [[schema]].reports_result VALUES (33, 'Result33', '27', '2013-01-01', '2018-12-31', false, '2580/A0/02/880', '', '', '', '', '', '', '', false, false, 1, 10, 6, 0, 1, NULL, 1, NULL, '2018-03-15 16:57:53.757579+00', '2018-06-03 00:06:53.124319+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (54, 'Result54', '', '2013-01-01', '2018-12-31', false, '2580/A0/02/882/001', '', '', '', '', '', '', '', false, false, 2, 5, 9, 1, 1, 53, 2, NULL, '2018-03-15 16:57:53.757579+00', '2019-04-06 00:13:32.930107+00', '3', 'PRINCIPAL'); INSERT INTO [[schema]].reports_result VALUES (197, 'Result197', NULL, '2019-01-01', '2020-12-31', false, '2580/A0/03/880/001', NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, 2, 5, 14, 1, 34, 193, 2, NULL, '2018-09-15 00:07:15.000327+00', '2019-04-06 00:13:32.938636+00', '0', 'NONE'); INSERT INTO [[schema]].reports_result VALUES (34, 'Result34', '', '2013-01-01', '2018-12-31', false, '2580/A0/02/880/001', '', '', '', '', '', '', '', false, false, 2, 5, 6, 1, 1, 33, 2, NULL, '2018-03-15 16:57:53.757579+00', '2019-04-06 00:13:32.949223+00', '3', 'PRINCIPAL'); @@ -12234,7 +15760,6 @@ INSERT INTO [[schema]].reports_result VALUES (71, 'Result71', '', '2016-01-01', INSERT INTO [[schema]].reports_result VALUES (77, 'Result77', '', '2016-01-01', '2017-12-31', false, '2580/A0/02/883/003/002', '', '013', 'Operating costs # staff', '03-05-03', 'Support to shelter in humanitarian action', '6', '6 Management/Operations', false, false, 29, 30, 10, 2, 1, 70, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-03-15 16:57:54.175357+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (32, 'Result32', '', '2013-01-01', '2018-12-31', true, '2580/A0/02/804/001/002', '', '801', 'Operating costs - non-staff', '26-01-03', 'Humanitarian planning and review activities (HRP, RRP, UNICEF HAC)', '6', '6 Management/Operations', false, false, 5, 6, 5, 2, 1, 30, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-06-04 00:08:51.542969+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (49, 'Result49', '', '2013-01-01', '2018-12-31', true, '2580/A0/02/802/002/002', '', '106', 'Planning and Monitoring', '22-02-17', 'System strengthening - curricula and learning materials design (excluding early learning / pre-primary)', '2', '2 Supply', false, false, 11, 12, 3, 2, 1, 47, 3, NULL, '2018-03-15 16:57:53.757579+00', '2019-01-26 00:08:26.323958+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (213, 'Result213', '21', '2019-01-01', '2020-12-31', false, '2580/A0/03/881', NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, 1, 12, 18, 0, 34, NULL, 1, NULL, '2018-12-13 00:08:00.033428+00', '2019-11-15 00:23:31.937962+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (82, 'Result82', '', '2014-01-02', '2017-12-31', false, '2580/A0/02/883/002/006', '', '014', 'Operating costs # non-staff', '06-06-03', 'Psychosocial support and child-friendly spaces', '6', '6 Management/Operations', false, false, 23, 24, 10, 2, 1, 67, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-03-15 16:57:54.175357+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (113, 'Result113', '', '2017-01-01', '2018-12-31', true, '2580/A0/02/883/012/001', '', '101', 'Institutional Strengthening of National Systems', '21-03-02', 'IMNCI facilities', '2', '2 Supply', false, false, 75, 76, 10, 2, 1, 112, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-05-17 16:09:30.369788+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (7, 'Result7', '', '2013-01-01', '2018-12-31', true, '2580/A0/02/800/001/002', '', '801', 'Operating costs - non-staff', '28-07-03', 'Country office leadership and direction', '6', '6 Management/Operations', false, false, 5, 6, 2, 2, 1, 5, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-06-05 00:11:42.398224+00', NULL, NULL); @@ -12249,8 +15774,8 @@ INSERT INTO [[schema]].reports_result VALUES (46, 'Result46', '', '2013-01-01', INSERT INTO [[schema]].reports_result VALUES (48, 'Result48', '', '2013-01-01', '2018-12-31', true, '2580/A0/02/802/002/001', '', '106', 'Planning and Monitoring', '22-02-18', 'System strengthening - learning assessment systems', '2', '2 Supply', false, false, 9, 10, 3, 2, 1, 47, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-06-04 00:08:51.594232+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (4, 'Result4', '28', '2013-01-01', '2018-12-31', false, '2580/A0/02/800', '', '', '', '', '', '', '', false, false, 1, 28, 2, 0, 1, NULL, 1, NULL, '2018-03-15 16:57:53.757579+00', '2018-06-05 00:11:42.318338+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (190, 'Result190', '', '2017-01-02', '2017-12-31', true, '2580/A0/02/883/015/002', '', '009', 'Service Delivery', '06-08-01', 'Child Protection # general', '2', '2 Supply', false, false, 93, 94, 10, 2, 1, 188, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-03-15 16:57:54.175357+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (62, 'Result62', '22', '2013-01-01', '2018-12-31', false, '2580/A0/02/883', '', '', '', '', '', '', '', false, false, 1, 96, 10, 0, 1, NULL, 1, NULL, '2018-03-15 16:57:53.757579+00', '2019-12-06 00:30:47.953359+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (55, 'Result55', '', '2013-01-01', '2018-12-31', true, '2580/A0/02/882/001/001', '', '104', 'Service delivery (including delivery of essential services)', '26-06-13', 'Joint programmes/pooled funding/inter-agency agreements', '5', '5 Quality', false, false, 3, 4, 9, 2, 1, 54, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-06-07 00:10:11.667689+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (62, 'Result62', '22', '2013-01-01', '2018-12-31', false, '2580/A0/02/883', '', '', '', '', '', '', '', false, false, 1, 96, 10, 0, 1, NULL, 1, NULL, '2018-03-15 16:57:53.757579+00', '2019-05-29 00:07:51.580494+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (183, 'Result183', '', '2017-01-01', '2017-12-31', true, '2580/A0/02/883/005/002', '', '009', 'Service Delivery', '05-05-01', 'Education -Systems', '2', '2 Supply', false, false, 45, 46, 10, 2, 1, 98, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-03-15 16:57:54.175357+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (61, 'Result61', '', '2013-01-01', '2018-12-31', true, '2580/A0/02/882/004/002', '', '201', 'Advocacy and public engagement', '25-03-02', 'Adolescents participating in or leading civic engagement initiatives (including in humanitarian settings)', '3', '3 Demand', false, false, 15, 16, 9, 2, 1, 59, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-06-03 00:06:53.204476+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (105, 'Result105', '', '2017-01-01', '2018-12-31', true, '2580/A0/02/883/008/001', '', '101', 'Institutional Strengthening of National Systems', '23-01-05', 'Social welfare workforce systems strengthening (accreditation, staffing and supervision)', '1', '1 Enabling Environment', false, false, 57, 58, 10, 2, 1, 104, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-06-03 00:06:53.219485+00', NULL, NULL); @@ -12279,17 +15804,19 @@ INSERT INTO [[schema]].reports_result VALUES (84, 'Result84', '', '2013-01-02', INSERT INTO [[schema]].reports_result VALUES (108, 'Result108', '', '2013-01-02', '2018-12-31', false, '2580/A0/02/883/010', '', '', '', '', '', '', '', false, false, 66, 69, 10, 1, 1, 62, 2, NULL, '2018-03-15 16:57:53.757579+00', '2019-04-06 00:13:32.636918+00', '3', 'PRINCIPAL'); INSERT INTO [[schema]].reports_result VALUES (99, 'Result99', '', '2017-01-01', '2017-12-31', true, '2580/A0/02/883/005/001', '', '001', 'Capacity Development', '05-05-01', 'Education -Systems', '1', '1 Enabling Environment', false, false, 43, 44, 10, 2, 1, 98, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-05-11 00:10:10.402518+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (101, 'Result101', '', '2017-01-01', '2017-12-31', true, '2580/A0/02/883/006/001', '', '001', 'Capacity Development', '05-05-07', 'Adolescent development # building assets and skills', '2', '2 Supply', false, false, 49, 50, 10, 2, 1, 100, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-05-11 00:10:10.40775+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (33, 'Result33', '27', '2013-01-01', '2018-12-31', false, '2580/A0/02/880', '', '', '', '', '', '', '', false, false, 1, 10, 6, 0, 1, NULL, 1, NULL, '2018-03-15 16:57:53.757579+00', '2018-06-03 00:06:53.124319+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (1, 'Result1', '28', '2014-01-01', '2018-12-31', false, '2580/A0/02/777', '', '', '', '', '', '', '', false, false, 1, 6, 1, 0, 1, NULL, 1, NULL, '2018-03-15 16:57:53.757579+00', '2018-05-20 00:08:44.562809+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (29, 'Result29', '26', '2013-01-01', '2018-12-31', false, '2580/A0/02/804', '', '', '', '', '', '', '', false, false, 1, 8, 5, 0, 1, NULL, 1, NULL, '2018-03-15 16:57:53.757579+00', '2018-06-04 00:08:51.447779+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (116, 'Result116', '', '2017-01-02', '2017-12-31', true, '2580/A0/02/883/013/002', '', '014', 'Operating costs # non-staff', '08-09-06', 'Other # non-classifiable cross-sectoral activities', '6', '6 Management/Operations', false, false, 81, 82, 10, 2, 1, 114, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-05-11 00:10:10.453404+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (115, 'Result115', '', '2017-01-01', '2017-12-31', true, '2580/A0/02/883/013/001', '', '013', 'Operating costs # staff', '08-09-06', 'Other # non-classifiable cross-sectoral activities', '6', '6 Management/Operations', false, false, 79, 80, 10, 2, 1, 114, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-05-11 00:10:10.46349+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (18, 'Result18', '21', '2013-01-01', '2018-12-31', false, '2580/A0/02/802', '', '', '', '', '', '', '', false, false, 1, 14, 3, 0, 1, NULL, 1, NULL, '2018-03-15 16:57:53.757579+00', '2018-07-24 00:31:43.165403+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (43, 'Result43', '26', '2013-01-01', '2018-12-31', false, '2580/A0/02/801', '', '', '', '', '', '', '', false, false, 1, 8, 8, 0, 1, NULL, 1, NULL, '2018-03-15 16:57:53.757579+00', '2018-06-04 00:08:51.471882+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (83, 'Result83', '28', '2013-01-02', '2018-12-31', false, '2580/A0/02/881', '', '', '', '', '', '', '', false, false, 1, 30, 11, 0, 1, NULL, 1, NULL, '2018-03-15 16:57:53.757579+00', '2019-11-14 00:19:25.816683+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (83, 'Result83', '28', '2013-01-02', '2018-12-31', false, '2580/A0/02/881', '', '', '', '', '', '', '', false, false, 1, 30, 11, 0, 1, NULL, 1, NULL, '2018-03-15 16:57:53.757579+00', '2019-12-12 00:33:49.480031+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (189, 'Result189', '', '2017-01-02', '2018-12-31', true, '2580/A0/02/883/015/001', '', '104', 'Service delivery (including delivery of essential services)', '23-01-20', 'Protective services for children on the move', '2', '2 Supply', false, false, 91, 92, 10, 2, 1, 188, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-05-17 16:09:30.307672+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (9, 'Result9', '', '2013-01-02', '2018-12-31', true, '2580/A0/02/800/001/004', '', '801', 'Operating costs - non-staff', '28-07-03', 'Country office leadership and direction', '6', '6 Management/Operations', false, false, 9, 10, 2, 2, 1, 5, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-06-05 00:11:42.40543+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (187, 'Result187', '', '2017-01-02', '2018-12-31', true, '2580/A0/02/883/014/002', '', '104', 'Service delivery (including delivery of essential services)', '22-02-24', 'Education humanitarian cluster/humanitarian sector coordination', '2', '2 Supply', false, false, 87, 88, 10, 2, 1, 185, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-05-17 16:09:30.327609+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (186, 'Result186', '', '2017-01-02', '2018-12-31', true, '2580/A0/02/883/014/001', '', '104', 'Service delivery (including delivery of essential services)', '22-02-24', 'Education humanitarian cluster/humanitarian sector coordination', '2', '2 Supply', false, false, 85, 86, 10, 2, 1, 185, 3, NULL, '2018-03-15 16:57:53.757579+00', '2018-05-17 16:09:30.337542+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (213, 'Result213', '21', '2019-01-01', '2020-12-31', false, '2580/A0/03/881', NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, 1, 12, 18, 0, 34, NULL, 1, NULL, '2018-12-13 00:08:00.033428+00', '2020-04-19 03:08:42.9013+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (188, 'Result188', '', '2013-01-02', '2018-12-31', false, '2580/A0/02/883/015', '', '', '', '', '', '', '', false, false, 90, 95, 10, 1, 1, 62, 2, NULL, '2018-03-15 16:57:53.757579+00', '2019-04-06 00:13:32.650685+00', '3', 'PRINCIPAL'); INSERT INTO [[schema]].reports_result VALUES (23, 'Result23', '', '2013-01-01', '2018-12-31', false, '2580/A0/02/803/001', '', '', '', '', '', '', '', false, true, 2, 7, 4, 1, 1, 22, 2, NULL, '2018-03-15 16:57:53.757579+00', '2019-04-06 00:13:32.65941+00', '3', 'PRINCIPAL'); INSERT INTO [[schema]].reports_result VALUES (26, 'Result26', '', '2013-01-01', '2018-12-31', false, '2580/A0/02/803/002', '', '', '', '', '', '', '', false, true, 8, 13, 4, 1, 1, 22, 2, NULL, '2018-03-15 16:57:53.757579+00', '2019-04-06 00:13:32.668184+00', '3', 'PRINCIPAL'); @@ -12350,8 +15877,7 @@ INSERT INTO [[schema]].reports_sector VALUES (67, 'Drivers', '', NULL, '', false INSERT INTO [[schema]].reports_usertenantprofile VALUES (1, 201, 112574); INSERT INTO [[schema]].reports_usertenantprofile VALUES (2, 201, 103934); INSERT INTO [[schema]].reports_usertenantprofile VALUES (3, 201, 24500); -INSERT INTO [[schema]].reports_usertenantprofile VALUES (4, 201, 103166); -INSERT INTO [[schema]].reports_usertenantprofile VALUES (5, 201, 25737); +INSERT INTO [[schema]].reports_usertenantprofile VALUES (4, 201, 25737); -- @@ -12685,7 +16211,6 @@ INSERT INTO [[schema]].t2f_travel VALUES (60, '2019-08-05 17:45:39.289859+00', ' INSERT INTO [[schema]].t2f_travel VALUES (58, '2019-07-31 14:35:40.329793+00', '2019-08-20 08:13:26.632561+00', NULL, '2019-07-31 14:38:54.07144+00', NULL, '2019-08-19 17:03:57.582085+00', '', '', '', 'attached in the attachment & note tab is the report.', '', 'completed', '2019-07-04', '2019-07-04', 'programmatic visit to monitor CP partner Noor alhayat implemented PSS activities in school and urban settings', '', false, false, '2019/27', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 201, 17635, 17817, '2019-07-31 14:38:54.071448+00', NULL, 1); INSERT INTO [[schema]].t2f_travel VALUES (65, '2019-08-26 09:05:34.067507+00', '2019-08-26 09:10:28.631178+00', NULL, NULL, NULL, NULL, '', '', '', 'attached detailed report in attachment & notes tab', '', 'completed', '2018-10-31', '2018-10-31', 'programmatic visit to monitor and evaluate quality of conducted school based PSS in Janzour municipality', '', false, false, '2019/34', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 17635, 17817, NULL, NULL, 1); INSERT INTO [[schema]].t2f_travel VALUES (67, '2019-08-26 12:21:29.013302+00', '2019-08-26 12:28:06.19647+00', NULL, NULL, NULL, NULL, '', '', '', 'report with details attached in the attachments & notes tab', '', 'completed', '2018-12-12', '2018-12-12', 'Programmatic visit to monitor cross-sectoral activitity of PSS conducted during the 2018 UNICEF Vaccination campaign', '', false, false, '2019/36', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 17635, 17817, NULL, NULL, 1); -INSERT INTO [[schema]].t2f_travel VALUES (72, '2019-09-10 14:35:44.072271+00', '2019-09-10 14:50:58.276343+00', NULL, NULL, NULL, NULL, '', '', '', 'See attachments', '', 'completed', '2019-01-19', '2019-01-19', 'Contractor (Engineers Consortium) TPM Visit - Rehabilitation of Ganfouda School in Benghazi', '', false, false, '2019/41', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 12212, 14488, NULL, NULL, 3); INSERT INTO [[schema]].t2f_travel VALUES (95, '2019-10-01 13:49:42.569292+00', NULL, NULL, '2019-10-03 09:49:01.256452+00', NULL, NULL, '', '', '', 'In the light of the agreement between UNICEF and INTERSOS, to establish a community center where disadvantaged children have access to non-formal education, recreational activities, and psycho-social support services through a child friendly space. This center was opened officially on April 2019 and was given the name BAYTI (my home). On the 26th of September, UNICEF team visited INTERSOS BAYTI center, to attend the completion of the three months’ cycle activities through an art exhibition. The event also included sketches by youth artists, and the opening of the computer lab and library. @@ -12707,12 +16232,14 @@ Observations: • The safety of children should be considered at an important priority. the Cetner has to be child friendly in terms of equipment that they are using. For example, the chairs do not have no-glide adhesive tapes, the electricity sockets are exposed in the rooms that are hosting fairly small children. No fire extinguishers were available. NO first aid kit • The center attracted a large number of young people with excellent skills in drawing and painting. It might be an idea to organize a specific competition where the children ( especially the adolescents) are requested to draw picture for UNICEF to be used for the social media under the following themes “Child is a Child , no matter what” , “NOT a Target”, “CRC 30 and Child Rights ” and others • INTERSOS team succeeded to mobilize many innovative ideas and creative approaches in engagement and working with children. This experience would benefit other partners, particularly national ones who are implementing similar activities.', '', 'submitted', '2019-09-26', '2019-09-26', 'Attend the end of the three months cycle activities art exhibition,The event also will include sketches by young artists', '', false, false, '2019/64', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 17635, 29294, '2019-10-03 09:49:01.256462+00', NULL, 1); -INSERT INTO [[schema]].t2f_travel VALUES (71, '2019-09-07 23:57:29.425232+00', '2019-09-11 10:39:28.601057+00', NULL, NULL, NULL, NULL, '', '', '', 'Tripoli University Hospital Newborn Intensive care unit; -There are enough number of incubators, but many of them needs maintenance and they are complaining of shortage of nurses and consumables and some lifesaving medications. The consultant neonatologists expressed their willingness to cooperate with UNICEF to improve the quality of services through capacity building of the staff. - -Alhani PHC center; -The vaccination center is providing immunization services to all the children without discrimination. However, the refrigerators are missing the temperature logs. -Also, there is a nutrition clinic that offer services mainly to diabetic patients.', '', 'completed', '2019-04-02', '2019-04-02', 'Visiting the Tripoli University Hospital Newborn Intensive Care Unit', '', false, false, '2019/40', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 12212, 176084, NULL, NULL, 4); +INSERT INTO [[schema]].t2f_travel VALUES (72, '2019-09-10 14:35:44.072271+00', '2019-09-10 14:50:58.276343+00', NULL, NULL, NULL, NULL, '', '', '', 'See attachments', '', 'completed', '2019-01-19', '2019-01-19', 'Contractor (Engineers Consortium) TPM Visit - Rehabilitation of Ganfouda School in Benghazi', '', false, false, '2019/41', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 12212, 14488, NULL, NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (106, '2019-12-16 19:23:26.459635+00', '2019-12-16 19:26:10.589606+00', NULL, NULL, NULL, NULL, '', '', '', 'NCDC management and the CSD team met and discussed the planned activities, the achievements and the next year pplans', '', 'completed', '2019-12-08', '2019-12-08', 'AWP review', '', false, false, '2019/75', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 12212, 176084, NULL, NULL, 4); +INSERT INTO [[schema]].t2f_travel VALUES (108, '2020-01-12 12:29:29.75001+00', NULL, NULL, NULL, NULL, NULL, '', '', '', 'Annual workplan & review', '', 'planned', '2019-12-10', '2019-12-10', 'Meeting with AYS for Annual workplan review', '', false, false, '2020/77', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 1497, 186083, NULL, NULL, 5); +INSERT INTO [[schema]].t2f_travel VALUES (111, '2020-02-16 09:32:12.744307+00', '2020-02-18 07:15:15.058284+00', NULL, NULL, NULL, NULL, '', '', '', 'Kindly find the visit''s report in the attached', '', 'completed', '2020-02-03', '2020-02-03', 'follow up on the progress of the program', '', false, false, '2020/80', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 247300, 247375, NULL, NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (70, '2019-09-07 23:27:01.423707+00', '2019-10-02 13:43:34.889216+00', NULL, '2019-09-07 23:27:14.33527+00', NULL, '2019-10-02 13:42:36.795493+00', '', '', '', 'The vaccination center has most of the vaccines and they provide immunization services to children from the municipality only. +There is no temperature log on the refrigerators. +The OPV VVM is acceptable. +There were some food, water and some other medicines in the refrigerator.', '', 'completed', '2019-04-01', '2019-04-01', 'Visiting Vaccination in Janzour to assess the immunization services availability and quality', '', false, false, '2019/39', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 201, 12212, 176084, '2019-09-07 23:27:14.335287+00', NULL, 4); INSERT INTO [[schema]].t2f_travel VALUES (46, '2018-12-18 12:04:35.041049+00', '2018-12-18 12:07:51.564933+00', NULL, NULL, NULL, NULL, '', '', '', 'A meeting between UNICEF team and Mr Abdulrazaq head of Multaqana and his deputy Mr Ezziddene. Where it was agreed on the following: • The center will be open every day, 9 am to 8 pm, and 2 extra social workers will be hired for this purpose. @@ -12738,6 +16265,7 @@ INSERT INTO [[schema]].t2f_travel VALUES (81, '2019-09-11 10:01:08.098318+00', ' INSERT INTO [[schema]].t2f_travel VALUES (82, '2019-09-11 10:05:01.547442+00', '2019-09-11 10:06:44.791171+00', NULL, NULL, NULL, NULL, '', '', '', 'see attachments', '', 'completed', '2019-03-03', '2019-03-05', 'Contractor (Awaset Al Madina) TPM Visit - Rehabilitation of Aicha Um Almoomineen school in Sabha', '', false, false, '2019/51', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 12212, 14488, NULL, NULL, 3); INSERT INTO [[schema]].t2f_travel VALUES (77, '2019-09-10 15:06:48.514555+00', '2019-09-10 15:07:26.119206+00', NULL, NULL, NULL, NULL, '', '', '', 'see attachment', '', 'completed', '2019-01-19', '2019-01-19', 'Contractor (Engineers Consortium) TPM Visit - Rehabilitation of Qwarsha School in Benghazi', '', false, false, '2019/46', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 12212, 14488, NULL, NULL, 3); INSERT INTO [[schema]].t2f_travel VALUES (83, '2019-09-11 10:09:35.718257+00', '2019-09-11 10:11:05.771041+00', NULL, NULL, NULL, NULL, '', '', '', 'see attachments', '', 'completed', '2019-02-24', '2019-03-01', 'Contractor (Awaset Al Madina) TPM Visit - Rehabilitation of Dhat Annitakayn school in Sabha', '', false, false, '2019/52', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 12212, 14488, NULL, NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (103, '2019-11-27 09:47:18.96674+00', '2019-11-27 10:07:00.47197+00', NULL, NULL, NULL, NULL, '', '', '', 'A meeting was held between UNICEF and the General Authority of Water Resources in Tripoli on Wednesday Nov. 25, 2019 to review the progress on the implementation of the AWP activities. The update, progress and actions are discussed and agreed', '', 'completed', '2019-11-25', '2019-11-25', 'Review of Annual Work Plan for end of year 2019 with governmental partner of GAWR(General authority of Water Resource', '', false, false, '2019/72', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 12212, 14488, NULL, NULL, 3); INSERT INTO [[schema]].t2f_travel VALUES (85, '2019-09-11 10:58:20.370561+00', '2019-09-11 11:00:17.584703+00', NULL, NULL, NULL, NULL, '', '', '', 'see attachments', '', 'completed', '2019-03-20', '2019-03-20', 'Contractor (Nomadia General Construction) TPM Visit - Rehabilitation of Al Qulaa Assamida school in Misurata', '', false, false, '2019/54', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 12212, 14488, NULL, NULL, 3); INSERT INTO [[schema]].t2f_travel VALUES (84, '2019-09-11 10:54:13.639244+00', '2019-09-11 10:55:12.317301+00', NULL, NULL, NULL, NULL, '', '', '', 'see attachments', '', 'completed', '2019-03-20', '2019-03-20', 'Contractor (Nomadia General Construction) TPM Visit - Rehabilitation of AlGhiran school in Misurata', '', false, false, '2019/53', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 12212, 14488, NULL, NULL, 3); INSERT INTO [[schema]].t2f_travel VALUES (86, '2019-09-11 11:14:48.679926+00', '2019-09-11 11:18:00.532555+00', NULL, NULL, NULL, NULL, '', '', '', 'see attachment', '', 'completed', '2019-05-02', '2019-05-02', 'Contractor (Bab Alaaj General Construction) TPM Visit - Rehabilitation of AlArifi primary school in Janzour', '', false, false, '2019/55', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 12212, 14488, NULL, NULL, 3); @@ -12746,11 +16274,15 @@ INSERT INTO [[schema]].t2f_travel VALUES (88, '2019-09-11 11:24:52.998035+00', ' INSERT INTO [[schema]].t2f_travel VALUES (90, '2019-09-11 11:31:32.437652+00', '2019-09-11 11:31:50.107695+00', NULL, NULL, NULL, NULL, '', '', '', 'see attachments', '', 'completed', '2019-05-05', '2019-05-05', 'Contractor (United Delta) TPM Visit - Rehabilitation of Rafea AlAnsari school in Subratha', '', false, false, '2019/59', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 12212, 14488, NULL, NULL, 3); INSERT INTO [[schema]].t2f_travel VALUES (89, '2019-09-11 11:27:45.499388+00', '2019-09-11 11:28:45.657228+00', NULL, NULL, NULL, NULL, '', '', '', 'see attachments', '', 'completed', '2019-05-05', '2019-05-05', 'Contractor (United Delta) TPM Visit - Rehabilitation of Shuhada'' Melitta school in Zuwara', '', false, false, '2019/58', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 12212, 14488, NULL, NULL, 3); INSERT INTO [[schema]].t2f_travel VALUES (91, '2019-09-11 11:50:45.986186+00', '2019-09-11 11:50:58.753842+00', NULL, NULL, NULL, NULL, '', '', '', 'see attachment', '', 'completed', '2019-05-21', '2019-05-21', 'Contractor (United Delta) TPM Visit - Rehabilitation of Shuhada'' Melitta school in Zuwara', '', false, false, '2019/60', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 12212, 14488, NULL, NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (107, '2019-12-16 19:29:19.449835+00', '2019-12-16 19:29:50.701595+00', NULL, NULL, NULL, NULL, '', '', '', 'HIC director general and the CSD team met to discuss the progress of the AWP and what should be adjusted for the 2020', '', 'completed', '2019-12-08', '2019-12-08', 'To review the AWP', '', false, false, '2019/76', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 12212, 176084, NULL, NULL, 4); +INSERT INTO [[schema]].t2f_travel VALUES (109, '2020-01-12 12:32:10.679549+00', NULL, NULL, NULL, NULL, NULL, '', '', '', 'Annual workplan and review', '', 'planned', '2020-01-12', '2020-01-12', 'Annual workplan review', '', false, false, '2020/78', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 1497, 186083, NULL, NULL, 2); INSERT INTO [[schema]].t2f_travel VALUES (92, '2019-09-11 11:53:54.516285+00', '2019-09-11 11:54:08.475552+00', NULL, NULL, NULL, NULL, '', '', '', 'see attachments', '', 'completed', '2019-05-21', '2019-05-21', 'Contractor (United Delta) TPM Visit - Rehabilitation of Rafea AlAnsari school in Subratha', '', false, false, '2019/61', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 12212, 14488, NULL, NULL, 3); -INSERT INTO [[schema]].t2f_travel VALUES (70, '2019-09-07 23:27:01.423707+00', '2019-10-02 13:43:34.889216+00', NULL, '2019-09-07 23:27:14.33527+00', NULL, '2019-10-02 13:42:36.795493+00', '', '', '', 'The vaccination center has most of the vaccines and they provide immunization services to children from the municipality only. -There is no temperature log on the refrigerators. -The OPV VVM is acceptable. -There were some food, water and some other medicines in the refrigerator.', '', 'completed', '2019-04-01', '2019-04-01', 'Visiting Vaccination in Janzour to assess the immunization services availability and quality', '', false, false, '2019/39', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 201, 12212, 176084, '2019-09-07 23:27:14.335287+00', NULL, 4); +INSERT INTO [[schema]].t2f_travel VALUES (71, '2019-09-07 23:57:29.425232+00', '2019-09-11 10:39:28.601057+00', NULL, NULL, NULL, NULL, '', '', '', 'Tripoli University Hospital Newborn Intensive care unit; +There are enough number of incubators, but many of them needs maintenance and they are complaining of shortage of nurses and consumables and some lifesaving medications. The consultant neonatologists expressed their willingness to cooperate with UNICEF to improve the quality of services through capacity building of the staff. + +Alhani PHC center; +The vaccination center is providing immunization services to all the children without discrimination. However, the refrigerators are missing the temperature logs. +Also, there is a nutrition clinic that offer services mainly to diabetic patients.', '', 'completed', '2019-04-02', '2019-04-02', 'Visiting the Tripoli University Hospital Newborn Intensive Care Unit', '', false, false, '2019/40', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 12212, 176084, NULL, NULL, 4); INSERT INTO [[schema]].t2f_travel VALUES (101, '2019-11-03 12:53:12.940734+00', '2019-11-03 12:53:13.075878+00', NULL, NULL, NULL, NULL, '', '', '', 'Key findings and meetings summary: 1. Gar Younus Camp is located in Benghazi city and has approximately 218 HH. The age breakdown for children, is 106 children (4-5 years) and 138 school age children (6-14years). Due to the lack of pre-primary opportunities for children in Libya as a whole and especially for the most marginalized, UNICEF’s partner, Breezes Organization was approached by the Gar Younus Camp management to support the establishment of ECE classes for children inside the camp. Breezes Organization has been working with Tawerghan communities since 2017 and building on the success of the organization to register the pre-primary school in Al Helis Camp, through UNICEF support with the Ministry of Education. UNICEF, through its partnership with Breezes would like to continue this with Gar Younus Camp. 2. Organization for CWD is located in Benghazi city, adjacent to the Tagrefet school in Al Hadayek area. The organization has 16 classrooms, which operates on a double shift system and 230 children on their premises, with a diverse age range (as there are not sufficient places for CWD in the country). In terms of the teaching staff, there are 13 teachers that are covered by the MOE, the rest are recruited by the organization. @@ -12776,6 +16308,7 @@ Also, UNICEF checked the playground that is open daily for the children to play A meeting was held with the reporting focal point to set and revise the reporting requirements needed like the report templates, and time line for each report, weekly, monthly…etc; furthermore, the referral mechanisms and forms were agreed on, and the human-interest stories. Where by a request for a communication training was asked by BAYTI team on reporting, human-interest pictures mechanism and how to provide a good UNICEF pictures, which UNICEF will follow up on. The next programmatic visit is scheduled to be on the 25th of November which will be a joint visit between UNICEF’s child protection and education staff.', '', 'submitted', '2018-11-07', '2018-11-07', 'conduct programmatic visit to follow up on partner activities', '', false, false, '2019/62', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 17635, 29294, '2019-09-24 11:00:09.2983+00', NULL, 1); +INSERT INTO [[schema]].t2f_travel VALUES (110, '2020-01-12 13:09:25.338805+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2019-06-02', '2019-06-02', 'Annual workplan & Review', '', false, false, '2020/79', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 1497, 186083, NULL, NULL, 5); INSERT INTO [[schema]].t2f_travel VALUES (100, '2019-10-23 12:11:58.086642+00', '2019-10-23 12:11:58.135791+00', NULL, NULL, NULL, NULL, '', '', '', '1- The general overview about the child and family protection units in the security directorates and the importance of activating the role of the child and family protection office at the Ministry of Interior. In this regard, the Mr. Mahmoud gave an overview of the beginning of this project since 2013 and the difficulties and challenges that faced the implementation, many of which still exist, the most important of which is the acute shortage of qualified staff that can lead this project and the incompetence of some of them currently. The idea is not the number of units established in some areas, but there must be scientific criteria according to the decision taken to establish the unit and not just issue a decision and open an office in the Directorate or the police station without qualified members of the Ministry of Interior and the bodies involved in the work of the units, namely social affairs. And justice. @@ -12790,6 +16323,25 @@ The idea is not the number of units established in some areas, but there must be 6 - Regarding the participation of the Ministry of Interior in the next workshop with Coram Foundation, Rania suggested to add Mrs Zainab Muhadab, head of department of child and family protection, and Mr Mahmoud stated that the committee sent a letter to the Undersecretary of the Ministry, who referred it to the Minister of Interior for the nomination of officers and awaiting a response. As for the Ministry of Education, Rania suggested adding the name of Mrs. Fawzia bin Ghashir. 7. Rania requested the Chairperson of the Committee to communicate with the Department of Relations and International Cooperation in the Ministry of Justice to speed up the signing of the action plan between the Ministry and the UNICEF office.', '', 'completed', '2019-10-20', '2019-10-20', 'meeting with HCC', '', false, false, '2019/69', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 17635, 29294, NULL, NULL, 1); +INSERT INTO [[schema]].t2f_travel VALUES (104, '2019-12-02 12:34:48.27132+00', NULL, NULL, '2019-12-02 13:29:46.620549+00', NULL, '2019-12-02 13:42:17.109225+00', '', '', '', 'Multaqana BAYTI center still needs improvements. +The attendance level is low, although the reason can be that children are attending school, and that the security is not stable in the location of the center. +Education component needs to be assessed and revisited by Education section, as some activities have no progress. +Referral pathways for specialized services does not exist, other than specialized PSS that is being conducted in the center. +Staff isn''t trained on PSEA and S\GBV, there are no available materials and clear procedures on both subjects, moreover the space isn''t child friendly in the sense of visibility and CP messages display. +Community feedback mechanism isn''t available in the center.', '', 'approved', '2019-10-07', '2019-10-07', 'Conduct a programmatic visit with assessing CP in emergency activities for the Multaqana', '', false, false, '2019/73', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 201, 17635, 29294, '2019-12-02 13:29:46.620558+00', NULL, 1); +INSERT INTO [[schema]].t2f_travel VALUES (105, '2019-12-02 13:40:36.707049+00', NULL, NULL, '2019-12-02 14:14:12.541696+00', NULL, NULL, '', '', '', 'The center is well equipped, most facilities are suitable for children. +WASH facilities are separated by sex. +The staff are well trained and there is harmony between them as a team and between them and the children. +The main observations during the visit are as follows: +1. According to the staff as well as to the children present in the center, transportation is still a main challenge when it comes to non-Libyans, it is affecting the activities for children and the care givers activities. +2. There is an issue of access for the children with disabilities – the structure of the building may not allow the disable children to use all the facilities that are provided in the Bayti center. +3. Low number of parents attending activities, based on the team, the main reasons were the time as most activities are conducted between 9-5 which are work times for most parents, also the transportation fees can be a burden for the parents and care givers, another reason is that most care givers think that there’s no added value, as no distributions are happening to support the families. +4. The assigned focal point for child protection needs more trainings when it comes to identifying cases for specialized services. +5. The specialized services available for referrals in the area aren’t available for display, this can be particularly important for non-Libyans who are not familiar with the community. +6. Child protection messages aren’t displayed in the center. +7. For the PSEA, no assigned focal point, no training was given to staff, moreover no materials or feedback mechanism are available. +8. No community feedback mechanism is installed in the building. +9. There’s no clear referral mechanism established to ensure support of specialized services is provided for children.', '', 'submitted', '2019-12-01', '2019-12-01', 'Assessment of child protection activities in BAYTI center.', '', false, false, '2019/74', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 201, 17635, 29294, '2019-12-02 14:14:12.541706+00', NULL, 1); -- @@ -12848,7 +16400,6 @@ INSERT INTO [[schema]].t2f_travelactivity VALUES (112, 'Programmatic Visit', '20 INSERT INTO [[schema]].t2f_travelactivity VALUES (90, 'Technical Support', '2019-01-20', NULL, NULL, 14488, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (83, 'Technical Support', '2019-01-19', NULL, NULL, 14488, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (84, 'Technical Support', '2019-01-19', NULL, NULL, 14488, NULL); -INSERT INTO [[schema]].t2f_travelactivity VALUES (106, 'Technical Support', '2019-09-26', NULL, NULL, 29294, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (85, 'Technical Support', '2019-01-19', NULL, NULL, 14488, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (91, 'Technical Support', '2019-02-20', NULL, NULL, 14488, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (86, 'Technical Support', '2019-01-19', NULL, NULL, 14488, NULL); @@ -12863,11 +16414,14 @@ INSERT INTO [[schema]].t2f_travelactivity VALUES (80, 'Programmatic Visit', '201 INSERT INTO [[schema]].t2f_travelactivity VALUES (104, 'Programmatic Visit', '2018-11-07', 37, 80, 29294, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (94, 'Technical Support', '2019-02-24', NULL, NULL, 14488, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (113, 'Programmatic Visit', '2019-06-19', 17, NULL, 12687, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (106, 'Technical Support', '2019-09-26', NULL, NULL, 29294, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (82, 'Programmatic Visit', '2019-04-02', 5, NULL, 176084, 208); +INSERT INTO [[schema]].t2f_travelactivity VALUES (114, 'Meeting', '2019-11-25', 93, NULL, 14488, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (95, 'Technical Support', '2019-03-20', NULL, NULL, 14488, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (108, 'Programmatic Visit', '2019-06-19', 73, 89, 14583, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (96, 'Technical Support', '2019-03-20', NULL, NULL, 14488, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (97, 'Technical Support', '2019-05-02', NULL, NULL, 14488, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (115, 'Programmatic Visit', '2019-10-07', 37, 80, 29294, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (98, 'Technical Support', '2019-05-02', NULL, NULL, 14488, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (99, 'Technical Support', '2019-05-02', NULL, NULL, 14488, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (100, 'Technical Support', '2019-05-05', NULL, NULL, 14488, NULL); @@ -12876,6 +16430,13 @@ INSERT INTO [[schema]].t2f_travelactivity VALUES (102, 'Technical Support', '201 INSERT INTO [[schema]].t2f_travelactivity VALUES (103, 'Technical Support', '2019-05-21', NULL, NULL, 14488, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (109, 'Programmatic Visit', '2019-06-20', 73, 89, 14583, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (110, 'Programmatic Visit', '2019-09-03', 73, 89, 14583, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (116, 'Technical Support', '2019-12-01', 89, NULL, 29294, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (117, 'Meeting', '2019-12-08', 5, NULL, 176084, 208); +INSERT INTO [[schema]].t2f_travelactivity VALUES (118, 'Meeting', '2019-12-08', 91, NULL, 176084, 208); +INSERT INTO [[schema]].t2f_travelactivity VALUES (122, 'Programmatic Visit', '2020-02-03', 23, 102, 247375, 220); +INSERT INTO [[schema]].t2f_travelactivity VALUES (120, 'Meeting', '2020-01-12', 95, NULL, 1497, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (119, 'Meeting', '2019-12-10', 92, NULL, 14583, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (121, 'Meeting', '2019-12-10', 94, NULL, 14583, NULL); -- @@ -12967,9 +16528,14 @@ INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (114, 104, 1899); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (115, 105, 1835); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (123, 111, 1906); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (118, 82, 1898); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (124, 115, 1899); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (120, 108, 1925); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (121, 109, 1942); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (122, 110, 1920); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (125, 116, 1895); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (126, 117, 1900); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (127, 118, 1900); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (128, 122, 1900); -- @@ -13037,6 +16603,15 @@ INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (112, 111, 100); INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (107, 106, 95); INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (113, 112, 101); INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (114, 113, 102); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (115, 114, 103); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (116, 115, 104); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (117, 116, 105); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (118, 117, 106); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (119, 118, 107); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (120, 119, 108); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (121, 120, 109); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (122, 121, 110); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (123, 122, 111); -- @@ -13126,6 +16701,16 @@ INSERT INTO [[schema]].t2f_travelattachment VALUES (124, 'Other', 'Programmatic INSERT INTO [[schema]].t2f_travelattachment VALUES (125, 'Other', 'Programmatic visit INTERSOS BAYTI.docx', 'travels/[[schema]]/95/Programmatic_visit_INTERSOS_BAYTI.docx', 95); INSERT INTO [[schema]].t2f_travelattachment VALUES (130, 'Other', 'Trip report- Field Benghazi.doc', 'travels/[[schema]]/101/Trip_report-_Field_Benghazi.doc', 101); INSERT INTO [[schema]].t2f_travelattachment VALUES (131, 'Other', 'Trip report- Field Benghazi Ganfouda.doc', 'travels/[[schema]]/102/Trip_report-_Field_Benghazi_Ganfouda.doc', 102); +INSERT INTO [[schema]].t2f_travelattachment VALUES (132, 'Other', 'WASH AWP Review 2019.pdf', 'travels/[[schema]]/103/WASH_AWP_Review_2019.pdf', 103); +INSERT INTO [[schema]].t2f_travelattachment VALUES (133, 'Other', 'CPiE INTERSOS 01122019.docx', 'travels/[[schema]]/105/CPiE_INTERSOS_01122019.docx', 105); +INSERT INTO [[schema]].t2f_travelattachment VALUES (134, 'Other', 'NCDC AWP review endorsed.pdf', 'travels/[[schema]]/106/NCDC_AWP_review_endorsed.pdf', 106); +INSERT INTO [[schema]].t2f_travelattachment VALUES (135, 'Other', 'HIC AP review endorsed.pdf', 'travels/[[schema]]/107/HIC_AP_review_endorsed.pdf', 107); +INSERT INTO [[schema]].t2f_travelattachment VALUES (136, 'Other', 'Signed education AWP 2019-2020.pdf', 'travels/[[schema]]/109/Signed_education_AWP_2019-2020.pdf', 109); +INSERT INTO [[schema]].t2f_travelattachment VALUES (145, 'HACT Programme Monitoring Report', 'Programme Visit Report - Cesvi_EA-AM.doc', 'travels/[[schema]]/111/Programme_Visit__Report_-_Cesvi_EA-AM.doc', 111); +INSERT INTO [[schema]].t2f_travelattachment VALUES (139, 'Other', 'AYS annual workplan 2019-2020.pdf', 'travels/[[schema]]/108/AYS_annual_workplan_2019-2020_kCRVeCD.pdf', 108); +INSERT INTO [[schema]].t2f_travelattachment VALUES (142, 'Other', '20190602_112847.pdf', 'travels/[[schema]]/110/20190602_112847.pdf', 110); +INSERT INTO [[schema]].t2f_travelattachment VALUES (143, 'Other', '20190602_112857.pdf', 'travels/[[schema]]/110/20190602_112857.pdf', 110); +INSERT INTO [[schema]].t2f_travelattachment VALUES (144, 'Other', '20190602_112923.pdf', 'travels/[[schema]]/110/20190602_112923.pdf', 110); -- @@ -13154,7 +16739,8 @@ INSERT INTO [[schema]].tpm_tpmactivity VALUES (35, 'Shuhada Taqrift School-Sirte INSERT INTO [[schema]].tpm_tpmactivity VALUES (2, 'Koudourati Center', true, 1, 2); INSERT INTO [[schema]].tpm_tpmactivity VALUES (91, '', false, 26, 3); INSERT INTO [[schema]].tpm_tpmactivity VALUES (98, 'Visit 1-2 Wasla Zuwarah (Tripoli)', true, 33, 5); -INSERT INTO [[schema]].tpm_tpmactivity VALUES (94, 'A total of 20,000 students in 63 schools in Sabratha benefited from the intervention from January to December 2018. Sample 4-5 schools should be visited with different level of education (primary and preparatory) for key informant interviews/focus group discussion including children, teachers etc following the monitoring and reporting guidance attached. Also education of office of municipality. TPM may spend 3-4 days to cover all required information.', false, 31, 2); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (170, '', false, 78, 1); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (172, '', false, 78, 1); INSERT INTO [[schema]].tpm_tpmactivity VALUES (95, '10 schools in Benghazi were targeted by program activities - the list is found in the Program Document. Out of 10, sample 4-5 schools in addition to municipality education office should be visited. Feedback from children who benefit from non-formal education teachers who have received training, school principals, parents are required. Please see more requirements of the visit in the attached field monitoring guideline.', false, 32, 2); INSERT INTO [[schema]].tpm_tpmactivity VALUES (23, 'Nour Al Uloom School', true, 3, 2); INSERT INTO [[schema]].tpm_tpmactivity VALUES (24, 'Alzahraa School - Alzahraa Area', true, 3, 2); @@ -13163,7 +16749,6 @@ INSERT INTO [[schema]].tpm_tpmactivity VALUES (59, 'School in Tariq Al Matar', t INSERT INTO [[schema]].tpm_tpmactivity VALUES (62, 'IDP camp in Falah 1', true, 10, 1); INSERT INTO [[schema]].tpm_tpmactivity VALUES (60, 'CSS Tripoli Gurji Area', true, 10, 2); INSERT INTO [[schema]].tpm_tpmactivity VALUES (89, '', true, 24, 4); -INSERT INTO [[schema]].tpm_tpmactivity VALUES (97, '', false, 34, 2); INSERT INTO [[schema]].tpm_tpmactivity VALUES (100, 'Visit 2-1 Step for Peace Benghazi (Benghazi)', false, 33, 5); INSERT INTO [[schema]].tpm_tpmactivity VALUES (102, 'Visit 2-3 UXO Awareness Campaign Ghariyan (Ghariyan)', false, 33, 5); INSERT INTO [[schema]].tpm_tpmactivity VALUES (104, 'Visit 3-2 Win App Sabratha', false, 33, 5); @@ -13228,6 +16813,10 @@ INSERT INTO [[schema]].tpm_tpmactivity VALUES (20, 'Dat Alsawari School - Janzou INSERT INTO [[schema]].tpm_tpmactivity VALUES (21, 'Shohadaa Alramla School - Janzour', true, 2, 1); INSERT INTO [[schema]].tpm_tpmactivity VALUES (22, 'Mobile CFS Activity - Daar Aldheyaa School - Janzour', true, 2, 1); INSERT INTO [[schema]].tpm_tpmactivity VALUES (152, '', false, 60, 5); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (97, '', true, 34, 2); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (173, '', false, 81, 1); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (175, 'The distrustion is completed between 6-9 Jan 2020', false, 82, 2); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (180, 'Othman Ben Zerti school (13:30-16:00)', false, 84, 1); INSERT INTO [[schema]].tpm_tpmactivity VALUES (19, 'Ammar Ben Yaser School - Janzour', true, 2, 1); INSERT INTO [[schema]].tpm_tpmactivity VALUES (17, 'Alwasat Aljadida School - Janzour', true, 2, 1); INSERT INTO [[schema]].tpm_tpmactivity VALUES (87, '', false, 23, 3); @@ -13245,14 +16834,12 @@ INSERT INTO [[schema]].tpm_tpmactivity VALUES (120, 'visit the health facilities INSERT INTO [[schema]].tpm_tpmactivity VALUES (130, 'Date depends on the security situation - WASH specialist to follow-up', false, 51, 3); INSERT INTO [[schema]].tpm_tpmactivity VALUES (129, 'Location is in Tawergha, it was not available in list of locations', false, 50, 3); INSERT INTO [[schema]].tpm_tpmactivity VALUES (131, 'programmatic visit to monitor activities', false, 52, 1); -INSERT INTO [[schema]].tpm_tpmactivity VALUES (122, 'To visit the Health facilities according to the attached sheet', false, 44, 4); INSERT INTO [[schema]].tpm_tpmactivity VALUES (132, '', false, 53, 1); INSERT INTO [[schema]].tpm_tpmactivity VALUES (133, 'Programmatic visit to monitor program implementations', false, 54, 1); INSERT INTO [[schema]].tpm_tpmactivity VALUES (123, 'To visit the Health facilities according to the attached sheet', false, 43, 4); INSERT INTO [[schema]].tpm_tpmactivity VALUES (124, 'To visit the Health facilities according to the attached sheet', false, 43, 4); INSERT INTO [[schema]].tpm_tpmactivity VALUES (125, '', false, 46, 2); INSERT INTO [[schema]].tpm_tpmactivity VALUES (134, 'programmatic visit to monitor implementations', false, 55, 1); -INSERT INTO [[schema]].tpm_tpmactivity VALUES (127, '', false, 47, 2); INSERT INTO [[schema]].tpm_tpmactivity VALUES (92, 'See attached in "Related Documents"', true, 27, 3); INSERT INTO [[schema]].tpm_tpmactivity VALUES (136, '', false, 56, 1); INSERT INTO [[schema]].tpm_tpmactivity VALUES (96, 'Visit 1-1 Al Hayat Rehabilitation Center Sabha (Sabha)', true, 33, 5); @@ -13284,6 +16871,21 @@ INSERT INTO [[schema]].tpm_tpmactivity VALUES (159, '', true, 67, 5); INSERT INTO [[schema]].tpm_tpmactivity VALUES (160, '', true, 68, 5); INSERT INTO [[schema]].tpm_tpmactivity VALUES (161, '', true, 69, 5); INSERT INTO [[schema]].tpm_tpmactivity VALUES (157, '', true, 65, 5); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (162, '', false, 70, 5); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (163, '', false, 71, 5); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (164, '', false, 72, 1); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (165, '', false, 73, 1); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (166, 'festival for children implemented by the scouts in Misrata for a whole day', false, 74, 1); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (167, 'mobile CFS providing PSS in school and urban settings in Ainzara, Greater tripoli', false, 75, 1); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (122, 'To visit the Health facilities according to the attached sheet', true, 44, 4); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (168, 'name of focal point on the ground Mohammed Fathi 0918566356, please confirm the status of the rehabilitation work and provide photos', false, 76, 5); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (169, 'Hazem Gashot, Mayor of Al-Amryiah Municipality', false, 77, 3); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (127, '', true, 47, 2); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (94, 'A total of 20,000 students in 63 schools in Sabratha benefited from the intervention from January to December 2018. Sample 4-5 schools should be visited with different level of education (primary and preparatory) for key informant interviews/focus group discussion including children, teachers etc following the monitoring and reporting guidance attached. Also education of office of municipality. TPM may spend 3-4 days to cover all required information.', true, 31, 2); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (171, '', false, 78, 1); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (174, '', false, 81, 2); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (179, '', false, 83, 1); +INSERT INTO [[schema]].tpm_tpmactivity VALUES (181, 'The Libyan and Canadian Academy in Al Serraj (12:00-14:00)', false, 84, 1); -- @@ -13442,6 +17044,25 @@ INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (158, 158, 201); INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (159, 159, 201); INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (160, 160, 201); INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (161, 161, 201); +INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (162, 162, 201); +INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (163, 163, 201); +INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (164, 164, 201); +INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (165, 165, 201); +INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (166, 166, 201); +INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (167, 167, 201); +INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (168, 168, 201); +INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (169, 169, 201); +INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (170, 170, 201); +INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (171, 171, 201); +INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (172, 172, 201); +INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (173, 173, 209); +INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (174, 173, 201); +INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (175, 174, 201); +INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (176, 174, 209); +INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (177, 175, 201); +INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (185, 180, 201); +INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (186, 181, 201); +INSERT INTO [[schema]].tpm_tpmactivity_offices VALUES (184, 179, 201); -- @@ -13617,13 +17238,30 @@ INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (178, 160, 235 INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (179, 160, 14583); INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (180, 161, 23564); INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (181, 161, 14583); +INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (182, 162, 14583); +INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (183, 163, 14583); +INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (184, 164, 17817); +INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (185, 165, 17817); +INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (186, 166, 17817); +INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (187, 167, 17817); +INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (188, 168, 14583); +INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (189, 169, 247527); +INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (190, 170, 29294); +INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (191, 171, 29294); +INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (192, 172, 29294); +INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (193, 173, 200131); +INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (194, 174, 200131); +INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (195, 175, 1497); +INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (196, 175, 186083); +INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (202, 180, 10233); +INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (203, 181, 10233); +INSERT INTO [[schema]].tpm_tpmactivity_unicef_focal_points VALUES (201, 179, 200131); -- -- Data for Name: tpm_tpmvisit; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].tpm_tpmvisit VALUES (44, '1970-01-01 00:00:00+00', '2019-08-29 10:20:09.881235+00', '2019-10-09 06:11:31.87012+00', 'tpm_reported', '', '', 'Visit and confirm the delivery and the proper use of supplies', '2019-09-02', NULL, '2019-10-09', NULL, '2019-10-09', NULL, NULL, 14, '', 176084); INSERT INTO [[schema]].tpm_tpmvisit VALUES (5, '1970-01-01 00:00:00+00', '2018-06-05 13:33:51.515511+00', '2018-10-10 14:49:02.591588+00', 'unicef_approved', '', 'Reports Approved', 'January visits Al Emdad', '2018-06-06', NULL, '2018-06-06', NULL, '2018-06-08', '2018-06-07', '2018-10-10', 8, '', 18616); INSERT INTO [[schema]].tpm_tpmvisit VALUES (24, '1970-01-01 00:00:00+00', '2018-12-23 08:59:48.22297+00', '2019-04-04 11:50:31.210685+00', 'unicef_approved', '', '', 'HEB Distribution Dec - If no partner distribution in Dec then cancel', '2018-12-23', NULL, '2019-01-10', NULL, '2019-01-10', NULL, '2019-04-04', 14, '', 23641); INSERT INTO [[schema]].tpm_tpmvisit VALUES (4, '1970-01-01 00:00:00+00', '2018-06-05 13:18:28.50773+00', '2018-10-31 10:06:47.581223+00', 'unicef_approved', '', '', 'January visits Essafa', '2018-06-06', NULL, '2018-06-07', NULL, '2018-06-07', NULL, '2018-10-31', 8, '', 18616); @@ -13633,6 +17271,7 @@ INSERT INTO [[schema]].tpm_tpmvisit VALUES (2, '1970-01-01 00:00:00+00', '2018-0 INSERT INTO [[schema]].tpm_tpmvisit VALUES (1, '1970-01-01 00:00:00+00', '2018-06-05 12:44:12.301661+00', '2018-12-31 08:48:07.609027+00', 'unicef_approved', '', '', 'January monthly visit to Koudorati', '2018-06-06', NULL, '2018-06-06', NULL, '2018-06-07', NULL, '2018-12-31', 8, '', 18616); INSERT INTO [[schema]].tpm_tpmvisit VALUES (13, '1970-01-01 00:00:00+00', '2018-07-24 11:32:18.29427+00', '2018-11-07 11:53:57.479633+00', 'tpm_report_rejected', '', '', 'August Visits 2018', '2018-07-24', NULL, '2018-07-24', NULL, '2018-10-30', '2018-11-07', NULL, 8, '', 18616); INSERT INTO [[schema]].tpm_tpmvisit VALUES (26, '1970-01-01 00:00:00+00', '2019-01-15 08:39:11.738093+00', '2019-01-16 07:20:14.623519+00', 'cancelled', '', '', 'Visit to oversee hand-over of rehabilitation completion', '2019-01-15', '2019-01-16', NULL, NULL, NULL, NULL, NULL, 14, 'Visit Data to be updated', 23641); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (79, '1970-01-01 00:00:00+00', '2020-01-07 13:49:00.464548+00', '2020-01-07 13:49:00.464548+00', 'draft', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 14, '', 10233); INSERT INTO [[schema]].tpm_tpmvisit VALUES (36, '1970-01-01 00:00:00+00', '2019-04-18 13:34:52.996916+00', '2019-04-21 03:10:17.065482+00', 'cancelled', '', '', 'Confirm the distribution of', '2019-04-18', '2019-04-21', NULL, NULL, NULL, NULL, NULL, 14, 'We will reschedule', 176084); INSERT INTO [[schema]].tpm_tpmvisit VALUES (28, '1970-01-01 00:00:00+00', '2019-01-16 07:31:35.402831+00', '2019-01-19 12:10:52.358156+00', 'tpm_accepted', '', '', 'STACO - Visit to Murzuk schools', '2019-01-16', NULL, '2019-01-19', NULL, NULL, NULL, NULL, 14, '', 23641); INSERT INTO [[schema]].tpm_tpmvisit VALUES (25, '1970-01-01 00:00:00+00', '2018-12-23 09:07:13.714231+00', '2019-01-10 11:04:03.88304+00', 'tpm_report_rejected', '', '', 'HEB Distribution Monitoring - January', '2018-12-23', NULL, '2019-01-05', NULL, '2019-01-10', '2019-01-10', NULL, 14, '', 23641); @@ -13649,13 +17288,15 @@ INSERT INTO [[schema]].tpm_tpmvisit VALUES (11, '1970-01-01 00:00:00+00', '2018- INSERT INTO [[schema]].tpm_tpmvisit VALUES (50, '1970-01-01 00:00:00+00', '2019-09-04 11:04:33.508132+00', '2019-09-08 07:01:25.267935+00', 'tpm_accepted', '', '', 'Follow-up on UNCIEF Programme in Tawergha', '2019-09-04', NULL, '2019-09-08', NULL, NULL, NULL, NULL, 14, '', 23641); INSERT INTO [[schema]].tpm_tpmvisit VALUES (12, '1970-01-01 00:00:00+00', '2018-07-12 14:19:58.980522+00', '2018-07-24 14:31:51.081385+00', 'unicef_approved', '', '', '', '2018-07-12', NULL, '2018-07-13', NULL, '2018-07-13', NULL, '2018-07-24', 8, '', 18616); INSERT INTO [[schema]].tpm_tpmvisit VALUES (53, '1970-01-01 00:00:00+00', '2019-09-09 09:13:05.648328+00', '2019-10-12 11:59:11.696499+00', 'tpm_reported', '', '', 'Essafa center programmatic visit', '2019-09-09', NULL, '2019-10-09', NULL, '2019-10-12', NULL, NULL, 14, '', 17817); -INSERT INTO [[schema]].tpm_tpmvisit VALUES (31, '1970-01-01 00:00:00+00', '2019-02-17 13:06:39.54527+00', '2019-09-04 11:49:20.73005+00', 'tpm_reported', '', '', 'Visit to education program sites of UNICEF and Afaq partnership agreement', '2019-02-17', NULL, '2019-02-18', NULL, '2019-09-04', '2019-09-04', NULL, 14, '', 1551); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (80, '1970-01-01 00:00:00+00', '2020-01-10 11:02:57.447699+00', '2020-01-10 11:02:57.447699+00', 'draft', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 14, '', 200131); INSERT INTO [[schema]].tpm_tpmvisit VALUES (49, '1970-01-01 00:00:00+00', '2019-09-04 10:59:16.472864+00', '2019-10-09 17:27:31.531166+00', 'tpm_report_rejected', '', '', 'Rehabilitation of school in Zintan (Awainiya)', '2019-09-04', NULL, '2019-09-04', NULL, '2019-10-09', '2019-10-09', NULL, 14, '', 23641); INSERT INTO [[schema]].tpm_tpmvisit VALUES (56, '1970-01-01 00:00:00+00', '2019-09-09 10:42:06.543278+00', '2019-10-09 06:24:58.623271+00', 'tpm_reported', '', '', 'programmatic field visit to implementing partner', '2019-09-09', NULL, '2019-09-09', NULL, '2019-10-09', NULL, NULL, 14, '', 17817); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (86, '1970-01-01 00:00:00+00', '2020-02-02 10:56:57.771284+00', '2020-02-02 10:56:57.771284+00', 'draft', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 45, '', 247527); INSERT INTO [[schema]].tpm_tpmvisit VALUES (40, '1970-01-01 00:00:00+00', '2019-08-07 10:33:46.026851+00', '2019-08-07 15:40:35.611961+00', 'tpm_accepted', '', '', 'CPiE/Mine Risk Education in Tripoli and surrounding', '2019-08-07', NULL, '2019-08-07', NULL, NULL, NULL, NULL, 14, '', 10233); INSERT INTO [[schema]].tpm_tpmvisit VALUES (46, '1970-01-01 00:00:00+00', '2019-09-03 09:38:36.129372+00', '2019-09-03 10:05:56.550388+00', 'tpm_accepted', '', '', 'Visit Al Safwa, NGO', '2019-09-03', NULL, '2019-09-03', NULL, NULL, NULL, NULL, 14, '', 23641); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (57, '1970-01-01 00:00:00+00', '2019-09-17 08:34:26.45713+00', '2019-12-04 13:08:05.102325+00', 'unicef_approved', '', '', 'April/May 2019 Libya Emergency - STACO visits', '2019-09-17', NULL, '2019-09-30', NULL, '2019-09-30', NULL, '2019-09-30', 14, '', 23641); INSERT INTO [[schema]].tpm_tpmvisit VALUES (38, '1970-01-01 00:00:00+00', '2019-05-16 13:36:07.71282+00', '2019-08-29 10:35:26.89166+00', 'unicef_approved', '', 'Just we are missing few equipment delivery and proper use reporting', 'Confirm the distribution of some medical supplies', '2019-05-16', NULL, '2019-05-19', NULL, '2019-07-08', '2019-07-08', '2019-08-29', 14, '', 176084); -INSERT INTO [[schema]].tpm_tpmvisit VALUES (34, '1970-01-01 00:00:00+00', '2019-03-06 08:01:32.712302+00', '2019-10-01 11:02:55.724709+00', 'tpm_reported', '', '', 'Visit to program sites in Benghazi where Ekraa implemented education program', '2019-03-06', NULL, '2019-03-07', NULL, '2019-10-01', NULL, NULL, 14, '', 23641); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (31, '1970-01-01 00:00:00+00', '2019-02-17 13:06:39.54527+00', '2019-12-23 15:12:16.710611+00', 'unicef_approved', '', '', 'Visit to education program sites of UNICEF and Afaq partnership agreement', '2019-02-17', NULL, '2019-02-18', NULL, '2019-09-04', '2019-09-04', '2019-12-23', 14, '', 1551); INSERT INTO [[schema]].tpm_tpmvisit VALUES (43, '1970-01-01 00:00:00+00', '2019-08-20 09:05:08.906032+00', '2019-09-03 16:29:47.275621+00', 'cancelled', '', '', 'Confirm the delivery of supplies', '2019-09-02', '2019-09-03', NULL, NULL, NULL, NULL, NULL, 14, 'Will discuss it more in person', 176084); INSERT INTO [[schema]].tpm_tpmvisit VALUES (54, '1970-01-01 00:00:00+00', '2019-09-09 09:22:57.702397+00', '2019-09-09 11:12:33.744574+00', 'tpm_accepted', '', '', '', '2019-09-09', NULL, '2019-09-09', NULL, NULL, NULL, NULL, 14, '', 17817); INSERT INTO [[schema]].tpm_tpmvisit VALUES (55, '1970-01-01 00:00:00+00', '2019-09-09 10:05:11.365077+00', '2019-10-12 11:57:42.169062+00', 'tpm_reported', '', '', '', '2019-09-09', NULL, '2019-09-09', NULL, '2019-10-12', NULL, NULL, 14, '', 17817); @@ -13664,19 +17305,34 @@ INSERT INTO [[schema]].tpm_tpmvisit VALUES (39, '1970-01-01 00:00:00+00', '2019- INSERT INTO [[schema]].tpm_tpmvisit VALUES (27, '1970-01-01 00:00:00+00', '2019-01-16 07:25:00.791775+00', '2019-09-10 15:36:41.27896+00', 'unicef_approved', '', '', 'Libyan Society Org. - Rehabilitation Completion Handover in Tripoli IDP camps', '2019-01-16', NULL, '2019-01-19', NULL, '2019-02-18', NULL, '2019-09-10', 14, '', 23641); INSERT INTO [[schema]].tpm_tpmvisit VALUES (59, '1970-01-01 00:00:00+00', '2019-09-17 10:03:59.182392+00', '2019-09-30 10:25:05.773439+00', 'unicef_approved', '', '', 'Emdad Charity - WASH Collective Shelters Rehabilitation (under HEB distribution PD)', '2019-09-17', NULL, '2019-09-30', NULL, '2019-09-30', NULL, '2019-09-30', 14, '', 23641); INSERT INTO [[schema]].tpm_tpmvisit VALUES (52, '1970-01-01 00:00:00+00', '2019-09-09 08:59:48.87516+00', '2019-10-12 12:00:21.455768+00', 'tpm_reported', '', '', 'Noor Alhayat field visit in Ain zara', '2019-09-09', NULL, '2019-09-09', NULL, '2019-10-12', NULL, NULL, 14, '', 17817); -INSERT INTO [[schema]].tpm_tpmvisit VALUES (57, '1970-01-01 00:00:00+00', '2019-09-17 08:34:26.45713+00', '2019-09-30 07:41:03.50087+00', 'unicef_approved', '', '', 'April/May 2019 Libya Emergency - STACO visits', '2019-09-17', NULL, '2019-09-30', NULL, '2019-09-30', NULL, '2019-09-30', 14, '', 23641); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (76, '1970-01-01 00:00:00+00', '2019-12-18 10:28:52.423102+00', '2019-12-19 12:48:21.102221+00', 'tpm_accepted', '', '', 'Visit to the construction site of the football yard in Zintan', '2019-12-18', NULL, '2019-12-19', NULL, NULL, NULL, NULL, 14, '', 14583); INSERT INTO [[schema]].tpm_tpmvisit VALUES (58, '1970-01-01 00:00:00+00', '2019-09-17 10:01:04.337298+00', '2019-09-30 08:22:51.514605+00', 'unicef_approved', '', '', 'June TPM visit - Ghat floods response', '2019-09-17', NULL, '2019-09-30', NULL, '2019-09-30', NULL, '2019-09-30', 14, '', 23641); -INSERT INTO [[schema]].tpm_tpmvisit VALUES (47, '1970-01-01 00:00:00+00', '2019-09-03 09:49:57.861274+00', '2019-09-30 13:35:41.798969+00', 'tpm_reported', '', '', 'Breezes NGO visit', '2019-09-03', NULL, '2019-09-03', NULL, '2019-09-30', NULL, NULL, 14, '', 23641); INSERT INTO [[schema]].tpm_tpmvisit VALUES (61, '1970-01-01 00:00:00+00', '2019-10-15 09:38:59.216217+00', '2019-10-16 11:25:58.070967+00', 'cancelled', '', '', 'To monitor several TVET training activities in Zintan', '2019-10-15', '2019-10-16', NULL, NULL, NULL, NULL, NULL, 45, 'wrong TPM focal point', 14583); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (47, '1970-01-01 00:00:00+00', '2019-09-03 09:49:57.861274+00', '2019-12-23 14:13:40.65326+00', 'unicef_approved', '', '', 'Breezes NGO visit', '2019-09-03', NULL, '2019-09-03', NULL, '2019-09-30', NULL, '2019-12-23', 14, '', 23641); INSERT INTO [[schema]].tpm_tpmvisit VALUES (60, '1970-01-01 00:00:00+00', '2019-10-15 08:32:27.951691+00', '2019-10-16 11:44:14.142283+00', 'cancelled', '', '', 'Monitor three TVET training activities in Zintan', '2019-10-15', '2019-10-16', NULL, NULL, NULL, NULL, NULL, 45, 'Wrong TPM focal point', 14583); INSERT INTO [[schema]].tpm_tpmvisit VALUES (63, '1970-01-01 00:00:00+00', '2019-10-15 09:51:50.372042+00', '2019-10-15 11:17:06.334158+00', 'unicef_approved', '', '', 'To monitor the IYD celebration conducted by the implementing partner', '2019-10-15', NULL, '2019-10-15', NULL, '2019-10-15', NULL, '2019-10-15', 45, '', 14583); INSERT INTO [[schema]].tpm_tpmvisit VALUES (64, '1970-01-01 00:00:00+00', '2019-10-15 11:22:17.542448+00', '2019-10-15 12:14:28.06036+00', 'unicef_approved', '', '', 'To Monitor TVET training activities implemented by the partner', '2019-10-15', NULL, '2019-10-15', NULL, '2019-10-15', NULL, '2019-10-15', 45, '', 14583); INSERT INTO [[schema]].tpm_tpmvisit VALUES (69, '1970-01-01 00:00:00+00', '2019-10-16 17:59:37.378677+00', '2019-10-16 18:22:55.178471+00', 'unicef_approved', '', '', 'To monitor the IYD celebrations', '2019-10-16', NULL, '2019-10-16', NULL, '2019-10-16', NULL, '2019-10-16', 45, '', 14583); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (70, '1970-01-01 00:00:00+00', '2019-11-17 13:19:29.372126+00', '2019-11-26 11:09:48.637841+00', 'cancelled', '', '', 'Visit to the foot ball court contraction site - Zintan', '2019-11-17', '2019-11-26', '2019-11-17', NULL, NULL, NULL, NULL, 14, 'cancelled', 14583); INSERT INTO [[schema]].tpm_tpmvisit VALUES (62, '1970-01-01 00:00:00+00', '2019-10-15 09:46:17.365018+00', '2019-10-15 13:49:41.036311+00', 'unicef_approved', '', '', 'To monitor several TVET training activities conducted by the Implementing partner', '2019-10-15', NULL, '2019-10-15', NULL, '2019-10-15', NULL, '2019-10-15', 45, '', 14583); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (71, '1970-01-01 00:00:00+00', '2019-11-17 13:26:19.281799+00', '2019-11-26 11:11:30.810021+00', 'cancelled', '', '', 'Visit to the scout frost rehabilitation site - Zawara', '2019-11-17', '2019-11-26', '2019-11-17', NULL, NULL, NULL, NULL, 14, 'cancelled', 14583); INSERT INTO [[schema]].tpm_tpmvisit VALUES (66, '1970-01-01 00:00:00+00', '2019-10-16 11:36:54.413161+00', '2019-10-16 15:43:25.13768+00', 'unicef_approved', '', '', 'To monitor TVET training activities implemented by the partner', '2019-10-16', NULL, '2019-10-16', NULL, '2019-10-16', NULL, '2019-10-16', 45, '', 14583); INSERT INTO [[schema]].tpm_tpmvisit VALUES (67, '1970-01-01 00:00:00+00', '2019-10-16 15:44:43.911686+00', '2019-10-16 16:34:44.698937+00', 'unicef_approved', '', '', 'To monitor TVET activities implemented by the partner', '2019-10-16', NULL, '2019-10-16', NULL, '2019-10-16', NULL, '2019-10-16', 45, '', 14583); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (73, '1970-01-01 00:00:00+00', '2019-11-19 08:59:38.335701+00', '2019-12-04 07:16:21.612082+00', 'tpm_reported', '', '', 'field visit to activities implemented in Essafa''s Tripoli center for mental health and Specialized PSS', '2019-11-19', NULL, '2019-11-19', NULL, '2019-12-04', NULL, NULL, 14, '', 17817); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (72, '1970-01-01 00:00:00+00', '2019-11-19 08:39:42.43128+00', '2019-11-19 08:56:54.577178+00', 'assigned', '', '', 'celebration of children rights convention day in The scouts head quarters in Al-nasser street', '2019-11-19', NULL, NULL, NULL, NULL, NULL, NULL, 14, '', 17817); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (44, '1970-01-01 00:00:00+00', '2019-08-29 10:20:09.881235+00', '2019-12-09 12:29:53.161857+00', 'unicef_approved', '', 'This will be considered as 1 visit only', 'Visit and confirm the delivery and the proper use of supplies', '2019-09-02', NULL, '2019-10-09', NULL, '2019-10-09', NULL, '2019-12-09', 14, '', 176084); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (75, '1970-01-01 00:00:00+00', '2019-11-19 09:28:58.318794+00', '2019-12-04 09:45:11.49843+00', 'tpm_reported', '', '', 'mobile CFS provoding PSS activities in Urban and school settings in Ain zara affected area', '2019-11-19', NULL, '2019-11-19', NULL, '2019-12-04', NULL, NULL, 14, '', 17817); INSERT INTO [[schema]].tpm_tpmvisit VALUES (68, '1970-01-01 00:00:00+00', '2019-10-16 16:37:43.831227+00', '2019-10-16 17:53:55.365279+00', 'unicef_approved', '', '', 'To Monitor the TVET activities conducted by the implementing partner', '2019-10-16', NULL, '2019-10-16', NULL, '2019-10-16', NULL, '2019-10-16', 45, '', 14583); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (81, '1970-01-01 00:00:00+00', '2020-01-13 14:21:36.62076+00', '2020-01-13 14:36:51.151257+00', 'draft', '', '', 'Third party moniroting visit to CESVI''s Baity Center in Hay Andalous (Tripoli). This visit is the first third party monitoring visits since the opening of the Baity center (PCA was signed on 25/09/2019). Under the same PCA, three Baity centers will be opened: Tripoli (end of september 2019), Zwara (opened on 12th Jan 2020) and Misrata (still to be opened).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 14, '', 200131); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (77, '1970-01-01 00:00:00+00', '2019-12-23 13:28:12.194678+00', '2019-12-23 13:40:16.849435+00', 'assigned', '', '', 'Visit to Al-Aamryiah Muncip. to attend instillation of water pumps... etc.', '2019-12-23', NULL, NULL, NULL, NULL, NULL, NULL, 14, '', 23641); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (34, '1970-01-01 00:00:00+00', '2019-03-06 08:01:32.712302+00', '2019-12-23 15:11:29.533329+00', 'unicef_approved', '', '', 'Visit to program sites in Benghazi where Ekraa implemented education program', '2019-03-06', NULL, '2019-03-07', NULL, '2019-10-01', NULL, '2019-12-23', 14, '', 23641); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (82, '1970-01-01 00:00:00+00', '2020-01-14 09:55:54.443341+00', '2020-01-19 06:57:47.139+00', 'tpm_accepted', '', '', 'Monitoring the distribution to Tarhouna', '2020-01-14', NULL, '2020-01-19', NULL, NULL, NULL, NULL, 14, '', 14583); INSERT INTO [[schema]].tpm_tpmvisit VALUES (65, '1970-01-01 00:00:00+00', '2019-10-15 13:30:29.546196+00', '2019-10-16 19:45:25.955686+00', 'unicef_approved', '', '', 'To monitor TVET training activities implemented by the partner', '2019-10-15', NULL, '2019-10-16', NULL, '2019-10-16', NULL, '2019-10-16', 45, '', 14583); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (85, '1970-01-01 00:00:00+00', '2020-01-24 08:26:56.644907+00', '2020-01-24 08:26:56.644907+00', 'draft', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 14, '', 10233); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (78, '1970-01-01 00:00:00+00', '2019-12-29 08:25:18.847918+00', '2020-01-19 07:51:49.714881+00', 'tpm_reported', '', '', 'Multaqana are conducting distribution of winter clothes for children in detention.', '2019-12-29', NULL, '2019-12-29', NULL, '2020-01-19', NULL, NULL, 14, '', 29294); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (84, '1970-01-01 00:00:00+00', '2020-01-20 16:00:31.125044+00', '2020-01-26 06:33:51.978066+00', 'tpm_accepted', '', '', 'MRE sessions for students', '2020-01-24', NULL, '2020-01-26', NULL, NULL, NULL, NULL, 14, '', 200131); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (74, '1970-01-01 00:00:00+00', '2019-11-19 09:21:58.068374+00', '2019-11-19 15:05:59.385822+00', 'tpm_accepted', '', '', 'Children''s festival implemented by Scouts of Libya in Misrata as part of the PD activities', '2019-11-19', NULL, '2019-11-19', NULL, NULL, NULL, NULL, 14, '', 17817); +INSERT INTO [[schema]].tpm_tpmvisit VALUES (83, '1970-01-01 00:00:00+00', '2020-01-20 14:59:03.470558+00', '2020-01-27 13:42:01.37688+00', 'tpm_accepted', '', '', 'First third party monitoring visit for implementing partner INTERSOS to the baity center in Tripoli. Baity center in Tripoli was established through institutional contract signed in october 2018 (due to security situation Baity centre opened in March 2019). The continuation of the Baity center has been now included in existing PCA for Baity center in Sebha under geographical amendment, started on 1st of january 2020. Third party monitoring visit is needed for Tripoli, as Baity center in Sebha is not operational as of the 20th of january 2020.', '2020-01-20', NULL, '2020-01-27', NULL, NULL, NULL, NULL, 14, '', 200131); -- @@ -13739,6 +17395,26 @@ INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (55, 61, 145 INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (57, 67, 145); INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (58, 68, 145); INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (59, 69, 142); +INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (60, 70, 16); +INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (61, 71, 16); +INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (62, 72, 16); +INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (63, 72, 31); +INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (64, 73, 16); +INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (65, 73, 31); +INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (66, 74, 16); +INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (67, 74, 31); +INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (68, 75, 16); +INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (69, 75, 31); +INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (70, 76, 16); +INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (71, 77, 16); +INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (72, 78, 16); +INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (73, 81, 16); +INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (74, 81, 31); +INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (75, 82, 16); +INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (76, 83, 16); +INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (77, 83, 31); +INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (78, 84, 16); +INSERT INTO [[schema]].tpm_tpmvisit_tpm_partner_focal_points VALUES (79, 84, 31); -- @@ -14144,6 +17820,7 @@ INSERT INTO [[schema]].unicef_attachments_attachment VALUES (577, '2018-06-06 15 INSERT INTO [[schema]].unicef_attachments_attachment VALUES (578, '2018-06-06 15:52:38.141178+00', '2018-09-06 15:46:24.058415+00', 'files/tpm/tpmactivity/31/18-01-21-Emdad-Wash-Al-Arbaain-School-Sirte-LV.pdf', '', 31, 'activity_report', 261, 19, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (579, '2018-06-06 15:57:23.326148+00', '2018-09-06 15:46:24.075019+00', 'files/tpm/tpmactivity/34/18-01-23-Emdad-WASh-Al-Thawra-Al-Arabia-School-Sirte-LV.pdf', '', 34, 'activity_report', 261, 19, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (580, '2018-06-06 16:06:25.618084+00', '2018-09-06 15:46:24.089939+00', 'files/tpm/tpmactivity/33/18-01-23-Emdad-WASH-Talaie-Al-Nasr-School-Sirte-LV.pdf', '', 33, 'activity_report', 261, 19, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1240, '2020-04-03 12:44:07.483197+00', '2020-04-03 12:44:07.483197+00', 'public/files/unknown/tmp/Program_Doc._emR7ite.pdf', '', NULL, '', NULL, NULL, 198811); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (581, '2018-06-06 16:07:39.176+00', '2018-09-06 15:46:24.104855+00', 'files/tpm/tpmactivity/35/18-01-23-Emdad-WASH-Shuhada-Taqrift-School-Sirte-LV.pdf', '', 35, 'activity_report', 261, 19, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (582, '2018-06-07 08:53:05.629846+00', '2018-09-06 15:46:24.120066+00', 'files/tpm/tpmactivity/3/18-01-07-Alnahla-CP-Abdulmalik-Bin-Marouan-School.pdf', '', 3, 'activity_report', 261, 19, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (583, '2018-06-07 08:55:40.233886+00', '2018-09-06 15:46:24.135441+00', 'files/tpm/tpmactivity/4/18-01-07-Alnahla-CP-Alfalouga-School-Janzour.pdf', '', 4, 'activity_report', 261, 19, NULL); @@ -14248,7 +17925,6 @@ INSERT INTO [[schema]].unicef_attachments_attachment VALUES (698, '2018-12-06 04 INSERT INTO [[schema]].unicef_attachments_attachment VALUES (658, '2018-08-28 12:47:29.099145+00', '2018-12-11 01:29:29.440828+00', '[[schema]]/file_attachments/partner_organization/12/agreements/49/interventions/73/prc/04._Annex_G_Submission_Form.pdf', '', 73, 'partners_intervention_prc_review', 151, 38, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (659, '2018-08-28 12:47:29.166631+00', '2018-12-11 01:29:29.560662+00', '[[schema]]/file_attachments/partner_organization/12/agreements/49/interventions/73/prc/02._Annex_C_Program_Document.pdf', '', 73, 'partners_intervention_signed_pd', 151, 39, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (660, '2018-08-28 12:47:39.119366+00', '2018-12-11 01:41:57.439882+00', '[[schema]]/file_attachments/partner_organization/12/agreements/49/interventions/73/attachments/None/01._MoM.pdf', '', 309, 'partners_intervention_attachment', 156, 42, NULL); -INSERT INTO [[schema]].unicef_attachments_attachment VALUES (676, '2018-10-16 09:36:24.892924+00', '2018-12-11 00:54:31.910832+00', '', '', 122, 'partners_agreement', 72, 34, 23641); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (555, '2018-05-25 16:06:40.592536+00', '2018-12-11 00:54:32.054963+00', '[[schema]]/file_attachments/partner_organization/80/agreements/13._PCA_Legal_Agreement.pdf', '', 115, 'partners_agreement', 72, 34, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (662, '2018-08-28 12:47:39.294888+00', '2018-12-11 01:41:57.605229+00', '[[schema]]/file_attachments/partner_organization/12/agreements/49/interventions/73/attachments/None/03._Detailed_Budget.pdf', '', 307, 'partners_intervention_attachment', 156, 42, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1, '2018-03-29 09:17:55.79802+00', '2018-12-11 00:54:32.199811+00', '[[schema]]/file_attachments/partner_organization/38/agreements/12._PCA_Legal_Agreement.pdf', '', 113, 'partners_agreement', 72, 34, NULL); @@ -14376,6 +18052,7 @@ INSERT INTO [[schema]].unicef_attachments_attachment VALUES (793, '2018-12-10 22 INSERT INTO [[schema]].unicef_attachments_attachment VALUES (794, '2018-12-10 22:37:07.039343+00', '2018-12-11 01:41:56.374397+00', '[[schema]]/file_attachments/partner_organization/4/agreements/43/interventions/78/attachments/None/10._Charity_Foudation_Report.pdf', '', 322, 'partners_intervention_attachment', 156, 42, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (795, '2018-12-10 22:37:07.106092+00', '2018-12-11 01:41:56.464506+00', '[[schema]]/file_attachments/partner_organization/4/agreements/43/interventions/78/attachments/None/01._MoM.pdf', '', 321, 'partners_intervention_attachment', 156, 42, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (796, '2018-12-10 22:37:07.170861+00', '2018-12-11 01:41:56.542098+00', '[[schema]]/file_attachments/partner_organization/4/agreements/43/interventions/78/attachments/None/02._Annex_C_Program_Document.pdf', '', 320, 'partners_intervention_attachment', 156, 42, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1241, '2020-04-05 08:34:50.702469+00', '2020-04-05 08:34:50.702469+00', 'public/files/unknown/tmp/Program_Doc._Lm6Hrw3.pdf', '', NULL, '', NULL, NULL, 198811); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (797, '2018-12-10 22:37:07.240193+00', '2018-12-11 01:41:56.614223+00', '[[schema]]/file_attachments/partner_organization/4/agreements/43/interventions/78/attachments/None/03._Detaild_Budget.pdf', '', 319, 'partners_intervention_attachment', 156, 42, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (798, '2018-12-10 22:37:07.312425+00', '2018-12-11 01:41:56.690929+00', '[[schema]]/file_attachments/partner_organization/38/agreements/113/interventions/62/attachments/None/Annex_I._Joint_Partnership_Review.pdf', '', 318, 'partners_intervention_attachment', 156, 42, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (799, '2018-12-10 22:37:07.376916+00', '2018-12-11 01:41:56.774837+00', '[[schema]]/file_attachments/partner_organization/38/agreements/113/interventions/62/attachments/None/Joint_Partnership_Review_MoM.pdf', '', 317, 'partners_intervention_attachment', 156, 42, NULL); @@ -14659,6 +18336,7 @@ INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1095, '2019-10-16 1 INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1103, '2019-10-24 11:10:51.643307+00', '2019-10-24 11:10:51.643307+00', 'public/files/unknown/tmp/INTERSOS_UNICEF_EOI_-_Baity_Sebha_PD_VF6modified_N2k7QBE.pdf', '', NULL, '', NULL, NULL, 29294); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1110, '2019-10-28 08:32:03.080934+00', '2019-10-28 08:32:03.080934+00', 'public/files/unknown/tmp/CESVI_Amendment_2.pdf', '', NULL, '', NULL, NULL, 23641); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1107, '2019-10-27 08:27:30.524415+00', '2019-10-27 08:28:22.093208+00', 'public/files/unknown/tmp/legal_agreement_Zxah2WQ.pdf', '', 153, 'partners_agreement', 72, 61, 29294); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1117, '2019-11-19 08:56:49.746635+00', '2019-11-19 08:56:49.746635+00', 'public/files/tpm/tpmvisit/visit_attachments/72/scouts_signed_amendment_october_10th.pdf', '', 72, 'visit_attachments', 96, 18, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1104, '2019-10-24 11:12:03.876576+00', '2019-10-24 11:13:19.778065+00', 'public/files/partners/interventionattachment/partners_intervention_attachment/471/legal_agreement.pdf', '', 471, 'partners_intervention_attachment', 156, 58, 29294); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1105, '2019-10-24 11:15:53.711551+00', '2019-10-24 11:15:53.711551+00', 'public/files/unknown/tmp/Reference_Doc_5_Annex_G_PRC_Review_1final23091_v6qcnN2.pdf', '', NULL, '', NULL, NULL, 29294); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1106, '2019-10-24 11:16:05.867362+00', '2019-10-24 11:16:05.867362+00', 'public/files/unknown/tmp/INTERSOS_UNICEF_EOI_-_Baity_Sebha_PD_VF6modified_xcJ1QQX.pdf', '', NULL, '', NULL, NULL, 29294); @@ -14669,7 +18347,140 @@ INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1108, '2019-10-27 0 INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1116, '2019-11-05 14:09:19.269387+00', '2019-11-05 14:09:22.008602+00', 'public/files/unknown/tmp/Annex_E_Partner_Declaration_Profile_and_Due_Diligence_Verification_Eng_2019_-_Elssafa_002adjusted.pdf', '', 475, 'partners_intervention_attachment', 156, 58, 17817); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1112, '2019-10-28 09:26:44.488159+00', '2019-10-28 09:35:58.627579+00', 'public/files/unknown/tmp/Reference_Doc_5_Annex_G_PRC_final_sep_final_with_PRC_Signatures_17.09.pdf', '', 102, 'partners_intervention_prc_review', 151, 59, 29294); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1113, '2019-10-28 09:27:36.170816+00', '2019-10-28 09:35:58.668426+00', 'public/files/unknown/tmp/Cesvi__Baity_signed_and_stamped.pdf', '', 102, 'partners_intervention_signed_pd', 151, 60, 29294); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1118, '2019-11-19 09:18:30.789076+00', '2019-11-19 09:18:30.789076+00', 'public/files/tpm/tpmvisit/visit_attachments/73/Annex_C_Elssafa_signed.pdf', '', 73, 'visit_attachments', 96, 18, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1114, '2019-10-28 09:37:27.191367+00', '2019-10-28 09:37:29.377403+00', 'public/files/unknown/tmp/201900906_Cesvi_final_Budget.pdf', '', 473, 'partners_intervention_attachment', 156, 58, 29294); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1119, '2019-11-19 09:25:28.656343+00', '2019-11-19 09:25:28.656343+00', 'public/files/tpm/tpmvisit/visit_attachments/74/scouts_signed_amendment_october_10th.pdf', '', 74, 'visit_attachments', 96, 18, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1120, '2019-11-19 09:35:04.496518+00', '2019-11-19 09:35:04.496518+00', 'public/files/tpm/tpmvisit/visit_attachments/75/Annex_C_-_Programme_Document_amendment_NACA.pdf', '', 75, 'visit_attachments', 96, 18, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1121, '2019-12-01 14:47:54.83192+00', '2019-12-01 14:47:54.83192+00', 'public/files/unknown/tmp/scouts_signed_amendment_october_9th.pdf', '', NULL, '', NULL, NULL, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1123, '2019-12-04 07:15:59.615501+00', '2019-12-04 07:15:59.615501+00', 'public/files/tpm/tpmvisit/visit_report_attachments/73/FMR_-_Child_Protection_-_Essafa_Center_for_Mental_Health_-_Tripoli__26112019.pdf', '', 73, 'visit_report_attachments', 96, 33, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1122, '2019-12-01 14:48:36.563152+00', '2019-12-01 14:55:16.516191+00', 'public/files/unknown/tmp/scouts_signed_amendment_october_9th_H1D2krx.pdf', '', 27, 'partners_intervention_amendment_signed', 152, 62, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1124, '2019-12-04 09:45:01.985218+00', '2019-12-04 09:45:01.985218+00', 'public/files/tpm/tpmvisit/visit_report_attachments/75/26-11-2019_-_FMR_-_Child_Protection_-_NOOR_ALHAYAT_CHARITY_ASSOCIATION_-_Tripoli__003.pdf', '', 75, 'visit_report_attachments', 96, 33, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1128, '2019-12-11 10:54:44.603462+00', '2019-12-11 10:54:44.603462+00', 'public/files/unknown/tmp/Cesvi__Baity_signed_and_stamped_eA1yVon.pdf', '', NULL, '', NULL, NULL, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1125, '2019-12-08 13:07:01.470104+00', '2019-12-08 13:07:05.514841+00', 'public/files/unknown/tmp/Multakana_PD_ammendment_17032019.docx', '', 28, 'partners_intervention_amendment_signed', 152, 62, 29294); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1127, '2019-12-10 08:57:11.498991+00', '2019-12-10 08:57:24.046241+00', 'public/files/unknown/tmp/NCE_Multakana_signed.pdf', '', 29, 'partners_intervention_amendment_signed', 152, 62, 29294); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1126, '2019-12-08 13:08:23.217853+00', '2019-12-08 13:08:27.034563+00', 'public/files/unknown/tmp/Multakana_PD_ammendment_17032019_EbZAtEd.docx', '', 476, 'partners_intervention_attachment', 156, 58, 29294); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1141, '2019-12-22 09:56:26.842826+00', '2019-12-22 09:56:26.842826+00', 'public/files/unknown/tmp/Afaq_PD_cW4Olcc.PDF', '', NULL, '', NULL, NULL, 186083); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1129, '2019-12-11 10:59:06.973177+00', '2019-12-11 10:59:09.853345+00', 'public/files/unknown/tmp/Altadamon_for_Rehabilitation_and_Psychosocial_Support-_Spot_Check_Final_Report.pdf', '', 5, 'audit_report', 220, 11, 181082); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1132, '2019-12-17 08:42:13.225143+00', '2019-12-17 08:42:15.128076+00', 'public/files/unknown/tmp/Almobadr_Organization_-_Spot_Check_Final_Report.pdf', '', 6, 'audit_report', 220, 11, 181082); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1130, '2019-12-11 11:06:52.748651+00', '2019-12-11 11:06:59.75604+00', 'public/files/unknown/tmp/INTERSOS_UNICEF_EOI_-_Baity_Sebha_PD_VF6modified_A4VGkxy.pdf', '', 30, 'partners_intervention_amendment_signed', 152, 62, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1134, '2019-12-18 14:00:14.219124+00', '2019-12-18 14:00:53.642039+00', 'public/files/unknown/tmp/revised.pdf', '', 31, 'partners_intervention_amendment_signed', 152, 62, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1131, '2019-12-11 12:10:01.491267+00', '2019-12-11 12:10:03.355028+00', 'public/files/unknown/tmp/Alnahla_Organization_-_Spot_Check_Final_Report_.pdf', '', 4, 'audit_report', 220, 11, 181082); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1133, '2019-12-17 15:50:58.868357+00', '2019-12-17 15:51:30.723233+00', 'public/files/unknown/tmp/INTERSOS_UNICEF_EOI_-_Baity_Sebha_PD_VF6modified_TcbhADq.pdf', '', 477, 'partners_intervention_attachment', 156, 58, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1138, '2019-12-19 09:17:27.222521+00', '2019-12-19 09:17:37.870986+00', 'public/files/unknown/tmp/INTERSOS_UNICEF_EOI_-__Hub_Sabha_PD_VF_20112019_INTERSOS_Signed_ARG_INTERSOS.pdf', '', 105, 'partners_intervention_signed_pd', 151, 60, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1135, '2019-12-18 14:45:44.754962+00', '2019-12-18 14:45:57.070653+00', 'public/files/unknown/tmp/HCC_AWP_Review_meeting.pdf', '', 36, 'partners_assessment_report', 70, NULL, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1142, '2019-12-23 13:40:02.587281+00', '2019-12-23 13:40:02.587281+00', 'public/files/tpm/tpmvisit/visit_attachments/77/WASH_AWP_2019-2020_English-Arabic_Status_Action_Justification.xlsx', '', 77, 'visit_attachments', 96, 18, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1136, '2019-12-18 14:47:24.92474+00', '2019-12-18 14:47:28.399393+00', 'public/files/unknown/tmp/HCC_signed_document_meeting.jpg', '', 37, 'partners_assessment_report', 70, NULL, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1139, '2019-12-19 10:27:30.014798+00', '2019-12-19 10:27:32.679897+00', 'public/files/unknown/tmp/Cesvi__Baity_signed_and_stamped_sRbN4Ct.pdf', '', 32, 'partners_intervention_amendment_signed', 152, 62, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1137, '2019-12-18 14:47:50.21642+00', '2019-12-18 14:47:59.029956+00', 'public/files/unknown/tmp/Signed_WP_high_committee_of_children_1.pdf', '', 38, 'partners_assessment_report', 70, NULL, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1143, '2019-12-29 09:03:18.348457+00', '2019-12-29 09:03:18.348457+00', 'public/files/tpm/tpmactivity/activity_attachments/170/DMQ_.docx', '', 170, 'activity_attachments', 261, 18, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1140, '2019-12-19 15:29:44.354807+00', '2019-12-19 15:29:46.883153+00', 'public/files/unknown/tmp/Cesvi__Baity_signed_and_stamped_c34Tmkz.pdf', '', 478, 'partners_intervention_attachment', 156, 58, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1144, '2019-12-29 09:03:39.396014+00', '2019-12-29 09:03:39.396014+00', 'public/files/tpm/tpmactivity/activity_attachments/171/DMQ_.docx', '', 171, 'activity_attachments', 261, 18, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1145, '2019-12-29 13:22:53.787245+00', '2019-12-29 13:22:58.070351+00', 'public/files/unknown/tmp/LIB_PCA2019155-AGENCE_D_AIDE_A_LA_COOPERATION_TECHNIQUE_ET_AU_DEVELOPPEMENT.pdf', '', 155, 'partners_agreement', 72, 61, 29294); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1148, '2019-12-30 13:53:42.704804+00', '2019-12-30 13:54:09.307774+00', 'public/files/unknown/tmp/FACE_100_Altadamon_Liquidation.pdf', '', 16, 'audit_engagement', 220, 9, 17479); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1146, '2019-12-29 13:50:37.892242+00', '2019-12-29 13:53:45.481811+00', 'public/files/unknown/tmp/annex_G_ACTED_signed.pdf', '', 106, 'partners_intervention_prc_review', 151, 59, 29294); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1147, '2019-12-29 13:52:40.267559+00', '2019-12-29 13:53:45.505162+00', 'public/files/unknown/tmp/Partnership_cooporation_agreement.pdf', '', 106, 'partners_intervention_signed_pd', 151, 60, 29294); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1149, '2019-12-30 13:54:38.470307+00', '2019-12-30 13:54:40.995207+00', 'public/files/unknown/tmp/FACE_100_Altadamon_Request_2.pdf', '', 16, 'audit_engagement', 220, 9, 17479); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1150, '2019-12-31 08:22:12.752943+00', '2019-12-31 08:25:00.266774+00', 'public/files/unknown/tmp/FACE_105_CESVI_Liquidation_2.pdf', '', 17, 'audit_engagement', 220, 9, 17479); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1161, '2020-01-08 08:55:57.625099+00', '2020-01-08 08:58:43.994037+00', 'public/files/unknown/tmp/PD_signed_NcTuKTM.pdf', '', 479, 'partners_intervention_attachment', 156, 58, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1151, '2019-12-31 08:29:43.234258+00', '2019-12-31 08:29:46.261081+00', 'public/files/unknown/tmp/FACE_114_Multakana_Liquidation_2.pdf', '', 18, 'audit_engagement', 220, 9, 17479); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1162, '2020-01-13 08:25:49.420886+00', '2020-01-13 08:25:51.963955+00', 'public/files/unknown/tmp/final_review_multaqana.pdf', '', 480, 'partners_intervention_attachment', 156, 58, 29294); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1176, '2020-01-15 12:54:01.349055+00', '2020-01-15 12:54:12.746264+00', 'public/files/unknown/tmp/Ekraa_PD.pdf', '', 6, 'partners_agreement_amendment', 149, NULL, 173037); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1171, '2020-01-14 09:26:52.914651+00', '2020-01-14 09:27:26.011364+00', 'public/files/unknown/tmp/Cesvi__Baity_signed_and_stamped_f3BXky4.pdf', '', 34, 'partners_intervention_amendment_signed', 152, 62, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1197, '2020-01-26 07:26:52.997521+00', '2020-01-26 07:26:52.997521+00', 'public/files/unknown/tmp/Prog.2.pdf', '', NULL, '', NULL, NULL, 247375); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1163, '2020-01-13 08:26:15.615907+00', '2020-01-13 08:26:17.782118+00', 'public/files/unknown/tmp/ammendment_multaqana.pdf', '', 481, 'partners_intervention_attachment', 156, 58, 29294); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1154, '2019-12-31 08:41:28.027055+00', '2019-12-31 08:41:38.37079+00', 'public/files/unknown/tmp/FACE_75_Noor_Alhayat_Liquidation.pdf', '', 19, 'audit_engagement', 220, 9, 17479); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1155, '2019-12-31 09:09:36.387055+00', '2019-12-31 09:09:38.170702+00', 'public/files/unknown/tmp/FACE_128_Emdad_Liquidation.pdf', '', 20, 'audit_engagement', 220, 9, 17479); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1164, '2020-01-13 08:48:10.905612+00', '2020-01-13 08:48:13.502186+00', 'public/files/unknown/tmp/ammendment_multaqana_agQFOAb.pdf', '', 33, 'partners_intervention_amendment_signed', 152, 62, 29294); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1180, '2020-01-16 15:23:51.475682+00', '2020-01-16 15:24:53.540849+00', 'public/files/unknown/tmp/PD_signed_DIaqUI9.pdf', '', 107, 'partners_intervention_signed_pd', 151, 60, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1157, '2019-12-31 09:23:06.811609+00', '2019-12-31 09:23:06.811609+00', 'public/files/unknown/tmp/FACE_82_Multakana_Liquidation_1.pdf', '', NULL, '', NULL, NULL, 17479); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1158, '2019-12-31 09:23:46.166027+00', '2019-12-31 09:23:46.166027+00', 'public/files/unknown/tmp/FACE_105_CESVI_Liquidation_2_xrS8dyn.pdf', '', NULL, '', NULL, NULL, 17479); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1172, '2020-01-14 10:51:18.74042+00', '2020-01-14 10:51:20.164987+00', 'public/files/unknown/tmp/NRC-UNICEF_NCE_signed.pdf', '', 35, 'partners_intervention_amendment_signed', 152, 62, 23641); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1159, '2019-12-31 09:23:58.649238+00', '2019-12-31 09:24:00.844763+00', 'public/files/unknown/tmp/FACE_82_Multakana_Liquidation.pdf', '', 18, 'audit_engagement', 220, 9, 17479); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1165, '2020-01-13 10:24:24.240966+00', '2020-01-13 10:24:47.507275+00', 'public/files/unknown/tmp/MoSA_end_of_year_review_of_AWP_2019_signed.pdf', '', 39, 'partners_assessment_report', 70, NULL, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1160, '2019-12-31 09:57:30.200324+00', '2019-12-31 09:57:35.603602+00', 'public/files/unknown/tmp/FACE_97_Essafa_Report.pdf', '', 15, 'audit_engagement', 220, 9, 17479); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1166, '2020-01-13 10:25:16.010073+00', '2020-01-13 10:25:16.010073+00', 'public/files/unknown/tmp/MoSA_agreement_letter_1.pdf', '', NULL, '', NULL, NULL, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1167, '2020-01-13 10:25:45.131354+00', '2020-01-13 10:25:59.639904+00', 'public/files/unknown/tmp/MoSA_agreement_letter_1_2LIPOzD.pdf', '', 40, 'partners_assessment_report', 70, NULL, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1173, '2020-01-14 11:08:19.971236+00', '2020-01-14 11:08:23.411902+00', 'public/files/unknown/tmp/FACE_79_Altadamon_Liquidation_SVMwe0U.pdf', '', 21, 'audit_engagement', 220, 9, 17479); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1168, '2020-01-13 10:28:32.168358+00', '2020-01-13 10:29:14.578391+00', 'public/files/unknown/tmp/MoSA_Signed_Workplan.pdf', '', 41, 'partners_assessment_report', 70, NULL, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1169, '2020-01-13 14:38:31.494611+00', '2020-01-13 14:38:31.494611+00', 'public/files/unknown/tmp/20191010_amendment_PD_Sections_4.1_and_4.3.pdf', '', NULL, '', NULL, NULL, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1170, '2020-01-13 14:49:23.652857+00', '2020-01-13 14:49:45.665817+00', 'public/files/unknown/tmp/CESVI_PCA_2019-2020_KsblG9f_eO0lReo.pdf', '', 482, 'partners_intervention_attachment', 156, 58, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1174, '2020-01-14 11:16:18.047201+00', '2020-01-14 11:16:20.50183+00', 'public/files/unknown/tmp/FACE_124_CESVI_Liquidation_1_VmImAk2.pdf', '', 22, 'audit_engagement', 220, 9, 17479); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1175, '2020-01-14 11:23:59.977888+00', '2020-01-14 11:24:03.028742+00', 'public/files/unknown/tmp/FACE_110_Essafa_Liquidation_7NCENPN.pdf', '', 23, 'audit_engagement', 220, 9, 17479); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1177, '2020-01-15 12:56:31.977179+00', '2020-01-15 12:56:40.569523+00', 'public/files/unknown/tmp/Breezes_signed-stamped_PD_QlIpJud_KCVEifB.pdf', '', 7, 'partners_agreement_amendment', 149, NULL, 173037); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1178, '2020-01-16 11:49:56.269873+00', '2020-01-16 11:50:14.383058+00', 'public/files/unknown/tmp/5202_-_INTERSOS_-_UNICEF_-_Libya_2019_-_Budget_002.pdf', '', 8, 'partners_agreement_amendment', 149, NULL, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1179, '2020-01-16 11:53:49.708665+00', '2020-01-16 11:54:00.689825+00', 'public/files/unknown/tmp/Cesvi__Baity_signed_and_stamped_Q0MNFCm.pdf', '', 9, 'partners_agreement_amendment', 149, NULL, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1185, '2020-01-19 07:45:42.333464+00', '2020-01-19 07:45:42.333464+00', 'public/files/tpm/tpmvisit/visit_report_attachments/78/29-12-2019-_BF_report_Abou_Slim.pdf', '', 78, 'visit_report_attachments', 96, 33, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1181, '2020-01-16 15:25:12.869644+00', '2020-01-16 15:25:15.265008+00', 'public/files/unknown/tmp/PD_signed_ASrvemg.pdf', '', 483, 'partners_intervention_attachment', 156, 58, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1182, '2020-01-16 15:25:33.38444+00', '2020-01-16 15:25:35.389437+00', 'public/files/unknown/tmp/acted_legal_agreement.pdf', '', 484, 'partners_intervention_attachment', 156, 58, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1183, '2020-01-16 16:32:18.50165+00', '2020-01-16 16:32:20.272268+00', 'public/files/unknown/tmp/acted_legal_agreement_UmfnvIW.pdf', '', 485, 'partners_intervention_attachment', 156, 58, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1184, '2020-01-16 16:32:29.554786+00', '2020-01-16 16:32:30.431238+00', 'public/files/unknown/tmp/PD_budget_Final.pdf', '', 486, 'partners_intervention_attachment', 156, 58, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1186, '2020-01-19 07:46:34.602755+00', '2020-01-19 07:46:34.602755+00', 'public/files/tpm/tpmvisit/visit_report_attachments/78/29-12-2019-_TPM_report_Abou_Slim.pdf', '', 78, 'visit_report_attachments', 96, 33, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1187, '2020-01-19 07:46:50.382205+00', '2020-01-19 07:46:50.382205+00', 'public/files/tpm/tpmvisit/visit_report_attachments/78/29-12-2019-_TPM_report_Janzour_NJILA_Recovered.pdf', '', 78, 'visit_report_attachments', 96, 33, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1188, '2020-01-19 07:47:07.29029+00', '2020-01-19 07:47:07.29029+00', 'public/files/tpm/tpmvisit/visit_report_attachments/78/29-12-2019-BF_report_Janzour_NJILA.pdf', '', 78, 'visit_report_attachments', 96, 33, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1239, '2020-04-03 12:43:34.065655+00', '2020-04-03 12:43:34.065655+00', 'public/files/unknown/tmp/Program_Doc..pdf', '', NULL, '', NULL, NULL, 198811); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1189, '2020-01-19 07:47:26.263413+00', '2020-01-19 07:47:26.263413+00', 'public/files/tpm/tpmvisit/visit_report_attachments/78/31-12-2019-_BF_report_Al_Zawiya.pdf', '', 78, 'visit_report_attachments', 96, 33, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1190, '2020-01-19 07:47:44.833081+00', '2020-01-19 07:47:44.833081+00', 'public/files/tpm/tpmvisit/visit_report_attachments/78/31-12-2019-_TPM_report_AL_Zawiya.pdf', '', 78, 'visit_report_attachments', 96, 33, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1191, '2020-01-19 07:51:08.435638+00', '2020-01-19 07:51:08.435638+00', 'public/files/tpm/tpmvisit/visit_report_attachments/78/BF_report_Tariq_Al_Seka_reviewed_002.pdf', '', 78, 'visit_report_attachments', 96, 33, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1192, '2020-01-19 07:51:33.483536+00', '2020-01-19 07:51:33.483536+00', 'public/files/tpm/tpmvisit/visit_report_attachments/78/TPM_report_Tariq_Al_Seka.pdf', '', 78, 'visit_report_attachments', 96, 33, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1193, '2020-01-20 11:00:08.170393+00', '2020-01-20 11:00:10.889478+00', 'public/files/unknown/tmp/Breezes_Budget_Final.pdf', '', 487, 'partners_intervention_attachment', 156, 58, 247375); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1194, '2020-01-23 12:00:46.760939+00', '2020-01-23 12:00:56.005324+00', 'public/files/unknown/tmp/JPR_NACA_2019.pdf', '', 488, 'partners_intervention_attachment', 156, 58, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1195, '2020-01-23 12:01:29.769953+00', '2020-01-23 12:01:31.229052+00', 'public/files/unknown/tmp/Essafa_JPR_2019_SIGNED_FINALIZED.pdf', '', 489, 'partners_intervention_attachment', 156, 58, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1196, '2020-01-26 07:26:18.187626+00', '2020-01-26 07:26:20.852889+00', 'public/files/unknown/tmp/Q1_Liquidation_Progress_report_-signed.pdf', '', 490, 'partners_intervention_attachment', 156, NULL, 247375); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1209, '2020-02-24 07:35:18.572193+00', '2020-02-24 07:35:18.572193+00', 'public/files/unknown/tmp/PCA_Amendment_English_2019_NRC_signed_DR-21-2.pdf', '', NULL, '', NULL, NULL, 247375); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1198, '2020-01-26 07:28:03.839977+00', '2020-01-26 07:28:06.20544+00', 'public/files/unknown/tmp/Prog_Report_Q_2.pdf', '', 491, 'partners_intervention_attachment', 156, NULL, 247375); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1203, '2020-01-30 09:53:14.767482+00', '2020-01-30 09:53:16.885626+00', 'public/files/unknown/tmp/PD_signed_247cCy7.pdf', '', 496, 'partners_intervention_attachment', 156, NULL, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1199, '2020-01-26 07:31:20.482725+00', '2020-01-26 07:31:22.535272+00', 'public/files/unknown/tmp/Standard_Quarterly_Progress_Report_Q1.pdf', '', 492, 'partners_intervention_attachment', 156, NULL, 247375); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1204, '2020-02-11 12:40:21.554599+00', '2020-02-11 12:40:24.575252+00', 'public/files/unknown/tmp/amendment_CESVI_signed.pdf', '', 497, 'partners_intervention_attachment', 156, NULL, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1200, '2020-01-26 07:32:00.893457+00', '2020-01-26 07:32:03.457686+00', 'public/files/unknown/tmp/Standard_Quarterly_Progress_Report_Q2.pdf', '', 493, 'partners_intervention_attachment', 156, NULL, 247375); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1205, '2020-02-11 15:02:07.6268+00', '2020-02-11 15:02:07.6268+00', 'public/files/unknown/tmp/PD_-_Scouts_TdcX2fL.pdf', '', NULL, '', NULL, NULL, 173037); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1201, '2020-01-26 07:55:33.4734+00', '2020-01-26 07:55:44.792977+00', 'public/files/unknown/tmp/Standard_Quarterly_Progress_Report_Q1.docx', '', 494, 'partners_intervention_attachment', 156, NULL, 247375); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1206, '2020-02-11 15:03:49.653269+00', '2020-02-11 15:03:49.653269+00', 'public/files/unknown/tmp/PD_-_Scouts_jXQgBxf.pdf', '', NULL, '', NULL, NULL, 173037); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1202, '2020-01-26 07:59:44.573806+00', '2020-01-26 08:09:28.667243+00', 'public/files/unknown/tmp/Certified-_NRC_Progress_Report-_Q1.pdf', '', 495, 'partners_intervention_attachment', 156, NULL, 247375); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1207, '2020-02-11 15:06:51.508318+00', '2020-02-11 15:06:51.508318+00', 'public/files/unknown/tmp/Authorized_officer_new_email.docx', '', NULL, '', NULL, NULL, 173037); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1213, '2020-02-26 13:41:31.410294+00', '2020-02-26 13:41:31.410294+00', 'public/files/unknown/tmp/PCA_Amendment_English_2019_NRC_signed_by_the_SRep.pdf', '', NULL, '', NULL, NULL, 247375); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1208, '2020-02-11 15:07:14.597712+00', '2020-02-11 15:07:19.96087+00', 'public/files/unknown/tmp/PD_-_Scouts_o9YMZI7.pdf', '', 10, 'partners_agreement_amendment', 149, NULL, 173037); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1224, '2020-03-06 13:47:42.13231+00', '2020-03-06 13:47:42.13231+00', 'public/files/unknown/tmp/05._Annex_I_Joint_Partnership_Review.pdf', '', NULL, '', NULL, NULL, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1253, '2020-04-21 07:50:18.627617+00', '2020-04-21 07:50:18.627617+00', 'public/files/unknown/tmp/NRC_Amendment_Annex_G._Signed.pdf', '', NULL, '', NULL, NULL, 247375); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1211, '2020-02-25 14:01:19.647935+00', '2020-02-25 14:01:25.881719+00', 'public/files/unknown/tmp/PD_Essafa_2020_final_signed.pdf', '', 109, 'partners_intervention_signed_pd', 151, NULL, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1214, '2020-02-26 13:54:10.173484+00', '2020-02-26 13:54:29.839674+00', 'public/files/unknown/tmp/PCA_Amendment_English_2019_NRC_signed_by_the_SRep_eB5FMrS.pdf', '', 11, 'partners_agreement_amendment', 149, NULL, 247375); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1212, '2020-02-25 14:02:04.795689+00', '2020-02-25 14:02:06.925664+00', 'public/files/unknown/tmp/Essafa_Final_Budget_2020.pdf', '', 498, 'partners_intervention_attachment', 156, NULL, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1217, '2020-03-02 08:52:46.224248+00', '2020-03-02 08:52:48.215287+00', 'public/files/unknown/tmp/annex_G_ACTED_signed_kooOHFo.pdf', '', 37, 'partners_intervention_amendment_signed', 152, 62, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1215, '2020-02-27 07:01:54.522158+00', '2020-02-27 07:02:59.594679+00', 'public/files/unknown/tmp/Breezes_PD_Amendment__both_signed.pdf', '', 36, 'partners_intervention_amendment_signed', 152, 62, 247375); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1216, '2020-02-27 07:02:19.51701+00', '2020-02-27 07:02:59.629615+00', 'public/files/unknown/tmp/Programme_Document_Eng_2019_Breezes-_Amendment.docx', '', 36, 'partners_intervention_amendment_internal_prc_review', 152, 63, 247375); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1218, '2020-03-02 14:33:52.208182+00', '2020-03-02 14:33:52.208182+00', 'public/files/unknown/tmp/PCA_legal_agreement_IRC_SIGNED_irc_WWx4jRb_By10dOW.pdf', '', NULL, '', NULL, NULL, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1220, '2020-03-03 10:39:22.551779+00', '2020-03-03 10:39:24.26686+00', 'public/files/unknown/tmp/Scouts_Annex_G_signed.pdf', '', 500, 'partners_intervention_attachment', 156, NULL, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1219, '2020-03-02 14:34:20.226761+00', '2020-03-02 14:34:22.826545+00', 'public/files/unknown/tmp/PCA_legal_agreement_IRC_SIGNED_irc_WWx4jRb_FIMcMtp.pdf', '', 499, 'partners_intervention_attachment', 156, NULL, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1232, '2020-03-25 12:01:44.331918+00', '2020-03-25 12:01:44.331918+00', 'public/files/unknown/tmp/3F_NCE_SRep_signature.pdf', '', NULL, '', NULL, NULL, 10233); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1221, '2020-03-03 10:39:48.934402+00', '2020-03-03 10:39:50.449116+00', 'public/files/unknown/tmp/Scouts_Annex_G_signed_03ZNyj9.pdf', '', 501, 'partners_intervention_attachment', 156, NULL, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1225, '2020-03-06 13:47:52.082586+00', '2020-03-06 13:47:54.425945+00', 'public/files/unknown/tmp/acted_legal_agreement_Dwk0JyI.pdf', '', 504, 'partners_intervention_attachment', 156, NULL, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1222, '2020-03-03 10:40:10.673377+00', '2020-03-03 10:40:11.674843+00', 'public/files/unknown/tmp/PCA_-_Scouts_SIGNED.pdf', '', 502, 'partners_intervention_attachment', 156, NULL, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1223, '2020-03-03 14:45:49.955245+00', '2020-03-03 14:45:53.189059+00', 'public/files/unknown/tmp/Partner_declaration_Form_Scouts_ENG_signed.pdf', '', 503, 'partners_intervention_attachment', 156, NULL, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1226, '2020-03-06 13:50:12.828905+00', '2020-03-06 13:50:15.423875+00', 'public/files/unknown/tmp/Attachment_I__II_-_Partner_Declaration_and_Profile_Signed.pdf', '', 505, 'partners_intervention_attachment', 156, NULL, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1228, '2020-03-15 12:15:20.74063+00', '2020-03-15 12:15:23.427282+00', 'public/files/unknown/tmp/PD_Essafa_2020_final_signed_iuLNze2.pdf', '', 507, 'partners_intervention_attachment', 156, NULL, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1227, '2020-03-06 13:50:35.100472+00', '2020-03-06 13:50:37.044911+00', 'public/files/unknown/tmp/Attachments_-_Partner_Declaration_documents.pdf', '', 506, 'partners_intervention_attachment', 156, NULL, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1229, '2020-03-17 10:53:47.623787+00', '2020-03-17 10:53:49.904885+00', 'public/files/unknown/tmp/CESVI_UNICEF_CASH_SOPs_final_.pdf', '', 508, 'partners_intervention_attachment', 156, NULL, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1230, '2020-03-23 10:57:57.337674+00', '2020-03-23 10:58:13.659624+00', 'public/files/unknown/tmp/NRC-PD_amendment_-signed.pdf', '', 38, 'partners_intervention_amendment_signed', 152, 62, 247375); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1234, '2020-03-26 14:04:51.08581+00', '2020-03-26 14:04:51.08581+00', 'public/files/unknown/tmp/amendment_form_28feb_PD_signed_with_dates.pdf', '', NULL, '', NULL, NULL, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1231, '2020-03-23 11:01:03.881049+00', '2020-03-23 11:01:07.254466+00', 'public/files/unknown/tmp/NRC_UNICEF_Annex_C_PD_with_changes_23-3-2020.docx', '', 509, 'partners_intervention_attachment', 156, NULL, 247375); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1233, '2020-03-25 12:04:04.912092+00', '2020-03-25 12:04:42.036741+00', 'public/files/unknown/tmp/3F_NCE_SRep_signature_aayid0M.pdf', '', 39, 'partners_intervention_amendment_signed', 152, 62, 10233); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1237, '2020-04-02 09:48:08.713628+00', '2020-04-02 09:48:08.713628+00', 'public/files/unknown/tmp/LIB_PCA2020156-LIBYAN_RED_CRESCENT_SOCIETY_2.pdf', '', NULL, '', NULL, NULL, 198811); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1235, '2020-03-26 14:05:22.365136+00', '2020-03-26 14:05:25.276656+00', 'public/files/unknown/tmp/feb2020_PD_signed.pdf', '', 40, 'partners_intervention_amendment_signed', 152, 62, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1238, '2020-04-02 11:42:59.736542+00', '2020-04-02 11:42:59.736542+00', 'public/files/unknown/tmp/PCA_legal_Doc.pdf', '', NULL, '', NULL, NULL, 198811); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1236, '2020-03-26 15:15:39.418574+00', '2020-03-26 15:15:57.193545+00', 'public/files/unknown/tmp/amendment_form_28feb_PD_signed_with_dates_UmGcqW0.pdf', '', 41, 'partners_intervention_amendment_signed', 152, 62, 200131); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1242, '2020-04-05 09:41:53.969125+00', '2020-04-05 09:41:53.969125+00', 'public/files/unknown/tmp/Program_Doc._GDhlfTU.pdf', '', NULL, '', NULL, NULL, 198811); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1243, '2020-04-05 09:42:57.566216+00', '2020-04-05 09:42:57.566216+00', 'public/files/unknown/tmp/Program_Doc._15rbef3.pdf', '', NULL, '', NULL, NULL, 198811); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1245, '2020-04-06 15:23:15.618687+00', '2020-04-06 15:23:15.618687+00', 'public/files/unknown/tmp/PCA_legal_Doc_zQ7qTz9.pdf', '', NULL, '', NULL, NULL, 198811); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1247, '2020-04-07 10:22:02.125558+00', '2020-04-07 10:22:02.125558+00', 'public/files/unknown/tmp/Multaqana_HD_final.pdf', '', NULL, '', NULL, NULL, 29294); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1244, '2020-04-05 09:45:48.613874+00', '2020-04-05 09:47:24.431711+00', 'public/files/unknown/tmp/Program_Doc._7p7KlH1.pdf', '', 108, 'partners_intervention_signed_pd', 151, NULL, 198811); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1246, '2020-04-06 15:25:56.986384+00', '2020-04-06 15:26:42.838695+00', 'public/files/unknown/tmp/PCA_legal_Doc_TWQ0KGw.pdf', '', 156, 'partners_agreement', 72, 61, 198811); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (676, '2018-10-16 09:36:24.892924+00', '2020-04-17 18:50:11.301282+00', 'public/files/unknown/tmp/multakana_legal_2_JCuWp0c.pdf', '', 122, 'partners_agreement', 72, 34, 23641); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1248, '2020-04-07 10:22:18.175256+00', '2020-04-07 10:22:37.073537+00', 'public/files/unknown/tmp/Multaqana_HD_final_7HOmfSy.pdf', '', 510, 'partners_intervention_attachment', 156, NULL, 29294); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1251, '2020-04-14 12:54:02.212327+00', '2020-04-14 12:54:02.212327+00', 'public/files/unknown/tmp/Signed_PCA_LSO_2020.pdf', '', NULL, '', NULL, NULL, 247527); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1249, '2020-04-07 10:59:59.435625+00', '2020-04-07 11:00:03.607759+00', 'public/files/unknown/tmp/Final_Partnership_Review_-_Almobader.pdf', '', 511, 'partners_intervention_attachment', 156, NULL, 14583); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1250, '2020-04-14 12:51:26.076+00', '2020-04-14 12:54:15.296574+00', 'public/files/unknown/tmp/LS_PCARC_submission_signed_002.pdf', '', 111, 'partners_intervention_prc_review', 151, NULL, 247527); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1252, '2020-04-15 11:04:18.823145+00', '2020-04-15 11:04:28.245827+00', 'public/files/unknown/tmp/Signed_PCA_LSO_2020_SX2nfLO.pdf', '', 111, 'partners_intervention_signed_pd', 151, NULL, 247527); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1210, '2020-02-25 14:00:37.086661+00', '2020-04-20 15:08:52.69318+00', 'public/files/partners/intervention/partners_intervention_prc_review/109/Essafa_Annex_G_-_Signed.pdf', '', 109, 'partners_intervention_prc_review', 151, NULL, 17817); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1254, '2020-04-21 07:50:34.097698+00', '2020-04-21 07:50:37.659978+00', 'public/files/unknown/tmp/NRC_Amendment_Annex_G._Signed_itovmUm.pdf', '', 512, 'partners_intervention_attachment', 156, NULL, 247375); -- @@ -14688,65 +18499,65 @@ INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1114, '2019-10-28 0 -- Data for Name: unicef_attachments_filetype; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (7, 6, 'tors', 'Workplan', '', '{tpm,audit_engagement}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (8, 4, 'ice_form', 'ICE', 'audit_engagement', '{audit_engagement}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (17, 2, 'workplan', 'Workplan', 'audit_engagement', '{audit_engagement}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (9, 3, 'face_form', 'FACE form', 'audit_engagement', '{audit_engagement}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (8, 4, 'ice_form', 'ICE', 'audit_engagement', '{audit_engagement}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (10, 5, 'other', 'Other', 'audit_engagement', '{audit_engagement}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (11, 0, 'report', 'Report', 'audit_report', '{audit_report}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (10, 5, 'other', 'Other', '', '{audit_engagement,audit_report,tpm,tpm_report,tpm_partner,tpm_report_attachments}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (11, 0, 'report', 'Report', 'audit_report', '{audit_report,tpm_report}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (38, 0, 'tor', 'ToR', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (39, 0, 'contracts_partnership_agreements', 'Contracts/partnership agreements', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (40, 0, 'training_agenda', 'Training Agenda', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (41, 0, 'attendance_sheets', 'Attendance sheets', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (42, 0, 'communication_materials', 'Communication materials', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (43, 0, 'needs_assessments', 'Needs assessments', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (44, 0, 'risk_assessments', 'Risk assessments', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (52, 0, 'psea_investigation_policy_procedure', 'PSEA investigation policy/procedure', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (53, 0, 'other', 'Other', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (54, 0, 'documentation_of_standard_procedure', 'Documentation of standard procedure', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (55, 0, 'annual_training_plan', 'Annual training plan', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (56, 0, 'description_of_referral_process_for_survivors_of_gbvsea', 'Description of referral process for survivors of GBV/SEA', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (57, 0, 'written_process_for_review_of_sea', 'Written process for review of SEA', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (58, 0, 'sop', 'SOP', 'fm_common', NULL); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (14, 1, 'other', 'Other', 'audit_report', '{audit_report}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (61, 20, '', '', 'partners_agreement', '{partners_agreement}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (12, 0, 'activation_letter', 'PD Activation Letter', 'partners_intervention_activation_letter', '{partners_intervention_activation_letter}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (63, 22, '', '', 'partners_intervention_amendment_internal_prc_review', '{partners_intervention_amendment_internal_prc_review}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (62, 21, '', '', 'partners_intervention_amendment_signed', '{partners_intervention_amendment_signed}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (58, 17, '', '', 'partners_intervention_attachment', '{partners_intervention_attachment}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (59, 18, '', '', 'partners_intervention_prc_review', '{partners_intervention_prc_review}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (60, 19, '', '', 'partners_intervention_signed_pd', '{partners_intervention_signed_pd}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (59, 1, 'other', 'Other', 'fm_common', NULL); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (60, 0, 'psea_awareness_raising_plan', 'PSEA awareness-raising plan', 'psea_answer', '{psea_answer}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (13, 0, 'termination_doc', 'PD Termination Document', 'partners_intervention_termination_doc', '{partners_intervention_termination_doc}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (44, 0, 'risk_assessments', 'Risk assessments', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (43, 0, 'needs_assessments', 'Needs assessments', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (42, 0, 'communication_materials', 'Communication materials', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (41, 0, 'attendance_sheets', 'Attendance sheets', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (40, 0, 'training_agenda', 'Training Agenda', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (39, 0, 'contracts_partnership_agreements', 'Contracts/partnership agreements', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (38, 0, 'tor', 'ToR', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (34, 0, 'code_of_conduct', 'Code of Conduct', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (35, 0, 'psea_policy', 'PSEA Policy', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (37, 0, 'recruitment_procedure', 'Recruitment procedure', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (36, 0, 'relevant_human_resources_policies', 'Relevant human resources policies', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (57, 0, 'written_process_for_review_of_sea', 'Written process for review of SEA', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (56, 0, 'description_of_referral_process_for_survivors_of_gbvsea', 'Description of referral process for survivors of GBV/SEA', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (55, 0, 'annual_training_plan', 'Annual training plan', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (54, 0, 'documentation_of_standard_procedure', 'Documentation of standard procedure', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (53, 0, 'other', 'Other', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (52, 0, 'psea_investigation_policy_procedure', 'PSEA investigation policy/procedure', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (51, 0, 'dedicated_resources_for_investigations', 'Dedicated resources for investigation(s)', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (50, 0, 'names_of_possible_investigators', 'Name(s) of possible investigator(s)', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (49, 0, 'referral_form_for_survivors_of_gbv_sea', 'Referral form for survivors of GBV/SEA', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (48, 0, 'list_of_service_providers', 'List of service providers', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (47, 0, 'whistleblower_policy', 'Whistleblower policy', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (46, 0, 'description_of_reporting_mechanisms', 'Description of reportings mechanism(s)', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (45, 0, 'm_e_framework', 'M&E framework', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (18, 7, 'other', 'Other', 'tpm', '{tpm}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (29, 16, 'other', 'Other', 'tpm_partner', '{tpm_partner}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (19, 0, 'report', 'Report', 'tpm_report', '{tpm_report}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (24, 11, 'other', 'Other', 'tpm_report', '{tpm_report}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (32, 3, 'other', 'Other', 'tpm_report_attachments', '{tpm_report_attachments}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (1, 0, 'programme_document', 'FACE', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (2, 1, 'supply_manual_list', 'Progress report', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (3, 2, 'unicef_trip_report_action_point_report', 'Partnership review', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (4, 3, 'partner_report', 'Final Partnership Review', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (5, 4, 'previous_trip_reports', 'Correspondence', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (6, 5, 'training_materials', 'Supply/Distribution Plan', 'tpm', '{tpm}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (7, 6, 'tors', 'Workplan', 'tpm', '{tpm}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (18, 7, 'other', 'Other', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (22, 9, 'signed_pd/ssfa', 'Signed PD/SSFA', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (23, 10, 'prc_submission', 'PRC Submission', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (25, 12, 'terms_of_reference', 'Terms of Reference', 'tpm_partner', '{tpm_partner}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (26, 13, 'training_material', 'Training Material', 'tpm_partner', '{tpm_partner}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (27, 14, 'contract', 'Contract', 'tpm_partner', '{tpm_partner}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (28, 15, 'questionnaires', 'Questionnaires', 'tpm_partner', '{tpm_partner}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (29, 16, 'other', 'Other', 'tpm_partner', '{tpm_partner}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (19, 0, 'report', 'Report', 'tpm_report', '{tpm_report}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (24, 11, 'other', 'Other', 'tpm_report', '{tpm_report}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (33, 0, 'overall_report', 'Overall Report', 'tpm_report_attachments', '{tpm_report_attachments}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (30, 1, 'picture_dataset', 'Picture Dataset', 'tpm_report_attachments', '{tpm_report_attachments}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (31, 2, 'questionnaire', 'Questionnaire', 'tpm_report_attachments', '{tpm_report_attachments}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (32, 3, 'other', 'Other', 'tpm_report_attachments', '{tpm_report_attachments}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (33, 0, 'overall_report', 'Overall Report', 'tpm_report_attachments', '{tpm_report_attachments}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (34, 0, 'code_of_conduct', 'Code of Conduct', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (35, 0, 'psea_policy', 'PSEA Policy', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (36, 0, 'relevant_human_resources_policies', 'Relevant human resources policies', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (37, 0, 'recruitment_procedure', 'Recruitment procedure', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (45, 0, 'm_e_framework', 'M&E framework', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (46, 0, 'description_of_reporting_mechanisms', 'Description of reportings mechanism(s)', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (47, 0, 'whistleblower_policy', 'Whistleblower policy', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (48, 0, 'list_of_service_providers', 'List of service providers', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (49, 0, 'referral_form_for_survivors_of_gbv_sea', 'Referral form for survivors of GBV/SEA', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (50, 0, 'names_of_possible_investigators', 'Name(s) of possible investigator(s)', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (51, 0, 'dedicated_resources_for_investigations', 'Dedicated resources for investigation(s)', 'psea_answer', '{psea_answer}'); -- @@ -15307,6 +19118,7 @@ INSERT INTO [[schema]].unicef_snapshot_activity VALUES (582, '2019-10-01 14:03:1 INSERT INTO [[schema]].unicef_snapshot_activity VALUES (583, '2019-10-01 14:04:31.919399+00', '2019-10-01 14:04:31.919399+00', '20', 'create', '{"id": 20, "author": 29294, "office": 201, "status": "open", "history": [], "partner": "None", "section": 1, "category": "None", "comments": [], "due_date": "2019-10-31", "location": "None", "cp_output": 216, "engagement": "None", "key_events": [], "assigned_by": 29294, "assigned_to": 29294, "description": "Child protection officer to organize study tour of other partners to witness specific activities that are organize by INTERSOS team in their center . Before this happens, it will be important to have a discussion at the management level of how an overall capacity building of national partners will be done by INTERSOS in line with the PD signed with UNICEF", "intervention": "None", "tpm_activity": "None", "high_priority": false, "travel_activity": 106, "date_of_completion": "None"}', '{}', 29294, 270); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (585, '2019-10-08 14:36:54.625144+00', '2019-10-08 14:36:54.625144+00', '153', 'create', '{"id": 153, "end": "2020-12-31", "start": "2019-10-08", "status": "draft", "partner": 89, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": "None", "agreement_number": "LIB/PCA2019153", "country_programme": 34, "attached_agreement": "", "authorized_officers": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-08", "signed_by_partner_date": "2019-10-08", "special_conditions_pca": false}', '{}', 189196, 72); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (588, '2019-10-10 09:12:07.508027+00', '2019-10-10 09:12:07.508027+00', '103', 'update', '{"id": 103, "end": "None", "frs": [], "start": "None", "title": "PLACEHOLDER for GBV Programme - To be updated by Nissrin", "number": "LIB/PCA2019152/PD2019103", "status": "draft", "offices": [201], "metadata": {}, "sections": [], "agreement": 152, "amendments": [], "attachments": [459], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "None", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"submission_date": {"after": "2019-04-13", "before": "None"}, "unicef_signatory": {"after": 11490, "before": "None"}, "signed_by_unicef_date": {"after": "2019-10-07", "before": "None"}, "signed_by_partner_date": {"after": "2019-10-07", "before": "None"}, "partner_authorized_officer_signatory": {"after": 73, "before": "None"}}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (633, '2019-12-02 13:25:02.190749+00', '2019-12-02 13:25:02.190749+00', '22', 'create', '{"id": 22, "author": 29294, "office": 201, "status": "open", "history": [], "partner": 37, "section": 1, "category": "None", "comments": [], "due_date": "2019-12-20", "location": "None", "cp_output": 216, "engagement": "None", "key_events": [], "assigned_by": 29294, "assigned_to": 17817, "description": "S\\GBV training for partner staff, and messages to be shared with partner to be displayed in the center", "intervention": 80, "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 115, "date_of_completion": "None"}', '{}', 29294, 270); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (589, '2019-10-10 09:16:07.721775+00', '2019-10-10 09:16:07.721775+00', '103', 'update', '{"id": 103, "end": "None", "frs": [], "start": "None", "title": "PLACEHOLDER for GBV Programme - To be updated by Nissrin", "number": "LIB/PCA2019152/PD2019103", "status": "draft", "offices": [201], "metadata": {}, "sections": [], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "None", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 17817, 151); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (590, '2019-10-14 08:37:39.295955+00', '2019-10-14 08:37:39.295955+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 23641, 151); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (591, '2019-10-16 08:04:29.687473+00', '2019-10-16 08:04:29.687473+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [], "start": "2019-10-07", "title": "PLACEHOLDER for GBV Programme - To be updated by Nissrin", "number": "LIB/PCA2019152/PD2019103", "status": "draft", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"end": {"after": "2020-10-07", "before": "None"}, "start": {"after": "2019-10-07", "before": "None"}, "sections": {"after": [1], "before": []}, "review_date_prc": {"after": "2019-09-25", "before": "None"}, "submission_date_prc": {"after": "2019-09-24", "before": "None"}}', 17817, 151); @@ -15323,6 +19135,7 @@ INSERT INTO [[schema]].unicef_snapshot_activity VALUES (609, '2019-10-24 10:12:5 INSERT INTO [[schema]].unicef_snapshot_activity VALUES (602, '2019-10-16 11:56:38.883157+00', '2019-10-16 11:56:38.883157+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [], "start": "2019-10-07", "title": "PLACEHOLDER for GBV Programme - To be updated by Nissrin", "number": "LIB/PCA2019152/PD2019103", "status": "draft", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": false, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1840, 1914], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 17817, 151); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (603, '2019-10-16 11:56:49.307918+00', '2019-10-16 11:56:49.307918+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [], "start": "2019-10-07", "title": "PLACEHOLDER for GBV Programme - To be updated by Nissrin", "number": "LIB/PCA2019152/PD2019103", "status": "draft", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": false, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1840, 1914], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 17817, 151); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (605, '2019-10-16 11:58:42.615313+00', '2019-10-16 11:58:42.615313+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [], "start": "2019-10-07", "title": "PLACEHOLDER for GBV Programme - To be updated by Nissrin", "number": "LIB/PCA2019152/PD2019103", "status": "draft", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": false, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1840, 1914], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (642, '2019-12-02 14:13:46.668464+00', '2019-12-02 14:13:46.668464+00', '31', 'create', '{"id": 31, "author": 29294, "office": 201, "status": "open", "history": [], "partner": 89, "section": 1, "category": "None", "comments": [], "due_date": "2019-12-09", "location": "None", "cp_output": 216, "engagement": "None", "key_events": [], "assigned_by": 29294, "assigned_to": 29294, "description": "Display CP messages in the center .", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 116, "date_of_completion": "None"}', '{}', 29294, 270); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (606, '2019-10-16 13:09:13.36527+00', '2019-10-16 13:09:13.36527+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "signed", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": false, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1840, 1914], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"title": {"after": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "before": "PLACEHOLDER for GBV Programme - To be updated by Nissrin"}}', 23641, 151); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (607, '2019-10-16 13:40:07.470274+00', '2019-10-16 13:40:07.470274+00', '75', 'update', '{"id": 75, "end": "2019-10-27", "frs": [137], "start": "2018-06-26", "title": "“I am a child, and I have rights project” promoting child rights and child protection awareness and PSS inside and outside school settings.", "number": "LIB/PCA2018117/PD201875-3", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 117, "amendments": [19, 20, 21], "attachments": [469, 416, 374, 350, 349, 336, 335, 334], "in_amendment": false, "result_links": [58], "document_type": "PD", "contingency_pd": false, "flat_locations": [1897, 1854, 1872, 1894, 1898], "planned_visits": [60, 61], "review_date_prc": "2018-06-14", "submission_date": "2018-05-24", "termination_doc": "", "population_focus": "", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [60, 61, 62, 63, 64, 70, 68, 69, 74, 76, 77, 78], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/81/agreements/117/interventions/75/prc/Annex_C._Noor_Alhayat_Programme_Document.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/81/agreements/117/interventions/75/prc/Annex_G._NoorAlhayat_Signed.pdf", "submission_date_prc": "2018-05-24", "unicef_focal_points": [10233, 17817], "partner_focal_points": [66], "signed_pd_attachment": [647], "prc_review_attachment": [705], "reference_number_year": 2018, "signed_by_unicef_date": "2018-06-26", "reporting_requirements": [], "signed_by_partner_date": "2018-06-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 66}', '{}', 17817, 151); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (610, '2019-10-24 11:08:22.962659+00', '2019-10-24 11:08:22.962659+00', '89', 'update', '{"id": 89, "city": "TRIPOLI", "name": "INTERSOS", "email": "LIBYA@INTERSOS.ORG", "hidden": false, "rating": "High", "address": "TRIPOLI", "blocked": false, "country": "258", "cso_type": "International", "net_ct_cy": "None", "agreements": [153], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "None", "shared_with": "None", "total_ct_cp": "None", "total_ct_cy": "None", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "(218) 921556562", "total_ct_ytd": "None", "staff_members": [], "vendor_number": "2500240867", "vision_synced": true, "alternate_name": "Pietro de Nicolai", "planned_visits": [], "street_address": "None", "psea_assessment": [], "related_partner": [], "manually_blocked": false, "type_of_assessment": "High Risk Assumed", "last_assessment_date": "2019-10-07", "basis_for_risk_rating": "", "core_values_assessments": [51], "core_values_assessment_date": "2019-03-26", "outstanding_dct_amount_6_to_9_months_usd": "None", "outstanding_dct_amount_more_than_9_months_usd": "None"}', '{}', 29294, 68); @@ -15333,6 +19146,7 @@ INSERT INTO [[schema]].unicef_snapshot_activity VALUES (614, '2019-10-27 08:33:0 INSERT INTO [[schema]].unicef_snapshot_activity VALUES (615, '2019-10-27 10:21:13.687836+00', '2019-10-27 10:21:13.687836+00', '13', 'update', '{"id": 13, "end": "2017-06-13", "frs": [26, 30, 37], "start": "2016-06-13", "title": "Provision of recreational activities (15 towns) and remedial educational activities (10 towns) for school aged children in Libya", "number": "LIB/PCA201708/PD201713", "status": "draft", "offices": [201], "metadata": {"migrated": true, "old_status": "implemented"}, "sections": [2], "agreement": 44, "amendments": [], "attachments": [53, 52, 54], "in_amendment": false, "result_links": [43, 44], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1877, 1909, 2232, 1917, 1864, 1854, 1872, 1947, 1932, 1930, 1951, 1919, 1942, 1894, 1946], "planned_visits": [8], "review_date_prc": "2016-05-05", "submission_date": "2016-04-15", "termination_doc": "", "population_focus": "", "unicef_signatory": 13454, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/8/agreements/44/interventions/None/prc/Program_Document_U1rC8XE.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/8/agreements/44/interventions/None/prc/MoM_and_recomendation_Letter_SCOUTS_rBtNQKl.pdf", "submission_date_prc": "2016-04-15", "unicef_focal_points": [1551], "partner_focal_points": [5], "signed_pd_attachment": [93], "prc_review_attachment": [92], "reference_number_year": 2017, "signed_by_unicef_date": "2016-06-13", "reporting_requirements": [], "signed_by_partner_date": "2016-06-13", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 4}', '{"unicef_focal_points": {"after": [1551], "before": []}}', 23641, 151); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (616, '2019-10-27 10:22:39.720259+00', '2019-10-27 10:22:39.720259+00', '13', 'update', '{"id": 13, "end": "2017-06-13", "frs": [26, 30, 37], "start": "2016-06-13", "title": "Provision of recreational activities (15 towns) and remedial educational activities (10 towns) for school aged children in Libya", "number": "LIB/PCA201708/PD201713", "status": "ended", "offices": [201], "metadata": {"migrated": true, "old_status": "implemented"}, "sections": [2], "agreement": 44, "amendments": [], "attachments": [53, 52, 54], "in_amendment": false, "result_links": [43, 44], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1877, 1909, 2232, 1917, 1864, 1854, 1872, 1947, 1932, 1930, 1951, 1919, 1942, 1894, 1946], "planned_visits": [8], "review_date_prc": "2016-05-05", "submission_date": "2016-04-15", "termination_doc": "", "population_focus": "None", "unicef_signatory": 13454, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/8/agreements/44/interventions/None/prc/Program_Document_U1rC8XE.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/8/agreements/44/interventions/None/prc/MoM_and_recomendation_Letter_SCOUTS_rBtNQKl.pdf", "submission_date_prc": "2016-04-15", "unicef_focal_points": [1551], "partner_focal_points": [5], "signed_pd_attachment": [93], "prc_review_attachment": [92], "reference_number_year": 2017, "signed_by_unicef_date": "2016-06-13", "reporting_requirements": [], "signed_by_partner_date": "2016-06-13", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 4}', '{"status": {"after": "ended", "before": "signed"}, "population_focus": {"after": "None", "before": ""}}', 23641, 151); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (617, '2019-10-27 11:51:15.279292+00', '2019-10-27 11:51:15.279292+00', '65', 'update', '{"id": 65, "end": "2019-06-30", "frs": [124], "start": "2018-01-15", "title": "Psychosocial support and remedial education for children of IDPs and Refugees in the Tawargha camps and Tripoli", "number": "LIB/PCA201716/PD201865-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 55, "amendments": [18], "attachments": [468, 455, 454, 453, 452, 429, 428, 427, 414, 312, 227, 226, 225, 224, 223, 222, 221, 220, 219], "in_amendment": false, "result_links": [45, 46], "document_type": "PD", "contingency_pd": false, "flat_locations": [1832], "planned_visits": [], "review_date_prc": "2017-10-12", "submission_date": "2017-10-04", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [48, 72], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/23/agreements/55/interventions/65/prc/02._Annex_C_Program_Document.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/23/agreements/55/interventions/65/prc/04._Annex_G_Submission_Form.pdf", "submission_date_prc": "2017-10-12", "unicef_focal_points": [17635], "partner_focal_points": [18], "signed_pd_attachment": [66], "prc_review_attachment": [65], "reference_number_year": 2017, "signed_by_unicef_date": "2018-01-15", "reporting_requirements": [], "signed_by_partner_date": "2018-01-15", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 18}', '{"status": {"after": "active", "before": "ended"}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (630, '2019-11-28 10:34:20.555176+00', '2019-11-28 10:34:20.555176+00', '17', 'update', '{"id": 17, "author": 29294, "office": 209, "status": "open", "history": [580], "partner": "None", "section": 1, "category": "None", "comments": [], "due_date": "2019-10-20", "location": "None", "cp_output": 216, "engagement": "None", "key_events": [], "assigned_by": 29294, "assigned_to": 17635, "description": "Child protection and education specialist to engage with INTERSOS and find ways and strategies to increase the utilization of the center by migrants and refugees \nA dedicated discussion with the Youth team may be of help, to see how the youth volunteers could be of support to mobilize greater number of children", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 106, "date_of_completion": "None"}', '{}', 17635, 270); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (618, '2019-10-27 14:04:51.195715+00', '2019-10-27 14:04:51.195715+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "signed", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": false, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1840, 1914], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"frs": {"after": [158], "before": []}}', 189196, 151); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (620, '2019-10-28 08:33:03.434163+00', '2019-10-28 08:33:03.434163+00', '65', 'update', '{"id": 65, "end": "2019-09-30", "frs": [124], "start": "2018-01-15", "title": "Psychosocial support and remedial education for children of IDPs and Refugees in the Tawargha camps and Tripoli", "number": "LIB/PCA201716/PD201865-2", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 55, "amendments": [18, 26], "attachments": [468, 455, 454, 453, 452, 429, 428, 427, 414, 312, 227, 226, 225, 224, 223, 222, 221, 220, 219], "in_amendment": true, "result_links": [45, 46], "document_type": "PD", "contingency_pd": false, "flat_locations": [1832], "planned_visits": [], "review_date_prc": "2017-10-12", "submission_date": "2017-10-04", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [48, 72], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/23/agreements/55/interventions/65/prc/02._Annex_C_Program_Document.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/23/agreements/55/interventions/65/prc/04._Annex_G_Submission_Form.pdf", "submission_date_prc": "2017-10-12", "unicef_focal_points": [17635], "partner_focal_points": [18], "signed_pd_attachment": [66], "prc_review_attachment": [65], "reference_number_year": 2017, "signed_by_unicef_date": "2018-01-15", "reporting_requirements": [], "signed_by_partner_date": "2018-01-15", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 18}', '{"end": {"after": "2019-09-30", "before": "2019-06-30"}}', 23641, 151); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (621, '2019-10-28 08:33:16.948609+00', '2019-10-28 08:33:16.948609+00', '65', 'update', '{"id": 65, "end": "2019-09-30", "frs": [124], "start": "2018-01-15", "title": "Psychosocial support and remedial education for children of IDPs and Refugees in the Tawargha camps and Tripoli", "number": "LIB/PCA201716/PD201865-2", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 55, "amendments": [18, 26], "attachments": [468, 455, 454, 453, 452, 429, 428, 427, 414, 312, 227, 226, 225, 224, 223, 222, 221, 220, 219], "in_amendment": false, "result_links": [45, 46], "document_type": "PD", "contingency_pd": false, "flat_locations": [1832], "planned_visits": [], "review_date_prc": "2017-10-12", "submission_date": "2017-10-04", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [48, 72], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/23/agreements/55/interventions/65/prc/02._Annex_C_Program_Document.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/23/agreements/55/interventions/65/prc/04._Annex_G_Submission_Form.pdf", "submission_date_prc": "2017-10-12", "unicef_focal_points": [17635], "partner_focal_points": [18], "signed_pd_attachment": [66], "prc_review_attachment": [65], "reference_number_year": 2017, "signed_by_unicef_date": "2018-01-15", "reporting_requirements": [], "signed_by_partner_date": "2018-01-15", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 18}', '{"in_amendment": {"after": false, "before": true}}', 23641, 151); @@ -15341,27 +19155,516 @@ INSERT INTO [[schema]].unicef_snapshot_activity VALUES (623, '2019-10-28 09:23:1 INSERT INTO [[schema]].unicef_snapshot_activity VALUES (624, '2019-10-28 09:35:58.621088+00', '2019-10-28 09:35:58.621088+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102", "status": "draft", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [60], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{"review_date_prc": {"after": "2019-09-17", "before": "None"}, "submission_date": {"after": "2019-04-30", "before": "None"}, "unicef_signatory": {"after": 20024, "before": "None"}, "submission_date_prc": {"after": "2019-08-05", "before": "None"}, "signed_by_unicef_date": {"after": "2019-09-25", "before": "None"}, "signed_by_partner_date": {"after": "2019-09-25", "before": "None"}, "partner_authorized_officer_signatory": {"after": 59, "before": "None"}}', 29294, 151); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (625, '2019-10-28 09:37:33.88999+00', '2019-10-28 09:37:33.88999+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102", "status": "signed", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [], "attachments": [473], "in_amendment": false, "result_links": [60], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 29294, 151); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (627, '2019-11-06 14:45:25.191254+00', '2019-11-06 14:45:25.191254+00', '105', 'create', '{"id": 105, "end": "None", "frs": [], "start": "None", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "draft", "offices": [201], "metadata": {}, "sections": [], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [], "partner_focal_points": [], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (629, '2019-11-27 08:41:46.649161+00', '2019-11-27 08:41:46.649161+00', '100', 'update', '{"id": 100, "end": "2019-12-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [], "attachments": [451], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [2528, 2149, 2377, 2524, 1836, 1842, 1837, 1951, 1846, 1832, 2099], "planned_visits": [71], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"unicef_focal_points": {"after": [17817], "before": [13654]}}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (631, '2019-11-28 10:34:29.045309+00', '2019-11-28 10:34:29.045309+00', '17', 'update', '{"id": 17, "author": 29294, "office": 209, "status": "open", "history": [630, 580], "partner": "None", "section": 1, "category": "None", "comments": [10], "due_date": "2019-10-20", "location": "None", "cp_output": 216, "engagement": "None", "key_events": [], "assigned_by": 29294, "assigned_to": 17635, "description": "Child protection and education specialist to engage with INTERSOS and find ways and strategies to increase the utilization of the center by migrants and refugees \nA dedicated discussion with the Youth team may be of help, to see how the youth volunteers could be of support to mobilize greater number of children", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 106, "date_of_completion": "None"}', '{}', 17635, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (632, '2019-12-01 15:10:30.86767+00', '2019-12-01 15:10:30.86767+00', '100', 'update', '{"id": 100, "end": "2019-12-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [2528, 2149, 2377, 2524, 1836, 1842, 1837, 1951, 1846, 1832, 2099], "planned_visits": [71], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"in_amendment": {"after": false, "before": true}}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (634, '2019-12-02 13:28:02.645539+00', '2019-12-02 13:28:02.645539+00', '23', 'create', '{"id": 23, "author": 29294, "office": 209, "status": "open", "history": [], "partner": 37, "section": 2, "category": "None", "comments": [], "due_date": "2019-12-31", "location": "None", "cp_output": 185, "engagement": "None", "key_events": [], "assigned_by": 29294, "assigned_to": 1497, "description": "Education output to be re-assessed and a visit to the center by Education colleagues to check the classes and curriculum.", "intervention": 80, "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 115, "date_of_completion": "None"}', '{}', 29294, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (635, '2019-12-02 13:29:16.72305+00', '2019-12-02 13:29:16.72305+00', '24', 'create', '{"id": 24, "author": 29294, "office": 201, "status": "open", "history": [], "partner": 37, "section": 1, "category": "None", "comments": [], "due_date": "2019-12-15", "location": "None", "cp_output": 216, "engagement": "None", "key_events": [], "assigned_by": 29294, "assigned_to": 29294, "description": "establisment of community complaint mechanism.", "intervention": 80, "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 115, "date_of_completion": "None"}', '{}', 29294, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (636, '2019-12-02 14:04:48.814804+00', '2019-12-02 14:04:48.814804+00', '25', 'create', '{"id": 25, "author": 29294, "office": 209, "status": "open", "history": [], "partner": 89, "section": 1, "category": "None", "comments": [], "due_date": "2020-01-31", "location": "None", "cp_output": 216, "engagement": "None", "key_events": [], "assigned_by": 29294, "assigned_to": 200131, "description": "Child protection Officer to agree with INTERSOS on what the provision would be to make the access to the children with disabilities easier", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 116, "date_of_completion": "None"}', '{}', 29294, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (637, '2019-12-02 14:05:45.871985+00', '2019-12-02 14:05:45.871985+00', '26', 'create', '{"id": 26, "author": 29294, "office": 209, "status": "open", "history": [], "partner": 89, "section": 1, "category": "None", "comments": [], "due_date": "2020-01-31", "location": "None", "cp_output": 216, "engagement": "None", "key_events": [], "assigned_by": 29294, "assigned_to": 200131, "description": "Child Protection officer to discuss with INTERSOS way forward for care givers sessions timings and innovative ideas to attract them to attend", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 116, "date_of_completion": "None"}', '{}', 29294, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (638, '2019-12-02 14:06:56.019081+00', '2019-12-02 14:06:56.019081+00', '27', 'create', '{"id": 27, "author": 29294, "office": 209, "status": "open", "history": [], "partner": 89, "section": 1, "category": "None", "comments": [], "due_date": "2020-01-31", "location": "None", "cp_output": 216, "engagement": "None", "key_events": [], "assigned_by": 29294, "assigned_to": 200131, "description": "Include child protection FP in any upcoming trainings with INGOs and UN", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 116, "date_of_completion": "None"}', '{}', 29294, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (639, '2019-12-02 14:07:53.750716+00', '2019-12-02 14:07:53.750716+00', '28', 'create', '{"id": 28, "author": 29294, "office": 209, "status": "open", "history": [], "partner": 89, "section": 1, "category": "None", "comments": [], "due_date": "2020-01-31", "location": "None", "cp_output": 216, "engagement": "None", "key_events": [], "assigned_by": 29294, "assigned_to": 200131, "description": "Map the services available and display them in the center", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 116, "date_of_completion": "None"}', '{}', 29294, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (640, '2019-12-02 14:09:11.222369+00', '2019-12-02 14:09:11.222369+00', '29', 'create', '{"id": 29, "author": 29294, "office": 209, "status": "open", "history": [], "partner": 89, "section": 1, "category": "None", "comments": [], "due_date": "2020-01-31", "location": "None", "cp_output": 216, "engagement": "None", "key_events": [], "assigned_by": 29294, "assigned_to": 200131, "description": "PSEA training for the staff, and assigning a focal point for PSEA, and provide PSEA materials and advice on feedback mechanism", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 116, "date_of_completion": "None"}', '{}', 29294, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (641, '2019-12-02 14:12:17.181046+00', '2019-12-02 14:12:17.181046+00', '30', 'create', '{"id": 30, "author": 29294, "office": 209, "status": "open", "history": [], "partner": 89, "section": 1, "category": "None", "comments": [], "due_date": "2020-01-31", "location": "None", "cp_output": 216, "engagement": "None", "key_events": [], "assigned_by": 29294, "assigned_to": 200131, "description": "Child protection officer to set with INTERSOS community feedback mechanism", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 116, "date_of_completion": "None"}', '{}', 29294, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (643, '2019-12-03 08:22:39.675623+00', '2019-12-03 08:22:39.675623+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1840, 1914], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"in_amendment": {"after": true, "before": false}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (644, '2019-12-03 08:22:56.233977+00', '2019-12-03 08:22:56.233977+00', '101', 'update', '{"id": 101, "end": "2019-12-31", "frs": [156], "start": "2019-06-01", "title": "Placeholder - to be updated", "number": "LIB/PCA2019130/PD2019101", "status": "active", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [458, 457, 456], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "None", "submission_date": "2019-05-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [14488], "partner_focal_points": [16], "signed_pd_attachment": [997], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-01", "reporting_requirements": [], "signed_by_partner_date": "2019-06-01", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{"in_amendment": {"after": true, "before": false}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (645, '2019-12-03 08:23:32.62225+00', '2019-12-03 08:23:32.62225+00', '100', 'update', '{"id": 100, "end": "2019-12-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [2528, 2149, 2377, 2524, 1836, 1842, 1837, 1951, 1846, 1832, 2099], "planned_visits": [71], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"in_amendment": {"after": true, "before": false}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (646, '2019-12-03 08:24:00.35954+00', '2019-12-03 08:24:00.35954+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{"in_amendment": {"after": true, "before": false}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (668, '2019-12-12 15:11:10.613776+00', '2019-12-12 15:11:10.613776+00', '75', 'update', '{"id": 75, "end": "2019-12-31", "frs": [137], "start": "2018-06-26", "title": "“I am a child, and I have rights project” promoting child rights and child protection awareness and PSS inside and outside school settings.", "number": "LIB/PCA2018117/PD201875-4", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 117, "amendments": [19, 20, 21, 25], "attachments": [470, 469, 416, 374, 350, 349, 336, 335, 334], "in_amendment": false, "result_links": [58], "document_type": "PD", "contingency_pd": false, "flat_locations": [1897, 1854, 1872, 1894, 1898], "planned_visits": [60, 61], "review_date_prc": "2018-06-14", "submission_date": "2018-05-24", "termination_doc": "", "population_focus": "", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [60, 61, 62, 63, 64, 70, 68, 69, 74, 76, 77, 78], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/81/agreements/117/interventions/75/prc/Annex_C._Noor_Alhayat_Programme_Document.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/81/agreements/117/interventions/75/prc/Annex_G._NoorAlhayat_Signed.pdf", "submission_date_prc": "2018-05-24", "unicef_focal_points": [10233, 17817], "partner_focal_points": [66], "signed_pd_attachment": [647], "prc_review_attachment": [705], "reference_number_year": 2018, "signed_by_unicef_date": "2018-06-26", "reporting_requirements": [], "signed_by_partner_date": "2018-06-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 66}', '{"in_amendment": {"after": false, "before": true}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (647, '2019-12-03 08:24:06.895117+00', '2019-12-03 08:24:06.895117+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 146, "amendments": [], "attachments": [437], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [1551], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{"in_amendment": {"after": true, "before": false}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (648, '2019-12-03 08:24:17.658819+00', '2019-12-03 08:24:17.658819+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [1551], "partner_focal_points": [17], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{"in_amendment": {"after": true, "before": false}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (649, '2019-12-03 08:24:25.463926+00', '2019-12-03 08:24:25.463926+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{"in_amendment": {"after": true, "before": false}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (650, '2019-12-03 08:24:33.025981+00', '2019-12-03 08:24:33.025981+00', '89', 'update', '{"id": 89, "end": "2019-12-31", "frs": [148], "start": "2019-04-02", "title": "Youth Participation and Civic Engagement", "number": "LIB/PCA2019141/PD201989-1", "status": "active", "offices": [201], "metadata": {}, "sections": [5], "agreement": 141, "amendments": [22], "attachments": [434, 433, 432, 431], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [66], "review_date_prc": "2019-03-18", "submission_date": "2019-03-17", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8421, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [66, 65, 105, 108, 109, 110], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-03-17", "unicef_focal_points": [14583], "partner_focal_points": [56], "signed_pd_attachment": [913], "prc_review_attachment": [914], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-02", "reporting_requirements": [], "signed_by_partner_date": "2019-04-02", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 56}', '{"in_amendment": {"after": true, "before": false}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (651, '2019-12-03 08:24:40.900729+00', '2019-12-03 08:24:40.900729+00', '87', 'update', '{"id": 87, "end": "2019-12-31", "frs": [147], "start": "2019-01-06", "title": "Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi", "number": "LIB/PCA2019137/PD201987", "status": "active", "offices": [201], "metadata": {}, "sections": [5, 2], "agreement": 137, "amendments": [], "attachments": [425, 424, 423, 422, 421, 420], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836, 1832], "planned_visits": [65], "review_date_prc": "2018-11-21", "submission_date": "2018-10-12", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-11-11", "unicef_focal_points": [1551], "partner_focal_points": [67], "signed_pd_attachment": [878], "prc_review_attachment": [877], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-06", "reporting_requirements": [], "signed_by_partner_date": "2019-01-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 67}', '{"in_amendment": {"after": true, "before": false}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (652, '2019-12-03 08:24:49.665911+00', '2019-12-03 08:24:49.665911+00', '85', 'update', '{"id": 85, "end": "2019-12-22", "frs": [144], "start": "2019-01-01", "title": "Specialized Psychosocial Suppport for vulnerable children in Sebha, Benghazi, and Tripoli", "number": "LIB/PCA2019124/PD201985", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 124, "amendments": [], "attachments": [475, 474, 413, 412, 411, 410], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1835, 1832], "planned_visits": [56], "review_date_prc": "2018-12-19", "submission_date": "2018-09-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-12-13", "unicef_focal_points": [17817], "partner_focal_points": [1], "signed_pd_attachment": [846], "prc_review_attachment": [845], "reference_number_year": 2019, "signed_by_unicef_date": "2018-12-23", "reporting_requirements": [], "signed_by_partner_date": "2018-12-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 1}', '{"in_amendment": {"after": true, "before": false}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (656, '2019-12-08 12:38:54.773141+00', '2019-12-08 12:38:54.773141+00', '90', 'update', '{"id": 90, "city": "TRIPOLI", "name": "HIGH COMMISSION OF CHILDREN", "email": "MSHERIF157@YAHOO.COM", "hidden": false, "rating": "High", "address": "TRIPOLI", "blocked": false, "country": "258", "cso_type": "None", "net_ct_cy": "None", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}}, "outstanding_findings": 0}, "postal_code": "00218", "reported_cy": "None", "shared_with": "None", "total_ct_cp": "None", "total_ct_cy": "None", "alternate_id": "None", "deleted_flag": false, "partner_type": "Government", "phone_number": "218912221186", "total_ct_ytd": "None", "staff_members": [], "vendor_number": "2500240885", "vision_synced": true, "alternate_name": "None", "planned_visits": [], "street_address": "None", "psea_assessment": [], "related_partner": [], "manually_blocked": false, "type_of_assessment": "High Risk Assumed", "last_assessment_date": "2019-10-07", "basis_for_risk_rating": "", "core_values_assessments": [52], "core_values_assessment_date": "None", "outstanding_dct_amount_6_to_9_months_usd": "None", "outstanding_dct_amount_more_than_9_months_usd": "None"}', '{}', 17817, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (657, '2019-12-08 12:55:24.289311+00', '2019-12-08 12:55:24.289311+00', '80', 'update', '{"id": 80, "end": "2019-07-25", "frs": [136], "start": "2018-07-26", "title": "Provision of psychosocial support and non-formal education for vulnerable migrant and IDP children", "number": "LIB/PCA2018122/PD201880", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 122, "amendments": [], "attachments": [373, 372, 371, 370, 369, 368, 367, 366, 365], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [58, 59], "review_date_prc": "2018-06-14", "submission_date": "2018-05-24", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [104, 115], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Annex_c_multakana_PD.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Multakana_MoM.pdf", "submission_date_prc": "2018-05-24", "unicef_focal_points": [17817], "partner_focal_points": [6], "signed_pd_attachment": [700], "prc_review_attachment": [699], "reference_number_year": 2018, "signed_by_unicef_date": "2018-07-26", "reporting_requirements": [], "signed_by_partner_date": "2018-07-26", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{"status": {"after": "active", "before": "closed"}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (659, '2019-12-08 13:08:40.993522+00', '2019-12-08 13:08:40.993522+00', '80', 'update', '{"id": 80, "end": "2019-11-30", "frs": [136], "start": "2018-07-26", "title": "Provision of psychosocial support and non-formal education for vulnerable migrant and IDP children", "number": "LIB/PCA2018122/PD201880-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 122, "amendments": [28], "attachments": [476, 373, 372, 371, 370, 369, 368, 367, 366, 365], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [58, 59], "review_date_prc": "2018-06-14", "submission_date": "2018-05-24", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [104, 115], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Annex_c_multakana_PD.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Multakana_MoM.pdf", "submission_date_prc": "2018-05-24", "unicef_focal_points": [29294], "partner_focal_points": [6], "signed_pd_attachment": [700], "prc_review_attachment": [699], "reference_number_year": 2018, "signed_by_unicef_date": "2018-07-26", "reporting_requirements": [], "signed_by_partner_date": "2018-07-26", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{"in_amendment": {"after": false, "before": true}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (848, '2020-01-15 12:54:12.699664+00', '2020-01-15 12:54:12.699664+00', '144', 'update', '{"id": 144, "end": "2020-12-31", "start": "2019-05-20", "status": "signed", "partner": 4, "signed_by": "None", "amendments": [], "attachment": [940], "interventions": [90], "agreement_type": "PCA", "partner_manager": 11, "agreement_number": "LIB/PCA2019144", "country_programme": 34, "attached_agreement": "", "authorized_officers": [79], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "signed_by_partner_date": "2019-05-12", "special_conditions_pca": false}', '{"authorized_officers": {"after": [79], "before": [11]}}', 173037, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (653, '2019-12-03 08:24:59.842183+00', '2019-12-03 08:24:59.842183+00', '77', 'update', '{"id": 77, "end": "2020-04-24", "frs": [141], "start": "2018-10-25", "title": "Prepositioning of Emergency Supplies stocks and Rapid Response Mechanism (RRM)", "number": "LIB/PCA201710/PD201877-1", "status": "active", "offices": [201], "metadata": {}, "sections": [5, 1, 2, 4, 3], "agreement": 48, "amendments": [24], "attachments": [378, 377, 376, 375], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [2646], "planned_visits": [63, 64], "review_date_prc": "2018-10-02", "submission_date": "2018-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/77/prc/STACO_-_Annex_C..pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/77/prc/STACO_-_Annex_G..pdf", "submission_date_prc": "2018-09-27", "unicef_focal_points": [1139], "partner_focal_points": [10], "signed_pd_attachment": [704], "prc_review_attachment": [703], "reference_number_year": 2018, "signed_by_unicef_date": "2018-10-25", "reporting_requirements": [], "signed_by_partner_date": "2018-10-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 10}', '{"in_amendment": {"after": true, "before": false}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (654, '2019-12-03 08:25:10.186348+00', '2019-12-03 08:25:10.186348+00', '76', 'update', '{"id": 76, "end": "2019-12-31", "frs": [140], "start": "2018-09-20", "title": "Distribution of High Energy Biscuits (HEB) among vulnerable group in Detention Centres and Misrata prison in Libya", "number": "LIB/PCA2018113/PD201876-1", "status": "active", "offices": [201], "metadata": {}, "sections": [4], "agreement": 113, "amendments": [23], "attachments": [415, 379, 359, 358, 357, 356, 355, 354, 353, 352, 351], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1832], "planned_visits": [54, 55], "review_date_prc": "2018-09-16", "submission_date": "2018-09-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/38/agreements/113/interventions/76/prc/Annex_C._Programme_Document_evBrUWs.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/38/agreements/113/interventions/76/prc/Annex_G._Alemdad_Signed_4G54U8K.pdf", "submission_date_prc": "2018-09-13", "unicef_focal_points": [12212], "partner_focal_points": [15], "signed_pd_attachment": [693], "prc_review_attachment": [692], "reference_number_year": 2018, "signed_by_unicef_date": "2018-09-20", "reporting_requirements": [], "signed_by_partner_date": "2018-09-20", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 15}', '{"in_amendment": {"after": true, "before": false}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (655, '2019-12-03 08:25:22.761457+00', '2019-12-03 08:25:22.761457+00', '74', 'update', '{"id": 74, "end": "2019-12-31", "frs": [138], "start": "2018-08-14", "title": "Improving learning environment through rehabilitation 2 schools in Murzuque", "number": "LIB/PCA201710/PD201774-2", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 48, "amendments": [15, 16], "attachments": [408, 407, 406, 405, 404, 310, 303, 302, 301, 300, 299, 298, 297, 296], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1852], "planned_visits": [62], "review_date_prc": "2018-06-06", "submission_date": "2018-05-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/74/prc/02._PD201774_-_Programme_Document.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/6/agreements/48/interventions/74/prc/05._PD201774_-_Annex_G._Submission_Form.pdf", "submission_date_prc": "2018-06-03", "unicef_focal_points": [14488], "partner_focal_points": [10], "signed_pd_attachment": [649], "prc_review_attachment": [648], "reference_number_year": 2017, "signed_by_unicef_date": "2018-08-14", "reporting_requirements": [], "signed_by_partner_date": "2018-08-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 10}', '{"in_amendment": {"after": true, "before": false}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (658, '2019-12-08 13:08:31.26933+00', '2019-12-08 13:08:31.26933+00', '80', 'update', '{"id": 80, "end": "2019-11-30", "frs": [136], "start": "2018-07-26", "title": "Provision of psychosocial support and non-formal education for vulnerable migrant and IDP children", "number": "LIB/PCA2018122/PD201880-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 122, "amendments": [28], "attachments": [476, 373, 372, 371, 370, 369, 368, 367, 366, 365], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [58, 59], "review_date_prc": "2018-06-14", "submission_date": "2018-05-24", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [104, 115], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Annex_c_multakana_PD.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Multakana_MoM.pdf", "submission_date_prc": "2018-05-24", "unicef_focal_points": [29294], "partner_focal_points": [6], "signed_pd_attachment": [700], "prc_review_attachment": [699], "reference_number_year": 2018, "signed_by_unicef_date": "2018-07-26", "reporting_requirements": [], "signed_by_partner_date": "2018-07-26", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{"end": {"after": "2019-11-30", "before": "2019-07-25"}, "flat_locations": {"after": [1899], "before": []}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (849, '2020-01-15 12:56:40.532274+00', '2020-01-15 12:56:40.532274+00', '147', 'update', '{"id": 147, "end": "2020-12-31", "start": "2019-06-24", "status": "signed", "partner": 17, "signed_by": "None", "amendments": [], "attachment": [985], "interventions": [92], "agreement_type": "PCA", "partner_manager": 17, "agreement_number": "LIB/PCA2019147", "country_programme": 34, "attached_agreement": "", "authorized_officers": [77], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "signed_by_partner_date": "2019-06-17", "special_conditions_pca": false}', '{"authorized_officers": {"after": [77], "before": [17]}}', 173037, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (660, '2019-12-09 08:07:14.301503+00', '2019-12-09 08:07:14.301503+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102", "status": "signed", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [], "attachments": [473], "in_amendment": false, "result_links": [60], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (661, '2019-12-09 08:14:57.779879+00', '2019-12-09 08:14:57.779879+00', '89', 'update', '{"id": 89, "end": "2019-12-31", "frs": [148], "start": "2019-04-02", "title": "Youth Participation and Civic Engagement", "number": "LIB/PCA2019141/PD201989-1", "status": "active", "offices": [201], "metadata": {}, "sections": [5], "agreement": 141, "amendments": [22], "attachments": [434, 433, 432, 431], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [66], "review_date_prc": "2019-03-18", "submission_date": "2019-03-17", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8421, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [66, 65, 105, 108, 109, 110], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-03-17", "unicef_focal_points": [14583], "partner_focal_points": [56], "signed_pd_attachment": [913], "prc_review_attachment": [914], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-02", "reporting_requirements": [], "signed_by_partner_date": "2019-04-02", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 56}', '{"in_amendment": {"after": false, "before": true}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (662, '2019-12-09 08:24:59.261005+00', '2019-12-09 08:24:59.261005+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102", "status": "signed", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [], "attachments": [473], "in_amendment": false, "result_links": [60], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{"frs": {"after": [159], "before": []}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (663, '2019-12-10 08:49:19.416396+00', '2019-12-10 08:49:19.416396+00', '80', 'update', '{"id": 80, "end": "2019-11-30", "frs": [136], "start": "2018-07-26", "title": "Provision of psychosocial support and non-formal education for vulnerable migrant and IDP children", "number": "LIB/PCA2018122/PD201880-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 122, "amendments": [28], "attachments": [476, 373, 372, 371, 370, 369, 368, 367, 366, 365], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [58, 59], "review_date_prc": "2018-06-14", "submission_date": "2018-05-24", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [104, 115], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Annex_c_multakana_PD.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Multakana_MoM.pdf", "submission_date_prc": "2018-05-24", "unicef_focal_points": [29294], "partner_focal_points": [6], "signed_pd_attachment": [700], "prc_review_attachment": [699], "reference_number_year": 2018, "signed_by_unicef_date": "2018-07-26", "reporting_requirements": [], "signed_by_partner_date": "2018-07-26", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{"status": {"after": "active", "before": "ended"}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (669, '2019-12-17 15:52:26.004122+00', '2019-12-17 15:52:26.004122+00', '104', 'update', '{"id": 104, "end": "2020-10-14", "frs": [], "start": "2019-11-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-1", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30], "attachments": [477, 472, 471], "in_amendment": true, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [1108], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (664, '2019-12-10 08:58:04.526204+00', '2019-12-10 08:58:04.526204+00', '80', 'update', '{"id": 80, "end": "2019-12-31", "frs": [136], "start": "2018-07-26", "title": "Provision of psychosocial support and non-formal education for vulnerable migrant and IDP children", "number": "LIB/PCA2018122/PD201880-2", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 122, "amendments": [28, 29], "attachments": [476, 373, 372, 371, 370, 369, 368, 367, 366, 365], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [58, 59], "review_date_prc": "2018-06-14", "submission_date": "2018-05-24", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [104, 115], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Annex_c_multakana_PD.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Multakana_MoM.pdf", "submission_date_prc": "2018-05-24", "unicef_focal_points": [29294], "partner_focal_points": [6], "signed_pd_attachment": [700], "prc_review_attachment": [699], "reference_number_year": 2018, "signed_by_unicef_date": "2018-07-26", "reporting_requirements": [], "signed_by_partner_date": "2018-07-26", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{"end": {"after": "2019-12-31", "before": "2019-11-30"}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (665, '2019-12-10 08:58:16.02761+00', '2019-12-10 08:58:16.02761+00', '80', 'update', '{"id": 80, "end": "2019-12-31", "frs": [136], "start": "2018-07-26", "title": "Provision of psychosocial support and non-formal education for vulnerable migrant and IDP children", "number": "LIB/PCA2018122/PD201880-2", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 122, "amendments": [28, 29], "attachments": [476, 373, 372, 371, 370, 369, 368, 367, 366, 365], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [58, 59], "review_date_prc": "2018-06-14", "submission_date": "2018-05-24", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [104, 115], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Annex_c_multakana_PD.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Multakana_MoM.pdf", "submission_date_prc": "2018-05-24", "unicef_focal_points": [29294], "partner_focal_points": [6], "signed_pd_attachment": [700], "prc_review_attachment": [699], "reference_number_year": 2018, "signed_by_unicef_date": "2018-07-26", "reporting_requirements": [], "signed_by_partner_date": "2018-07-26", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{"in_amendment": {"after": false, "before": true}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (666, '2019-12-11 10:17:51.648653+00', '2019-12-11 10:17:51.648653+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 146, "amendments": [], "attachments": [437], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [1551], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{"in_amendment": {"after": false, "before": true}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (667, '2019-12-12 15:10:41.642113+00', '2019-12-12 15:10:41.642113+00', '85', 'update', '{"id": 85, "end": "2019-12-22", "frs": [144], "start": "2019-01-01", "title": "Specialized Psychosocial Suppport for vulnerable children in Sebha, Benghazi, and Tripoli", "number": "LIB/PCA2019124/PD201985", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 124, "amendments": [], "attachments": [475, 474, 413, 412, 411, 410], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1835, 1832], "planned_visits": [56], "review_date_prc": "2018-12-19", "submission_date": "2018-09-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-12-13", "unicef_focal_points": [17817], "partner_focal_points": [1], "signed_pd_attachment": [846], "prc_review_attachment": [845], "reference_number_year": 2019, "signed_by_unicef_date": "2018-12-23", "reporting_requirements": [], "signed_by_partner_date": "2018-12-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 1}', '{"in_amendment": {"after": false, "before": true}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (852, '2020-01-16 11:50:14.343701+00', '2020-01-16 11:50:14.343701+00', '153', 'update', '{"id": 153, "end": "2020-12-31", "start": "2019-09-30", "status": "signed", "partner": 89, "signed_by": "None", "amendments": [], "attachment": [1107], "interventions": [105, 104], "agreement_type": "PCA", "partner_manager": 74, "agreement_number": "LIB/PCA2019153", "country_programme": 34, "attached_agreement": "", "authorized_officers": [80], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-30", "signed_by_partner_date": "2019-09-30", "special_conditions_pca": false}', '{"authorized_officers": {"after": [80], "before": [74]}}', 200131, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (670, '2019-12-17 15:52:33.632992+00', '2019-12-17 15:52:33.632992+00', '104', 'update', '{"id": 104, "end": "2020-10-14", "frs": [], "start": "2019-11-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-1", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30], "attachments": [477, 472, 471], "in_amendment": true, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [1108], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (671, '2019-12-17 15:52:41.25464+00', '2019-12-17 15:52:41.25464+00', '104', 'update', '{"id": 104, "end": "2020-10-14", "frs": [], "start": "2019-11-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-1", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30], "attachments": [477, 472, 471], "in_amendment": false, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [1108], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"in_amendment": {"after": false, "before": true}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (672, '2019-12-18 08:32:09.03819+00', '2019-12-18 08:32:09.03819+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{"flat_locations": {"after": [1836], "before": []}}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (683, '2019-12-19 08:29:44.756718+00', '2019-12-19 08:29:44.756718+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (686, '2019-12-19 09:17:37.863502+00', '2019-12-19 09:17:37.863502+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (688, '2019-12-19 10:13:17.934077+00', '2019-12-19 10:13:17.934077+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [1138], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (675, '2019-12-18 11:38:07.190435+00', '2019-12-18 11:38:07.190435+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"end": {"after": "2020-11-21", "before": "None"}, "start": {"after": "2019-11-22", "before": "None"}, "sections": {"after": [1, 2], "before": []}, "flat_locations": {"after": [1835, 1942], "before": []}, "review_date_prc": {"after": "2019-11-17", "before": "None"}, "submission_date": {"after": "2019-09-26", "before": "None"}, "unicef_signatory": {"after": 20024, "before": "None"}, "submission_date_prc": {"after": "2019-10-16", "before": "None"}, "unicef_focal_points": {"after": [200131], "before": []}, "partner_focal_points": {"after": [74], "before": []}, "signed_by_unicef_date": {"after": "2019-11-22", "before": "None"}, "signed_by_partner_date": {"after": "2019-11-22", "before": "None"}, "partner_authorized_officer_signatory": {"after": 74, "before": "None"}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (676, '2019-12-18 11:43:14.438345+00', '2019-12-18 11:43:14.438345+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (677, '2019-12-18 11:49:24.827149+00', '2019-12-18 11:49:24.827149+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (678, '2019-12-18 13:50:38.346542+00', '2019-12-18 13:50:38.346542+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (684, '2019-12-19 08:54:39.911691+00', '2019-12-19 08:54:39.911691+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [125, 74, 124, 123, 122, 121, 120, 119, 118, 117, 116, 115, 114, 73, 113, 112, 111, 110, 109, 108, 107, 106, 105, 104, 103, 102, 72, 101, 100, 99, 98, 97, 96, 95, 94, 93, 92, 91, 90, 89, 71, 88, 87, 86, 85, 84, 83, 82, 81, 80, 79, 78, 77, 76, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (679, '2019-12-18 13:56:52.703086+00', '2019-12-18 13:56:52.703086+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (680, '2019-12-18 14:02:58.539097+00', '2019-12-18 14:02:58.539097+00', '104', 'update', '{"id": 104, "end": "2020-10-14", "frs": [], "start": "2019-11-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-2", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31], "attachments": [477, 472, 471], "in_amendment": false, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [1108], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"in_amendment": {"after": false, "before": true}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (681, '2019-12-18 14:06:47.404582+00', '2019-12-18 14:06:47.404582+00', '104', 'update', '{"id": 104, "end": "2020-10-14", "frs": [], "start": "2019-11-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-2", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31], "attachments": [477, 472, 471], "in_amendment": false, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [1108], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (682, '2019-12-18 16:29:31.864358+00', '2019-12-18 16:29:31.864358+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (685, '2019-12-19 09:01:09.662052+00', '2019-12-19 09:01:09.662052+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (687, '2019-12-19 10:10:45.784503+00', '2019-12-19 10:10:45.784503+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [1138], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (689, '2019-12-19 10:15:25.506535+00', '2019-12-19 10:15:25.506535+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [161], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [1138], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"frs": {"after": [161], "before": []}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (690, '2019-12-19 11:44:39.493756+00', '2019-12-19 11:44:39.493756+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [50, 67, 66, 65, 64, 63, 62, 61, 60, 59, 49, 58, 57, 56, 55, 54, 53, 52, 51, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (691, '2019-12-19 12:03:00.750869+00', '2019-12-19 12:03:00.750869+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [1551], "partner_focal_points": [17], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{"flat_locations": {"after": [1836], "before": []}}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (692, '2019-12-19 13:43:53.620387+00', '2019-12-19 13:43:53.620387+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [473], "in_amendment": true, "result_links": [67, 60], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (693, '2019-12-19 15:29:51.925476+00', '2019-12-19 15:29:51.925476+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [478, 473], "in_amendment": true, "result_links": [68], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 184, 183, 182], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (694, '2019-12-19 15:35:47.76377+00', '2019-12-19 15:35:47.76377+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [478, 473], "in_amendment": true, "result_links": [68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 184, 183, 182], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{"flat_locations": {"after": [1899, 1900, 1914, 1920], "before": []}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (695, '2019-12-19 15:39:54.884772+00', '2019-12-19 15:39:54.884772+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [478, 473], "in_amendment": true, "result_links": [68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 184, 183, 182], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (696, '2019-12-19 15:41:10.874809+00', '2019-12-19 15:41:10.874809+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [478, 473], "in_amendment": true, "result_links": [68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 184, 183, 182], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (697, '2019-12-19 15:42:53.328915+00', '2019-12-19 15:42:53.328915+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [478, 473], "in_amendment": true, "result_links": [68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 184, 183, 182], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (703, '2019-12-19 15:56:08.565799+00', '2019-12-19 15:56:08.565799+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [478, 473], "in_amendment": true, "result_links": [68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (698, '2019-12-19 15:44:39.88893+00', '2019-12-19 15:44:39.88893+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [478, 473], "in_amendment": true, "result_links": [68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 184, 183, 182], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (699, '2019-12-19 15:47:34.393386+00', '2019-12-19 15:47:34.393386+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [478, 473], "in_amendment": true, "result_links": [68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 184, 183, 182], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (700, '2019-12-19 15:51:27.372662+00', '2019-12-19 15:51:27.372662+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [478, 473], "in_amendment": true, "result_links": [68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 184, 183, 182], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (701, '2019-12-19 15:55:35.452907+00', '2019-12-19 15:55:35.452907+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [478, 473], "in_amendment": true, "result_links": [68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (702, '2019-12-19 15:55:43.501911+00', '2019-12-19 15:55:43.501911+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [478, 473], "in_amendment": true, "result_links": [68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (704, '2019-12-19 15:56:13.836143+00', '2019-12-19 15:56:13.836143+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [478, 473], "in_amendment": true, "result_links": [68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (705, '2019-12-19 15:56:20.489933+00', '2019-12-19 15:56:20.489933+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [478, 473], "in_amendment": false, "result_links": [68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{"in_amendment": {"after": false, "before": true}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (745, '2019-12-25 14:19:16.989628+00', '2019-12-25 14:19:16.989628+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [1551], "partner_focal_points": [17], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{"flat_locations": {"after": [1864, 1863], "before": [1861, 1864, 1865, 1863, 1862]}}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (707, '2019-12-22 09:18:10.819219+00', '2019-12-22 09:18:10.819219+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1861, 1836], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [50, 67, 66, 65, 64, 63, 62, 61, 60, 59, 49, 58, 57, 56, 55, 54, 53, 52, 51, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{"flat_locations": {"after": [1861, 1836], "before": [1836]}}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (713, '2019-12-22 09:26:27.759638+00', '2019-12-22 09:26:27.759638+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1861, 1864, 1865, 1863, 1862], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [50, 67, 66, 65, 64, 63, 62, 61, 60, 59, 49, 58, 57, 56, 55, 54, 53, 52, 51, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{"flat_locations": {"after": [1861, 1864, 1865, 1863, 1862], "before": [1861, 1836, 1864, 1865, 1863, 1862]}}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (746, '2019-12-25 14:20:52.632582+00', '2019-12-25 14:20:52.632582+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [1551], "partner_focal_points": [17], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (709, '2019-12-22 09:20:07.705369+00', '2019-12-22 09:20:07.705369+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [50, 67, 66, 65, 64, 63, 62, 61, 60, 59, 49, 58, 57, 56, 55, 54, 53, 52, 51, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{"flat_locations": {"after": [1836], "before": [1861, 1836]}}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (710, '2019-12-22 09:21:20.605658+00', '2019-12-22 09:21:20.605658+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1861, 1836], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [50, 67, 66, 65, 64, 63, 62, 61, 60, 59, 49, 58, 57, 56, 55, 54, 53, 52, 51, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{"flat_locations": {"after": [1861, 1836], "before": [1836]}}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (711, '2019-12-22 09:25:23.844794+00', '2019-12-22 09:25:23.844794+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1861, 1836, 1864, 1865, 1863, 1862], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [50, 67, 66, 65, 64, 63, 62, 61, 60, 59, 49, 58, 57, 56, 55, 54, 53, 52, 51, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{"flat_locations": {"after": [1861, 1836, 1864, 1865, 1863, 1862], "before": [1861, 1836]}}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (712, '2019-12-22 09:26:15.699434+00', '2019-12-22 09:26:15.699434+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1861, 1836, 1864, 1865, 1863, 1862], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [50, 67, 66, 65, 64, 63, 62, 61, 60, 59, 49, 58, 57, 56, 55, 54, 53, 52, 51, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (714, '2019-12-22 09:28:53.582724+00', '2019-12-22 09:28:53.582724+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1861, 1864, 1865, 1863, 1862], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [1551], "partner_focal_points": [17], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{"flat_locations": {"after": [1861, 1864, 1865, 1863, 1862], "before": [1836]}}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (715, '2019-12-22 09:36:04.511049+00', '2019-12-22 09:36:04.511049+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1861, 1864, 1865, 1863, 1862], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [1551], "partner_focal_points": [17], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (716, '2019-12-22 09:47:43.554089+00', '2019-12-22 09:47:43.554089+00', '17', 'update', '{"id": 17, "city": "BANGHAZI", "name": "BREEZES LIBYA", "email": "[[schema]]naseem@yahoo.com", "hidden": false, "rating": "Medium", "address": "ANDALUS", "blocked": false, "country": "258", "cso_type": "National", "net_ct_cy": "152566.96", "agreements": [147, 52], "short_name": "", "assessments": [2], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0}, "assurance_coverage": "partial", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 2, "q3": 0, "q4": 0, "total": 2}}, "outstanding_findings": 0}, "postal_code": "None", "reported_cy": "68449.15", "shared_with": [], "total_ct_cp": "191946.39", "total_ct_cy": "101055.08", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "None", "total_ct_ytd": "191946.39", "staff_members": [17], "vendor_number": "2500233211", "vision_synced": true, "alternate_name": "None", "planned_visits": [9], "street_address": "", "psea_assessment": [], "related_partner": [8, 39], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-06-01", "basis_for_risk_rating": "", "core_values_assessments": [14], "core_values_assessment_date": "2017-06-01", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 186083, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (853, '2020-01-16 11:54:00.649403+00', '2020-01-16 11:54:00.649403+00', '133', 'update', '{"id": 133, "end": "2020-12-31", "start": "2019-01-01", "status": "signed", "partner": 23, "signed_by": "None", "amendments": [], "attachment": [834], "interventions": [102], "agreement_type": "PCA", "partner_manager": 18, "agreement_number": "LIB/PCA2019133", "country_programme": 34, "attached_agreement": "", "authorized_officers": [75], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-01", "signed_by_partner_date": "2018-12-31", "special_conditions_pca": false}', '{"authorized_officers": {"after": [75], "before": [18, 59]}}', 200131, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (717, '2019-12-22 09:49:58.172761+00', '2019-12-22 09:49:58.172761+00', '17', 'update', '{"id": 17, "city": "BANGHAZI", "name": "BREEZES LIBYA", "email": "[[schema]]naseem@yahoo.com", "hidden": false, "rating": "Medium", "address": "ANDALUS", "blocked": false, "country": "258", "cso_type": "National", "net_ct_cy": "152566.96", "agreements": [147, 52], "short_name": "", "assessments": [2], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0}, "assurance_coverage": "partial", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 2, "q3": 0, "q4": 0, "total": 2}}, "outstanding_findings": 0}, "postal_code": "None", "reported_cy": "68449.15", "shared_with": [], "total_ct_cp": "191946.39", "total_ct_cy": "101055.08", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "None", "total_ct_ytd": "191946.39", "staff_members": [17], "vendor_number": "2500233211", "vision_synced": true, "alternate_name": "None", "planned_visits": [9], "street_address": "", "psea_assessment": [], "related_partner": [8, 39], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-06-01", "basis_for_risk_rating": "", "core_values_assessments": [14], "core_values_assessment_date": "2017-06-01", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 186083, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (734, '2019-12-23 12:44:39.58482+00', '2019-12-23 12:44:39.58482+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1861, 1864, 1865, 1863, 1862], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [50, 67, 66, 65, 64, 63, 62, 61, 60, 59, 49, 58, 57, 56, 55, 54, 53, 52, 51, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (736, '2019-12-23 12:45:38.398542+00', '2019-12-23 12:45:38.398542+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1861, 1864, 1865, 1863, 1862], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [50, 67, 66, 65, 64, 63, 62, 61, 60, 59, 49, 58, 57, 56, 55, 54, 53, 52, 51, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (738, '2019-12-23 12:47:09.33232+00', '2019-12-23 12:47:09.33232+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1861, 1864, 1865, 1863, 1862], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [50, 67, 66, 65, 64, 63, 62, 61, 60, 59, 49, 58, 57, 56, 55, 54, 53, 52, 51, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (718, '2019-12-22 09:58:27.21507+00', '2019-12-22 09:58:27.21507+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 146, "amendments": [], "attachments": [437], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [1551], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{"in_amendment": {"after": true, "before": false}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (719, '2019-12-22 10:00:02.135951+00', '2019-12-22 10:00:02.135951+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 146, "amendments": [], "attachments": [437], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [1551], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{"flat_locations": {"after": [1919], "before": []}}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (720, '2019-12-22 10:00:57.384819+00', '2019-12-22 10:00:57.384819+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [437], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [1551], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{"sections": {"after": [1, 2], "before": [2]}}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (721, '2019-12-22 13:01:09.272817+00', '2019-12-22 13:01:09.272817+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"flat_locations": {"after": [1916, 1917, 1914, 1915], "before": [1840, 1914]}}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (744, '2019-12-23 13:54:03.355186+00', '2019-12-23 13:54:03.355186+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [437], "in_amendment": true, "result_links": [70, 71], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [1551], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (722, '2019-12-22 13:24:50.653648+00', '2019-12-22 13:24:50.653648+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [241, 240, 239, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (723, '2019-12-22 13:28:07.397814+00', '2019-12-22 13:28:07.397814+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (724, '2019-12-22 13:53:46.772845+00', '2019-12-22 13:53:46.772845+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (725, '2019-12-22 13:54:01.576303+00', '2019-12-22 13:54:01.576303+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (726, '2019-12-22 13:54:15.237331+00', '2019-12-22 13:54:15.237331+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": false, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"in_amendment": {"after": false, "before": true}}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (757, '2019-12-29 13:15:50.923801+00', '2019-12-29 13:15:50.923801+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [1551], "partner_focal_points": [17], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (727, '2019-12-22 13:56:25.558949+00', '2019-12-22 13:56:25.558949+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [2528, 2149, 2377, 2524, 1836, 1842, 1837, 1951, 1846, 1832, 2099], "planned_visits": [71], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"end": {"after": "2020-03-31", "before": "2019-12-31"}}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (728, '2019-12-22 14:11:48.664748+00', '2019-12-22 14:11:48.664748+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"flat_locations": {"after": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "before": [2528, 2149, 2377, 2524, 1836, 1842, 1837, 1951, 1846, 1832, 2099]}}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (729, '2019-12-22 15:06:55.835256+00', '2019-12-22 15:06:55.835256+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": true, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (730, '2019-12-22 15:17:05.936925+00', '2019-12-22 15:17:05.936925+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": true, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (761, '2019-12-29 13:20:30.779978+00', '2019-12-29 13:20:30.779978+00', '155', 'update', '{"id": 155, "end": "2020-12-31", "start": "2019-12-04", "status": "draft", "partner": 16, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 78, "agreement_number": "LIB/PCA2019155", "country_programme": 34, "attached_agreement": "", "authorized_officers": [78], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "signed_by_partner_date": "2019-12-04", "special_conditions_pca": false}', '{"start": {"after": "2019-12-04", "before": "None"}, "partner_manager": {"after": 78, "before": "None"}, "authorized_officers": {"after": [78], "before": []}, "signed_by_unicef_date": {"after": "2019-12-04", "before": "None"}, "signed_by_partner_date": {"after": "2019-12-04", "before": "None"}}', 29294, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (731, '2019-12-22 15:17:12.700643+00', '2019-12-22 15:17:12.700643+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": false, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"in_amendment": {"after": false, "before": true}}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (747, '2019-12-25 14:57:16.636808+00', '2019-12-25 14:57:16.636808+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [1551], "partner_focal_points": [17], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (748, '2019-12-25 14:58:44.076852+00', '2019-12-25 14:58:44.076852+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [1551], "partner_focal_points": [17], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (739, '2019-12-23 12:47:28.098688+00', '2019-12-23 12:47:28.098688+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [50, 67, 66, 65, 64, 63, 62, 61, 60, 59, 49, 58, 57, 56, 55, 54, 53, 52, 51, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{"flat_locations": {"after": [1864], "before": [1861, 1864, 1865, 1863, 1862]}}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (762, '2019-12-29 13:22:58.062605+00', '2019-12-29 13:22:58.062605+00', '155', 'update', '{"id": 155, "end": "2020-12-31", "start": "2019-12-04", "status": "draft", "partner": 16, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 78, "agreement_number": "LIB/PCA2019155", "country_programme": 34, "attached_agreement": "", "authorized_officers": [78], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "signed_by_partner_date": "2019-12-04", "special_conditions_pca": false}', '{}', 29294, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (740, '2019-12-23 12:51:52.308395+00', '2019-12-23 12:51:52.308395+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [50, 67, 66, 65, 64, 63, 62, 61, 60, 59, 49, 58, 57, 56, 55, 54, 53, 52, 51, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (741, '2019-12-23 13:30:24.764645+00', '2019-12-23 13:30:24.764645+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [50, 67, 66, 65, 64, 63, 62, 61, 60, 59, 49, 58, 57, 56, 55, 54, 53, 52, 51, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (742, '2019-12-23 13:43:28.438449+00', '2019-12-23 13:43:28.438449+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [50, 67, 66, 65, 64, 63, 62, 61, 60, 59, 49, 58, 57, 56, 55, 54, 53, 52, 51, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (743, '2019-12-23 13:43:51.644344+00', '2019-12-23 13:43:51.644344+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [50, 67, 66, 65, 64, 63, 62, 61, 60, 59, 49, 58, 57, 56, 55, 54, 53, 52, 51, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (880, '2020-01-27 14:57:01.66908+00', '2020-01-27 14:57:01.66908+00', '147', 'update', '{"id": 147, "end": "2020-12-31", "start": "2019-06-24", "status": "signed", "partner": 17, "signed_by": 20024, "amendments": [7], "attachment": [985], "interventions": [92], "agreement_type": "PCA", "partner_manager": 81, "agreement_number": "LIB/PCA2019147", "country_programme": 34, "attached_agreement": "", "authorized_officers": [77], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "signed_by_partner_date": "2019-06-17", "special_conditions_pca": false}', '{"signed_by": {"after": 20024, "before": "None"}, "partner_manager": {"after": 81, "before": 17}}', 23641, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (749, '2019-12-25 15:04:21.834932+00', '2019-12-25 15:04:21.834932+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [1551], "partner_focal_points": [17], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (750, '2019-12-25 15:04:58.895455+00', '2019-12-25 15:04:58.895455+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [1551], "partner_focal_points": [17], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (751, '2019-12-29 08:44:18.152513+00', '2019-12-29 08:44:18.152513+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [50, 49, 51, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (752, '2019-12-29 08:45:24.833969+00', '2019-12-29 08:45:24.833969+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [50, 49, 51, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (763, '2019-12-29 13:35:03.563518+00', '2019-12-29 13:35:03.563518+00', '106', 'create', '{"id": 106, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (753, '2019-12-29 08:46:35.301693+00', '2019-12-29 08:46:35.301693+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [50, 49, 51, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (754, '2019-12-29 08:50:26.596354+00', '2019-12-29 08:50:26.596354+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [313, 50, 312, 311, 310, 309, 308, 307, 306, 305, 49, 304, 303, 302, 301, 300, 299, 298, 51, 297, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (755, '2019-12-29 12:53:50.019799+00', '2019-12-29 12:53:50.019799+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [313, 50, 312, 311, 310, 309, 308, 307, 306, 305, 49, 304, 303, 302, 301, 300, 299, 298, 51, 297, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (756, '2019-12-29 12:58:40.58895+00', '2019-12-29 12:58:40.58895+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [1551], "partner_focal_points": [17], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [317, 316, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (978, '2020-02-11 15:07:19.91733+00', '2020-02-11 15:07:19.91733+00', '150', 'update', '{"id": 150, "end": "2020-12-31", "start": "2019-04-09", "status": "signed", "partner": 86, "signed_by": 20024, "amendments": [], "attachment": [979], "interventions": [100], "agreement_type": "PCA", "partner_manager": 72, "agreement_number": "LIB/PCA2019150", "country_programme": 34, "attached_agreement": "", "authorized_officers": [82], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "signed_by_partner_date": "2019-04-09", "special_conditions_pca": false}', '{"authorized_officers": {"after": [82], "before": [72]}}', 173037, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (758, '2019-12-29 13:17:15.254596+00', '2019-12-29 13:17:15.254596+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [437], "in_amendment": true, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [1551], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [347, 346, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (759, '2019-12-29 13:17:28.136666+00', '2019-12-29 13:17:28.136666+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [437], "in_amendment": true, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [1551], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [347, 346, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (760, '2019-12-29 13:19:40.575045+00', '2019-12-29 13:19:40.575045+00', '16', 'update', '{"id": 16, "city": "PARIS", "name": "AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT", "email": "EMILY.BEADLE@ACTED.ORG", "hidden": false, "rating": "Low", "address": "RUE GODOT DE MAUROY", "blocked": false, "country": "147", "cso_type": "International", "net_ct_cy": "5220.88", "agreements": [155, 109], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}}, "outstanding_findings": 0}, "postal_code": "75009", "reported_cy": "135509.21", "shared_with": "None", "total_ct_cp": "0.00", "total_ct_cy": "0.00", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "21652232198", "total_ct_ytd": "17821.21", "staff_members": [57, 58], "vendor_number": "2500220006", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [1, 34], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-03-13", "basis_for_risk_rating": "", "core_values_assessments": [5, 55], "core_values_assessment_date": "2019-03-19", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 29294, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (780, '2019-12-30 08:13:12.886812+00', '2019-12-30 08:13:12.886812+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [478, 473], "in_amendment": true, "result_links": [68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (781, '2019-12-30 10:31:50.723049+00', '2019-12-30 10:31:50.723049+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [478, 473], "in_amendment": true, "result_links": [68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (764, '2019-12-29 13:46:29.963238+00', '2019-12-29 13:46:29.963238+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (765, '2019-12-29 13:53:45.476747+00', '2019-12-29 13:53:45.476747+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{"review_date_prc": {"after": "2019-10-01", "before": "None"}, "submission_date": {"after": "2019-04-30", "before": "None"}, "unicef_signatory": {"after": 200131, "before": "None"}, "submission_date_prc": {"after": "2019-08-02", "before": "None"}, "signed_by_unicef_date": {"after": "2019-12-04", "before": "None"}, "signed_by_partner_date": {"after": "2019-12-04", "before": "None"}, "partner_authorized_officer_signatory": {"after": 78, "before": "None"}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (766, '2019-12-29 13:59:29.035496+00', '2019-12-29 13:59:29.035496+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [437], "in_amendment": true, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [1551], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (767, '2019-12-29 14:01:12.614793+00', '2019-12-29 14:01:12.614793+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (782, '2019-12-30 10:32:03.660759+00', '2019-12-30 10:32:03.660759+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [478, 473], "in_amendment": false, "result_links": [68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{"in_amendment": {"after": false, "before": true}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (768, '2019-12-29 14:03:35.884373+00', '2019-12-29 14:03:35.884373+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [1551], "partner_focal_points": [17], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (769, '2019-12-29 14:53:56.207081+00', '2019-12-29 14:53:56.207081+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [437], "in_amendment": true, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [1551], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (770, '2019-12-29 14:54:26.443778+00', '2019-12-29 14:54:26.443778+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [437], "in_amendment": false, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [1551], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{"in_amendment": {"after": false, "before": true}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (771, '2019-12-29 14:54:33.059188+00', '2019-12-29 14:54:33.059188+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [437], "in_amendment": false, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [1551], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (772, '2019-12-29 15:12:48.241419+00', '2019-12-29 15:12:48.241419+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [478, 473], "in_amendment": true, "result_links": [68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (773, '2019-12-29 15:23:07.198094+00', '2019-12-29 15:23:07.198094+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [1551], "partner_focal_points": [17, 77], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{"partner_focal_points": {"after": [17, 77], "before": [17]}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (774, '2019-12-29 15:23:20.305915+00', '2019-12-29 15:23:20.305915+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [1551], "partner_focal_points": [17, 77], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{"in_amendment": {"after": false, "before": true}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (775, '2019-12-29 15:23:34.488872+00', '2019-12-29 15:23:34.488872+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [1551], "partner_focal_points": [17, 77], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (776, '2019-12-29 15:26:41.084367+00', '2019-12-29 15:26:41.084367+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": false, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [313, 50, 312, 311, 310, 309, 308, 307, 306, 305, 49, 304, 303, 302, 301, 300, 299, 298, 51, 297, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{"in_amendment": {"after": false, "before": true}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (777, '2019-12-29 15:26:46.373837+00', '2019-12-29 15:26:46.373837+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": false, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [313, 50, 312, 311, 310, 309, 308, 307, 306, 305, 49, 304, 303, 302, 301, 300, 299, 298, 51, 297, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (778, '2019-12-29 15:34:34.238003+00', '2019-12-29 15:34:34.238003+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [478, 473], "in_amendment": true, "result_links": [68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (779, '2019-12-29 15:35:05.002337+00', '2019-12-29 15:35:05.002337+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [478, 473], "in_amendment": true, "result_links": [68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (783, '2019-12-30 17:46:53.53691+00', '2019-12-30 17:46:53.53691+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (784, '2019-12-30 17:49:03.714688+00', '2019-12-30 17:49:03.714688+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": true, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (785, '2019-12-30 17:53:03.92923+00', '2019-12-30 17:53:03.92923+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [161], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [1138], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (986, '2020-02-12 09:56:06.044025+00', '2020-02-12 09:56:06.044025+00', '145', 'update', '{"id": 145, "end": "2020-12-31", "start": "None", "status": "draft", "partner": 74, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [91], "agreement_type": "PCA", "partner_manager": 83, "agreement_number": "LIB/PCA2019145", "country_programme": 34, "attached_agreement": "", "authorized_officers": [83, 62], "reference_number_year": 2019, "signed_by_unicef_date": "None", "signed_by_partner_date": "None", "special_conditions_pca": false}', '{"partner_manager": {"after": 83, "before": 62}, "authorized_officers": {"after": [83, 62], "before": [62]}}', 23641, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (786, '2019-12-30 17:54:09.667829+00', '2019-12-30 17:54:09.667829+00', '104', 'update', '{"id": 104, "end": "2020-10-14", "frs": [], "start": "2019-11-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-2", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31], "attachments": [477, 472, 471], "in_amendment": true, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [1108], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (787, '2019-12-30 18:18:04.458683+00', '2019-12-30 18:18:04.458683+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": false, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"in_amendment": {"after": false, "before": true}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (788, '2019-12-30 18:38:39.029706+00', '2019-12-30 18:38:39.029706+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": false, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"in_amendment": {"after": false, "before": true}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (789, '2019-12-30 18:44:21.499957+00', '2019-12-30 18:44:21.499957+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (790, '2019-12-30 18:45:02.766704+00', '2019-12-30 18:45:02.766704+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": true, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (791, '2019-12-30 19:02:24.337342+00', '2019-12-30 19:02:24.337342+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": true, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (792, '2019-12-30 19:03:09.475998+00', '2019-12-30 19:03:09.475998+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": false, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"in_amendment": {"after": false, "before": true}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (793, '2019-12-30 19:06:09.349241+00', '2019-12-30 19:06:09.349241+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (794, '2019-12-30 19:06:31.555808+00', '2019-12-30 19:06:31.555808+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": false, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"in_amendment": {"after": false, "before": true}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (796, '2019-12-31 08:48:25.499357+00', '2019-12-31 08:48:25.499357+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (795, '2019-12-31 08:47:56.361309+00', '2019-12-31 08:47:56.361309+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": true, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (819, '2020-01-03 13:00:21.95581+00', '2020-01-03 13:00:21.95581+00', '107', 'create', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (820, '2020-01-03 13:07:53.019994+00', '2020-01-03 13:07:53.019994+00', '107', 'update', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [76, 77], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (821, '2020-01-03 13:40:51.074719+00', '2020-01-03 13:40:51.074719+00', '107', 'update', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [76, 77], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (822, '2020-01-03 13:43:51.506361+00', '2020-01-03 13:43:51.506361+00', '107', 'update', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [76, 77], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (797, '2019-12-31 09:22:00.082126+00', '2019-12-31 09:22:00.082126+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{"flat_locations": {"after": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1919, 1942, 1895, 1905, 1896, 1898], "before": []}}', 10233, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (798, '2019-12-31 09:22:09.21346+00', '2019-12-31 09:22:09.21346+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 10233, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (799, '2019-12-31 09:32:15.261065+00', '2019-12-31 09:32:15.261065+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": false, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"in_amendment": {"after": false, "before": true}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (800, '2019-12-31 09:33:27.514677+00', '2019-12-31 09:33:27.514677+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": false, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (987, '2020-02-12 09:57:15.917789+00', '2020-02-12 09:57:15.917789+00', '156', 'create', '{"id": 156, "end": "2020-12-31", "start": "None", "status": "draft", "partner": 74, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 83, "agreement_number": "LIB/PCA2020156", "country_programme": 34, "attached_agreement": "", "authorized_officers": [83], "reference_number_year": 2020, "signed_by_unicef_date": "None", "signed_by_partner_date": "None", "special_conditions_pca": false}', '{}', 23641, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (801, '2019-12-31 09:46:14.20437+00', '2019-12-31 09:46:14.20437+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 10233, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (802, '2019-12-31 09:46:23.767636+00', '2019-12-31 09:46:23.767636+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 10233, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (803, '2019-12-31 09:59:20.645419+00', '2019-12-31 09:59:20.645419+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 10233, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (804, '2019-12-31 10:16:28.417835+00', '2019-12-31 10:16:28.417835+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 370, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 10233, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (805, '2019-12-31 10:22:22.16474+00', '2019-12-31 10:22:22.16474+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [392, 371, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 10233, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (806, '2019-12-31 10:23:26.261753+00', '2019-12-31 10:23:26.261753+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": false, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [392, 371, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{"in_amendment": {"after": false, "before": true}}', 10233, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (807, '2019-12-31 11:19:57.630921+00', '2019-12-31 11:19:57.630921+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [437], "in_amendment": true, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [1551], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (808, '2019-12-31 12:27:41.926726+00', '2019-12-31 12:27:41.926726+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": false, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"in_amendment": {"after": false, "before": true}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (809, '2019-12-31 12:33:05.028689+00', '2019-12-31 12:33:05.028689+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": false, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (810, '2019-12-31 12:33:27.063178+00', '2019-12-31 12:33:27.063178+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": false, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (811, '2019-12-31 13:08:09.251594+00', '2019-12-31 13:08:09.251594+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [437], "in_amendment": true, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [1551], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (812, '2019-12-31 13:16:03.182053+00', '2019-12-31 13:16:03.182053+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [437], "in_amendment": true, "result_links": [70, 73, 71], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [1551], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (813, '2019-12-31 13:18:23.577825+00', '2019-12-31 13:18:23.577825+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [437], "in_amendment": true, "result_links": [70, 73, 71], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [1551], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (814, '2019-12-31 13:20:08.228769+00', '2019-12-31 13:20:08.228769+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [437], "in_amendment": true, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [1551], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (815, '2019-12-31 13:23:21.374415+00', '2019-12-31 13:23:21.374415+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [437], "in_amendment": false, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [1551], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{"in_amendment": {"after": false, "before": true}}', 186083, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (816, '2019-12-31 14:29:06.851837+00', '2019-12-31 14:29:06.851837+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [161], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [1138], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (817, '2019-12-31 14:29:21.565568+00', '2019-12-31 14:29:21.565568+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [161], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [1138], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"in_amendment": {"after": false, "before": true}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (818, '2019-12-31 14:43:26.12628+00', '2019-12-31 14:43:26.12628+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (823, '2020-01-03 13:53:45.701662+00', '2020-01-03 13:53:45.701662+00', '107', 'update', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [76, 77], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (824, '2020-01-03 14:03:40.483812+00', '2020-01-03 14:03:40.483812+00', '107', 'update', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [76, 77], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (825, '2020-01-03 14:06:02.484122+00', '2020-01-03 14:06:02.484122+00', '107', 'update', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [76, 77], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (826, '2020-01-03 14:09:12.992646+00', '2020-01-03 14:09:12.992646+00', '107', 'update', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [76, 77], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [450, 449, 397, 396, 448, 447, 446, 445, 444, 443, 442, 441, 440, 439, 438, 437, 436, 395, 435, 434, 433, 432, 431, 430, 429, 428, 427, 426, 425, 424, 423, 394, 422, 421, 420, 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 393, 409, 408, 407, 406, 405, 404, 403, 402, 401, 400, 399, 398], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (827, '2020-01-06 11:25:07.302597+00', '2020-01-06 11:25:07.302597+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{"frs": {"after": [163], "before": []}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1005, '2020-02-26 13:54:29.793718+00', '2020-02-26 13:54:29.793718+00', '137', 'update', '{"id": 137, "end": "2020-12-31", "start": "2019-01-06", "status": "signed", "partner": 84, "signed_by": "None", "amendments": [5], "attachment": [843], "interventions": [87], "agreement_type": "PCA", "partner_manager": 67, "agreement_number": "LIB/PCA2019137", "country_programme": 34, "attached_agreement": "", "authorized_officers": [85], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-06", "signed_by_partner_date": "2019-01-06", "special_conditions_pca": false}', '{"authorized_officers": {"after": [85], "before": [67]}}', 247375, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (828, '2020-01-08 08:58:50.428399+00', '2020-01-08 08:58:50.428399+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [479], "in_amendment": true, "result_links": [78], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [455, 454, 453, 452, 451], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (829, '2020-01-13 08:19:32.085686+00', '2020-01-13 08:19:32.085686+00', '80', 'update', '{"id": 80, "end": "2019-12-31", "frs": [136], "start": "2018-07-26", "title": "Provision of psychosocial support and non-formal education for vulnerable migrant and IDP children", "number": "LIB/PCA2018122/PD201880-2", "status": "ended", "offices": [201], "metadata": {}, "sections": [1], "agreement": 122, "amendments": [28, 29], "attachments": [476, 373, 372, 371, 370, 369, 368, 367, 366, 365], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [58, 59], "review_date_prc": "2018-06-14", "submission_date": "2018-05-24", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [104, 115], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Annex_c_multakana_PD.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Multakana_MoM.pdf", "submission_date_prc": "2018-05-24", "unicef_focal_points": [29294], "partner_focal_points": [6], "signed_pd_attachment": [700], "prc_review_attachment": [699], "reference_number_year": 2018, "signed_by_unicef_date": "2018-07-26", "reporting_requirements": [], "signed_by_partner_date": "2018-07-26", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (830, '2020-01-13 08:26:22.398955+00', '2020-01-13 08:26:22.398955+00', '80', 'update', '{"id": 80, "end": "2020-01-10", "frs": [136], "start": "2018-07-26", "title": "Provision of psychosocial support and non-formal education for vulnerable migrant and IDP children", "number": "LIB/PCA2018122/PD201880-2", "status": "ended", "offices": [201], "metadata": {}, "sections": [1], "agreement": 122, "amendments": [28, 29], "attachments": [481, 480, 476, 373, 372, 371, 370, 369, 368, 367, 366, 365], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [58, 59], "review_date_prc": "2018-06-14", "submission_date": "2018-05-24", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [104, 115], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Annex_c_multakana_PD.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Multakana_MoM.pdf", "submission_date_prc": "2018-05-24", "unicef_focal_points": [29294], "partner_focal_points": [6], "signed_pd_attachment": [700], "prc_review_attachment": [699], "reference_number_year": 2018, "signed_by_unicef_date": "2018-07-26", "reporting_requirements": [], "signed_by_partner_date": "2018-07-26", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{"end": {"after": "2020-01-10", "before": "2019-12-31"}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (838, '2020-01-14 10:50:12.671724+00', '2020-01-14 10:50:12.671724+00', '87', 'update', '{"id": 87, "end": "2019-12-31", "frs": [147], "start": "2019-01-06", "title": "Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi", "number": "LIB/PCA2019137/PD201987", "status": "active", "offices": [201], "metadata": {}, "sections": [5, 2], "agreement": 137, "amendments": [], "attachments": [425, 424, 423, 422, 421, 420], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836, 1832], "planned_visits": [65], "review_date_prc": "2018-11-21", "submission_date": "2018-10-12", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-11-11", "unicef_focal_points": [1551], "partner_focal_points": [67], "signed_pd_attachment": [878], "prc_review_attachment": [877], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-06", "reporting_requirements": [], "signed_by_partner_date": "2019-01-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 67}', '{"in_amendment": {"after": false, "before": true}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (832, '2020-01-13 08:29:38.431973+00', '2020-01-13 08:29:38.431973+00', '80', 'update', '{"id": 80, "end": "2020-01-10", "frs": [136], "start": "2018-07-26", "title": "Provision of psychosocial support and non-formal education for vulnerable migrant and IDP children", "number": "LIB/PCA2018122/PD201880-2", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 122, "amendments": [28, 29], "attachments": [481, 480, 476, 373, 372, 371, 370, 369, 368, 367, 366, 365], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [58, 59], "review_date_prc": "2018-06-14", "submission_date": "2018-05-24", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [104, 115], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Annex_c_multakana_PD.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Multakana_MoM.pdf", "submission_date_prc": "2018-05-24", "unicef_focal_points": [29294], "partner_focal_points": [6], "signed_pd_attachment": [700], "prc_review_attachment": [699], "reference_number_year": 2018, "signed_by_unicef_date": "2018-07-26", "reporting_requirements": [], "signed_by_partner_date": "2018-07-26", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{"status": {"after": "active", "before": "ended"}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (833, '2020-01-13 08:41:34.103623+00', '2020-01-13 08:41:34.103623+00', '80', 'update', '{"id": 80, "end": "2020-01-10", "frs": [136], "start": "2018-07-26", "title": "Provision of psychosocial support and non-formal education for vulnerable migrant and IDP children", "number": "LIB/PCA2018122/PD201880-2", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 122, "amendments": [28, 29], "attachments": [481, 480, 476, 373, 372, 371, 370, 369, 368, 367, 366, 365], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [58, 59], "review_date_prc": "2018-06-14", "submission_date": "2018-05-24", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [104, 115], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Annex_c_multakana_PD.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Multakana_MoM.pdf", "submission_date_prc": "2018-05-24", "unicef_focal_points": [29294], "partner_focal_points": [6], "signed_pd_attachment": [700], "prc_review_attachment": [699], "reference_number_year": 2018, "signed_by_unicef_date": "2018-07-26", "reporting_requirements": [], "signed_by_partner_date": "2018-07-26", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{"in_amendment": {"after": false, "before": true}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (834, '2020-01-13 08:48:34.063978+00', '2020-01-13 08:48:34.063978+00', '80', 'update', '{"id": 80, "end": "2020-01-10", "frs": [136], "start": "2018-07-26", "title": "Provision of psychosocial support and non-formal education for vulnerable migrant and IDP children", "number": "LIB/PCA2018122/PD201880-3", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 122, "amendments": [28, 29, 33], "attachments": [481, 480, 476, 373, 372, 371, 370, 369, 368, 367, 366, 365], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [58, 59], "review_date_prc": "2018-06-14", "submission_date": "2018-05-24", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [104, 115], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Annex_c_multakana_PD.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Multakana_MoM.pdf", "submission_date_prc": "2018-05-24", "unicef_focal_points": [29294], "partner_focal_points": [6], "signed_pd_attachment": [700], "prc_review_attachment": [699], "reference_number_year": 2018, "signed_by_unicef_date": "2018-07-26", "reporting_requirements": [], "signed_by_partner_date": "2018-07-26", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (835, '2020-01-13 08:48:41.983168+00', '2020-01-13 08:48:41.983168+00', '80', 'update', '{"id": 80, "end": "2020-01-10", "frs": [136], "start": "2018-07-26", "title": "Provision of psychosocial support and non-formal education for vulnerable migrant and IDP children", "number": "LIB/PCA2018122/PD201880-3", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 122, "amendments": [28, 29, 33], "attachments": [481, 480, 476, 373, 372, 371, 370, 369, 368, 367, 366, 365], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [58, 59], "review_date_prc": "2018-06-14", "submission_date": "2018-05-24", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [104, 115], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Annex_c_multakana_PD.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Multakana_MoM.pdf", "submission_date_prc": "2018-05-24", "unicef_focal_points": [29294], "partner_focal_points": [6], "signed_pd_attachment": [700], "prc_review_attachment": [699], "reference_number_year": 2018, "signed_by_unicef_date": "2018-07-26", "reporting_requirements": [], "signed_by_partner_date": "2018-07-26", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{"in_amendment": {"after": false, "before": true}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (836, '2020-01-13 08:53:15.248749+00', '2020-01-13 08:53:15.248749+00', '80', 'update', '{"id": 80, "end": "2020-01-10", "frs": [136], "start": "2018-07-26", "title": "Provision of psychosocial support and non-formal education for vulnerable migrant and IDP children", "number": "LIB/PCA2018122/PD201880-3", "status": "closed", "offices": [201], "metadata": {}, "sections": [1], "agreement": 122, "amendments": [28, 29, 33], "attachments": [481, 480, 476, 373, 372, 371, 370, 369, 368, 367, 366, 365], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [58, 59], "review_date_prc": "2018-06-14", "submission_date": "2018-05-24", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [104, 115], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Annex_c_multakana_PD.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Multakana_MoM.pdf", "submission_date_prc": "2018-05-24", "unicef_focal_points": [29294], "partner_focal_points": [6], "signed_pd_attachment": [700], "prc_review_attachment": [699], "reference_number_year": 2018, "signed_by_unicef_date": "2018-07-26", "reporting_requirements": [], "signed_by_partner_date": "2018-07-26", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (837, '2020-01-13 14:49:58.632237+00', '2020-01-13 14:49:58.632237+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-1", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32], "attachments": [482, 478, 473], "in_amendment": false, "result_links": [68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (839, '2020-01-14 10:51:56.596608+00', '2020-01-14 10:51:56.596608+00', '87', 'update', '{"id": 87, "end": "2020-03-31", "frs": [147], "start": "2019-01-06", "title": "Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi", "number": "LIB/PCA2019137/PD201987-1", "status": "active", "offices": [201], "metadata": {}, "sections": [5, 2], "agreement": 137, "amendments": [35], "attachments": [425, 424, 423, 422, 421, 420], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836, 1832], "planned_visits": [65], "review_date_prc": "2018-11-21", "submission_date": "2018-10-12", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-11-11", "unicef_focal_points": [247375, 1497], "partner_focal_points": [67], "signed_pd_attachment": [878], "prc_review_attachment": [877], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-06", "reporting_requirements": [], "signed_by_partner_date": "2019-01-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 67}', '{"end": {"after": "2020-03-31", "before": "2019-12-31"}, "unicef_focal_points": {"after": [247375, 1497], "before": [1551]}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (840, '2020-01-14 10:52:02.133365+00', '2020-01-14 10:52:02.133365+00', '87', 'update', '{"id": 87, "end": "2020-03-31", "frs": [147], "start": "2019-01-06", "title": "Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi", "number": "LIB/PCA2019137/PD201987-1", "status": "active", "offices": [201], "metadata": {}, "sections": [5, 2], "agreement": 137, "amendments": [35], "attachments": [425, 424, 423, 422, 421, 420], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836, 1832], "planned_visits": [65], "review_date_prc": "2018-11-21", "submission_date": "2018-10-12", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-11-11", "unicef_focal_points": [247375, 1497], "partner_focal_points": [67], "signed_pd_attachment": [878], "prc_review_attachment": [877], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-06", "reporting_requirements": [], "signed_by_partner_date": "2019-01-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 67}', '{"in_amendment": {"after": false, "before": true}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (841, '2020-01-14 12:33:22.745534+00', '2020-01-14 12:33:22.745534+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (842, '2020-01-14 13:03:49.229834+00', '2020-01-14 13:03:49.229834+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (843, '2020-01-14 13:05:05.41515+00', '2020-01-14 13:05:05.41515+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": false, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"in_amendment": {"after": false, "before": true}}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (844, '2020-01-15 08:27:54.896353+00', '2020-01-15 08:27:54.896353+00', '4', 'update', '{"id": 4, "city": "TRIPOLI", "name": "EKRAA ASSEMBLY FOR DEVELOPMENT AND EDUCATION", "email": "", "hidden": false, "rating": "Medium", "address": "11821", "blocked": false, "country": "258", "cso_type": "National", "net_ct_cy": "60494.70", "agreements": [144, 43], "short_name": "", "assessments": [1], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "29625.18", "shared_with": [], "total_ct_cp": "134731.95", "total_ct_cy": "60494.70", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "", "total_ct_ytd": "0.00", "staff_members": [11], "vendor_number": "2500233196", "vision_synced": true, "alternate_name": "None", "planned_visits": [3, 4], "street_address": "", "psea_assessment": [], "related_partner": [12, 41, 64], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-05-30", "basis_for_risk_rating": "", "core_values_assessments": [18], "core_values_assessment_date": "2016-04-23", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 173037, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (845, '2020-01-15 08:28:17.016239+00', '2020-01-15 08:28:17.016239+00', '4', 'update', '{"id": 4, "city": "TRIPOLI", "name": "EKRAA ASSEMBLY FOR DEVELOPMENT AND EDUCATION", "email": "", "hidden": false, "rating": "Medium", "address": "11821", "blocked": false, "country": "258", "cso_type": "National", "net_ct_cy": "60494.70", "agreements": [144, 43], "short_name": "", "assessments": [1], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "29625.18", "shared_with": [], "total_ct_cp": "134731.95", "total_ct_cy": "60494.70", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "", "total_ct_ytd": "0.00", "staff_members": [11, 79], "vendor_number": "2500233196", "vision_synced": true, "alternate_name": "None", "planned_visits": [3, 4], "street_address": "", "psea_assessment": [], "related_partner": [12, 41, 64], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-05-30", "basis_for_risk_rating": "", "core_values_assessments": [18], "core_values_assessment_date": "2016-04-23", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 173037, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (847, '2020-01-15 09:32:11.764822+00', '2020-01-15 09:32:11.764822+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-2", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32, 34], "attachments": [482, 478, 473], "in_amendment": true, "result_links": [68, 80], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (846, '2020-01-15 08:31:20.487579+00', '2020-01-15 08:31:20.487579+00', '4', 'update', '{"id": 4, "city": "TRIPOLI", "name": "EKRAA ASSEMBLY FOR DEVELOPMENT AND EDUCATION", "email": "", "hidden": false, "rating": "Medium", "address": "11821", "blocked": false, "country": "258", "cso_type": "National", "net_ct_cy": "60494.70", "agreements": [144, 43], "short_name": "", "assessments": [1], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "29625.18", "shared_with": [], "total_ct_cp": "134731.95", "total_ct_cy": "60494.70", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "", "total_ct_ytd": "0.00", "staff_members": [79, 11], "vendor_number": "2500233196", "vision_synced": true, "alternate_name": "None", "planned_visits": [3, 4], "street_address": "", "psea_assessment": [], "related_partner": [12, 41, 64], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-05-30", "basis_for_risk_rating": "", "core_values_assessments": [18], "core_values_assessment_date": "2016-04-23", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 173037, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (850, '2020-01-16 11:47:15.331105+00', '2020-01-16 11:47:15.331105+00', '89', 'update', '{"id": 89, "city": "TRIPOLI", "name": "INTERSOS", "email": "LIBYA@INTERSOS.ORG", "hidden": false, "rating": "High", "address": "TRIPOLI", "blocked": false, "country": "258", "cso_type": "International", "net_ct_cy": "None", "agreements": [153], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": null}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": null}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": null}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "None", "shared_with": "None", "total_ct_cp": "None", "total_ct_cy": "None", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "(218) 921556562", "total_ct_ytd": "None", "staff_members": [74], "vendor_number": "2500240867", "vision_synced": true, "alternate_name": "Pietro de Nicolai", "planned_visits": [], "street_address": "None", "psea_assessment": [], "related_partner": [], "manually_blocked": false, "type_of_assessment": "High Risk Assumed", "last_assessment_date": "2019-10-07", "basis_for_risk_rating": "", "core_values_assessments": [51], "core_values_assessment_date": "2019-03-26", "outstanding_dct_amount_6_to_9_months_usd": "None", "outstanding_dct_amount_more_than_9_months_usd": "None"}', '{"hact_values": {"after": {"audits": {"completed": 0, "minimum_requirements": null}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": null}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": null}, "outstanding_findings": 0}, "before": "{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"}}', 200131, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (851, '2020-01-16 11:48:29.752312+00', '2020-01-16 11:48:29.752312+00', '89', 'update', '{"id": 89, "city": "TRIPOLI", "name": "INTERSOS", "email": "LIBYA@INTERSOS.ORG", "hidden": false, "rating": "High", "address": "TRIPOLI", "blocked": false, "country": "258", "cso_type": "International", "net_ct_cy": "None", "agreements": [153], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": null}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": null}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": null}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "None", "shared_with": "None", "total_ct_cp": "None", "total_ct_cy": "None", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "(218) 921556562", "total_ct_ytd": "None", "staff_members": [74], "vendor_number": "2500240867", "vision_synced": true, "alternate_name": "Pietro de Nicolai", "planned_visits": [], "street_address": "None", "psea_assessment": [], "related_partner": [], "manually_blocked": false, "type_of_assessment": "High Risk Assumed", "last_assessment_date": "2019-10-07", "basis_for_risk_rating": "", "core_values_assessments": [51], "core_values_assessment_date": "2019-03-26", "outstanding_dct_amount_6_to_9_months_usd": "None", "outstanding_dct_amount_more_than_9_months_usd": "None"}', '{}', 200131, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (854, '2020-01-16 14:18:53.530117+00', '2020-01-16 14:18:53.530117+00', '107', 'update', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [81], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [450, 449, 397, 396, 448, 447, 446, 445, 444, 443, 442, 441, 440, 439, 438, 437, 436, 395, 435, 434, 433, 432, 431, 430, 429, 428, 427, 426, 425, 424, 423, 394, 422, 421, 420, 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 393, 409, 408, 407, 406, 405, 404, 403, 402, 401, 400, 399, 398], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (855, '2020-01-16 14:46:17.207051+00', '2020-01-16 14:46:17.207051+00', '107', 'update', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [81], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [450, 449, 397, 396, 448, 447, 446, 445, 444, 443, 442, 441, 440, 439, 438, 437, 436, 395, 435, 434, 433, 432, 431, 430, 429, 428, 427, 426, 425, 424, 423, 394, 422, 421, 420, 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 393, 409, 408, 407, 406, 405, 404, 403, 402, 401, 400, 399, 398], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (856, '2020-01-16 14:48:32.371189+00', '2020-01-16 14:48:32.371189+00', '107', 'update', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [81], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [450, 449, 397, 396, 448, 447, 446, 445, 444, 443, 442, 441, 440, 439, 438, 437, 436, 395, 435, 434, 433, 432, 431, 430, 429, 428, 427, 426, 425, 424, 423, 394, 422, 421, 420, 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 393, 409, 408, 407, 406, 405, 404, 403, 402, 401, 400, 399, 398], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (857, '2020-01-16 14:49:53.452011+00', '2020-01-16 14:49:53.452011+00', '107', 'update', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [81], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [450, 449, 397, 396, 448, 447, 446, 445, 444, 443, 442, 441, 440, 439, 438, 437, 436, 395, 435, 434, 433, 432, 431, 430, 429, 428, 427, 426, 425, 424, 423, 394, 422, 421, 420, 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 393, 409, 408, 407, 406, 405, 404, 403, 402, 401, 400, 399, 398], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (858, '2020-01-16 14:55:10.761972+00', '2020-01-16 14:55:10.761972+00', '107', 'update', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [81, 82], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [450, 449, 397, 396, 448, 447, 446, 445, 444, 443, 442, 441, 440, 439, 438, 437, 436, 395, 435, 434, 433, 432, 431, 430, 429, 428, 427, 426, 425, 424, 423, 394, 422, 421, 420, 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 393, 409, 408, 407, 406, 405, 404, 403, 402, 401, 400, 399, 398], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (859, '2020-01-16 15:20:34.968434+00', '2020-01-16 15:20:34.968434+00', '107', 'update', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [81, 82], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [450, 449, 397, 396, 448, 447, 446, 445, 444, 443, 442, 441, 440, 439, 438, 437, 436, 395, 435, 434, 433, 432, 431, 430, 429, 428, 427, 426, 425, 424, 423, 394, 422, 421, 420, 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 393, 409, 408, 407, 406, 405, 404, 403, 402, 401, 400, 399, 398], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (860, '2020-01-16 15:22:03.278192+00', '2020-01-16 15:22:03.278192+00', '107', 'update', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [81, 82], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [450, 449, 397, 396, 448, 447, 446, 445, 444, 443, 442, 441, 440, 439, 438, 437, 436, 395, 435, 434, 433, 432, 431, 430, 429, 428, 427, 426, 425, 424, 423, 394, 422, 421, 420, 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 393, 409, 408, 407, 406, 405, 404, 403, 402, 401, 400, 399, 398], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (861, '2020-01-16 15:24:53.535952+00', '2020-01-16 15:24:53.535952+00', '107', 'update', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [81, 82], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "2019-10-01", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-25", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [450, 449, 397, 396, 448, 447, 446, 445, 444, 443, 442, 441, 440, 439, 438, 437, 436, 395, 435, 434, 433, 432, 431, 430, 429, 428, 427, 426, 425, 424, 423, 394, 422, 421, 420, 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 393, 409, 408, 407, 406, 405, 404, 403, 402, 401, 400, 399, 398], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{"submission_date": {"after": "2019-10-01", "before": "None"}, "unicef_signatory": {"after": 20024, "before": "None"}, "submission_date_prc": {"after": "2019-09-25", "before": "None"}, "signed_by_unicef_date": {"after": "2019-12-04", "before": "None"}, "signed_by_partner_date": {"after": "2019-12-04", "before": "None"}, "partner_authorized_officer_signatory": {"after": 78, "before": "None"}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (862, '2020-01-16 15:29:00.586055+00', '2020-01-16 15:29:00.586055+00', '107', 'update', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [484, 483], "in_amendment": false, "result_links": [81, 82], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "2019-10-01", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-25", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [1180], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [450, 449, 397, 396, 448, 447, 446, 445, 444, 443, 442, 441, 440, 439, 438, 437, 436, 395, 435, 434, 433, 432, 431, 430, 429, 428, 427, 426, 425, 424, 423, 394, 422, 421, 420, 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 393, 409, 408, 407, 406, 405, 404, 403, 402, 401, 400, 399, 398], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (863, '2020-01-16 15:29:09.025542+00', '2020-01-16 15:29:09.025542+00', '107', 'update', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [484, 483], "in_amendment": false, "result_links": [81, 82], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "2019-10-01", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-25", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [1180], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [450, 449, 397, 396, 448, 447, 446, 445, 444, 443, 442, 441, 440, 439, 438, 437, 436, 395, 435, 434, 433, 432, 431, 430, 429, 428, 427, 426, 425, 424, 423, 394, 422, 421, 420, 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 393, 409, 408, 407, 406, 405, 404, 403, 402, 401, 400, 399, 398], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (864, '2020-01-16 15:30:07.731923+00', '2020-01-16 15:30:07.731923+00', '107', 'update', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [484, 483], "in_amendment": false, "result_links": [81, 82], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "2019-10-01", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-25", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [1180], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [450, 449, 397, 396, 448, 447, 446, 445, 444, 443, 442, 441, 440, 439, 438, 437, 436, 395, 435, 434, 433, 432, 431, 430, 429, 428, 427, 426, 425, 424, 423, 394, 422, 421, 420, 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 393, 409, 408, 407, 406, 405, 404, 403, 402, 401, 400, 399, 398], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (865, '2020-01-16 15:30:14.902307+00', '2020-01-16 15:30:14.902307+00', '107', 'update', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [484, 483], "in_amendment": false, "result_links": [81, 82], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "2019-10-01", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-25", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [1180], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [450, 449, 397, 396, 448, 447, 446, 445, 444, 443, 442, 441, 440, 439, 438, 437, 436, 395, 435, 434, 433, 432, 431, 430, 429, 428, 427, 426, 425, 424, 423, 394, 422, 421, 420, 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 393, 409, 408, 407, 406, 405, 404, 403, 402, 401, 400, 399, 398], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (866, '2020-01-16 15:30:53.106284+00', '2020-01-16 15:30:53.106284+00', '107', 'update', '{"id": 107, "end": "2020-12-03", "frs": [], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Baity Child resilience centers", "number": "LIB/PCA2019155/PD2019107", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [484, 483], "in_amendment": false, "result_links": [81, 82], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 2191, 2204], "planned_visits": [], "review_date_prc": "None", "submission_date": "2019-10-01", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-25", "unicef_focal_points": [200131], "partner_focal_points": [78], "signed_pd_attachment": [1180], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [450, 449, 397, 396, 448, 447, 446, 445, 444, 443, 442, 441, 440, 439, 438, 437, 436, 395, 435, 434, 433, 432, 431, 430, 429, 428, 427, 426, 425, 424, 423, 394, 422, 421, 420, 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 393, 409, 408, 407, 406, 405, 404, 403, 402, 401, 400, 399, 398], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (867, '2020-01-16 16:31:50.787406+00', '2020-01-16 16:31:50.787406+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [479], "in_amendment": true, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [455, 454, 453, 452, 451], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (868, '2020-01-16 16:32:32.686085+00', '2020-01-16 16:32:32.686085+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [486, 485, 479], "in_amendment": true, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [455, 454, 453, 452, 451], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (869, '2020-01-16 16:32:38.947589+00', '2020-01-16 16:32:38.947589+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [486, 485, 479], "in_amendment": false, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [455, 454, 453, 452, 451], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{"in_amendment": {"after": false, "before": true}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (870, '2020-01-20 10:42:37.625526+00', '2020-01-20 10:42:37.625526+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [437], "in_amendment": false, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [247375], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{"unicef_focal_points": {"after": [247375], "before": [1551]}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (871, '2020-01-20 10:52:20.564143+00', '2020-01-20 10:52:20.564143+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [247375], "partner_focal_points": [17, 77], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{"unicef_focal_points": {"after": [247375], "before": [1551]}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (878, '2020-01-27 14:54:18.567528+00', '2020-01-27 14:54:18.567528+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [493, 492, 487], "in_amendment": false, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [247375], "partner_focal_points": [17, 77], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (872, '2020-01-20 11:13:05.595708+00', '2020-01-20 11:13:05.595708+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [436], "in_amendment": false, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11, 79], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [313, 50, 312, 311, 310, 309, 308, 307, 306, 305, 49, 304, 303, 302, 301, 300, 299, 298, 51, 297, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{"partner_focal_points": {"after": [11, 79], "before": [11]}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (873, '2020-01-20 13:26:37.248325+00', '2020-01-20 13:26:37.248325+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [486, 485, 479], "in_amendment": false, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [455, 454, 453, 452, 451], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (874, '2020-01-27 07:59:03.631881+00', '2020-01-27 07:59:03.631881+00', '17', 'update', '{"id": 17, "city": "BANGHAZI", "name": "BREEZES LIBYA", "email": "", "hidden": false, "rating": "Medium", "address": "ANDALUS", "blocked": false, "country": "258", "cso_type": "National", "net_ct_cy": "39379.43", "agreements": [147, 52], "short_name": "", "assessments": [2], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "140434.51", "shared_with": [], "total_ct_cp": "191946.39", "total_ct_cy": "39379.43", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "", "total_ct_ytd": "0.00", "staff_members": [17, 77], "vendor_number": "2500233211", "vision_synced": true, "alternate_name": "None", "planned_visits": [9], "street_address": "", "psea_assessment": [], "related_partner": [8, 39, 62], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-06-01", "basis_for_risk_rating": "", "core_values_assessments": [14], "core_values_assessment_date": "2017-06-01", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 247375, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (875, '2020-01-27 07:59:15.842138+00', '2020-01-27 07:59:15.842138+00', '17', 'update', '{"id": 17, "city": "BANGHAZI", "name": "BREEZES LIBYA", "email": "", "hidden": false, "rating": "Medium", "address": "ANDALUS", "blocked": false, "country": "258", "cso_type": "National", "net_ct_cy": "39379.43", "agreements": [147, 52], "short_name": "", "assessments": [2], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "140434.51", "shared_with": [], "total_ct_cp": "191946.39", "total_ct_cy": "39379.43", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "", "total_ct_ytd": "0.00", "staff_members": [17, 77, 81], "vendor_number": "2500233211", "vision_synced": true, "alternate_name": "None", "planned_visits": [9], "street_address": "", "psea_assessment": [], "related_partner": [8, 39, 62], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-06-01", "basis_for_risk_rating": "", "core_values_assessments": [14], "core_values_assessment_date": "2017-06-01", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 247375, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (876, '2020-01-27 08:11:52.496504+00', '2020-01-27 08:11:52.496504+00', '17', 'update', '{"id": 17, "city": "BANGHAZI", "name": "BREEZES LIBYA", "email": "", "hidden": false, "rating": "Medium", "address": "ANDALUS", "blocked": false, "country": "258", "cso_type": "National", "net_ct_cy": "39379.43", "agreements": [147, 52], "short_name": "", "assessments": [2], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "140434.51", "shared_with": [], "total_ct_cp": "191946.39", "total_ct_cy": "39379.43", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "", "total_ct_ytd": "0.00", "staff_members": [17, 81, 77], "vendor_number": "2500233211", "vision_synced": true, "alternate_name": "None", "planned_visits": [9], "street_address": "", "psea_assessment": [], "related_partner": [8, 39, 62], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-06-01", "basis_for_risk_rating": "", "core_values_assessments": [14], "core_values_assessment_date": "2017-06-01", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 247375, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (877, '2020-01-27 08:12:11.66299+00', '2020-01-27 08:12:11.66299+00', '17', 'update', '{"id": 17, "city": "BANGHAZI", "name": "BREEZES LIBYA", "email": "", "hidden": false, "rating": "Medium", "address": "ANDALUS", "blocked": false, "country": "258", "cso_type": "National", "net_ct_cy": "39379.43", "agreements": [147, 52], "short_name": "", "assessments": [2], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "140434.51", "shared_with": [], "total_ct_cp": "191946.39", "total_ct_cy": "39379.43", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "", "total_ct_ytd": "0.00", "staff_members": [17, 77, 81], "vendor_number": "2500233211", "vision_synced": true, "alternate_name": "None", "planned_visits": [9], "street_address": "", "psea_assessment": [], "related_partner": [8, 39, 62], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-06-01", "basis_for_risk_rating": "", "core_values_assessments": [14], "core_values_assessment_date": "2017-06-01", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 247375, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (881, '2020-01-28 09:59:09.471718+00', '2020-01-28 09:59:09.471718+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [491, 490, 437], "in_amendment": true, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [247375], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (883, '2020-01-28 12:10:13.77905+00', '2020-01-28 12:10:13.77905+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [491, 490, 437], "in_amendment": true, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [247375], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (879, '2020-01-27 14:54:45.624676+00', '2020-01-27 14:54:45.624676+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [493, 492, 487], "in_amendment": false, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [247375], "partner_focal_points": [77, 81], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{"partner_focal_points": {"after": [77, 81], "before": [77]}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (882, '2020-01-28 12:08:49.446271+00', '2020-01-28 12:08:49.446271+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [491, 490, 437], "in_amendment": true, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [247375], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (884, '2020-01-28 12:12:49.368833+00', '2020-01-28 12:12:49.368833+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [491, 490, 437], "in_amendment": true, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [247375], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (885, '2020-01-28 13:51:44.84527+00', '2020-01-28 13:51:44.84527+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [491, 490, 437], "in_amendment": true, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [247375], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1037, '2020-03-03 12:39:29.152647+00', '2020-03-03 12:39:29.152647+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [502, 501, 500, 451], "in_amendment": true, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72, 82], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [475, 296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283, 524], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (886, '2020-01-28 13:51:49.777706+00', '2020-01-28 13:51:49.777706+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [491, 490, 437], "in_amendment": true, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [247375], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (887, '2020-01-28 13:52:10.97056+00', '2020-01-28 13:52:10.97056+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [491, 490, 437], "in_amendment": true, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [247375], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (888, '2020-01-28 14:16:56.682377+00', '2020-01-28 14:16:56.682377+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [491, 490, 437], "in_amendment": true, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [247375], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (889, '2020-01-28 14:23:16.008674+00', '2020-01-28 14:23:16.008674+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [493, 492, 487], "in_amendment": true, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [247375], "partner_focal_points": [77, 81], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (900, '2020-01-29 11:16:48.546969+00', '2020-01-29 11:16:48.546969+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [493, 492, 487], "in_amendment": true, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [247375], "partner_focal_points": [77, 81], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (890, '2020-01-28 14:24:10.400733+00', '2020-01-28 14:24:10.400733+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [494, 436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11, 79], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [313, 50, 312, 311, 310, 309, 308, 307, 306, 305, 49, 304, 303, 302, 301, 300, 299, 298, 51, 297, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (891, '2020-01-28 14:25:18.221552+00', '2020-01-28 14:25:18.221552+00', '87', 'update', '{"id": 87, "end": "2020-03-31", "frs": [147], "start": "2019-01-06", "title": "Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi", "number": "LIB/PCA2019137/PD201987-1", "status": "active", "offices": [201], "metadata": {}, "sections": [5, 2], "agreement": 137, "amendments": [35], "attachments": [495, 425, 424, 423, 422, 421, 420], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836, 1832], "planned_visits": [65], "review_date_prc": "2018-11-21", "submission_date": "2018-10-12", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-11-11", "unicef_focal_points": [247375, 1497], "partner_focal_points": [67], "signed_pd_attachment": [878], "prc_review_attachment": [877], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-06", "reporting_requirements": [], "signed_by_partner_date": "2019-01-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 67}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (892, '2020-01-29 08:15:13.382263+00', '2020-01-29 08:15:13.382263+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [493, 492, 487], "in_amendment": false, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [247375], "partner_focal_points": [77, 81], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{"in_amendment": {"after": false, "before": true}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (893, '2020-01-29 10:18:39.409705+00', '2020-01-29 10:18:39.409705+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [491, 490, 437], "in_amendment": true, "result_links": [71, 73, 70], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [247375], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (899, '2020-01-29 10:49:07.493802+00', '2020-01-29 10:49:07.493802+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [493, 492, 487], "in_amendment": true, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [247375], "partner_focal_points": [77, 81], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (894, '2020-01-29 10:19:16.368455+00', '2020-01-29 10:19:16.368455+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [491, 490, 437], "in_amendment": true, "result_links": [73, 70, 71], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [247375], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (895, '2020-01-29 10:20:04.188395+00', '2020-01-29 10:20:04.188395+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [491, 490, 437], "in_amendment": true, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [247375], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (896, '2020-01-29 10:24:31.318205+00', '2020-01-29 10:24:31.318205+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [491, 490, 437], "in_amendment": true, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [247375], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (897, '2020-01-29 10:36:09.296498+00', '2020-01-29 10:36:09.296498+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [494, 436], "in_amendment": false, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [1551], "partner_focal_points": [11, 79], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [313, 50, 312, 311, 310, 309, 308, 307, 306, 305, 49, 304, 303, 302, 301, 300, 299, 298, 51, 297, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{"in_amendment": {"after": false, "before": true}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (898, '2020-01-29 10:36:38.585305+00', '2020-01-29 10:36:38.585305+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [494, 436], "in_amendment": false, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [247375], "partner_focal_points": [11, 79], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [313, 50, 312, 311, 310, 309, 308, 307, 306, 305, 49, 304, 303, 302, 301, 300, 299, 298, 51, 297, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{"unicef_focal_points": {"after": [247375], "before": [1551]}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (905, '2020-01-30 08:46:05.543472+00', '2020-01-30 08:46:05.543472+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (907, '2020-01-30 08:52:54.878816+00', '2020-01-30 08:52:54.878816+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-2", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32, 34], "attachments": [482, 478, 473], "in_amendment": true, "result_links": [80, 68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (908, '2020-01-30 08:53:01.872021+00', '2020-01-30 08:53:01.872021+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-2", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32, 34], "attachments": [482, 478, 473], "in_amendment": false, "result_links": [80, 68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{"in_amendment": {"after": false, "before": true}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (909, '2020-01-30 09:00:06.259149+00', '2020-01-30 09:00:06.259149+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1044, '2020-03-09 08:45:10.276549+00', '2020-03-09 08:45:10.276549+00', '3', 'update', '{"id": 3, "author": 17817, "office": 201, "status": "open", "history": [537], "partner": 81, "section": 1, "category": "None", "comments": [], "due_date": "2019-09-15", "location": "None", "cp_output": 108, "engagement": "None", "key_events": [], "assigned_by": 17817, "assigned_to": 17817, "description": "Discuss with partner possibility to integrate different subjects in awareness sessions, to address the needs of the children\nin this school.", "intervention": 75, "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 69, "reference_number": "LIB/2019/3/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 17817, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (901, '2020-01-29 11:25:50.138666+00', '2020-01-29 11:25:50.138666+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [], "attachments": [493, 492, 487], "in_amendment": false, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [247375], "partner_focal_points": [77, 81], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{"in_amendment": {"after": false, "before": true}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (902, '2020-01-29 11:29:43.110392+00', '2020-01-29 11:29:43.110392+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [486, 485, 479], "in_amendment": true, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [455, 454, 453, 452, 451], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (903, '2020-01-29 12:06:25.476926+00', '2020-01-29 12:06:25.476926+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [161], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [1138], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (904, '2020-01-29 14:51:56.737176+00', '2020-01-29 14:51:56.737176+00', '87', 'update', '{"id": 87, "end": "2020-03-31", "frs": [147], "start": "2019-01-06", "title": "Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi", "number": "LIB/PCA2019137/PD201987-1", "status": "active", "offices": [201], "metadata": {}, "sections": [5, 2], "agreement": 137, "amendments": [35], "attachments": [495, 425, 424, 423, 422, 421, 420], "in_amendment": true, "result_links": [84], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836, 1832], "planned_visits": [65], "review_date_prc": "2018-11-21", "submission_date": "2018-10-12", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-11-11", "unicef_focal_points": [247375, 1497], "partner_focal_points": [67], "signed_pd_attachment": [878], "prc_review_attachment": [877], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-06", "reporting_requirements": [469, 474, 468, 467, 466, 465, 464, 463, 462, 461, 460, 459, 458, 457, 456, 473, 472, 471, 470], "signed_by_partner_date": "2019-01-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 67}', '{}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (906, '2020-01-30 08:52:47.57925+00', '2020-01-30 08:52:47.57925+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-2", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32, 34], "attachments": [482, 478, 473], "in_amendment": true, "result_links": [80, 68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (910, '2020-01-30 09:00:41.959275+00', '2020-01-30 09:00:41.959275+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [491, 490, 437], "in_amendment": false, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [247375], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{"in_amendment": {"after": false, "before": true}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (911, '2020-01-30 09:49:11.4223+00', '2020-01-30 09:49:11.4223+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [486, 485, 479], "in_amendment": true, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [455, 454, 453, 452, 451], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (912, '2020-01-30 10:11:51.844028+00', '2020-01-30 10:11:51.844028+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [496, 486, 485, 479], "in_amendment": true, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [455, 454, 453, 452, 451], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (913, '2020-01-30 10:15:36.748302+00', '2020-01-30 10:15:36.748302+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [491, 490, 437], "in_amendment": true, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [247375], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1045, '2020-03-09 08:45:28.368683+00', '2020-03-09 08:45:28.368683+00', '3', 'update', '{"id": 3, "author": 17817, "office": 201, "status": "open", "history": [1044, 537], "partner": 81, "section": 1, "category": "None", "comments": [11], "due_date": "2019-09-15", "location": "None", "cp_output": 108, "engagement": "None", "key_events": [], "assigned_by": 17817, "assigned_to": 17817, "description": "Discuss with partner possibility to integrate different subjects in awareness sessions, to address the needs of the children\nin this school.", "intervention": 75, "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 69, "reference_number": "LIB/2019/3/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 17817, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (914, '2020-01-30 10:23:33.948354+00', '2020-01-30 10:23:33.948354+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [496, 486, 485, 479], "in_amendment": true, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [455, 454, 453, 452, 451], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (915, '2020-01-30 10:24:18.561336+00', '2020-01-30 10:24:18.561336+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": true, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (916, '2020-01-30 10:27:22.739609+00', '2020-01-30 10:27:22.739609+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [496, 486, 485, 479], "in_amendment": true, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [455, 454, 453, 452, 451], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (917, '2020-01-30 10:27:29.012461+00', '2020-01-30 10:27:29.012461+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [496, 486, 485, 479], "in_amendment": false, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [455, 454, 453, 452, 451], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{"in_amendment": {"after": false, "before": true}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1104, '2020-04-06 15:26:42.833436+00', '2020-04-06 15:26:42.833436+00', '156', 'update', '{"id": 156, "end": "2020-12-31", "start": "2020-03-24", "status": "draft", "partner": 74, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [108], "agreement_type": "PCA", "partner_manager": 83, "agreement_number": "LIB/PCA2020156", "country_programme": 34, "attached_agreement": "", "authorized_officers": [83], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-22", "signed_by_partner_date": "2020-03-24", "special_conditions_pca": false}', '{"start": {"after": "2020-03-24", "before": "None"}, "signed_by_unicef_date": {"after": "2020-03-22", "before": "None"}, "signed_by_partner_date": {"after": "2020-03-24", "before": "None"}}', 198811, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (918, '2020-01-30 10:34:30.567024+00', '2020-01-30 10:34:30.567024+00', '104', 'update', '{"id": 104, "end": "2020-10-14", "frs": [], "start": "2019-11-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-2", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31], "attachments": [477, 472, 471], "in_amendment": true, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942, 1895, 1898], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1108], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"flat_locations": {"after": [1835, 1942, 1895, 1898], "before": [1835, 1942]}, "partner_focal_points": {"after": [74, 80], "before": [74]}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (919, '2020-01-30 10:40:21.026777+00', '2020-01-30 10:40:21.026777+00', '104', 'update', '{"id": 104, "end": "2020-10-14", "frs": [], "start": "2019-11-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-2", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31], "attachments": [477, 472, 471], "in_amendment": true, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942, 1895, 1898], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1108], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (920, '2020-01-30 10:45:58.968838+00', '2020-01-30 10:45:58.968838+00', '104', 'update', '{"id": 104, "end": "2020-10-14", "frs": [], "start": "2019-11-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-2", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31], "attachments": [477, 472, 471], "in_amendment": true, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942, 1895, 1898], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1108], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (921, '2020-01-30 10:49:50.186166+00', '2020-01-30 10:49:50.186166+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [491, 490, 437], "in_amendment": false, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [247375], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{"in_amendment": {"after": false, "before": true}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (922, '2020-01-30 11:02:01.682825+00', '2020-01-30 11:02:01.682825+00', '104', 'update', '{"id": 104, "end": "2020-10-14", "frs": [], "start": "2019-11-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-2", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31], "attachments": [477, 472, 471], "in_amendment": true, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942, 1895, 1898], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1108], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (923, '2020-01-30 11:02:21.292389+00', '2020-01-30 11:02:21.292389+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [491, 490, 437], "in_amendment": false, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [247375], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (924, '2020-01-30 11:09:33.558558+00', '2020-01-30 11:09:33.558558+00', '104', 'update', '{"id": 104, "end": "2020-10-14", "frs": [], "start": "2019-11-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-2", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31], "attachments": [477, 472, 471], "in_amendment": true, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942, 1895, 1898], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1108], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (925, '2020-01-30 11:17:53.034477+00', '2020-01-30 11:17:53.034477+00', '104', 'update', '{"id": 104, "end": "2020-10-14", "frs": [], "start": "2019-11-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-2", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31], "attachments": [477, 472, 471], "in_amendment": true, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942, 1895, 1898], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1108], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (926, '2020-01-30 11:18:12.284869+00', '2020-01-30 11:18:12.284869+00', '104', 'update', '{"id": 104, "end": "2020-10-14", "frs": [], "start": "2019-11-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-2", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31], "attachments": [477, 472, 471], "in_amendment": false, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942, 1895, 1898], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1108], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"in_amendment": {"after": false, "before": true}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (927, '2020-01-30 11:56:54.571561+00', '2020-01-30 11:56:54.571561+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (928, '2020-01-30 11:59:54.378033+00', '2020-01-30 11:59:54.378033+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (929, '2020-01-30 12:44:39.007578+00', '2020-01-30 12:44:39.007578+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (930, '2020-01-30 12:45:00.400838+00', '2020-01-30 12:45:00.400838+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (931, '2020-01-30 12:45:12.176483+00', '2020-01-30 12:45:12.176483+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": false, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"in_amendment": {"after": false, "before": true}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (932, '2020-01-30 12:45:44.982784+00', '2020-01-30 12:45:44.982784+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": false, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (933, '2020-02-02 13:04:39.39828+00', '2020-02-02 13:04:39.39828+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (934, '2020-02-02 13:26:53.278818+00', '2020-02-02 13:26:53.278818+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (935, '2020-02-02 13:27:27.232857+00', '2020-02-02 13:27:27.232857+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": false, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"in_amendment": {"after": false, "before": true}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (936, '2020-02-02 13:27:33.234545+00', '2020-02-02 13:27:33.234545+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": false, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (937, '2020-02-02 14:58:48.876323+00', '2020-02-02 14:58:48.876323+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": true, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [475, 296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (938, '2020-02-02 14:59:05.724455+00', '2020-02-02 14:59:05.724455+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": true, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [475, 296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (941, '2020-02-03 08:26:06.977441+00', '2020-02-03 08:26:06.977441+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (939, '2020-02-02 14:59:15.696035+00', '2020-02-02 14:59:15.696035+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": false, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [475, 296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"in_amendment": {"after": false, "before": true}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (940, '2020-02-02 14:59:20.646871+00', '2020-02-02 14:59:20.646871+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": false, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [475, 296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (942, '2020-02-03 12:20:00.522059+00', '2020-02-03 12:20:00.522059+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [496, 486, 485, 479], "in_amendment": true, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [455, 454, 453, 452, 451], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (943, '2020-02-03 12:22:23.889433+00', '2020-02-03 12:22:23.889433+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [496, 486, 485, 479], "in_amendment": true, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [523, 455, 454, 522, 521, 520, 519, 518, 517, 516, 515, 514, 513, 512, 511, 510, 453, 509, 508, 507, 506, 505, 504, 503, 502, 501, 500, 499, 498, 452, 497, 496, 495, 494, 493, 492, 491, 490, 489, 488, 487, 486, 485, 451, 484, 483, 482, 481, 480, 479, 478, 477, 476], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1133, '2020-04-20 10:08:15.081815+00', '2020-04-20 10:08:15.081815+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH Response to Affected People", "number": "LIB/PCA2019130/PD2020111", "status": "draft", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [91], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1900, 1840, 1852, 1847, 1835, 1846, 1895, 1896, 1845, 1898], "planned_visits": [76], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-01-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [1252], "monitoring_activities": [], "prc_review_attachment": [1250], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [708, 558, 707, 706, 705, 704, 703, 702, 701, 700, 699, 698, 697, 696, 695, 557, 694, 693, 692, 691, 690, 689, 688, 687, 686, 685, 684, 683, 682, 556, 681, 680, 679, 678, 677, 676, 675, 674, 673, 555], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{}', 247527, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (944, '2020-02-03 12:22:41.176818+00', '2020-02-03 12:22:41.176818+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [496, 486, 485, 479], "in_amendment": true, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [523, 455, 454, 522, 521, 520, 519, 518, 517, 516, 515, 514, 513, 512, 511, 510, 453, 509, 508, 507, 506, 505, 504, 503, 502, 501, 500, 499, 498, 452, 497, 496, 495, 494, 493, 492, 491, 490, 489, 488, 487, 486, 485, 451, 484, 483, 482, 481, 480, 479, 478, 477, 476], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (945, '2020-02-03 12:22:59.453043+00', '2020-02-03 12:22:59.453043+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [], "attachments": [496, 486, 485, 479], "in_amendment": false, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [78], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [523, 455, 454, 522, 521, 520, 519, 518, 517, 516, 515, 514, 513, 512, 511, 510, 453, 509, 508, 507, 506, 505, 504, 503, 502, 501, 500, 499, 498, 452, 497, 496, 495, 494, 493, 492, 491, 490, 489, 488, 487, 486, 485, 451, 484, 483, 482, 481, 480, 479, 478, 477, 476], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{"in_amendment": {"after": false, "before": true}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (946, '2020-02-03 15:36:30.175077+00', '2020-02-03 15:36:30.175077+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [161], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74], "signed_pd_attachment": [1138], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"sections": {"after": [1], "before": [1, 2]}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (947, '2020-02-03 15:36:39.45951+00', '2020-02-03 15:36:39.45951+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [161], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1138], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"partner_focal_points": {"after": [74, 80], "before": [74]}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (948, '2020-02-03 15:39:18.846286+00', '2020-02-03 15:39:18.846286+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [161], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1138], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (949, '2020-02-03 15:43:04.009263+00', '2020-02-03 15:43:04.009263+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [161], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1138], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (950, '2020-02-03 15:45:54.637676+00', '2020-02-03 15:45:54.637676+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [161], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1138], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (951, '2020-02-03 15:49:46.285465+00', '2020-02-03 15:49:46.285465+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [161], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1138], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (952, '2020-02-03 15:51:24.417633+00', '2020-02-03 15:51:24.417633+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [161], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1138], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (953, '2020-02-03 15:52:04.016316+00', '2020-02-03 15:52:04.016316+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [161], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1138], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"in_amendment": {"after": false, "before": true}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (954, '2020-02-03 15:52:10.663266+00', '2020-02-03 15:52:10.663266+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [161], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1138], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (965, '2020-02-06 08:40:02.184497+00', '2020-02-06 08:40:02.184497+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (956, '2020-02-03 16:16:09.909715+00', '2020-02-03 16:16:09.909715+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{"flat_locations": {"after": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1895, 1905, 1896, 1898], "before": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1919, 1942, 1895, 1905, 1896, 1898]}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (957, '2020-02-03 16:16:15.491414+00', '2020-02-03 16:16:15.491414+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (958, '2020-02-03 16:16:33.220154+00', '2020-02-03 16:16:33.220154+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": false, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{"in_amendment": {"after": false, "before": true}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (959, '2020-02-03 16:16:41.165363+00', '2020-02-03 16:16:41.165363+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": false, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (960, '2020-02-03 16:25:07.149516+00', '2020-02-03 16:25:07.149516+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (961, '2020-02-03 16:25:47.250347+00', '2020-02-03 16:25:47.250347+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (962, '2020-02-03 16:25:53.707082+00', '2020-02-03 16:25:53.707082+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": false, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{"in_amendment": {"after": false, "before": true}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (963, '2020-02-03 16:25:58.031754+00', '2020-02-03 16:25:58.031754+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": false, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (964, '2020-02-05 10:51:46.025392+00', '2020-02-05 10:51:46.025392+00', '87', 'update', '{"id": 87, "end": "2020-03-31", "frs": [147], "start": "2019-01-06", "title": "Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi", "number": "LIB/PCA2019137/PD201987-1", "status": "active", "offices": [201], "metadata": {}, "sections": [5, 2], "agreement": 137, "amendments": [35], "attachments": [495, 425, 424, 423, 422, 421, 420], "in_amendment": false, "result_links": [84], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836, 1832], "planned_visits": [65], "review_date_prc": "2018-11-21", "submission_date": "2018-10-12", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-11-11", "unicef_focal_points": [247375, 1497], "partner_focal_points": [67], "signed_pd_attachment": [878], "prc_review_attachment": [877], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-06", "reporting_requirements": [469, 474, 468, 467, 466, 465, 464, 463, 462, 461, 460, 459, 458, 457, 456, 473, 472, 471, 470], "signed_by_partner_date": "2019-01-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 67}', '{"in_amendment": {"after": false, "before": true}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (974, '2020-02-11 12:40:31.647353+00', '2020-02-11 12:40:31.647353+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-2", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32, 34], "attachments": [497, 482, 478, 473], "in_amendment": false, "result_links": [80, 68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (967, '2020-02-06 10:36:51.387539+00', '2020-02-06 10:36:51.387539+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": true, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (968, '2020-02-06 10:37:03.479563+00', '2020-02-06 10:37:03.479563+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": false, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{"in_amendment": {"after": false, "before": true}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (969, '2020-02-06 12:40:09.537422+00', '2020-02-06 12:40:09.537422+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": false, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (970, '2020-02-06 12:40:58.346578+00', '2020-02-06 12:40:58.346578+00', '103', 'update', '{"id": 103, "end": "2020-10-07", "frs": [158], "start": "2019-10-07", "title": "Strengthening Gender Based Violence and Child Protection Response and mitigation measures for communities and local CSOs in Misurata", "number": "LIB/PCA2019152/PD2019103", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 152, "amendments": [], "attachments": [463, 462, 461, 460, 459], "in_amendment": false, "result_links": [62], "document_type": "PD", "contingency_pd": false, "flat_locations": [1916, 1917, 1914, 1915], "planned_visits": [72], "review_date_prc": "2019-09-25", "submission_date": "2019-04-13", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-09-24", "unicef_focal_points": [17817], "partner_focal_points": [73], "signed_pd_attachment": [1082], "prc_review_attachment": [1081], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-07", "reporting_requirements": [282, 241, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 240, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 239, 254, 253, 252, 251, 250, 249, 248, 247, 246, 245, 244, 243, 242, 238], "signed_by_partner_date": "2019-10-07", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 73}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (975, '2020-02-11 12:41:28.273733+00', '2020-02-11 12:41:28.273733+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-2", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32, 34], "attachments": [497, 482, 478, 473], "in_amendment": false, "result_links": [80, 68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (976, '2020-02-11 14:59:35.677945+00', '2020-02-11 14:59:35.677945+00', '86', 'update', '{"id": 86, "city": "TRIPOLI", "name": "SCOUTS AND GUIDES HAY ALANDALUS TROOP", "email": "MOHMMADLAGA60@GMAIL.COM", "hidden": false, "rating": "High", "address": "SCOUTS MAIN THEATER 11224 KHALIFA ZALIDI STREET", "blocked": false, "country": "258", "cso_type": "National", "net_ct_cy": "96457.15", "agreements": [150], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 1, "total": 1}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "00218", "reported_cy": "102776.88", "shared_with": "None", "total_ct_cp": "151893.49", "total_ct_cy": "49116.61", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "914777792", "total_ct_ytd": "47340.54", "staff_members": [72], "vendor_number": "2500240112", "vision_synced": true, "alternate_name": "None", "planned_visits": [], "street_address": "None", "psea_assessment": [], "related_partner": [78], "manually_blocked": false, "type_of_assessment": "High Risk Assumed", "last_assessment_date": "2019-04-17", "basis_for_risk_rating": "", "core_values_assessments": [46], "core_values_assessment_date": "2019-03-15", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 173037, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (977, '2020-02-11 15:00:23.626951+00', '2020-02-11 15:00:23.626951+00', '86', 'update', '{"id": 86, "city": "TRIPOLI", "name": "SCOUTS AND GUIDES HAY ALANDALUS TROOP", "email": "MOHMMADLAGA60@GMAIL.COM", "hidden": false, "rating": "High", "address": "SCOUTS MAIN THEATER 11224 KHALIFA ZALIDI STREET", "blocked": false, "country": "258", "cso_type": "National", "net_ct_cy": "96457.15", "agreements": [150], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 1, "total": 1}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "00218", "reported_cy": "102776.88", "shared_with": "None", "total_ct_cp": "151893.49", "total_ct_cy": "49116.61", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "914777792", "total_ct_ytd": "47340.54", "staff_members": [72], "vendor_number": "2500240112", "vision_synced": true, "alternate_name": "None", "planned_visits": [], "street_address": "None", "psea_assessment": [], "related_partner": [78], "manually_blocked": false, "type_of_assessment": "High Risk Assumed", "last_assessment_date": "2019-04-17", "basis_for_risk_rating": "", "core_values_assessments": [46], "core_values_assessment_date": "2019-03-15", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 173037, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (979, '2020-02-12 08:07:26.310949+00', '2020-02-12 08:07:26.310949+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (980, '2020-02-12 08:09:57.39203+00', '2020-02-12 08:09:57.39203+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": false, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{"in_amendment": {"after": false, "before": true}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (981, '2020-02-12 08:11:03.849642+00', '2020-02-12 08:11:03.849642+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [494, 436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [247375], "partner_focal_points": [11, 79], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [313, 50, 312, 311, 310, 309, 308, 307, 306, 305, 49, 304, 303, 302, 301, 300, 299, 298, 51, 297, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (988, '2020-02-12 10:59:54.936728+00', '2020-02-12 10:59:54.936728+00', '108', 'create', '{"id": 108, "end": "None", "frs": [], "start": "None", "title": "PLACEHOLDER - May Nabous to Update", "number": "LIB/PCA2020156/PD2020108", "status": "draft", "offices": [], "metadata": {}, "sections": [], "agreement": 156, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [], "partner_focal_points": [], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (982, '2020-02-12 08:33:23.211506+00', '2020-02-12 08:33:23.211506+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [494, 436], "in_amendment": false, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [247375], "partner_focal_points": [11, 79], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [313, 50, 312, 311, 310, 309, 308, 307, 306, 305, 49, 304, 303, 302, 301, 300, 299, 298, 51, 297, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{"in_amendment": {"after": false, "before": true}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (983, '2020-02-12 09:51:53.570084+00', '2020-02-12 09:51:53.570084+00', '74', 'update', '{"id": 74, "city": "BENGHAZI", "name": "LIBYAN RED CRESCENT SOCIETY", "email": "OSAMA.SULTAN@LRC.ORG.LY", "hidden": false, "rating": "High", "address": "ALSMAANI", "blocked": false, "country": "258", "cso_type": "National", "net_ct_cy": "0.00", "agreements": [145, 112], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "0.00", "shared_with": "None", "total_ct_cp": "0.00", "total_ct_cy": "0.00", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "924346025", "total_ct_ytd": "0.00", "staff_members": [62], "vendor_number": "2500238097", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [47, 72], "manually_blocked": false, "type_of_assessment": "High Risk Assumed", "last_assessment_date": "2018-01-23", "basis_for_risk_rating": "", "core_values_assessments": [27], "core_values_assessment_date": "2018-01-18", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 23641, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (984, '2020-02-12 09:51:59.584407+00', '2020-02-12 09:51:59.584407+00', '74', 'update', '{"id": 74, "city": "BENGHAZI", "name": "LIBYAN RED CRESCENT SOCIETY", "email": "OSAMA.SULTAN@LRC.ORG.LY", "hidden": false, "rating": "High", "address": "ALSMAANI", "blocked": false, "country": "258", "cso_type": "National", "net_ct_cy": "0.00", "agreements": [145, 112], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "0.00", "shared_with": "None", "total_ct_cp": "0.00", "total_ct_cy": "0.00", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "924346025", "total_ct_ytd": "0.00", "staff_members": [62, 83], "vendor_number": "2500238097", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [47, 72], "manually_blocked": false, "type_of_assessment": "High Risk Assumed", "last_assessment_date": "2018-01-23", "basis_for_risk_rating": "", "core_values_assessments": [27], "core_values_assessment_date": "2018-01-18", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 23641, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (985, '2020-02-12 09:52:35.148149+00', '2020-02-12 09:52:35.148149+00', '74', 'update', '{"id": 74, "city": "BENGHAZI", "name": "LIBYAN RED CRESCENT SOCIETY", "email": "OSAMA.SULTAN@LRC.ORG.LY", "hidden": false, "rating": "High", "address": "ALSMAANI", "blocked": false, "country": "258", "cso_type": "National", "net_ct_cy": "0.00", "agreements": [145, 112], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "0.00", "shared_with": "None", "total_ct_cp": "0.00", "total_ct_cy": "0.00", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "924346025", "total_ct_ytd": "0.00", "staff_members": [83, 62], "vendor_number": "2500238097", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [47, 72], "manually_blocked": false, "type_of_assessment": "High Risk Assumed", "last_assessment_date": "2018-01-23", "basis_for_risk_rating": "", "core_values_assessments": [27], "core_values_assessment_date": "2018-01-18", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 23641, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (989, '2020-02-13 09:39:40.651291+00', '2020-02-13 09:39:40.651291+00', '108', 'update', '{"id": 108, "end": "2021-03-01", "frs": [], "start": "2020-03-01", "title": "Prepositioning of Emergency Supplies and Rapid Emergency Response", "number": "LIB/PCA2020156/PD2020108", "status": "draft", "offices": [201], "metadata": {}, "sections": [], "agreement": 156, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [198811], "partner_focal_points": [83], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{"end": {"after": "2021-03-01", "before": "None"}, "start": {"after": "2020-03-01", "before": "None"}, "title": {"after": "Prepositioning of Emergency Supplies and Rapid Emergency Response", "before": "PLACEHOLDER - May Nabous to Update"}, "offices": {"after": [201], "before": []}, "flat_locations": {"after": [1836], "before": []}, "unicef_focal_points": {"after": [198811], "before": []}, "partner_focal_points": {"after": [83], "before": []}}', 198811, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (990, '2020-02-13 09:55:42.478057+00', '2020-02-13 09:55:42.478057+00', '108', 'update', '{"id": 108, "end": "2021-03-01", "frs": [], "start": "2020-03-01", "title": "Prepositioning of Emergency Supplies and Rapid Emergency Response", "number": "LIB/PCA2020156/PD2020108", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2, 4], "agreement": 156, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836], "planned_visits": [74], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [198811], "partner_focal_points": [83], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{"sections": {"after": [1, 2, 4], "before": []}}', 198811, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (991, '2020-02-18 07:13:54.443602+00', '2020-02-18 07:13:54.443602+00', '32', 'create', '{"id": 32, "author": 247375, "office": 201, "status": "open", "history": [], "partner": 23, "section": 2, "category": "None", "comments": [], "due_date": "2020-05-03", "location": "None", "cp_output": 220, "engagement": "None", "key_events": [], "assigned_by": 247375, "assigned_to": 247300, "description": "1-Standardize the curriculum to all centres, as it will be more adequate to develop and follow up.\n2-For English Language classes we suggest having a curriculum and not keep it general topics based on the teacher’s knowledge. \n3- we recommend the age group classes are split into three categories (6-9), (10,13) and (14,17).\n3-Strengthen the capacity of the teachers by conducting a teacher’s follow up training (including pre and post-test) on child protection/classroom management/ positive reinforcement. \n4-Add (different levels) of Education with in the same ages group category.\n5- Add posters/colours to the centre/ classes (more child friendly).", "intervention": 102, "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 122, "reference_number": "LIB/2020/32/APD", "date_of_completion": "None"}', '{}', 247375, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (992, '2020-02-25 13:46:28.008297+00', '2020-02-25 13:46:28.008297+00', '109', 'create', '{"id": 109, "end": "None", "frs": [], "start": "None", "title": "Specialized Psychosocial support for vulnerable Children in Sebha, Benghazi and Tripoli", "number": "LIB/PCA2019124/PD2020109", "status": "draft", "offices": [201], "metadata": {}, "sections": [], "agreement": 124, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [1], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (993, '2020-02-25 13:56:57.487941+00', '2020-02-25 13:56:57.487941+00', '109', 'update', '{"id": 109, "end": "2021-02-25", "frs": [], "start": "2020-02-25", "title": "Specialized Psychosocial support for vulnerable Children in Sebha, Benghazi and Tripoli", "number": "LIB/PCA2019124/PD2020109", "status": "draft", "offices": [201], "metadata": {}, "sections": [1], "agreement": 124, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1942, 1898], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [1], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{"end": {"after": "2021-02-25", "before": "None"}, "start": {"after": "2020-02-25", "before": "None"}, "sections": {"after": [1], "before": []}, "flat_locations": {"after": [1864, 1942, 1898], "before": []}}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (994, '2020-02-25 14:01:25.842724+00', '2020-02-25 14:01:25.842724+00', '109', 'update', '{"id": 109, "end": "2021-02-25", "frs": [], "start": "2020-02-25", "title": "Specialized Psychosocial support for vulnerable Children in Sebha, Benghazi and Tripoli", "number": "LIB/PCA2019124/PD2020109", "status": "draft", "offices": [201], "metadata": {}, "sections": [1], "agreement": 124, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1942, 1898], "planned_visits": [75], "review_date_prc": "2020-02-20", "submission_date": "2020-01-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-16", "unicef_focal_points": [17817], "partner_focal_points": [1], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-25", "reporting_requirements": [], "signed_by_partner_date": "2020-02-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 1}', '{"review_date_prc": {"after": "2020-02-20", "before": "None"}, "submission_date": {"after": "2020-01-02", "before": "None"}, "unicef_signatory": {"after": 20024, "before": "None"}, "submission_date_prc": {"after": "2020-02-16", "before": "None"}, "signed_by_unicef_date": {"after": "2020-02-25", "before": "None"}, "signed_by_partner_date": {"after": "2020-02-23", "before": "None"}, "partner_authorized_officer_signatory": {"after": 1, "before": "None"}}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (995, '2020-02-25 14:02:16.711294+00', '2020-02-25 14:02:16.711294+00', '109', 'update', '{"id": 109, "end": "2021-02-25", "frs": [], "start": "2020-02-25", "title": "Specialized Psychosocial support for vulnerable Children in Sebha, Benghazi and Tripoli", "number": "LIB/PCA2019124/PD2020109", "status": "signed", "offices": [201], "metadata": {}, "sections": [1], "agreement": 124, "amendments": [], "attachments": [498], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1942, 1898], "planned_visits": [75], "review_date_prc": "2020-02-20", "submission_date": "2020-01-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-16", "unicef_focal_points": [17817], "partner_focal_points": [1], "signed_pd_attachment": [1211], "prc_review_attachment": [1210], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-25", "reporting_requirements": [], "signed_by_partner_date": "2020-02-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 1}', '{}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (996, '2020-02-25 14:03:56.811943+00', '2020-02-25 14:03:56.811943+00', '109', 'update', '{"id": 109, "end": "2021-02-25", "frs": [], "start": "2020-02-25", "title": "Specialized Psychosocial support for vulnerable Children in Sebha, Benghazi and Tripoli", "number": "LIB/PCA2019124/PD2020109", "status": "signed", "offices": [201], "metadata": {}, "sections": [1], "agreement": 124, "amendments": [], "attachments": [498], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1942, 1898], "planned_visits": [75], "review_date_prc": "2020-02-20", "submission_date": "2020-01-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-16", "unicef_focal_points": [17817], "partner_focal_points": [1], "signed_pd_attachment": [1211], "prc_review_attachment": [1210], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-25", "reporting_requirements": [], "signed_by_partner_date": "2020-02-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 1}', '{}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (997, '2020-02-26 09:54:22.315654+00', '2020-02-26 09:54:22.315654+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (998, '2020-02-26 12:40:43.661803+00', '2020-02-26 12:40:43.661803+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (999, '2020-02-26 13:49:54.697957+00', '2020-02-26 13:49:54.697957+00', '84', 'update', '{"id": 84, "city": "OSLO", "name": "NORWEGIAN REFUGEE COUNCIL", "email": "THOMAS.WHITE@NRC.NO", "hidden": false, "rating": "Low", "address": "OSLO", "blocked": false, "country": "324", "cso_type": "International", "net_ct_cy": "-48874.00", "agreements": [137], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}, "postal_code": "0102", "reported_cy": "272356.00", "shared_with": "None", "total_ct_cp": "321230.00", "total_ct_cy": "0.00", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "", "total_ct_ytd": "0.00", "staff_members": [67], "vendor_number": "2500233986", "vision_synced": true, "alternate_name": "None", "planned_visits": [], "street_address": "None", "psea_assessment": [], "related_partner": [77], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-06-06", "basis_for_risk_rating": "", "core_values_assessments": [43, 49], "core_values_assessment_date": "2019-04-09", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 247375, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1000, '2020-02-26 13:51:16.809015+00', '2020-02-26 13:51:16.809015+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1861, 1907, 1877, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{"flat_locations": {"after": [1899, 1897, 1861, 1907, 1877, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898], "before": [1899, 1897, 1907, 1877, 1864, 1854, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1895, 1905, 1896, 1898]}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1001, '2020-02-26 13:51:57.605005+00', '2020-02-26 13:51:57.605005+00', '84', 'update', '{"id": 84, "city": "OSLO", "name": "NORWEGIAN REFUGEE COUNCIL", "email": "THOMAS.WHITE@NRC.NO", "hidden": false, "rating": "Low", "address": "OSLO", "blocked": false, "country": "324", "cso_type": "International", "net_ct_cy": "-48874.00", "agreements": [137], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}, "postal_code": "0102", "reported_cy": "272356.00", "shared_with": "None", "total_ct_cp": "321230.00", "total_ct_cy": "0.00", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "", "total_ct_ytd": "0.00", "staff_members": [85, 67], "vendor_number": "2500233986", "vision_synced": true, "alternate_name": "None", "planned_visits": [], "street_address": "None", "psea_assessment": [], "related_partner": [77], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-06-06", "basis_for_risk_rating": "", "core_values_assessments": [43, 49], "core_values_assessment_date": "2019-04-09", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 247375, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1002, '2020-02-26 13:52:23.135046+00', '2020-02-26 13:52:23.135046+00', '84', 'update', '{"id": 84, "city": "OSLO", "name": "NORWEGIAN REFUGEE COUNCIL", "email": "THOMAS.WHITE@NRC.NO", "hidden": false, "rating": "Low", "address": "OSLO", "blocked": false, "country": "324", "cso_type": "International", "net_ct_cy": "-48874.00", "agreements": [137], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}, "postal_code": "0102", "reported_cy": "272356.00", "shared_with": "None", "total_ct_cp": "321230.00", "total_ct_cy": "0.00", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "", "total_ct_ytd": "0.00", "staff_members": [67, 85], "vendor_number": "2500233986", "vision_synced": true, "alternate_name": "None", "planned_visits": [], "street_address": "None", "psea_assessment": [], "related_partner": [77], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-06-06", "basis_for_risk_rating": "", "core_values_assessments": [43, 49], "core_values_assessment_date": "2019-04-09", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 247375, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1003, '2020-02-26 13:52:30.717992+00', '2020-02-26 13:52:30.717992+00', '84', 'update', '{"id": 84, "city": "OSLO", "name": "NORWEGIAN REFUGEE COUNCIL", "email": "THOMAS.WHITE@NRC.NO", "hidden": false, "rating": "Low", "address": "OSLO", "blocked": false, "country": "324", "cso_type": "International", "net_ct_cy": "-48874.00", "agreements": [137], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}, "postal_code": "0102", "reported_cy": "272356.00", "shared_with": "None", "total_ct_cp": "321230.00", "total_ct_cy": "0.00", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "", "total_ct_ytd": "0.00", "staff_members": [67, 85], "vendor_number": "2500233986", "vision_synced": true, "alternate_name": "None", "planned_visits": [], "street_address": "None", "psea_assessment": [], "related_partner": [77], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-06-06", "basis_for_risk_rating": "", "core_values_assessments": [43, 49], "core_values_assessment_date": "2019-04-09", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 247375, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1004, '2020-02-26 13:54:13.257497+00', '2020-02-26 13:54:13.257497+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1861, 1907, 1877, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1006, '2020-02-26 14:00:03.420724+00', '2020-02-26 14:00:03.420724+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1861, 1907, 1877, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1007, '2020-02-26 14:35:54.838269+00', '2020-02-26 14:35:54.838269+00', '104', 'update', '{"id": 104, "end": "2020-10-14", "frs": [162], "start": "2019-11-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-2", "status": "signed", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31], "attachments": [477, 472, 471], "in_amendment": false, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942, 1895, 1898], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1108], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"frs": {"after": [162], "before": []}}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1008, '2020-02-27 07:11:16.429508+00', '2020-02-27 07:11:16.429508+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992-1", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [36], "attachments": [493, 492, 487], "in_amendment": false, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [247375], "partner_focal_points": [77, 81], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{"in_amendment": {"after": false, "before": true}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1009, '2020-03-01 10:32:08.561796+00', '2020-03-01 10:32:08.561796+00', '80', 'update', '{"id": 80, "end": "2020-01-10", "frs": [136], "start": "2018-07-26", "title": "Provision of psychosocial support and non-formal education for vulnerable migrant and IDP children", "number": "LIB/PCA2018122/PD201880-3", "status": "closed", "offices": [201], "metadata": {}, "sections": [1], "agreement": 122, "amendments": [28, 29, 33], "attachments": [481, 480, 476, 373, 372, 371, 370, 369, 368, 367, 366, 365], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [58, 59], "review_date_prc": "2018-06-14", "submission_date": "2018-05-24", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 1, "reporting_periods": [], "travel_activities": [104, 115], "signed_pd_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Annex_c_multakana_PD.pdf", "prc_review_document": "[[schema]]/file_attachments/partner_organization/37/agreements/122/interventions/80/prc/Multakana_MoM.pdf", "submission_date_prc": "2018-05-24", "unicef_focal_points": [29294], "partner_focal_points": [6], "signed_pd_attachment": [700], "prc_review_attachment": [699], "reference_number_year": 2018, "signed_by_unicef_date": "2018-07-26", "reporting_requirements": [], "signed_by_partner_date": "2018-07-26", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{"in_amendment": {"after": false, "before": true}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1010, '2020-03-02 09:05:02.692682+00', '2020-03-02 09:05:02.692682+00', '16', 'update', '{"id": 16, "city": "PARIS", "name": "AGENCE D AIDE A LA COOPERATION TECHNIQUE ET AU DEVELOPPEMENT", "email": "EMILY.BEADLE@ACTED.ORG", "hidden": false, "rating": "Low", "address": "RUE GODOT DE MAUROY", "blocked": false, "country": "147", "cso_type": "International", "net_ct_cy": "170232.50", "agreements": [155, 109], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "75009", "reported_cy": "0.00", "shared_with": "None", "total_ct_cp": "170232.50", "total_ct_cy": "170232.50", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "21652232198", "total_ct_ytd": "170232.50", "staff_members": [57, 58, 78], "vendor_number": "2500220006", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [1, 34, 57], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-03-13", "basis_for_risk_rating": "", "core_values_assessments": [5, 55], "core_values_assessment_date": "2019-03-19", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 200131, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1011, '2020-03-02 09:06:52.443498+00', '2020-03-02 09:06:52.443498+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [37], "attachments": [496, 486, 485, 479], "in_amendment": true, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [86], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [523, 455, 454, 522, 521, 520, 519, 518, 517, 516, 515, 514, 513, 512, 511, 510, 453, 509, 508, 507, 506, 505, 504, 503, 502, 501, 500, 499, 498, 452, 497, 496, 495, 494, 493, 492, 491, 490, 489, 488, 487, 486, 485, 451, 484, 483, 482, 481, 480, 479, 478, 477, 476], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{"partner_focal_points": {"after": [86], "before": [78]}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1012, '2020-03-02 09:07:03.646182+00', '2020-03-02 09:07:03.646182+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [37], "attachments": [496, 486, 485, 479], "in_amendment": false, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [86], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [523, 455, 454, 522, 521, 520, 519, 518, 517, 516, 515, 514, 513, 512, 511, 510, 453, 509, 508, 507, 506, 505, 504, 503, 502, 501, 500, 499, 498, 452, 497, 496, 495, 494, 493, 492, 491, 490, 489, 488, 487, 486, 485, 451, 484, 483, 482, 481, 480, 479, 478, 477, 476], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{"in_amendment": {"after": false, "before": true}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1013, '2020-03-02 11:30:59.267634+00', '2020-03-02 11:30:59.267634+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": true, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [475, 296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1014, '2020-03-02 12:58:32.768472+00', '2020-03-02 12:58:32.768472+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": true, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [475, 296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1015, '2020-03-02 13:01:58.848758+00', '2020-03-02 13:01:58.848758+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": true, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [475, 296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1016, '2020-03-02 13:02:16.013395+00', '2020-03-02 13:02:16.013395+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": true, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72, 82], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [475, 296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"partner_focal_points": {"after": [72, 82], "before": [72]}}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1017, '2020-03-02 13:03:51.672883+00', '2020-03-02 13:03:51.672883+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": false, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72, 82], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [475, 296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"in_amendment": {"after": false, "before": true}}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1018, '2020-03-02 13:03:56.923298+00', '2020-03-02 13:03:56.923298+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": false, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72, 82], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [475, 296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1019, '2020-03-02 13:05:35.282027+00', '2020-03-02 13:05:35.282027+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": true, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72, 82], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [475, 296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1020, '2020-03-02 13:17:32.895316+00', '2020-03-02 13:17:32.895316+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": true, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72, 82], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [475, 296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283, 524], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1021, '2020-03-02 13:18:06.183525+00', '2020-03-02 13:18:06.183525+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": true, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72, 82], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [475, 296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283, 524], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1022, '2020-03-02 13:22:50.981172+00', '2020-03-02 13:22:50.981172+00', '100', 'update', '{"id": 100, "end": "2020-03-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [451], "in_amendment": false, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72, 82], "signed_pd_attachment": [980], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [475, 296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283, 524], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"in_amendment": {"after": false, "before": true}}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1023, '2020-03-03 08:03:46.256774+00', '2020-03-03 08:03:46.256774+00', '87', 'update', '{"id": 87, "end": "2020-03-31", "frs": [147], "start": "2019-01-06", "title": "Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi", "number": "LIB/PCA2019137/PD201987-1", "status": "active", "offices": [201], "metadata": {}, "sections": [5, 2], "agreement": 137, "amendments": [35], "attachments": [495, 425, 424, 423, 422, 421, 420], "in_amendment": true, "result_links": [84], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836, 1832], "planned_visits": [65], "review_date_prc": "2018-11-21", "submission_date": "2018-10-12", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-11-11", "unicef_focal_points": [247375, 1497], "partner_focal_points": [67], "signed_pd_attachment": [878], "prc_review_attachment": [877], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-06", "reporting_requirements": [469, 474, 468, 467, 466, 465, 464, 463, 462, 461, 460, 459, 458, 457, 456, 473, 472, 471, 470], "signed_by_partner_date": "2019-01-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 67}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1024, '2020-03-03 08:43:11.305954+00', '2020-03-03 08:43:11.305954+00', '87', 'update', '{"id": 87, "end": "2020-03-31", "frs": [147], "start": "2019-01-06", "title": "Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi", "number": "LIB/PCA2019137/PD201987-1", "status": "active", "offices": [201], "metadata": {}, "sections": [5, 2], "agreement": 137, "amendments": [35], "attachments": [495, 425, 424, 423, 422, 421, 420], "in_amendment": true, "result_links": [84], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836, 1832], "planned_visits": [65], "review_date_prc": "2018-11-21", "submission_date": "2018-10-12", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-11-11", "unicef_focal_points": [247375, 1497], "partner_focal_points": [67], "signed_pd_attachment": [878], "prc_review_attachment": [877], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-06", "reporting_requirements": [469, 474, 468, 467, 466, 465, 464, 463, 462, 461, 460, 459, 458, 457, 456, 473, 472, 471, 470], "signed_by_partner_date": "2019-01-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 67}', '{}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1025, '2020-03-03 08:43:34.003862+00', '2020-03-03 08:43:34.003862+00', '87', 'update', '{"id": 87, "end": "2020-03-31", "frs": [147], "start": "2019-01-06", "title": "Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi", "number": "LIB/PCA2019137/PD201987-1", "status": "active", "offices": [201], "metadata": {}, "sections": [5, 2], "agreement": 137, "amendments": [35], "attachments": [495, 425, 424, 423, 422, 421, 420], "in_amendment": false, "result_links": [84], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836, 1832], "planned_visits": [65], "review_date_prc": "2018-11-21", "submission_date": "2018-10-12", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-11-11", "unicef_focal_points": [247375, 1497], "partner_focal_points": [67], "signed_pd_attachment": [878], "prc_review_attachment": [877], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-06", "reporting_requirements": [469, 474, 468, 467, 466, 465, 464, 463, 462, 461, 460, 459, 458, 457, 456, 473, 472, 471, 470], "signed_by_partner_date": "2019-01-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 67}', '{"in_amendment": {"after": false, "before": true}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1026, '2020-03-03 09:19:01.415505+00', '2020-03-03 09:19:01.415505+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992-1", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [36], "attachments": [493, 492, 487], "in_amendment": true, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [247375], "partner_focal_points": [77, 81], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1027, '2020-03-03 09:38:58.388963+00', '2020-03-03 09:38:58.388963+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992-1", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [36], "attachments": [493, 492, 487], "in_amendment": true, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [247375], "partner_focal_points": [77, 81], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1028, '2020-03-03 09:46:20.298328+00', '2020-03-03 09:46:20.298328+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992-1", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [36], "attachments": [493, 492, 487], "in_amendment": true, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [247375], "partner_focal_points": [77, 81], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1029, '2020-03-03 09:49:27.223475+00', '2020-03-03 09:49:27.223475+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [494, 436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [247375], "partner_focal_points": [11, 79], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [313, 50, 312, 311, 310, 309, 308, 307, 306, 305, 49, 304, 303, 302, 301, 300, 299, 298, 51, 297, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1030, '2020-03-03 09:50:02.98998+00', '2020-03-03 09:50:02.98998+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [491, 490, 437], "in_amendment": true, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [247375], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1031, '2020-03-03 09:55:31.761028+00', '2020-03-03 09:55:31.761028+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992-1", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [36], "attachments": [493, 492, 487], "in_amendment": true, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [247375], "partner_focal_points": [77, 81], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1032, '2020-03-03 09:56:19.432423+00', '2020-03-03 09:56:19.432423+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992-1", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [36], "attachments": [493, 492, 487], "in_amendment": false, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [247375], "partner_focal_points": [77, 81], "signed_pd_attachment": [988], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{"in_amendment": {"after": false, "before": true}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1033, '2020-03-03 10:00:53.498602+00', '2020-03-03 10:00:53.498602+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [494, 436], "in_amendment": true, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [247375], "partner_focal_points": [11, 79], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [313, 50, 312, 311, 310, 309, 308, 307, 306, 305, 49, 304, 303, 302, 301, 300, 299, 298, 51, 297, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1034, '2020-03-03 10:01:00.324244+00', '2020-03-03 10:01:00.324244+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [491, 490, 437], "in_amendment": true, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [247375], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1035, '2020-03-03 10:01:09.166153+00', '2020-03-03 10:01:09.166153+00', '94', 'update', '{"id": 94, "end": "2020-05-20", "frs": [153], "start": "2019-05-20", "title": "Integrated Education and Psychosocial Support in Sabratha", "number": "LIB/PCA2019146/PD201994", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 146, "amendments": [], "attachments": [491, 490, 437], "in_amendment": false, "result_links": [70, 71, 73], "document_type": "PD", "contingency_pd": false, "flat_locations": [1919], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-01-10", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-15", "unicef_focal_points": [247375], "partner_focal_points": [65], "signed_pd_attachment": [946], "prc_review_attachment": [945], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [368, 347, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 346, 356, 355, 354, 353, 352, 351, 350, 349, 348, 345, 344], "signed_by_partner_date": "2019-05-19", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 65}', '{"in_amendment": {"after": false, "before": true}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1036, '2020-03-03 10:01:18.001896+00', '2020-03-03 10:01:18.001896+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [494, 436], "in_amendment": false, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [247375], "partner_focal_points": [11, 79], "signed_pd_attachment": [941], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [313, 50, 312, 311, 310, 309, 308, 307, 306, 305, 49, 304, 303, 302, 301, 300, 299, 298, 51, 297, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{"in_amendment": {"after": false, "before": true}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1038, '2020-03-06 13:47:57.571983+00', '2020-03-06 13:47:57.571983+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [37], "attachments": [504, 496, 486, 485, 479], "in_amendment": false, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [86], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [523, 455, 454, 522, 521, 520, 519, 518, 517, 516, 515, 514, 513, 512, 511, 510, 453, 509, 508, 507, 506, 505, 504, 503, 502, 501, 500, 499, 498, 452, 497, 496, 495, 494, 493, 492, 491, 490, 489, 488, 487, 486, 485, 451, 484, 483, 482, 481, 480, 479, 478, 477, 476], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1039, '2020-03-06 13:50:39.731998+00', '2020-03-06 13:50:39.731998+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [37], "attachments": [506, 505, 504, 496, 486, 485, 479], "in_amendment": false, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [86], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [523, 455, 454, 522, 521, 520, 519, 518, 517, 516, 515, 514, 513, 512, 511, 510, 453, 509, 508, 507, 506, 505, 504, 503, 502, 501, 500, 499, 498, 452, 497, 496, 495, 494, 493, 492, 491, 490, 489, 488, 487, 486, 485, 451, 484, 483, 482, 481, 480, 479, 478, 477, 476], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1040, '2020-03-06 15:00:52.957241+00', '2020-03-06 15:00:52.957241+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [37], "attachments": [506, 505, 504, 496, 486, 485, 479], "in_amendment": false, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [86], "signed_pd_attachment": [1147], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [523, 455, 454, 522, 521, 520, 519, 518, 517, 516, 515, 514, 513, 512, 511, 510, 453, 509, 508, 507, 506, 505, 504, 503, 502, 501, 500, 499, 498, 452, 497, 496, 495, 494, 493, 492, 491, 490, 489, 488, 487, 486, 485, 451, 484, 483, 482, 481, 480, 479, 478, 477, 476], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1041, '2020-03-08 09:55:29.201678+00', '2020-03-08 09:55:29.201678+00', '90', 'update', '{"id": 90, "end": "2020-04-30", "frs": [151], "start": "2019-05-20", "title": "Education support to conflict-affected school-age children and youth in Benghazi and its surrounding areas", "number": "LIB/PCA2019144/PD201990", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 144, "amendments": [], "attachments": [494, 436], "in_amendment": false, "result_links": [64], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-04-23", "submission_date": "2019-04-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-04-23", "unicef_focal_points": [257700], "partner_focal_points": [11, 79], "signed_pd_attachment": [941], "monitoring_activities": [], "prc_review_attachment": [942], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-20", "reporting_requirements": [313, 50, 312, 311, 310, 309, 308, 307, 306, 305, 49, 304, 303, 302, 301, 300, 299, 298, 51, 297, 48], "signed_by_partner_date": "2019-05-12", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{"unicef_focal_points": {"after": [257700], "before": [247375]}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1042, '2020-03-08 09:56:10.402295+00', '2020-03-08 09:56:10.402295+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992-1", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [36], "attachments": [493, 492, 487], "in_amendment": false, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [257700], "partner_focal_points": [77, 81], "signed_pd_attachment": [988], "monitoring_activities": [], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{"unicef_focal_points": {"after": [257700], "before": [247375]}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1043, '2020-03-08 09:56:18.252152+00', '2020-03-08 09:56:18.252152+00', '92', 'update', '{"id": 92, "end": "2020-06-24", "frs": [157], "start": "2019-06-24", "title": "Provision of education and recreational activities to children with disabilities and pre-school children in Benghazi and its surrounding areas to increase acces to formal and non-formal education in conflect-affected areas", "number": "LIB/PCA2019147/PD201992-1", "status": "active", "offices": [201], "metadata": {}, "sections": [2], "agreement": 147, "amendments": [36], "attachments": [493, 492, 487], "in_amendment": false, "result_links": [69], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1863], "planned_visits": [], "review_date_prc": "2019-06-12", "submission_date": "2019-06-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [112], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-06-11", "unicef_focal_points": [257700], "partner_focal_points": [77, 81], "signed_pd_attachment": [988], "monitoring_activities": [], "prc_review_attachment": [989], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-24", "reporting_requirements": [343, 317, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 316, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 319, 318, 315, 314], "signed_by_partner_date": "2019-06-17", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 17}', '{}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1046, '2020-03-11 14:37:45.842083+00', '2020-03-11 14:37:45.842083+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-2", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32, 34], "attachments": [497, 482, 478, 473], "in_amendment": true, "result_links": [80, 68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [122], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "monitoring_activities": [], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1047, '2020-03-11 14:40:05.555344+00', '2020-03-11 14:40:05.555344+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [37], "attachments": [506, 505, 504, 496, 486, 485, 479], "in_amendment": true, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [86], "signed_pd_attachment": [1147], "monitoring_activities": [], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [523, 455, 454, 522, 521, 520, 519, 518, 517, 516, 515, 514, 513, 512, 511, 510, 453, 509, 508, 507, 506, 505, 504, 503, 502, 501, 500, 499, 498, 452, 497, 496, 495, 494, 493, 492, 491, 490, 489, 488, 487, 486, 485, 451, 484, 483, 482, 481, 480, 479, 478, 477, 476], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1048, '2020-03-11 14:59:16.940118+00', '2020-03-11 14:59:16.940118+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-2", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32, 34], "attachments": [497, 482, 478, 473], "in_amendment": true, "result_links": [80, 68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [122], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "monitoring_activities": [], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{}', 247300, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1049, '2020-03-11 15:06:43.489902+00', '2020-03-11 15:06:43.489902+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [37], "attachments": [506, 505, 504, 496, 486, 485, 479], "in_amendment": true, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [86], "signed_pd_attachment": [1147], "monitoring_activities": [], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [523, 455, 454, 522, 521, 520, 519, 518, 517, 516, 515, 514, 513, 512, 511, 510, 453, 509, 508, 507, 506, 505, 504, 503, 502, 501, 500, 499, 498, 452, 497, 496, 495, 494, 493, 492, 491, 490, 489, 488, 487, 486, 485, 451, 484, 483, 482, 481, 480, 479, 478, 477, 476], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1050, '2020-03-11 15:20:18.97926+00', '2020-03-11 15:20:18.97926+00', '104', 'update', '{"id": 104, "end": "2020-10-14", "frs": [162], "start": "2019-11-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-2", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31], "attachments": [477, 472, 471], "in_amendment": true, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942, 1895, 1898], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1108], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1051, '2020-03-11 15:20:48.217074+00', '2020-03-11 15:20:48.217074+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [161], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1138], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1052, '2020-03-11 15:27:01.228008+00', '2020-03-11 15:27:01.228008+00', '104', 'update', '{"id": 104, "end": "2020-10-14", "frs": [162], "start": "2019-11-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-2", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31], "attachments": [477, 472, 471], "in_amendment": true, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942, 1895, 1898], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1108], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 247300, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1053, '2020-03-11 15:34:13.272003+00', '2020-03-11 15:34:13.272003+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [161], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": true, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1138], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1054, '2020-03-11 15:34:20.30773+00', '2020-03-11 15:34:20.30773+00', '105', 'update', '{"id": 105, "end": "2020-11-21", "frs": [161], "start": "2019-11-22", "title": "Provision of social, education and protection services to vulnerable children and their families in Libya – HuB Centre Sabha.", "number": "LIB/PCA2019153/PD2019105", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 153, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [65], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942], "planned_visits": [], "review_date_prc": "2019-11-17", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-10-16", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1138], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-11-22", "reporting_requirements": [181, 74, 180, 179, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 73, 168, 167, 166, 165, 164, 163, 162, 161, 160, 159, 158, 157, 156, 72, 155, 154, 153, 152, 151, 150, 149, 148, 147, 146, 145, 144, 143, 71, 142, 141, 140, 139, 138, 136, 135, 134, 133, 131, 130, 126, 75], "signed_by_partner_date": "2019-11-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"in_amendment": {"after": false, "before": true}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1055, '2020-03-12 14:36:14.997661+00', '2020-03-12 14:36:14.997661+00', '106', 'update', '{"id": 106, "end": "2020-12-03", "frs": [163], "start": "2019-12-04", "title": "Improved access of children to safe and inclusive learning environments through Bayti child resilience centers", "number": "LIB/PCA2019155/PD2019106-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 155, "amendments": [37], "attachments": [506, 505, 504, 496, 486, 485, 479], "in_amendment": false, "result_links": [79, 83], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864], "planned_visits": [], "review_date_prc": "2019-10-01", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 200131, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-02", "unicef_focal_points": [20024], "partner_focal_points": [86], "signed_pd_attachment": [1147], "monitoring_activities": [], "prc_review_attachment": [1146], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-04", "reporting_requirements": [523, 455, 454, 522, 521, 520, 519, 518, 517, 516, 515, 514, 513, 512, 511, 510, 453, 509, 508, 507, 506, 505, 504, 503, 502, 501, 500, 499, 498, 452, 497, 496, 495, 494, 493, 492, 491, 490, 489, 488, 487, 486, 485, 451, 484, 483, 482, 481, 480, 479, 478, 477, 476], "signed_by_partner_date": "2019-12-04", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 78}', '{"in_amendment": {"after": false, "before": true}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1056, '2020-03-16 13:26:18.263448+00', '2020-03-16 13:26:18.263448+00', '109', 'update', '{"id": 109, "end": "2021-02-25", "frs": [165], "start": "2020-02-25", "title": "Specialized Psychosocial support for vulnerable Children in Sebha, Benghazi and Tripoli", "number": "LIB/PCA2019124/PD2020109", "status": "signed", "offices": [201], "metadata": {}, "sections": [1], "agreement": 124, "amendments": [], "attachments": [507, 498], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1942, 1898], "planned_visits": [75], "review_date_prc": "2020-02-20", "submission_date": "2020-01-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-16", "unicef_focal_points": [17817], "partner_focal_points": [1], "signed_pd_attachment": [1211], "monitoring_activities": [], "prc_review_attachment": [1210], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-25", "reporting_requirements": [], "signed_by_partner_date": "2020-02-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 1}', '{"frs": {"after": [165], "before": []}}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1057, '2020-03-17 08:52:55.335197+00', '2020-03-17 08:52:55.335197+00', '109', 'update', '{"id": 109, "end": "2021-02-25", "frs": [165], "start": "2020-02-25", "title": "Specialized Psychosocial support for vulnerable Children in Sebha, Benghazi and Tripoli", "number": "LIB/PCA2019124/PD2020109", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 124, "amendments": [], "attachments": [507, 498], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1942, 1898], "planned_visits": [75], "review_date_prc": "2020-02-20", "submission_date": "2020-01-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-16", "unicef_focal_points": [17817], "partner_focal_points": [1], "signed_pd_attachment": [1211], "monitoring_activities": [], "prc_review_attachment": [1210], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-25", "reporting_requirements": [], "signed_by_partner_date": "2020-02-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 1}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1058, '2020-03-17 12:51:18.939022+00', '2020-03-17 12:51:18.939022+00', '102', 'update', '{"id": 102, "end": "2020-09-30", "frs": [159], "start": "2019-10-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centers.", "number": "LIB/PCA2019133/PD2019102-2", "status": "active", "offices": [209], "metadata": {}, "sections": [1, 2], "agreement": 133, "amendments": [32, 34], "attachments": [508, 497, 482, 478, 473], "in_amendment": false, "result_links": [80, 68], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1900, 1914, 1920], "planned_visits": [], "review_date_prc": "2019-09-17", "submission_date": "2019-04-30", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [122], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-05", "unicef_focal_points": [200131], "partner_focal_points": [75], "signed_pd_attachment": [1113], "monitoring_activities": [], "prc_review_attachment": [1112], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-25", "reporting_requirements": [185, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 184, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 183, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 182, 198, 197, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 186], "signed_by_partner_date": "2019-09-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 59}', '{"in_amendment": {"after": false, "before": true}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1059, '2020-03-18 09:31:50.820287+00', '2020-03-18 09:31:50.820287+00', '104', 'update', '{"id": 104, "end": "2020-12-31", "frs": [162], "start": "2020-01-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-2", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31], "attachments": [477, 472, 471], "in_amendment": true, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942, 1895, 1898], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1108], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"end": {"after": "2020-12-31", "before": "2020-10-14"}, "start": {"after": "2020-01-01", "before": "2019-11-01"}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1060, '2020-03-23 10:59:57.898297+00', '2020-03-23 10:59:57.898297+00', '87', 'update', '{"id": 87, "end": "2020-05-31", "frs": [147], "start": "2019-01-06", "title": "Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi", "number": "LIB/PCA2019137/PD201987-2", "status": "active", "offices": [201], "metadata": {}, "sections": [5, 2], "agreement": 137, "amendments": [35, 38], "attachments": [495, 425, 424, 423, 422, 421, 420], "in_amendment": true, "result_links": [84], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836, 1832], "planned_visits": [65], "review_date_prc": "2018-11-21", "submission_date": "2018-10-12", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-11-11", "unicef_focal_points": [247375, 1497], "partner_focal_points": [67], "signed_pd_attachment": [878], "monitoring_activities": [], "prc_review_attachment": [877], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-06", "reporting_requirements": [469, 474, 468, 467, 466, 465, 464, 463, 462, 461, 460, 459, 458, 457, 456, 473, 472, 471, 470], "signed_by_partner_date": "2019-01-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 67}', '{"end": {"after": "2020-05-31", "before": "2020-03-31"}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1061, '2020-03-23 11:08:04.401616+00', '2020-03-23 11:08:04.401616+00', '87', 'update', '{"id": 87, "end": "2020-05-31", "frs": [147], "start": "2019-01-06", "title": "Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi", "number": "LIB/PCA2019137/PD201987-2", "status": "active", "offices": [201], "metadata": {}, "sections": [5, 2], "agreement": 137, "amendments": [35, 38], "attachments": [509, 495, 425, 424, 423, 422, 421, 420], "in_amendment": true, "result_links": [84], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836, 1832], "planned_visits": [65], "review_date_prc": "2018-11-21", "submission_date": "2018-10-12", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-11-11", "unicef_focal_points": [247375, 1497], "partner_focal_points": [67], "signed_pd_attachment": [878], "monitoring_activities": [], "prc_review_attachment": [877], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-06", "reporting_requirements": [469, 474, 468, 467, 466, 465, 464, 463, 462, 461, 460, 459, 458, 457, 456, 473, 472, 471, 470], "signed_by_partner_date": "2019-01-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 67}', '{}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1062, '2020-03-23 11:08:45.443421+00', '2020-03-23 11:08:45.443421+00', '87', 'update', '{"id": 87, "end": "2020-05-31", "frs": [147], "start": "2019-01-06", "title": "Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi", "number": "LIB/PCA2019137/PD201987-2", "status": "active", "offices": [201], "metadata": {}, "sections": [5, 2], "agreement": 137, "amendments": [35, 38], "attachments": [509, 495, 425, 424, 423, 422, 421, 420], "in_amendment": false, "result_links": [84], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836, 1832], "planned_visits": [65], "review_date_prc": "2018-11-21", "submission_date": "2018-10-12", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-11-11", "unicef_focal_points": [247375, 1497], "partner_focal_points": [67], "signed_pd_attachment": [878], "monitoring_activities": [], "prc_review_attachment": [877], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-06", "reporting_requirements": [469, 474, 468, 467, 466, 465, 464, 463, 462, 461, 460, 459, 458, 457, 456, 473, 472, 471, 470], "signed_by_partner_date": "2019-01-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 67}', '{"in_amendment": {"after": false, "before": true}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1063, '2020-03-23 11:57:25.711278+00', '2020-03-23 11:57:25.711278+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": false, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1861, 1907, 1877, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "monitoring_activities": [], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{"in_amendment": {"after": false, "before": true}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1064, '2020-03-23 15:09:08.997134+00', '2020-03-23 15:09:08.997134+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1861, 1907, 1877, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "monitoring_activities": [], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1065, '2020-03-23 15:11:36.8243+00', '2020-03-23 15:11:36.8243+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1861, 1907, 1877, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "monitoring_activities": [], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1066, '2020-03-23 15:11:45.710164+00', '2020-03-23 15:11:45.710164+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": false, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1861, 1907, 1877, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "monitoring_activities": [], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{"in_amendment": {"after": false, "before": true}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1067, '2020-03-23 15:11:51.506873+00', '2020-03-23 15:11:51.506873+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": false, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1861, 1907, 1877, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "monitoring_activities": [], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1068, '2020-03-24 08:17:33.586376+00', '2020-03-24 08:17:33.586376+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1861, 1907, 1877, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "monitoring_activities": [], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1069, '2020-03-24 08:25:08.369196+00', '2020-03-24 08:25:08.369196+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1861, 1907, 1877, 1925, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "monitoring_activities": [], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{"flat_locations": {"after": [1899, 1897, 1861, 1907, 1877, 1925, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898], "before": [1899, 1897, 1861, 1907, 1877, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898]}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1070, '2020-03-24 08:27:06.935438+00', '2020-03-24 08:27:06.935438+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1861, 1907, 1877, 1925, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "monitoring_activities": [], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1071, '2020-03-24 08:27:13.969057+00', '2020-03-24 08:27:13.969057+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": false, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1861, 1907, 1877, 1925, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "monitoring_activities": [], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{"in_amendment": {"after": false, "before": true}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1072, '2020-03-24 08:27:19.832315+00', '2020-03-24 08:27:19.832315+00', '95', 'update', '{"id": 95, "end": "2020-05-20", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": false, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1861, 1907, 1877, 1925, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "monitoring_activities": [], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1073, '2020-03-25 12:14:47.963787+00', '2020-03-25 12:14:47.963787+00', '95', 'update', '{"id": 95, "end": "2020-09-30", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [39], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1861, 1907, 1877, 1925, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "monitoring_activities": [], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{"end": {"after": "2020-09-30", "before": "2020-05-20"}}', 10233, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1074, '2020-03-25 12:34:10.175431+00', '2020-03-25 12:34:10.175431+00', '95', 'update', '{"id": 95, "end": "2020-09-30", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [39], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1861, 1907, 1877, 1925, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "monitoring_activities": [], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [525, 371, 392, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 10233, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1075, '2020-03-25 12:38:12.425677+00', '2020-03-25 12:38:12.425677+00', '95', 'update', '{"id": 95, "end": "2020-09-30", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [39], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1861, 1907, 1877, 1925, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "monitoring_activities": [], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [544, 525, 543, 542, 541, 540, 539, 538, 537, 536, 535, 534, 533, 532, 531, 530, 529, 528, 527, 526, 392, 371, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 10233, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1076, '2020-03-25 12:47:33.636299+00', '2020-03-25 12:47:33.636299+00', '95', 'update', '{"id": 95, "end": "2020-09-30", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [39], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": true, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1861, 1907, 1877, 1925, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "monitoring_activities": [], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [544, 525, 543, 542, 541, 540, 539, 538, 537, 536, 535, 534, 533, 532, 531, 530, 529, 528, 527, 526, 392, 371, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{}', 10233, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1077, '2020-03-25 12:48:35.799198+00', '2020-03-25 12:48:35.799198+00', '95', 'update', '{"id": 95, "end": "2020-09-30", "frs": [154], "start": "2019-05-21", "title": "Emergency Mine Risk Education Response for vulnerable displaced and conflict children and their caregivers in Libya", "number": "LIB/PCA2019149/PD201995-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 149, "amendments": [39], "attachments": [467, 466, 464, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440], "in_amendment": false, "result_links": [75], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1861, 1907, 1877, 1925, 1864, 1854, 1865, 1929, 1900, 1906, 1914, 1903, 1919, 1942, 1863, 1895, 1905, 1896, 1898], "planned_visits": [], "review_date_prc": "2019-05-15", "submission_date": "2019-04-22", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-09", "unicef_focal_points": [10233], "partner_focal_points": [71], "signed_pd_attachment": [976], "monitoring_activities": [], "prc_review_attachment": [975], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [544, 525, 543, 542, 541, 540, 539, 538, 537, 536, 535, 534, 533, 532, 531, 530, 529, 528, 527, 526, 392, 371, 391, 390, 389, 388, 387, 386, 385, 370, 384, 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 369], "signed_by_partner_date": "2019-05-16", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 71}', '{"in_amendment": {"after": false, "before": true}}', 10233, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1078, '2020-03-26 14:01:43.079748+00', '2020-03-26 14:01:43.079748+00', '104', 'update', '{"id": 104, "end": "2020-12-31", "frs": [162], "start": "2020-01-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-2", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31], "attachments": [477, 472, 471], "in_amendment": true, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942, 1895, 1898], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1108], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1079, '2020-03-26 14:01:50.100484+00', '2020-03-26 14:01:50.100484+00', '104', 'update', '{"id": 104, "end": "2020-12-31", "frs": [162], "start": "2020-01-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-2", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31], "attachments": [477, 472, 471], "in_amendment": false, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942, 1895, 1898], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1108], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"in_amendment": {"after": false, "before": true}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1080, '2020-03-26 14:05:29.559263+00', '2020-03-26 14:05:29.559263+00', '104', 'update', '{"id": 104, "end": "2020-12-31", "frs": [162], "start": "2020-01-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-3", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31, 40], "attachments": [477, 472, 471], "in_amendment": true, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942, 1895, 1898], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1108], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1081, '2020-03-26 14:05:54.303187+00', '2020-03-26 14:05:54.303187+00', '104', 'update', '{"id": 104, "end": "2020-12-31", "frs": [162], "start": "2020-01-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-3", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31, 40], "attachments": [477, 472, 471], "in_amendment": false, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942, 1895, 1898], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1108], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"in_amendment": {"after": false, "before": true}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1082, '2020-03-26 15:16:21.781316+00', '2020-03-26 15:16:21.781316+00', '104', 'update', '{"id": 104, "end": "2020-12-31", "frs": [162], "start": "2020-01-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104-4", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31, 40, 41], "attachments": [477, 472, 471], "in_amendment": false, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942, 1895, 1898], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1108], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"in_amendment": {"after": false, "before": true}}', 200131, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1083, '2020-03-31 14:16:30.428494+00', '2020-03-31 14:16:30.428494+00', '100', 'update', '{"id": 100, "end": "2020-05-31", "frs": [150], "start": "2019-04-09", "title": "Promotion of Child Protection and the Convention for the rights of the child in Libya", "number": "LIB/PCA2019150/PD2019100-1", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 150, "amendments": [27], "attachments": [503, 502, 501, 500, 451], "in_amendment": true, "result_links": [72], "document_type": "PD", "contingency_pd": false, "flat_locations": [1918, 1907, 1833, 1877, 1925, 1864, 1854, 1947, 1929, 1951, 1903, 1942, 1881, 1896, 1898, 1946, 1928, 1915], "planned_visits": [71, 73], "review_date_prc": "None", "submission_date": "2019-03-21", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [73], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [17817], "partner_focal_points": [72, 82], "signed_pd_attachment": [980], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-04-09", "reporting_requirements": [475, 296, 295, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283, 524], "signed_by_partner_date": "2019-04-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 72}', '{"end": {"after": "2020-05-31", "before": "2020-03-31"}}', 17817, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1103, '2020-04-06 14:55:37.111558+00', '2020-04-06 14:55:37.111558+00', '108', 'update', '{"id": 108, "end": "2021-04-01", "frs": [], "start": "2020-04-01", "title": "Prepositioning of Emergency Supplies and Rapid Emergency Response", "number": "LIB/PCA2020156/PD2020108", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2, 4, 3], "agreement": 156, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [87, 86, 89], "document_type": "PD", "contingency_pd": false, "flat_locations": [1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1840, 1852, 1847, 1835, 1846, 1845, 1832, 1849, 1848], "planned_visits": [74], "review_date_prc": "2020-02-20", "submission_date": "2020-02-15", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-15", "unicef_focal_points": [198811], "partner_focal_points": [83], "signed_pd_attachment": [1244], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-22", "reporting_requirements": [], "signed_by_partner_date": "2020-03-24", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 83}', '{}', 198811, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1106, '2020-04-07 10:21:10.297108+00', '2020-04-07 10:21:10.297108+00', '110', 'create', '{"id": 110, "end": "2020-03-15", "frs": [], "start": "2020-02-27", "title": "Migrant Children in detention centers to have winterzation kits", "number": "LIB/PCA2019126/HPD2020110", "status": "draft", "offices": [201], "metadata": {}, "sections": [1], "agreement": 126, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "HPD", "contingency_pd": false, "flat_locations": [2287, 2150, 1910, 1914, 1898, 1915], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [29294], "partner_focal_points": [6], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1110, '2020-04-07 10:26:25.405588+00', '2020-04-07 10:26:25.405588+00', '110', 'update', '{"id": 110, "end": "2020-03-31", "frs": [], "start": "2020-02-27", "title": "Migrant Children in detention centers to have winterzation kits", "number": "LIB/PCA2019126/HPD2020110", "status": "draft", "offices": [201], "metadata": {}, "sections": [1], "agreement": 126, "amendments": [], "attachments": [510], "in_amendment": false, "result_links": [], "document_type": "HPD", "contingency_pd": false, "flat_locations": [2287, 2150, 1910, 1914, 1898, 1915], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [29294], "partner_focal_points": [6], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-27", "reporting_requirements": [], "signed_by_partner_date": "2020-02-27", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{"end": {"after": "2020-03-31", "before": "2020-03-15"}, "unicef_signatory": {"after": 20024, "before": "None"}, "signed_by_unicef_date": {"after": "2020-02-27", "before": "None"}, "signed_by_partner_date": {"after": "2020-02-27", "before": "None"}, "partner_authorized_officer_signatory": {"after": 6, "before": "None"}}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1115, '2020-04-09 08:08:14.246456+00', '2020-04-09 08:08:14.246456+00', '87', 'update', '{"id": 87, "end": "2020-05-31", "frs": [147], "start": "2019-01-06", "title": "Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi", "number": "LIB/PCA2019137/PD201987-2", "status": "active", "offices": [201], "metadata": {}, "sections": [5, 2], "agreement": 137, "amendments": [35, 38], "attachments": [509, 495, 425, 424, 423, 422, 421, 420], "in_amendment": true, "result_links": [84], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836, 1832], "planned_visits": [65], "review_date_prc": "2018-11-21", "submission_date": "2018-10-12", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-11-11", "unicef_focal_points": [247375, 1497], "partner_focal_points": [67], "signed_pd_attachment": [878], "monitoring_activities": [], "prc_review_attachment": [877], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-06", "reporting_requirements": [554, 545, 553, 552, 551, 550, 549, 548, 547, 546, 469, 474, 468, 467, 466, 465, 464, 463, 462, 461, 460, 459, 458, 457, 456, 473, 472, 471, 470], "signed_by_partner_date": "2019-01-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 67}', '{}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1107, '2020-04-07 10:23:39.092757+00', '2020-04-07 10:23:39.092757+00', '110', 'update', '{"id": 110, "end": "2020-03-15", "frs": [], "start": "2020-02-27", "title": "Migrant Children in detention centers to have winterzation kits", "number": "LIB/PCA2019126/HPD2020110", "status": "draft", "offices": [201], "metadata": {}, "sections": [1], "agreement": 126, "amendments": [], "attachments": [510], "in_amendment": false, "result_links": [], "document_type": "HPD", "contingency_pd": false, "flat_locations": [2287, 2150, 1910, 1914, 1898, 1915], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [29294], "partner_focal_points": [6], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1111, '2020-04-08 15:26:46.303823+00', '2020-04-08 15:26:46.303823+00', '108', 'update', '{"id": 108, "end": "2021-04-01", "frs": [], "start": "2020-04-01", "title": "Prepositioning of Emergency Supplies and Rapid Emergency Response", "number": "LIB/PCA2020156/PD2020108", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2, 4, 3], "agreement": 156, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [87, 86], "document_type": "PD", "contingency_pd": false, "flat_locations": [1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1840, 1852, 1847, 1835, 1846, 1845, 1832, 1849, 1848], "planned_visits": [74], "review_date_prc": "2020-02-20", "submission_date": "2020-02-15", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-15", "unicef_focal_points": [198811], "partner_focal_points": [83], "signed_pd_attachment": [1244], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-22", "reporting_requirements": [], "signed_by_partner_date": "2020-03-24", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 83}', '{"status": {"after": "draft", "before": "signed"}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1114, '2020-04-09 08:02:36.968757+00', '2020-04-09 08:02:36.968757+00', '87', 'update', '{"id": 87, "end": "2020-05-31", "frs": [147], "start": "2019-01-06", "title": "Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi", "number": "LIB/PCA2019137/PD201987-2", "status": "active", "offices": [201], "metadata": {}, "sections": [5, 2], "agreement": 137, "amendments": [35, 38], "attachments": [509, 495, 425, 424, 423, 422, 421, 420], "in_amendment": true, "result_links": [84], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836, 1832], "planned_visits": [65], "review_date_prc": "2018-11-21", "submission_date": "2018-10-12", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-11-11", "unicef_focal_points": [247375, 1497], "partner_focal_points": [67], "signed_pd_attachment": [878], "monitoring_activities": [], "prc_review_attachment": [877], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-06", "reporting_requirements": [469, 474, 468, 467, 466, 465, 464, 463, 462, 461, 460, 459, 458, 457, 456, 473, 472, 471, 470], "signed_by_partner_date": "2019-01-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 67}', '{"in_amendment": {"after": true, "before": false}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1116, '2020-04-09 08:10:05.622021+00', '2020-04-09 08:10:05.622021+00', '87', 'update', '{"id": 87, "end": "2020-05-31", "frs": [147], "start": "2019-01-06", "title": "Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi", "number": "LIB/PCA2019137/PD201987-2", "status": "active", "offices": [201], "metadata": {}, "sections": [5, 2], "agreement": 137, "amendments": [35, 38], "attachments": [509, 495, 425, 424, 423, 422, 421, 420], "in_amendment": true, "result_links": [84], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836, 1832], "planned_visits": [65], "review_date_prc": "2018-11-21", "submission_date": "2018-10-12", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-11-11", "unicef_focal_points": [247375, 1497], "partner_focal_points": [67], "signed_pd_attachment": [878], "monitoring_activities": [], "prc_review_attachment": [877], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-06", "reporting_requirements": [554, 545, 553, 552, 551, 550, 549, 548, 547, 546, 469, 474, 468, 467, 466, 465, 464, 463, 462, 461, 460, 459, 458, 457, 456, 473, 472, 471, 470], "signed_by_partner_date": "2019-01-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 67}', '{}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1134, '2020-04-20 14:02:45.322174+00', '2020-04-20 14:02:45.322174+00', '104', 'update', '{"id": 104, "end": "2020-12-31", "frs": [162], "start": "2020-01-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31, 40, 41], "attachments": [477, 472, 471], "in_amendment": false, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942, 1895, 1898], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1108], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [47, 4, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 3, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 2, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 1, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"number": {"after": "LIB/PCA2019153/PD2019104", "before": "LIB/PCA2019153/PD2019104-4"}, "status": {"after": "draft", "before": "active"}}', 2, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1105, '2020-04-06 15:27:43.639664+00', '2020-04-06 15:27:43.639664+00', '108', 'update', '{"id": 108, "end": "2021-04-01", "frs": [], "start": "2020-04-01", "title": "Prepositioning of Emergency Supplies and Rapid Emergency Response", "number": "LIB/PCA2020156/PD2020108", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2, 4, 3], "agreement": 156, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [87, 86], "document_type": "PD", "contingency_pd": false, "flat_locations": [1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1840, 1852, 1847, 1835, 1846, 1845, 1832, 1849, 1848], "planned_visits": [74], "review_date_prc": "2020-02-20", "submission_date": "2020-02-15", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-15", "unicef_focal_points": [198811], "partner_focal_points": [83], "signed_pd_attachment": [1244], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-22", "reporting_requirements": [], "signed_by_partner_date": "2020-03-24", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 83}', '{}', 198811, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1108, '2020-04-07 10:24:17.679628+00', '2020-04-07 10:24:17.679628+00', '110', 'update', '{"id": 110, "end": "2020-03-15", "frs": [], "start": "2020-02-27", "title": "Migrant Children in detention centers to have winterzation kits", "number": "LIB/PCA2019126/HPD2020110", "status": "draft", "offices": [201], "metadata": {}, "sections": [1], "agreement": 126, "amendments": [], "attachments": [510], "in_amendment": false, "result_links": [], "document_type": "HPD", "contingency_pd": false, "flat_locations": [2287, 2150, 1910, 1914, 1898, 1915], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [29294], "partner_focal_points": [6], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 29294, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1112, '2020-04-08 15:36:53.483322+00', '2020-04-08 15:36:53.483322+00', '108', 'update', '{"id": 108, "end": "2021-04-01", "frs": [], "start": "2020-04-01", "title": "Prepositioning of Emergency Supplies and Rapid Emergency Response", "number": "LIB/PCA2020156/PD2020108", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2, 4, 3], "agreement": 156, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [87, 86], "document_type": "PD", "contingency_pd": false, "flat_locations": [1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1840, 1852, 1847, 1835, 1846, 1845, 1832, 1849, 1848], "planned_visits": [74], "review_date_prc": "2020-02-20", "submission_date": "2020-02-15", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-15", "unicef_focal_points": [198811], "partner_focal_points": [83], "signed_pd_attachment": [1244], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-22", "reporting_requirements": [], "signed_by_partner_date": "2020-03-24", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 83}', '{}', 198811, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1095, '2020-04-05 09:47:24.42646+00', '2020-04-05 09:47:24.42646+00', '108', 'update', '{"id": 108, "end": "2021-04-01", "frs": [], "start": "2020-04-01", "title": "Prepositioning of Emergency Supplies and Rapid Emergency Response", "number": "LIB/PCA2020156/PD2020108", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2, 4], "agreement": 156, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [85], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [74], "review_date_prc": "2020-02-20", "submission_date": "2020-02-15", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-15", "unicef_focal_points": [198811], "partner_focal_points": [83], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-22", "reporting_requirements": [], "signed_by_partner_date": "2020-03-24", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 83}', '{"end": {"after": "2021-04-01", "before": "2021-03-01"}, "start": {"after": "2020-04-01", "before": "2020-03-01"}, "flat_locations": {"after": [], "before": [1836]}, "review_date_prc": {"after": "2020-02-20", "before": "None"}, "submission_date": {"after": "2020-02-15", "before": "None"}, "unicef_signatory": {"after": 20024, "before": "None"}, "submission_date_prc": {"after": "2020-02-15", "before": "None"}, "signed_by_unicef_date": {"after": "2020-03-22", "before": "None"}, "signed_by_partner_date": {"after": "2020-03-24", "before": "None"}, "partner_authorized_officer_signatory": {"after": 83, "before": "None"}}', 198811, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1137, '2020-04-21 07:50:04.307823+00', '2020-04-21 07:50:04.307823+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH Response to Affected People", "number": "LIB/PCA2019130/PD2020111", "status": "draft", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [91], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1900, 1840, 1852, 1847, 1835, 1846, 1895, 1896, 1845, 1898], "planned_visits": [76], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-01-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [1252], "monitoring_activities": [], "prc_review_attachment": [1250], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [708, 558, 707, 706, 705, 704, 703, 702, 701, 700, 699, 698, 697, 696, 695, 557, 694, 693, 692, 691, 690, 689, 688, 687, 686, 685, 684, 683, 682, 556, 681, 680, 679, 678, 677, 676, 675, 674, 673, 555], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{"status": {"after": "draft", "before": "signed"}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1096, '2020-04-05 09:47:52.841804+00', '2020-04-05 09:47:52.841804+00', '108', 'update', '{"id": 108, "end": "2021-04-01", "frs": [], "start": "2020-04-01", "title": "Prepositioning of Emergency Supplies and Rapid Emergency Response", "number": "LIB/PCA2020156/PD2020108", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2, 4, 3], "agreement": 156, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [85], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [74], "review_date_prc": "2020-02-20", "submission_date": "2020-02-15", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-15", "unicef_focal_points": [198811], "partner_focal_points": [83], "signed_pd_attachment": [1244], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-22", "reporting_requirements": [], "signed_by_partner_date": "2020-03-24", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 83}', '{"sections": {"after": [1, 2, 4, 3], "before": [1, 2, 4]}}', 198811, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1097, '2020-04-05 09:48:03.430264+00', '2020-04-05 09:48:03.430264+00', '108', 'update', '{"id": 108, "end": "2021-04-01", "frs": [], "start": "2020-04-01", "title": "Prepositioning of Emergency Supplies and Rapid Emergency Response", "number": "LIB/PCA2020156/PD2020108", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2, 4, 3], "agreement": 156, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [85], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [74], "review_date_prc": "2020-02-20", "submission_date": "2020-02-15", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-15", "unicef_focal_points": [198811], "partner_focal_points": [83], "signed_pd_attachment": [1244], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-22", "reporting_requirements": [], "signed_by_partner_date": "2020-03-24", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 83}', '{}', 198811, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1098, '2020-04-05 09:48:14.921403+00', '2020-04-05 09:48:14.921403+00', '108', 'update', '{"id": 108, "end": "2021-04-01", "frs": [], "start": "2020-04-01", "title": "Prepositioning of Emergency Supplies and Rapid Emergency Response", "number": "LIB/PCA2020156/PD2020108", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2, 4, 3], "agreement": 156, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [85], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [74], "review_date_prc": "2020-02-20", "submission_date": "2020-02-15", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-15", "unicef_focal_points": [198811], "partner_focal_points": [83], "signed_pd_attachment": [1244], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-22", "reporting_requirements": [], "signed_by_partner_date": "2020-03-24", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 83}', '{}', 198811, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1099, '2020-04-05 09:49:25.440663+00', '2020-04-05 09:49:25.440663+00', '108', 'update', '{"id": 108, "end": "2021-04-01", "frs": [], "start": "2020-04-01", "title": "Prepositioning of Emergency Supplies and Rapid Emergency Response", "number": "LIB/PCA2020156/PD2020108", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2, 4, 3], "agreement": 156, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [85], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [74], "review_date_prc": "2020-02-20", "submission_date": "2020-02-15", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-15", "unicef_focal_points": [198811], "partner_focal_points": [83], "signed_pd_attachment": [1244], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-22", "reporting_requirements": [], "signed_by_partner_date": "2020-03-24", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 83}', '{}', 198811, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1100, '2020-04-05 09:52:49.838472+00', '2020-04-05 09:52:49.838472+00', '108', 'update', '{"id": 108, "end": "2021-04-01", "frs": [], "start": "2020-04-01", "title": "Prepositioning of Emergency Supplies and Rapid Emergency Response", "number": "LIB/PCA2020156/PD2020108", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2, 4, 3], "agreement": 156, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [74], "review_date_prc": "2020-02-20", "submission_date": "2020-02-15", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-15", "unicef_focal_points": [198811], "partner_focal_points": [83], "signed_pd_attachment": [1244], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-22", "reporting_requirements": [], "signed_by_partner_date": "2020-03-24", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 83}', '{}', 198811, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1101, '2020-04-05 10:57:26.061398+00', '2020-04-05 10:57:26.061398+00', '108', 'update', '{"id": 108, "end": "2021-04-01", "frs": [], "start": "2020-04-01", "title": "Prepositioning of Emergency Supplies and Rapid Emergency Response", "number": "LIB/PCA2020156/PD2020108", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2, 4, 3], "agreement": 156, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [74], "review_date_prc": "2020-02-20", "submission_date": "2020-02-15", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-15", "unicef_focal_points": [198811], "partner_focal_points": [83], "signed_pd_attachment": [1244], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-22", "reporting_requirements": [], "signed_by_partner_date": "2020-03-24", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 83}', '{}', 198811, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1102, '2020-04-05 15:53:23.327782+00', '2020-04-05 15:53:23.327782+00', '108', 'update', '{"id": 108, "end": "2021-04-01", "frs": [], "start": "2020-04-01", "title": "Prepositioning of Emergency Supplies and Rapid Emergency Response", "number": "LIB/PCA2020156/PD2020108", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2, 4, 3], "agreement": 156, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [89, 88, 87, 86], "document_type": "PD", "contingency_pd": false, "flat_locations": [1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1840, 1852, 1847, 1835, 1846, 1845, 1832, 1849, 1848], "planned_visits": [74], "review_date_prc": "2020-02-20", "submission_date": "2020-02-15", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-15", "unicef_focal_points": [198811], "partner_focal_points": [83], "signed_pd_attachment": [1244], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-22", "reporting_requirements": [], "signed_by_partner_date": "2020-03-24", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 83}', '{"flat_locations": {"after": [1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1840, 1852, 1847, 1835, 1846, 1845, 1832, 1849, 1848], "before": []}}', 198811, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1113, '2020-04-08 15:38:22.721849+00', '2020-04-08 15:38:22.721849+00', '108', 'update', '{"id": 108, "end": "2021-04-01", "frs": [], "start": "2020-04-01", "title": "Prepositioning of Emergency Supplies and Rapid Emergency Response", "number": "LIB/PCA2020156/PD2020108", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2, 4, 3], "agreement": 156, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [87, 86], "document_type": "PD", "contingency_pd": false, "flat_locations": [1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1840, 1852, 1847, 1835, 1846, 1845, 1832, 1849, 1848], "planned_visits": [74], "review_date_prc": "2020-02-20", "submission_date": "2020-02-15", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-15", "unicef_focal_points": [198811], "partner_focal_points": [83], "signed_pd_attachment": [1244], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-22", "reporting_requirements": [], "signed_by_partner_date": "2020-03-24", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 83}', '{"status": {"after": "draft", "before": "signed"}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1117, '2020-04-09 08:10:40.318986+00', '2020-04-09 08:10:40.318986+00', '87', 'update', '{"id": 87, "end": "2020-05-31", "frs": [147], "start": "2019-01-06", "title": "Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi", "number": "LIB/PCA2019137/PD201987-2", "status": "active", "offices": [201], "metadata": {}, "sections": [5, 2], "agreement": 137, "amendments": [35, 38], "attachments": [509, 495, 425, 424, 423, 422, 421, 420], "in_amendment": false, "result_links": [84], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836, 1832], "planned_visits": [65], "review_date_prc": "2018-11-21", "submission_date": "2018-10-12", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-11-11", "unicef_focal_points": [247375, 1497], "partner_focal_points": [67], "signed_pd_attachment": [878], "monitoring_activities": [], "prc_review_attachment": [877], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-06", "reporting_requirements": [554, 545, 553, 552, 551, 550, 549, 548, 547, 546, 469, 474, 468, 467, 466, 465, 464, 463, 462, 461, 460, 459, 458, 457, 456, 473, 472, 471, 470], "signed_by_partner_date": "2019-01-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 67}', '{"in_amendment": {"after": false, "before": true}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1118, '2020-04-13 15:39:00.801869+00', '2020-04-13 15:39:00.801869+00', '111', 'create', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH response to affected people", "number": "LIB/PCA2019130/PD2020111", "status": "draft", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1119, '2020-04-14 12:54:15.286628+00', '2020-04-14 12:54:15.286628+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH response to affected people", "number": "LIB/PCA2019130/PD2020111", "status": "draft", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{"flat_locations": {"after": [1899], "before": []}, "review_date_prc": {"after": "2020-02-02", "before": "None"}, "submission_date": {"after": "2020-01-20", "before": "None"}, "unicef_signatory": {"after": 11490, "before": "None"}, "submission_date_prc": {"after": "2020-02-28", "before": "None"}, "signed_by_unicef_date": {"after": "2020-02-02", "before": "None"}, "signed_by_partner_date": {"after": "2020-02-03", "before": "None"}, "partner_authorized_officer_signatory": {"after": 16, "before": "None"}}', 247527, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1120, '2020-04-14 13:12:13.856689+00', '2020-04-14 13:12:13.856689+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH response to affected people", "number": "LIB/PCA2019130/PD2020111", "status": "draft", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [1250], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{}', 247527, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1121, '2020-04-15 11:04:28.234429+00', '2020-04-15 11:04:28.234429+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH Response to Affected People", "number": "LIB/PCA2019130/PD2020111", "status": "draft", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [76], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [1250], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{"title": {"after": "Humanitarian WASH Response to Affected People", "before": "Humanitarian WASH response to affected people"}}', 247527, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1122, '2020-04-15 16:03:55.922646+00', '2020-04-15 16:03:55.922646+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH Response to Affected People", "number": "LIB/PCA2019130/PD2020111", "status": "signed", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [76], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [1252], "monitoring_activities": [], "prc_review_attachment": [1250], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{}', 247527, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1123, '2020-04-15 16:03:57.836593+00', '2020-04-15 16:03:57.836593+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH Response to Affected People", "number": "LIB/PCA2019130/PD2020111", "status": "signed", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [76], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [1252], "monitoring_activities": [], "prc_review_attachment": [1250], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{}', 14488, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1124, '2020-04-15 16:05:34.25538+00', '2020-04-15 16:05:34.25538+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH Response to Affected People", "number": "LIB/PCA2019130/PD2020111", "status": "signed", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [76], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [1252], "monitoring_activities": [], "prc_review_attachment": [1250], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [3, 2, 1], "partner_authorized_officer_signatory": 16}', '{}', 14488, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1125, '2020-04-15 21:21:55.600244+00', '2020-04-15 21:21:55.600244+00', '108', 'update', '{"id": 108, "end": "2021-04-01", "frs": [], "start": "2020-04-01", "title": "Prepositioning of Emergency Supplies and Rapid Emergency Response", "number": "LIB/PCA2020156/PD2020108", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2, 4, 3], "agreement": 156, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [87, 86], "document_type": "PD", "contingency_pd": false, "flat_locations": [1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1840, 1852, 1847, 1835, 1846, 1845, 1832, 1849, 1848], "planned_visits": [74], "review_date_prc": "2020-02-20", "submission_date": "2020-02-15", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-15", "unicef_focal_points": [198811], "partner_focal_points": [83], "signed_pd_attachment": [1244], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-22", "reporting_requirements": [], "signed_by_partner_date": "2020-03-24", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 83}', '{}', 198811, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1126, '2020-04-16 09:00:24.30359+00', '2020-04-16 09:00:24.30359+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH Response to Affected People", "number": "LIB/PCA2019130/PD2020111", "status": "draft", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [76], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [1252], "monitoring_activities": [], "prc_review_attachment": [1250], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [3, 2, 1], "partner_authorized_officer_signatory": 16}', '{"status": {"after": "draft", "before": "signed"}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1127, '2020-04-16 09:21:35.652153+00', '2020-04-16 09:21:35.652153+00', '87', 'update', '{"id": 87, "end": "2020-05-31", "frs": [147], "start": "2019-01-06", "title": "Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi", "number": "LIB/PCA2019137/PD201987-2", "status": "active", "offices": [201], "metadata": {}, "sections": [5, 2], "agreement": 137, "amendments": [35, 38], "attachments": [509, 495, 425, 424, 423, 422, 421, 420], "in_amendment": false, "result_links": [84], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836, 1832], "planned_visits": [65], "review_date_prc": "2018-11-21", "submission_date": "2018-10-12", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-11-11", "unicef_focal_points": [247375, 1497], "partner_focal_points": [85, 67], "signed_pd_attachment": [878], "monitoring_activities": [], "prc_review_attachment": [877], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-06", "reporting_requirements": [554, 545, 553, 552, 551, 550, 549, 548, 547, 546, 469, 474, 468, 467, 466, 465, 464, 463, 462, 461, 460, 459, 458, 457, 456, 473, 472, 471, 470], "signed_by_partner_date": "2019-01-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 67}', '{"partner_focal_points": {"after": [85, 67], "before": [67]}}', 247375, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1128, '2020-04-16 10:25:21.395311+00', '2020-04-16 10:25:21.395311+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH Response to Affected People", "number": "LIB/PCA2019130/PD2020111", "status": "draft", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [76], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [1252], "monitoring_activities": [], "prc_review_attachment": [1250], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [3, 2, 1], "partner_authorized_officer_signatory": 16}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1129, '2020-04-16 10:25:38.029077+00', '2020-04-16 10:25:38.029077+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH Response to Affected People", "number": "LIB/PCA2019130/PD2020111", "status": "draft", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899], "planned_visits": [76], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [1252], "monitoring_activities": [], "prc_review_attachment": [1250], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [3, 2, 1], "partner_authorized_officer_signatory": 16}', '{"status": {"after": "draft", "before": "signed"}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1130, '2020-04-16 14:00:08.542268+00', '2020-04-16 14:00:08.542268+00', '108', 'update', '{"id": 108, "end": "2021-04-01", "frs": [], "start": "2020-04-01", "title": "Prepositioning of Emergency Supplies and Rapid Emergency Response", "number": "LIB/PCA2020156/PD2020108", "status": "draft", "offices": [201], "metadata": {}, "sections": [1, 2, 4, 3], "agreement": 156, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [87, 86], "document_type": "PD", "contingency_pd": false, "flat_locations": [1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1840, 1852, 1847, 1835, 1846, 1845, 1832, 1849, 1848], "planned_visits": [74], "review_date_prc": "2020-02-20", "submission_date": "2020-02-15", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-15", "unicef_focal_points": [198811], "partner_focal_points": [83], "signed_pd_attachment": [1244], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-22", "reporting_requirements": [], "signed_by_partner_date": "2020-03-24", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 83}', '{"status": {"after": "draft", "before": "signed"}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1131, '2020-04-19 14:06:26.27259+00', '2020-04-19 14:06:26.27259+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH Response to Affected People", "number": "LIB/PCA2019130/PD2020111", "status": "draft", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [91], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1900, 1840, 1852, 1847, 1835, 1846, 1895, 1896, 1845, 1898], "planned_visits": [76], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-01-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [1252], "monitoring_activities": [], "prc_review_attachment": [1250], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [558, 557, 556, 555], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [3, 2, 1], "partner_authorized_officer_signatory": 16}', '{"flat_locations": {"after": [1899, 1897, 1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1900, 1840, 1852, 1847, 1835, 1846, 1895, 1896, 1845, 1898], "before": [1899]}, "submission_date_prc": {"after": "2020-01-28", "before": "2020-02-28"}}', 247527, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1132, '2020-04-20 08:58:55.114262+00', '2020-04-20 08:58:55.114262+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH Response to Affected People", "number": "LIB/PCA2019130/PD2020111", "status": "draft", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [91], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1900, 1840, 1852, 1847, 1835, 1846, 1895, 1896, 1845, 1898], "planned_visits": [76], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-01-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [1252], "monitoring_activities": [], "prc_review_attachment": [1250], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [558, 557, 556, 555], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [3, 2, 1], "partner_authorized_officer_signatory": 16}', '{"status": {"after": "draft", "before": "signed"}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1138, '2020-04-21 08:22:32.426553+00', '2020-04-21 08:22:32.426553+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH Response to Affected People", "number": "LIB/PCA2019130/PD2020111", "status": "draft", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [91], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1900, 1840, 1852, 1847, 1835, 1846, 1895, 1896, 1845, 1898], "planned_visits": [76], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-01-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [1252], "monitoring_activities": [], "prc_review_attachment": [1250], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [708, 558, 707, 706, 705, 704, 703, 702, 701, 700, 699, 698, 697, 696, 695, 557, 694, 693, 692, 691, 690, 689, 688, 687, 686, 685, 684, 683, 682, 556, 681, 680, 679, 678, 677, 676, 675, 674, 673, 555], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{}', 247527, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1135, '2020-04-20 14:08:55.662718+00', '2020-04-20 14:08:55.662718+00', '104', 'update', '{"id": 104, "end": "2020-12-31", "frs": [162], "start": "2020-01-01", "title": "Provision of multi-sectorial services to vulnerable children in Libya – Bayti Centre", "number": "LIB/PCA2019153/PD2019104", "status": "active", "offices": [201], "metadata": {}, "sections": [1, 2], "agreement": 153, "amendments": [30, 31, 40, 41], "attachments": [477, 472, 471], "in_amendment": false, "result_links": [63], "document_type": "PD", "contingency_pd": false, "flat_locations": [1835, 1942, 1895, 1898], "planned_visits": [], "review_date_prc": "2019-09-25", "submission_date": "2019-08-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-08-08", "unicef_focal_points": [200131], "partner_focal_points": [74, 80], "signed_pd_attachment": [1108], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-10-23", "reporting_requirements": [4, 47, 46, 45, 3, 44, 43, 42, 41, 40, 39, 38, 37, 36, 35, 34, 33, 32, 2, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 1, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6], "signed_by_partner_date": "2019-10-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 74}', '{"status": {"after": "active", "before": "draft"}}', 2, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1136, '2020-04-20 15:08:52.673939+00', '2020-04-20 15:08:52.673939+00', '109', 'update', '{"id": 109, "end": "2021-02-25", "frs": [165], "start": "2020-02-25", "title": "Specialized Psychosocial support for vulnerable Children in Sebha, Benghazi and Tripoli", "number": "LIB/PCA2019124/PD2020109", "status": "active", "offices": [201], "metadata": {}, "sections": [1], "agreement": 124, "amendments": [], "attachments": [507, 498], "in_amendment": true, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [1864, 1942, 1898], "planned_visits": [75], "review_date_prc": "2020-02-20", "submission_date": "2020-01-02", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-16", "unicef_focal_points": [17817], "partner_focal_points": [1], "signed_pd_attachment": [1211], "monitoring_activities": [], "prc_review_attachment": [1210], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-25", "reporting_requirements": [], "signed_by_partner_date": "2020-02-23", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 1}', '{}', 23641, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1139, '2020-04-21 08:33:24.873839+00', '2020-04-21 08:33:24.873839+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH Response to Affected People", "number": "LIB/PCA2019130/PD2020111", "status": "draft", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [91], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1900, 1840, 1852, 1847, 1835, 1846, 1895, 1896, 1845, 1898], "planned_visits": [76], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-01-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [1252], "monitoring_activities": [], "prc_review_attachment": [1250], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [708, 558, 707, 706, 705, 704, 703, 702, 701, 700, 699, 698, 697, 696, 695, 557, 694, 693, 692, 691, 690, 689, 688, 687, 686, 685, 684, 683, 682, 556, 681, 680, 679, 678, 677, 676, 675, 674, 673, 555], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{"status": {"after": "draft", "before": "signed"}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1141, '2020-04-21 08:41:34.47155+00', '2020-04-21 08:41:34.47155+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH Response to Affected People", "number": "LIB/PCA2019130/PD2020111", "status": "draft", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [91], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1900, 1840, 1852, 1847, 1835, 1846, 1895, 1896, 1845, 1898], "planned_visits": [76], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-01-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [1252], "monitoring_activities": [], "prc_review_attachment": [1250], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [708, 558, 707, 706, 705, 704, 703, 702, 701, 700, 699, 698, 697, 696, 695, 557, 694, 693, 692, 691, 690, 689, 688, 687, 686, 685, 684, 683, 682, 556, 681, 680, 679, 678, 677, 676, 675, 674, 673, 555], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1142, '2020-04-21 08:41:49.607579+00', '2020-04-21 08:41:49.607579+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH Response to Affected People", "number": "LIB/PCA2019130/PD2020111", "status": "draft", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [91], "document_type": "PD", "contingency_pd": false, "flat_locations": [1899, 1897, 1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1900, 1840, 1852, 1847, 1835, 1846, 1895, 1896, 1845, 1898], "planned_visits": [76], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-01-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [1252], "monitoring_activities": [], "prc_review_attachment": [1250], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [708, 558, 707, 706, 705, 704, 703, 702, 701, 700, 699, 698, 697, 696, 695, 557, 694, 693, 692, 691, 690, 689, 688, 687, 686, 685, 684, 683, 682, 556, 681, 680, 679, 678, 677, 676, 675, 674, 673, 555], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{"status": {"after": "draft", "before": "signed"}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1143, '2020-04-21 08:45:49.184618+00', '2020-04-21 08:45:49.184618+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH Response to Affected People", "number": "LIB/PCA2019130/PD2020111", "status": "draft", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [91], "document_type": "PD", "contingency_pd": false, "flat_locations": [1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1840, 1852, 1847, 1835, 1846, 1845, 1832, 1849, 1848, 1841], "planned_visits": [76], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-01-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [1252], "monitoring_activities": [], "prc_review_attachment": [1250], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [708, 558, 707, 706, 705, 704, 703, 702, 701, 700, 699, 698, 697, 696, 695, 557, 694, 693, 692, 691, 690, 689, 688, 687, 686, 685, 684, 683, 682, 556, 681, 680, 679, 678, 677, 676, 675, 674, 673, 555], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{"flat_locations": {"after": [1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1840, 1852, 1847, 1835, 1846, 1845, 1832, 1849, 1848, 1841], "before": [1899, 1897, 1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1900, 1840, 1852, 1847, 1835, 1846, 1895, 1896, 1845, 1898]}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1144, '2020-04-21 08:46:15.104832+00', '2020-04-21 08:46:15.104832+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH Response to Affected People", "number": "LIB/PCA2019130/PD2020111", "status": "signed", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [91], "document_type": "PD", "contingency_pd": false, "flat_locations": [1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1840, 1852, 1847, 1835, 1846, 1845, 1832, 1849, 1848, 1841], "planned_visits": [76], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-01-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [1252], "monitoring_activities": [], "prc_review_attachment": [1250], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [708, 558, 707, 706, 705, 704, 703, 702, 701, 700, 699, 698, 697, 696, 695, 557, 694, 693, 692, 691, 690, 689, 688, 687, 686, 685, 684, 683, 682, 556, 681, 680, 679, 678, 677, 676, 675, 674, 673, 555], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1145, '2020-04-21 08:46:31.931214+00', '2020-04-21 08:46:31.931214+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH Response to Affected People", "number": "LIB/PCA2019130/PD2020111", "status": "draft", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [91], "document_type": "PD", "contingency_pd": false, "flat_locations": [1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1840, 1852, 1847, 1835, 1846, 1845, 1832, 1849, 1848, 1841], "planned_visits": [76], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-01-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [1252], "monitoring_activities": [], "prc_review_attachment": [1250], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [708, 558, 707, 706, 705, 704, 703, 702, 701, 700, 699, 698, 697, 696, 695, 557, 694, 693, 692, 691, 690, 689, 688, 687, 686, 685, 684, 683, 682, 556, 681, 680, 679, 678, 677, 676, 675, 674, 673, 555], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{"status": {"after": "draft", "before": "signed"}}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1146, '2020-04-21 08:51:46.39963+00', '2020-04-21 08:51:46.39963+00', '111', 'update', '{"id": 111, "end": "2020-12-31", "frs": [], "start": "2020-02-03", "title": "Humanitarian WASH Response to Affected People", "number": "LIB/PCA2019130/PD2020111", "status": "draft", "offices": [201], "metadata": {}, "sections": [3], "agreement": 130, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [91], "document_type": "PD", "contingency_pd": false, "flat_locations": [1844, 1850, 1833, 1851, 1839, 1831, 1843, 1834, 1836, 1842, 1838, 1837, 1840, 1852, 1847, 1835, 1846, 1845, 1832, 1849, 1848, 1841], "planned_visits": [76], "review_date_prc": "2020-02-02", "submission_date": "2020-01-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 11490, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-01-28", "unicef_focal_points": [247527], "partner_focal_points": [16], "signed_pd_attachment": [1252], "monitoring_activities": [], "prc_review_attachment": [1250], "reference_number_year": 2020, "signed_by_unicef_date": "2020-02-02", "reporting_requirements": [708, 558, 707, 706, 705, 704, 703, 702, 701, 700, 699, 698, 697, 696, 695, 557, 694, 693, 692, 691, 690, 689, 688, 687, 686, 685, 684, 683, 682, 556, 681, 680, 679, 678, 677, 676, 675, 674, 673, 555], "signed_by_partner_date": "2020-02-03", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{}', 173037, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (1147, '2020-04-21 10:49:44.748265+00', '2020-04-21 10:49:44.748265+00', '87', 'update', '{"id": 87, "end": "2020-05-31", "frs": [147], "start": "2019-01-06", "title": "Access to quality & protective education and PSS for conflict affected children and adolescents in Tripoli and Benghazi", "number": "LIB/PCA2019137/PD201987-2", "status": "active", "offices": [201], "metadata": {}, "sections": [5, 2], "agreement": 137, "amendments": [35, 38], "attachments": [512, 509, 495, 425, 424, 423, 422, 421, 420], "in_amendment": false, "result_links": [84], "document_type": "PD", "contingency_pd": false, "flat_locations": [1836, 1832], "planned_visits": [65], "review_date_prc": "2018-11-21", "submission_date": "2018-10-12", "termination_doc": "", "population_focus": "None", "unicef_signatory": 20024, "activation_letter": "", "country_programme": 34, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-11-11", "unicef_focal_points": [247375], "partner_focal_points": [85, 67], "signed_pd_attachment": [878], "monitoring_activities": [], "prc_review_attachment": [877], "reference_number_year": 2019, "signed_by_unicef_date": "2019-01-06", "reporting_requirements": [554, 545, 553, 552, 551, 550, 549, 548, 547, 546, 469, 474, 468, 467, 466, 465, 464, 463, 462, 461, 460, 459, 458, 457, 456, 473, 472, 471, 470], "signed_by_partner_date": "2019-01-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 67}', '{"unicef_focal_points": {"after": [247375], "before": [247375, 1497]}}', 247375, 151); -- -- Name: action_points_actionpoint_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].action_points_actionpoint_id_seq', 21, true); +SELECT pg_catalog.setval('[[schema]].action_points_actionpoint_id_seq', 32, true); -- -- Name: activities_activity_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].activities_activity_id_seq', 161, true); +SELECT pg_catalog.setval('[[schema]].activities_activity_id_seq', 181, true); -- -- Name: activities_activity_locations_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].activities_activity_locations_id_seq', 272, true); +SELECT pg_catalog.setval('[[schema]].activities_activity_locations_id_seq', 301, true); -- @@ -15382,7 +19685,7 @@ SELECT pg_catalog.setval('[[schema]].actstream_follow_id_seq', 1, false); -- Name: attachments_attachmentflat_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].attachments_attachmentflat_id_seq', 1116, true); +SELECT pg_catalog.setval('[[schema]].attachments_attachmentflat_id_seq', 1254, true); -- @@ -15396,49 +19699,49 @@ SELECT pg_catalog.setval('[[schema]].audit_detailedfindinginfo_id_seq', 1, false -- Name: audit_engagement_active_pd_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].audit_engagement_active_pd_id_seq', 6, true); +SELECT pg_catalog.setval('[[schema]].audit_engagement_active_pd_id_seq', 11, true); -- -- Name: audit_engagement_authorized_officers_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].audit_engagement_authorized_officers_id_seq', 14, true); +SELECT pg_catalog.setval('[[schema]].audit_engagement_authorized_officers_id_seq', 22, true); -- -- Name: audit_engagement_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].audit_engagement_id_seq', 15, true); +SELECT pg_catalog.setval('[[schema]].audit_engagement_id_seq', 23, true); -- -- Name: audit_engagement_offices_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].audit_engagement_offices_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].audit_engagement_offices_id_seq', 7, true); -- -- Name: audit_engagement_sections_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].audit_engagement_sections_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].audit_engagement_sections_id_seq', 6, true); -- -- Name: audit_engagement_staff_members1_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].audit_engagement_staff_members1_id_seq', 44, true); +SELECT pg_catalog.setval('[[schema]].audit_engagement_staff_members1_id_seq', 52, true); -- -- Name: audit_engagement_users_notified_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].audit_engagement_users_notified_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].audit_engagement_users_notified_id_seq', 7, true); -- @@ -15452,7 +19755,7 @@ SELECT pg_catalog.setval('[[schema]].audit_financialfinding_id_seq', 1, false); -- Name: audit_finding_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].audit_finding_id_seq', 62, true); +SELECT pg_catalog.setval('[[schema]].audit_finding_id_seq', 64, true); -- @@ -15508,14 +19811,14 @@ SELECT pg_catalog.setval('[[schema]].django_comment_flags_id_seq', 1, false); -- Name: django_comments_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].django_comments_id_seq', 9, true); +SELECT pg_catalog.setval('[[schema]].django_comments_id_seq', 11, true); -- -- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].django_migrations_id_seq', 651, true); +SELECT pg_catalog.setval('[[schema]].django_migrations_id_seq', 659, true); -- @@ -15683,28 +19986,28 @@ SELECT pg_catalog.setval('[[schema]].funds_donor_id_seq', 67, true); -- Name: funds_fundscommitmentheader_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].funds_fundscommitmentheader_id_seq', 294, true); +SELECT pg_catalog.setval('[[schema]].funds_fundscommitmentheader_id_seq', 319, true); -- -- Name: funds_fundscommitmentitem_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].funds_fundscommitmentitem_id_seq', 385, true); +SELECT pg_catalog.setval('[[schema]].funds_fundscommitmentitem_id_seq', 415, true); -- -- Name: funds_fundsreservationheader_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].funds_fundsreservationheader_id_seq', 159, true); +SELECT pg_catalog.setval('[[schema]].funds_fundsreservationheader_id_seq', 171, true); -- -- Name: funds_fundsreservationitem_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].funds_fundsreservationitem_id_seq', 321, true); +SELECT pg_catalog.setval('[[schema]].funds_fundsreservationitem_id_seq', 370, true); -- @@ -15718,14 +20021,14 @@ SELECT pg_catalog.setval('[[schema]].funds_grant_id_seq', 72, true); -- Name: hact_aggregatehact_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].hact_aggregatehact_id_seq', 2, true); +SELECT pg_catalog.setval('[[schema]].hact_aggregatehact_id_seq', 3, true); -- -- Name: hact_hacthistory_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].hact_hacthistory_id_seq', 55, true); +SELECT pg_catalog.setval('[[schema]].hact_hacthistory_id_seq', 79, true); -- @@ -15781,35 +20084,35 @@ SELECT pg_catalog.setval('[[schema]].management_sectionhistory_to_sections_id_se -- Name: partners_agreement_authorized_officers_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_agreement_authorized_officers_id_seq', 118, true); +SELECT pg_catalog.setval('[[schema]].partners_agreement_authorized_officers_id_seq', 128, true); -- -- Name: partners_agreement_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_agreement_id_seq', 155, true); +SELECT pg_catalog.setval('[[schema]].partners_agreement_id_seq', 156, true); -- -- Name: partners_agreementamendment_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_agreementamendment_id_seq', 5, true); +SELECT pg_catalog.setval('[[schema]].partners_agreementamendment_id_seq', 11, true); -- -- Name: partners_assessment_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_assessment_id_seq', 35, true); +SELECT pg_catalog.setval('[[schema]].partners_assessment_id_seq', 41, true); -- -- Name: partners_corevaluesassessment_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_corevaluesassessment_id_seq', 56, true); +SELECT pg_catalog.setval('[[schema]].partners_corevaluesassessment_id_seq', 60, true); -- @@ -15830,70 +20133,70 @@ SELECT pg_catalog.setval('[[schema]].partners_filetype_id_seq', 75, true); -- Name: partners_intervention_flat_locations_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_intervention_flat_locations_id_seq', 159, true); +SELECT pg_catalog.setval('[[schema]].partners_intervention_flat_locations_id_seq', 300, true); -- -- Name: partners_intervention_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_intervention_id_seq', 105, true); +SELECT pg_catalog.setval('[[schema]].partners_intervention_id_seq', 111, true); -- -- Name: partners_intervention_offices_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_intervention_offices_id_seq', 107, true); +SELECT pg_catalog.setval('[[schema]].partners_intervention_offices_id_seq', 113, true); -- -- Name: partners_intervention_partner_focal_points_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_intervention_partner_focal_points_id_seq', 106, true); +SELECT pg_catalog.setval('[[schema]].partners_intervention_partner_focal_points_id_seq', 124, true); -- -- Name: partners_intervention_sections_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_intervention_sections_id_seq', 76, true); +SELECT pg_catalog.setval('[[schema]].partners_intervention_sections_id_seq', 94, true); -- -- Name: partners_intervention_unicef_focal_points_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_intervention_unicef_focal_points_id_seq', 118, true); +SELECT pg_catalog.setval('[[schema]].partners_intervention_unicef_focal_points_id_seq', 136, true); -- -- Name: partners_interventionamendment_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_interventionamendment_id_seq', 26, true); +SELECT pg_catalog.setval('[[schema]].partners_interventionamendment_id_seq', 41, true); -- -- Name: partners_interventionattachment_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_interventionattachment_id_seq', 475, true); +SELECT pg_catalog.setval('[[schema]].partners_interventionattachment_id_seq', 512, true); -- -- Name: partners_interventionbudget_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_interventionbudget_id_seq', 121, true); +SELECT pg_catalog.setval('[[schema]].partners_interventionbudget_id_seq', 127, true); -- -- Name: partners_interventionplannedvisits_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_interventionplannedvisits_id_seq', 71, true); +SELECT pg_catalog.setval('[[schema]].partners_interventionplannedvisits_id_seq', 76, true); -- @@ -15907,21 +20210,21 @@ SELECT pg_catalog.setval('[[schema]].partners_interventionreportingperiod_id_seq -- Name: partners_interventionresultlink_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_interventionresultlink_id_seq', 62, true); +SELECT pg_catalog.setval('[[schema]].partners_interventionresultlink_id_seq', 91, true); -- -- Name: partners_interventionresultlink_ram_indicators_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_interventionresultlink_ram_indicators_id_seq', 71, true); +SELECT pg_catalog.setval('[[schema]].partners_interventionresultlink_ram_indicators_id_seq', 150, true); -- -- Name: partners_partnerorganization_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_partnerorganization_id_seq', 92, true); +SELECT pg_catalog.setval('[[schema]].partners_partnerorganization_id_seq', 96, true); -- @@ -15935,14 +20238,14 @@ SELECT pg_catalog.setval('[[schema]].partners_partnerplannedvisits_id_seq', 13, -- Name: partners_partnerstaffmember_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_partnerstaffmember_id_seq', 75, true); +SELECT pg_catalog.setval('[[schema]].partners_partnerstaffmember_id_seq', 86, true); -- -- Name: partners_plannedengagement_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_plannedengagement_id_seq', 51, true); +SELECT pg_catalog.setval('[[schema]].partners_plannedengagement_id_seq', 55, true); -- @@ -16005,14 +20308,14 @@ SELECT pg_catalog.setval('[[schema]].psea_assessor_id_seq', 1, false); -- Name: psea_evidence_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].psea_evidence_id_seq', 24, true); +SELECT pg_catalog.setval('[[schema]].psea_evidence_id_seq', 25, true); -- -- Name: psea_indicator_evidences_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].psea_indicator_evidences_id_seq', 23, true); +SELECT pg_catalog.setval('[[schema]].psea_indicator_evidences_id_seq', 25, true); -- @@ -16040,21 +20343,21 @@ SELECT pg_catalog.setval('[[schema]].psea_rating_id_seq', 3, true); -- Name: reports_appliedindicator_disaggregation_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].reports_appliedindicator_disaggregation_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].reports_appliedindicator_disaggregation_id_seq', 935, true); -- -- Name: reports_appliedindicator_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].reports_appliedindicator_id_seq', 1, true); +SELECT pg_catalog.setval('[[schema]].reports_appliedindicator_id_seq', 306, true); -- -- Name: reports_appliedindicator_locations_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].reports_appliedindicator_locations_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].reports_appliedindicator_locations_id_seq', 1602, true); -- @@ -16068,14 +20371,14 @@ SELECT pg_catalog.setval('[[schema]].reports_countryprogramme_id_seq', 34, true) -- Name: reports_disaggregation_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].reports_disaggregation_id_seq', 1, true); +SELECT pg_catalog.setval('[[schema]].reports_disaggregation_id_seq', 8, true); -- -- Name: reports_disaggregationvalue_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].reports_disaggregationvalue_id_seq', 6, true); +SELECT pg_catalog.setval('[[schema]].reports_disaggregationvalue_id_seq', 52, true); -- @@ -16089,14 +20392,14 @@ SELECT pg_catalog.setval('[[schema]].reports_indicator_id_seq', 186, true); -- Name: reports_indicatorblueprint_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].reports_indicatorblueprint_id_seq', 1, true); +SELECT pg_catalog.setval('[[schema]].reports_indicatorblueprint_id_seq', 253, true); -- -- Name: reports_lowerresult_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].reports_lowerresult_id_seq', 3, true); +SELECT pg_catalog.setval('[[schema]].reports_lowerresult_id_seq', 84, true); -- @@ -16117,7 +20420,7 @@ SELECT pg_catalog.setval('[[schema]].reports_quarter_id_seq', 1, false); -- Name: reports_reportingrequirement_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].reports_reportingrequirement_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].reports_reportingrequirement_id_seq', 709, true); -- @@ -16145,7 +20448,7 @@ SELECT pg_catalog.setval('[[schema]].reports_sector_id_seq', 67, true); -- Name: reports_specialreportingrequirement_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].reports_specialreportingrequirement_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].reports_specialreportingrequirement_id_seq', 3, true); -- @@ -16159,7 +20462,7 @@ SELECT pg_catalog.setval('[[schema]].reports_unit_id_seq', 1, false); -- Name: reports_usertenantprofile_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].reports_usertenantprofile_id_seq', 5, true); +SELECT pg_catalog.setval('[[schema]].reports_usertenantprofile_id_seq', 4, true); -- @@ -16201,63 +20504,63 @@ SELECT pg_catalog.setval('[[schema]].t2f_iteneraryitem_id_seq', 48, true); -- Name: t2f_travel_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].t2f_travel_id_seq', 102, true); +SELECT pg_catalog.setval('[[schema]].t2f_travel_id_seq', 111, true); -- -- Name: t2f_travelactivity_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].t2f_travelactivity_id_seq', 113, true); +SELECT pg_catalog.setval('[[schema]].t2f_travelactivity_id_seq', 122, true); -- -- Name: t2f_travelactivity_locations_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].t2f_travelactivity_locations_id_seq', 123, true); +SELECT pg_catalog.setval('[[schema]].t2f_travelactivity_locations_id_seq', 128, true); -- -- Name: t2f_travelactivity_travels_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].t2f_travelactivity_travels_id_seq', 114, true); +SELECT pg_catalog.setval('[[schema]].t2f_travelactivity_travels_id_seq', 123, true); -- -- Name: t2f_travelattachment_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].t2f_travelattachment_id_seq', 131, true); +SELECT pg_catalog.setval('[[schema]].t2f_travelattachment_id_seq', 145, true); -- -- Name: tpm_tpmactivity_offices_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].tpm_tpmactivity_offices_id_seq', 161, true); +SELECT pg_catalog.setval('[[schema]].tpm_tpmactivity_offices_id_seq', 186, true); -- -- Name: tpm_tpmactivity_unicef_focal_points_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].tpm_tpmactivity_unicef_focal_points_id_seq', 181, true); +SELECT pg_catalog.setval('[[schema]].tpm_tpmactivity_unicef_focal_points_id_seq', 203, true); -- -- Name: tpm_tpmvisit_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].tpm_tpmvisit_id_seq', 69, true); +SELECT pg_catalog.setval('[[schema]].tpm_tpmvisit_id_seq', 86, true); -- -- Name: tpm_tpmvisit_tpm_partner_focal_points1_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].tpm_tpmvisit_tpm_partner_focal_points1_id_seq', 59, true); +SELECT pg_catalog.setval('[[schema]].tpm_tpmvisit_tpm_partner_focal_points1_id_seq', 79, true); -- @@ -16271,7 +20574,7 @@ SELECT pg_catalog.setval('[[schema]].tpm_tpmvisitreportrejectcomment_id_seq', 8, -- Name: unicef_attachments_attachment_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].unicef_attachments_attachment_id_seq', 1116, true); +SELECT pg_catalog.setval('[[schema]].unicef_attachments_attachment_id_seq', 1254, true); -- @@ -16299,7 +20602,7 @@ SELECT pg_catalog.setval('[[schema]].unicef_attachments_filetype_id_seq', 63, tr -- Name: unicef_snapshot_activity_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].unicef_snapshot_activity_id_seq', 628, true); +SELECT pg_catalog.setval('[[schema]].unicef_snapshot_activity_id_seq', 1147, true); -- @@ -17414,6 +21717,14 @@ ALTER TABLE ONLY [[schema]].partners_partnerstaffmember ADD CONSTRAINT partners_partnerstaffmember_pkey PRIMARY KEY (id); +-- +-- Name: partners_partnerstaffmember partners_partnerstaffmember_user_id_key; Type: CONSTRAINT; Schema: [[schema]]; Owner: - +-- + +ALTER TABLE ONLY [[schema]].partners_partnerstaffmember + ADD CONSTRAINT partners_partnerstaffmember_user_id_key UNIQUE (user_id); + + -- -- Name: partners_plannedengagement partners_plannedengagement_partner_id_key; Type: CONSTRAINT; Schema: [[schema]]; Owner: - -- @@ -21434,6 +25745,14 @@ ALTER TABLE ONLY [[schema]].partners_partnerplannedvisits ADD CONSTRAINT partners_partner_id_dde73d25_fk_partners_partnerorganization_id FOREIGN KEY (partner_id) REFERENCES [[schema]].partners_partnerorganization(id) DEFERRABLE INITIALLY DEFERRED; +-- +-- Name: partners_partnerstaffmember partners_partnerstaffmember_user_id_08ef0077_fk_auth_user_id; Type: FK CONSTRAINT; Schema: [[schema]]; Owner: - +-- + +ALTER TABLE ONLY [[schema]].partners_partnerstaffmember + ADD CONSTRAINT partners_partnerstaffmember_user_id_08ef0077_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + -- -- Name: psea_answer psea_answer_assessment_id_6aa9c055_fk_psea_assessment_id; Type: FK CONSTRAINT; Schema: [[schema]]; Owner: - -- diff --git a/src/etools_datamart/apps/multitenant/postgresql/tenant3.sql b/src/etools_datamart/apps/multitenant/postgresql/tenant3.sql index 97d675172..b01b8115a 100644 --- a/src/etools_datamart/apps/multitenant/postgresql/tenant3.sql +++ b/src/etools_datamart/apps/multitenant/postgresql/tenant3.sql @@ -3,7 +3,7 @@ -- -- Dumped from database version 9.6.3 --- Dumped by pg_dump version 11.7 +-- Dumped by pg_dump version 12.2 SET statement_timeout = 0; SET lock_timeout = 0; @@ -25,8 +25,6 @@ CREATE SCHEMA [[schema]]; SET default_tablespace = ''; -SET default_with_oids = false; - -- -- Name: action_points_actionpoint; Type: TABLE; Schema: [[schema]]; Owner: - -- @@ -333,7 +331,7 @@ CREATE TABLE [[schema]].audit_engagement ( po_item_id integer, shared_ip_with character varying(20)[] NOT NULL, exchange_rate numeric(20,2) NOT NULL, - currency_of_report character varying(4) + currency_of_report character varying(5) ); @@ -2504,7 +2502,8 @@ CREATE TABLE [[schema]].partners_intervention ( in_amendment boolean NOT NULL, reference_number_year integer, activation_letter character varying(1024), - termination_doc character varying(1024) + termination_doc character varying(1024), + cfei_number character varying(150) ); @@ -2764,7 +2763,7 @@ CREATE TABLE [[schema]].partners_interventionbudget ( total numeric(20,2) NOT NULL, intervention_id integer, total_local numeric(20,2) NOT NULL, - currency character varying(4) NOT NULL + currency character varying(5) NOT NULL ); @@ -2960,7 +2959,11 @@ CREATE TABLE [[schema]].partners_partnerorganization ( basis_for_risk_rating character varying(50) NOT NULL, manually_blocked boolean NOT NULL, outstanding_dct_amount_6_to_9_months_usd numeric(20,2), - outstanding_dct_amount_more_than_9_months_usd numeric(20,2) + outstanding_dct_amount_more_than_9_months_usd numeric(20,2), + highest_risk_rating_name character varying(150) NOT NULL, + highest_risk_rating_type character varying(150) NOT NULL, + psea_assessment_date timestamp with time zone, + sea_risk_rating_name character varying(150) NOT NULL ); @@ -3033,7 +3036,8 @@ CREATE TABLE [[schema]].partners_partnerstaffmember ( active boolean NOT NULL, partner_id integer NOT NULL, created timestamp with time zone NOT NULL, - modified timestamp with time zone NOT NULL + modified timestamp with time zone NOT NULL, + user_id integer ); @@ -5825,48 +5829,196 @@ ALTER TABLE ONLY [[schema]].unicef_snapshot_activity ALTER COLUMN id SET DEFAULT -- Data for Name: action_points_actionpoint; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].action_points_actionpoint VALUES (5, '2019-10-19 09:04:46.770866+00', '2020-04-02 16:57:17.560551+00', 'open', '1) Appuyer la finalisation des documents de la PNV, du Guide et les outils de gestion', '2019-12-31', NULL, 9333, 9333, 9333, 35, NULL, NULL, NULL, 387, 439, 7, NULL, true, 48, NULL, NULL, 'CHD/2019/5/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (6, '2019-10-19 09:24:28.210737+00', '2020-04-02 16:57:17.562831+00', 'open', '2) Appuyer la validation de la PNV, du Guide et les outils de gestion par le CCIA', '2019-11-22', NULL, 9333, 11566, 9333, 29, NULL, NULL, NULL, 387, 439, 7, NULL, true, 49, NULL, NULL, 'CHD/2019/6/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (7, '2019-10-19 22:29:50.9462+00', '2020-04-02 16:57:17.565064+00', 'completed', '1)- Restituer les conclusions de la réunion à l’équipe immunisation UNICEF', '2019-10-21', '2019-10-23 09:39:00.862221+00', 9333, 9333, 9333, 28, NULL, NULL, NULL, 387, 439, 7, NULL, true, 51, NULL, NULL, 'CHD/2019/7/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (8, '2019-10-19 22:32:54.116079+00', '2020-04-02 16:57:17.566904+00', 'completed', '2)- Partager avec la SDV les trois priorités retenues pour le T[[schema]]', '2019-10-21', '2019-10-23 10:40:44.15755+00', 9333, 9333, 9333, 28, NULL, NULL, NULL, 387, 439, 7, NULL, false, 51, NULL, NULL, 'CHD/2019/8/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (9, '2019-10-19 22:35:46.974589+00', '2020-04-02 16:57:17.568692+00', 'open', '3)- Appuyer la mise en œuvre des priorités retenues', '2020-12-31', NULL, 9333, 9333, 9333, 28, NULL, NULL, NULL, 387, 439, 7, NULL, false, 51, NULL, NULL, 'CHD/2019/9/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (10, '2019-10-24 15:38:03.4237+00', '2020-04-02 16:57:17.570582+00', 'open', '2.Assurer le suivi des activités restantes auprès de la DPAS Mandoul Angele /Motoyam/Francoise Novembre 2019', '2019-12-31', NULL, 13372, 20384, 13372, 22, NULL, NULL, NULL, 387, 311, 10, NULL, true, 8, NULL, NULL, 'CHD/2019/10/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (11, '2019-10-25 15:11:20.924652+00', '2020-04-02 16:57:17.572482+00', 'open', 'Appuyer les délégations du Batha et Salamat à mettre en place et le renforcement des capacités des mécanismes communautaires de protection aux fins de pallier l’insuffisance des ressources humaines dans les', '2020-01-01', NULL, 22244, 9109, 22244, 51, NULL, NULL, NULL, 387, 420, 10, NULL, true, 13, NULL, NULL, 'CHD/2019/11/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (12, '2019-10-28 14:09:52.316755+00', '2020-04-02 16:57:17.574386+00', 'completed', 'Formation etools module assurance qualite', '2019-10-20', '2019-11-12 15:37:48.996572+00', 14616, 14616, 14616, NULL, NULL, NULL, 87, 390, NULL, 9, NULL, true, NULL, NULL, NULL, 'CHD/2019/12/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (13, '2019-10-28 14:17:52.865193+00', '2020-04-02 16:57:17.576329+00', 'open', 'Participation a la formation etools module assurance qualite', '2019-10-20', NULL, 14616, 14616, 14616, NULL, NULL, NULL, 87, 390, NULL, 9, NULL, true, NULL, NULL, NULL, 'CHD/2019/13/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (14, '2019-10-28 16:13:56.084368+00', '2020-04-02 16:57:17.578095+00', 'open', 'Mettre a la disposition des centres de sante des UNA des fiches de suivi individuel', '2019-11-30', NULL, 173681, 173681, 173681, 55, NULL, NULL, NULL, 390, 42, 7, NULL, false, 82, NULL, NULL, 'CHD/2019/14/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (15, '2019-10-28 16:16:22.403428+00', '2020-04-02 16:57:17.579861+00', 'open', 'aider la delegation sanitaire provinciale du Salamat a elaborer le formulaire d''audit des deces dans les UNT', '2019-11-30', NULL, 173681, 173681, 173681, 55, NULL, NULL, NULL, 390, 42, 7, NULL, false, 82, NULL, NULL, 'CHD/2019/15/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (16, '2019-10-29 10:53:52.444707+00', '2020-04-02 16:57:17.581588+00', 'open', '1. Convenir d’augmenter le nombre des équipes mobiles à 5 pour répondre efficacement à la stratégie bouclier dans le temps +INSERT INTO [[schema]].action_points_actionpoint VALUES (60, '2019-12-07 09:44:56.788137+00', '2019-12-07 09:44:56.903378+00', 'open', 'Appuyer le DS d’Abougoudam à acquérir un tricycle en vue de faciliter les déplacements des équipes vers les villages environnant en stratégie avancée', '2020-01-31', NULL, 20819, 9329, 20819, 46, NULL, NULL, NULL, 388, NULL, 7, NULL, false, 42, NULL, NULL, 'CHD/2019/60/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (63, '2019-12-11 07:34:41.271701+00', '2020-03-17 14:09:48.21208+00', 'completed', 'Faire le suivi avec les Sections / Unités afin de contacter tous les partenaires de la société civile nationale à s’enregistrer sur la Portail des Partenaires des Nations Unies (UNPP)', '2020-02-29', '2020-03-17 14:09:48.212118+00', 4606, 4606, 4606, 14, NULL, NULL, NULL, 387, 74, 11, NULL, false, 73, NULL, NULL, 'CHD/2019/63/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (71, '2019-12-21 10:36:09.490068+00', '2019-12-21 10:36:09.734756+00', 'open', '- Il a été demandé au Délégué et a l’ASD de faire la situation des intrants, assurer +- La prochaine mission sur le terrain va s’assurer de la prise en compte de ces mesures', '2019-12-31', NULL, 9984, 13512, 9984, 37, NULL, NULL, NULL, 391, 450, 8, NULL, true, 149, NULL, NULL, 'CHD/2019/71/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (72, '2019-12-21 12:49:48.026325+00', '2019-12-21 12:49:48.791916+00', 'open', '3. Recommandations Responsable Echéance +Documenter l’approche du CFC/RTM ainsi que les leçons apprises avec une meilleure participation des autres sections de l’UNICEF. Chef CSD/BZ Moundou D’ici 31/12/2019 +Accélérer la mise en place d’une UNA dans les centres de santé de Benoé et Krim Krim pour la prise en charge des enfants malnutris dépistés par les ASC dans leur communauté BZ-Moundou/ DSP LOC/DNTA D’ici Nov. 2019 +La demande étant fortement suscitée, renforcer l’offre de services de qualité en appuyer la DSP/LOC, les 2 districts et les 2 centres de santé à adopter un système efficace d’approvisionnement en vaccins, cartes de vaccination, médicaments essentiels et en registre d’enregistrement des naissances ainsi que l’organisation des services. Accélérer la mise à disposition des réfrigérateurs, du matériel médical et des motos de supervision BZ-Moundou/ Chef CSD D’ici Nov. 2019', '2019-12-31', NULL, 9984, 12132, 9984, 21, NULL, NULL, NULL, 387, 187, 11, NULL, false, 87, NULL, NULL, 'CHD/2019/72/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (75, '2019-12-26 16:36:39.750233+00', '2019-12-26 16:36:39.880502+00', 'open', 'fournir les outils wash in school et pour la sensibilisation au partenaires APDI et CRT', '2020-01-06', NULL, 13512, 9032, 13512, 41, NULL, NULL, NULL, 387, 444, 8, NULL, true, 186, NULL, NULL, 'CHD/2019/75/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (77, '2019-12-30 15:46:46.632895+00', '2019-12-30 15:46:46.779302+00', 'open', 'Participer à la restitution que les partenaires de la santé souhaitent faire à la direction générale dudit Ministère.', '2020-01-31', NULL, 5056, 5056, 5056, 23, NULL, NULL, NULL, 387, 81, 2, NULL, false, 106, NULL, NULL, 'CHD/2019/77/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (80, '2019-12-31 14:29:51.436301+00', '2019-12-31 14:29:51.574916+00', 'open', 'integration de l''aspect de la protection transversale dans mes planifications', '2020-01-30', NULL, 13512, 13512, 13512, 39, NULL, NULL, NULL, 391, NULL, 8, NULL, false, 167, NULL, NULL, 'CHD/2019/80/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (87, '2020-01-02 13:12:16.777588+00', '2020-01-02 13:12:17.259362+00', 'open', 'Faire le suivi de l’atelier de mobilisation des ressources', '2020-03-31', NULL, 8721, 177097, 8721, 13, NULL, NULL, NULL, 387, 74, 11, NULL, false, 191, NULL, NULL, 'CHD/2020/87/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (88, '2020-01-07 07:30:38.925633+00', '2020-01-07 07:30:39.226554+00', 'open', 'Suivre l’accélération de la sensibilisation de masse 2e phase qui est une activité du T5 alors logiquement doit être à la t4 mais budgétiser sur T5', '2020-01-30', NULL, 5064, 14239, 5064, 40, NULL, NULL, NULL, 387, 104, 8, NULL, false, 153, NULL, NULL, 'CHD/2020/88/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (74, '2019-12-23 14:04:04.495972+00', '2020-03-02 09:41:18.776284+00', 'open', 'Développer des accords de longue durée avec quelques radios et télévisions pour la production et la diffusion des émissions', '2020-03-30', NULL, 12058, 5056, 12058, 23, NULL, NULL, NULL, 387, 55, 2, NULL, false, 179, NULL, NULL, 'CHD/2019/74/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (85, '2020-01-02 10:56:23.249669+00', '2020-01-07 09:28:39.005909+00', 'completed', '1. Signer un memo sur les couts unitaires pour application par les sections et unités de l’UNICEF', '2020-01-15', '2020-01-07 09:28:39.005965+00', 8721, 3701, 8721, 13, NULL, NULL, NULL, 387, 74, 12, NULL, true, 191, NULL, NULL, 'CHD/2020/85/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (36, '2019-11-08 13:09:40.066402+00', '2020-01-30 09:40:02.477748+00', 'completed', 'Appuyer le DS de Laramanaye à finaliser la requête permettant de relancer les activités communautaires', '2019-11-30', '2020-01-30 09:40:02.477775+00', 20819, 13031, 20819, 47, NULL, NULL, NULL, 391, NULL, 7, NULL, true, 107, NULL, NULL, 'CHD/2019/36/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (138, '2020-03-19 14:22:02.048745+00', '2020-03-19 14:22:02.222214+00', 'open', 'Suivre avec le bureau de zone d’Abéché la liquidation des DCT de la revue annuelle 2019 du partenaire', '2020-04-30', NULL, 4606, 4606, 4606, 19, NULL, NULL, NULL, 387, 335, 11, NULL, true, 262, NULL, NULL, 'CHD/2020/138/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (89, '2020-01-20 11:23:49.016099+00', '2020-01-20 11:48:41.093403+00', 'completed', '- Contacter Tigo pour la réactivation des téléphones des lanceurs de SMS et de superviseurs', '2020-01-20', '2020-01-20 11:48:41.09343+00', 14700, 14700, 14700, 22, NULL, NULL, NULL, 387, 302, 3, NULL, true, 196, NULL, NULL, 'CHD/2020/89/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (95, '2020-02-07 11:40:02.50296+00', '2020-02-07 11:40:02.799148+00', 'open', '4.Veiller à l’assurance qualité des données communautaires en participant aux séances mensuelles de validation des données communautaires dans les 2 ZR afin de récupérer ces données et celles des centres de santé et les transmettre au niveau central pour analyse complémentaire et orientation.', '2020-03-14', NULL, 12132, 12528, 12132, 14, NULL, NULL, NULL, 391, 187, 3, NULL, true, 193, NULL, NULL, 'CHD/2020/95/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (98, '2020-02-19 11:22:15.076789+00', '2020-02-19 11:22:15.268066+00', 'open', 'Voir la possibilité de mutualisation des ressources entre Edutrac et la plateforme de l’OTFIP', '2020-03-31', NULL, 14363, 5074, 14363, 15, NULL, 5, NULL, 387, 393, 11, NULL, false, 192, NULL, NULL, 'CHD/2020/98/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (81, '2019-12-31 21:24:53.079242+00', '2020-02-09 18:53:55.751602+00', 'completed', 'Relancer la mise en place d’une UNT a Pala', '2020-01-31', '2020-02-09 18:53:55.751625+00', 9984, 11672, 9984, 55, NULL, NULL, NULL, 387, 238, 7, NULL, true, 188, NULL, NULL, 'CHD/2019/81/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (99, '2020-02-21 12:26:39.144712+00', '2020-02-21 12:26:39.27485+00', 'open', 'Retravailler les PPA au Niveau du BZ', '2020-02-05', NULL, 9984, 9984, 9984, NULL, NULL, NULL, NULL, 391, NULL, 3, NULL, true, 200, NULL, NULL, 'CHD/2020/99/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (136, '2020-03-16 11:00:18.961999+00', '2020-04-09 15:17:43.013474+00', 'completed', 'Faire le suivi des activités d’INTERSOS pour s’assurer que cela est conforme à l’accord de partenariat', '2019-12-31', '2020-04-09 15:17:43.013497+00', 14006, 13372, 14006, NULL, NULL, NULL, NULL, 391, NULL, 10, NULL, false, 17, NULL, NULL, 'CHD/2020/136/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (104, '2020-02-22 15:06:57.758469+00', '2020-02-22 15:06:57.934757+00', 'open', 'Assurer le plaidoyer pour la dotation du DS de Laramanaye en chaine de froid', '2021-12-31', NULL, 13031, 13031, 13031, 28, NULL, NULL, NULL, 391, 48, 7, NULL, true, 182, NULL, NULL, 'CHD/2020/104/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (105, '2020-02-24 14:33:21.3477+00', '2020-02-24 14:33:21.467922+00', 'open', '1. Suivre avec la Coordination le reversement des perdiems des cadres qui n’ont pas effectué la mission dans le Batha.', '2020-03-15', NULL, 5052, 5052, 5052, 33, NULL, NULL, NULL, 387, 125, 9, NULL, false, 222, NULL, NULL, 'CHD/2020/105/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (117, '2020-03-02 09:59:03.732326+00', '2020-03-02 10:17:05.583214+00', 'open', 'Mettre a la disposition des JRC des 10 regions 10 enregistreurs', '2020-03-30', NULL, 5056, 5056, 5056, 36, NULL, NULL, NULL, 387, 448, 2, NULL, false, 310, NULL, NULL, 'CHD/2020/117/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (61, '2019-12-09 11:09:05.293583+00', '2020-02-25 11:22:42.897723+00', 'completed', 'Finaliser la cartographie des interventions en protection sociale au niveau des provinces et les partager avec les participants et le ministère en charge du plan', '2019-12-16', '2020-02-25 11:22:42.897747+00', 5074, 5074, 5074, 16, NULL, NULL, NULL, 387, 74, 11, NULL, false, 151, NULL, NULL, 'CHD/2019/61/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (111, '2020-02-26 08:38:31.704339+00', '2020-02-26 08:46:26.226244+00', 'completed', '1. Organiser dans un bref délai la réunion de restitution de l’atelier de planification 2020-2021', '2020-02-03', '2020-02-26 08:46:26.226273+00', 13031, 13031, 13031, 19, NULL, NULL, NULL, 391, NULL, 7, NULL, false, 248, NULL, NULL, 'CHD/2020/111/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (114, '2020-02-26 09:00:28.087108+00', '2020-02-26 09:00:28.300013+00', 'open', 'Assurer la mise en œuvre et le suivi des recommandations issues des travaux du groupe sur le PCA WVI_UNICEF', '2019-12-31', NULL, 13031, 12528, 13031, NULL, NULL, NULL, NULL, 391, 435, 7, NULL, false, 112, NULL, NULL, 'CHD/2020/114/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (131, '2020-03-16 08:44:05.417788+00', '2020-03-16 08:44:05.621804+00', 'open', 'Former les autres collegues sur etools module Trip management', '2019-10-30', NULL, 14616, 14616, 14616, 14, NULL, NULL, NULL, 390, NULL, 9, NULL, true, 66, NULL, NULL, 'CHD/2020/131/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (102, '2020-02-21 13:46:23.019132+00', '2020-04-09 06:55:38.967948+00', 'open', 'Faire le suivi avec la Section Protection que le DCT de cette activité soit liquider rapidement', '2020-03-31', NULL, 4606, 4606, 4606, 50, NULL, NULL, NULL, 387, 180, 11, NULL, false, 28, NULL, NULL, 'CHD/2020/102/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (108, '2020-02-26 08:25:11.531027+00', '2020-03-31 14:47:20.764092+00', 'completed', 'Appuyer la finalisation du rapport global de la mission avec l’équipe de OCHA', '2019-12-15', '2020-03-31 14:47:20.764119+00', 13031, 13031, 13031, 32, NULL, NULL, NULL, 391, NULL, 7, NULL, true, 152, NULL, NULL, 'CHD/2020/108/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (58, '2019-12-07 09:42:02.763764+00', '2019-12-07 09:42:02.894582+00', 'open', 'Appuyer la Maison de Culture Ahmat Pecos d’Abeche à renforcer la planification et le reporting des interventions communautaires via les pairs éducateurs', '2019-12-31', NULL, 20819, 24090, 20819, 47, NULL, NULL, NULL, 387, 437, 7, NULL, true, 42, NULL, NULL, 'CHD/2019/58/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (52, '2019-11-20 12:19:37.485678+00', '2019-12-05 17:00:44.618746+00', 'open', '2. Mettre en œuvre le plan d’action de soin personnel', '2019-11-30', NULL, 5069, 9109, 5069, 51, NULL, NULL, NULL, 387, NULL, 10, NULL, false, 29, NULL, NULL, 'CHD/2019/52/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (62, '2019-12-09 11:10:45.967998+00', '2019-12-09 11:10:46.321291+00', 'open', 'Sur la base des résultats de l’évaluation de la formation et des orientations issues de la révision de la SNPS, recadrer en termes de contenu et de participants + les prochaines formations en protection sociale au niveau local', '2020-02-29', NULL, 5074, 5074, 5074, 16, NULL, NULL, NULL, 387, 74, 11, NULL, false, 151, NULL, NULL, 'CHD/2019/62/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (73, '2019-12-21 12:52:03.492326+00', '2019-12-21 12:52:03.813616+00', 'open', 'Documenter l’approche du CFC/RTM ainsi que les leçons apprises avec une meilleure participation des autres sections de l’UNICEF.', '2019-12-31', NULL, 9984, 21654, 9984, NULL, NULL, NULL, NULL, 391, 187, 7, NULL, false, 87, NULL, NULL, 'CHD/2019/73/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (76, '2019-12-26 16:55:12.054129+00', '2019-12-26 16:55:12.168903+00', 'open', 'complement du dispositifs de lavage de mains', '2020-01-17', NULL, 13512, 9032, 13512, 38, NULL, NULL, NULL, 387, 450, 8, NULL, true, 150, NULL, NULL, 'CHD/2019/76/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (78, '2019-12-30 15:48:00.490051+00', '2019-12-30 15:48:00.879503+00', 'open', 'Elargir les échanges en techniques d’accueil à tous les niveaux des structures sanitaires tout en impliquant les leaders religieux et traditionnels.', '2020-02-29', NULL, 5056, 5056, 5056, 23, NULL, NULL, NULL, 387, 81, 2, NULL, false, 106, NULL, NULL, 'CHD/2019/78/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (64, '2019-12-11 07:35:42.820245+00', '2019-12-31 09:39:22.17692+00', 'completed', 'Faire le suivi pour que le MEPD puisse justifier avant le 31 décembre 2019, les dépenses liées à la formation en HACT', '2019-12-30', '2019-12-31 09:39:22.176963+00', 4606, 4606, 4606, 14, NULL, NULL, NULL, 387, 74, 11, NULL, false, 73, NULL, NULL, 'CHD/2019/64/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (82, '2019-12-31 21:28:30.21483+00', '2019-12-31 21:28:30.330364+00', 'open', 'Relancer la mise en place d’une UNT a Pala', '2019-12-31', NULL, 9984, 12528, 9984, 22, NULL, NULL, NULL, 391, 206, 7, NULL, false, 188, NULL, NULL, 'CHD/2019/82/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (86, '2020-01-02 10:57:27.644156+00', '2020-01-02 11:05:40.773142+00', 'open', '2. Accompagner la finalisation du rapport de la revue et la révision du PAP', '2020-01-10', NULL, 8721, 8721, 8721, 13, NULL, NULL, NULL, 387, 74, 11, NULL, true, 191, NULL, NULL, 'CHD/2020/86/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (93, '2020-02-07 11:37:47.742629+00', '2020-02-07 11:37:47.884798+00', 'open', '2.Accélérer le processus d’immatriculation des motos et la remise en place des équipements médico techniques et moyens roulants afin d’améliorer l’offre de services dans les 2 zones de responsabilité', '2020-02-15', NULL, 12132, 11344, 12132, 14, NULL, NULL, NULL, 387, 187, 7, NULL, true, 193, NULL, NULL, 'CHD/2020/93/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (96, '2020-02-07 11:41:32.822591+00', '2020-02-07 11:41:32.929192+00', 'open', '5. Appuyer la mise en place des plateformes communautaires multisectorielles dans les communautés nouvellement couvertes y compris leur formation sur leur rôle, fonctionnement et l’analyse mensuelles des goulots d’étranglement à l’utilisation des services et prendre des actions correctrices locales.', '2020-03-31', NULL, 12132, 12528, 12132, 14, NULL, NULL, NULL, 391, 187, 3, NULL, true, 193, NULL, NULL, 'CHD/2020/96/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (100, '2020-02-21 13:40:05.27568+00', '2020-04-09 06:50:44.541077+00', 'open', 'Faire le suivi avec le Section Protection pour que le DCT de cette activité soit liquidé rapidement', '2020-02-29', NULL, 4606, 4606, 4606, 50, NULL, NULL, NULL, 387, 315, 11, NULL, true, 27, NULL, NULL, 'CHD/2020/100/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (5, '2019-10-19 09:04:46.770866+00', '2019-12-05 17:00:44.397664+00', 'open', '1) Appuyer la finalisation des documents de la PNV, du Guide et les outils de gestion', '2019-12-31', NULL, 9333, 9333, 9333, 35, NULL, NULL, NULL, 387, 439, 7, NULL, true, 48, NULL, NULL, 'CHD/2019/5/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (6, '2019-10-19 09:24:28.210737+00', '2019-12-05 17:00:44.404128+00', 'open', '2) Appuyer la validation de la PNV, du Guide et les outils de gestion par le CCIA', '2019-11-22', NULL, 9333, 11566, 9333, 29, NULL, NULL, NULL, 387, 439, 7, NULL, true, 49, NULL, NULL, 'CHD/2019/6/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (7, '2019-10-19 22:29:50.9462+00', '2019-12-05 17:00:44.408479+00', 'completed', '1)- Restituer les conclusions de la réunion à l’équipe immunisation UNICEF', '2019-10-21', '2019-10-23 09:39:00.862221+00', 9333, 9333, 9333, 28, NULL, NULL, NULL, 387, 439, 7, NULL, true, 51, NULL, NULL, 'CHD/2019/7/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (8, '2019-10-19 22:32:54.116079+00', '2019-12-05 17:00:44.412729+00', 'completed', '2)- Partager avec la SDV les trois priorités retenues pour le T[[schema]]', '2019-10-21', '2019-10-23 10:40:44.15755+00', 9333, 9333, 9333, 28, NULL, NULL, NULL, 387, 439, 7, NULL, false, 51, NULL, NULL, 'CHD/2019/8/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (9, '2019-10-19 22:35:46.974589+00', '2019-12-05 17:00:44.417222+00', 'open', '3)- Appuyer la mise en œuvre des priorités retenues', '2020-12-31', NULL, 9333, 9333, 9333, 28, NULL, NULL, NULL, 387, 439, 7, NULL, false, 51, NULL, NULL, 'CHD/2019/9/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (141, '2020-03-20 13:12:56.577626+00', '2020-03-20 13:12:56.747077+00', 'open', 'Envoyer les vélos prévus pour les ASC et les motos .les animateurs communautaires', '2020-04-15', NULL, 11859, 11344, 11859, 32, NULL, NULL, NULL, 387, 187, 7, NULL, true, 315, NULL, NULL, 'CHD/2020/141/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (106, '2020-02-24 14:34:35.405931+00', '2020-02-24 14:34:35.605852+00', 'open', 'Récupérer la liste des écoles pilotes avec ProQEB afin de lancer le processus d’appel d’offres pour les constructions scolaires.', '2020-03-15', NULL, 5052, 5052, 5052, 33, NULL, NULL, NULL, 387, 125, 9, NULL, false, 222, NULL, NULL, 'CHD/2020/106/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (10, '2019-10-24 15:38:03.4237+00', '2019-12-05 17:00:44.423347+00', 'open', '2.Assurer le suivi des activités restantes auprès de la DPAS Mandoul Angele /Motoyam/Francoise Novembre 2019', '2019-12-31', NULL, 13372, 20384, 13372, 22, NULL, NULL, NULL, 387, 311, 10, NULL, true, 8, NULL, NULL, 'CHD/2019/10/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (11, '2019-10-25 15:11:20.924652+00', '2019-12-05 17:00:44.428468+00', 'open', 'Appuyer les délégations du Batha et Salamat à mettre en place et le renforcement des capacités des mécanismes communautaires de protection aux fins de pallier l’insuffisance des ressources humaines dans les', '2020-01-01', NULL, 22244, 9109, 22244, 51, NULL, NULL, NULL, 387, 420, 10, NULL, true, 13, NULL, NULL, 'CHD/2019/11/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (12, '2019-10-28 14:09:52.316755+00', '2019-12-05 17:00:44.432709+00', 'completed', 'Formation etools module assurance qualite', '2019-10-20', '2019-11-12 15:37:48.996572+00', 14616, 14616, 14616, NULL, NULL, NULL, 87, 390, NULL, 9, NULL, true, NULL, NULL, NULL, 'CHD/2019/12/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (13, '2019-10-28 14:17:52.865193+00', '2019-12-05 17:00:44.437071+00', 'open', 'Participation a la formation etools module assurance qualite', '2019-10-20', NULL, 14616, 14616, 14616, NULL, NULL, NULL, 87, 390, NULL, 9, NULL, true, NULL, NULL, NULL, 'CHD/2019/13/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (103, '2020-02-21 13:47:00.136271+00', '2020-04-09 06:57:42.535644+00', 'open', 'Faire une autre formation en HACT aux partenaires qui étaient absent', '2020-05-31', NULL, 4606, 4606, 4606, 50, NULL, NULL, NULL, 387, 180, 11, NULL, false, 28, NULL, NULL, 'CHD/2020/103/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (15, '2019-10-28 16:16:22.403428+00', '2019-12-05 17:00:44.445235+00', 'open', 'aider la delegation sanitaire provinciale du Salamat a elaborer le formulaire d''audit des deces dans les UNT', '2019-11-30', NULL, 173681, 173681, 173681, 55, NULL, NULL, NULL, 390, 42, 7, NULL, false, 82, NULL, NULL, 'CHD/2019/15/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (16, '2019-10-29 10:53:52.444707+00', '2019-12-05 17:00:44.450067+00', 'open', '1. Convenir d’augmenter le nombre des équipes mobiles à 5 pour répondre efficacement à la stratégie bouclier dans le temps 2. Amender le PCA afin de révision le budget pour louer le véhicule pour 30 jours 1. Acheminer les intrants sur Pala immédiatement', '2019-10-31', NULL, 9032, 9032, 9032, 38, NULL, NULL, NULL, 387, 450, 8, NULL, true, 70, NULL, NULL, 'CHD/2019/16/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (17, '2019-10-30 10:21:03.693564+00', '2020-04-02 16:57:17.583371+00', 'open', '1. Renforcer les activités de supervision formative des prestataires et des ASC et celles d’encadrement des deux (02) mobilisateurs communautaires au profit des activités communautaires', '2019-10-31', NULL, 12132, 11859, 12132, 29, NULL, NULL, 22, 391, 187, 3, NULL, true, NULL, NULL, NULL, 'CHD/2019/17/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (18, '2019-10-30 10:25:29.550795+00', '2020-04-02 16:57:17.58511+00', 'completed', '2. Concevoir et mettre à la disposition des ASC un outil d’analyse et de présentation mensuelle des données communautaires (performances/indicateurs clés et leurs écarts) aux réunions des plateformes communautaires pour la résolution des problèmes constatés.', '2019-10-31', '2019-10-30 10:26:52.226204+00', 12132, 12132, 12132, 29, NULL, NULL, 12, 387, 187, 11, NULL, true, NULL, NULL, NULL, 'CHD/2019/18/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (19, '2019-10-30 10:28:28.967413+00', '2020-04-02 16:57:17.587004+00', 'open', '3. Documenter l’approche du CFC/RTM ainsi que les leçons apprises avec une meilleure participation des autres sections de l’UNICEF', '2019-12-31', NULL, 12132, 11647, 12132, 29, NULL, NULL, 12, 387, 187, 7, NULL, false, NULL, NULL, NULL, 'CHD/2019/19/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (20, '2019-10-30 10:30:03.037536+00', '2020-04-02 16:57:17.588794+00', 'open', 'Accélérer la mise en place d’une UNA dans les centres de santé de Bénoye et Krim-Krim pour la prise en charge des enfants malnutris dépistés par les ASC dans leur communauté', '2019-11-29', NULL, 12132, 12528, 12132, 29, NULL, NULL, 22, 391, 187, 3, NULL, true, NULL, NULL, NULL, 'CHD/2019/20/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (21, '2019-10-30 10:31:59.814884+00', '2020-04-02 16:57:17.590597+00', 'open', 'Renforcer l’offre de services de qualité en appuyer la DSP/LOC, les 2 districts et les 2 centres de santé à adopter un système efficace d’approvisionnement en vaccins, cartes de vaccination, médicaments essentiels et en registre d’enregistrement des naissances ainsi que l’organisation des services', '2019-11-29', NULL, 12132, 11859, 12132, 29, NULL, NULL, 22, 391, 187, 3, NULL, false, NULL, NULL, NULL, 'CHD/2019/21/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (22, '2019-10-30 10:33:28.000617+00', '2020-04-02 16:57:17.592334+00', 'open', 'Accélérer la mise à disposition des réfrigérateurs, du matériel médical et des motos de supervision', '2019-11-29', NULL, 12132, 11647, 12132, 29, NULL, NULL, 12, 387, 187, 7, NULL, true, NULL, NULL, NULL, 'CHD/2019/22/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (23, '2019-11-04 07:17:25.193552+00', '2020-04-02 16:57:17.594089+00', 'open', '1. Faire participer le point focal PRU des Bureaux de zone de Moundou et de Bol à l’atelier de formation des formateurs', '2019-11-19', NULL, 14700, 13846, 14700, 22, NULL, NULL, NULL, 387, NULL, 3, NULL, false, 79, NULL, NULL, 'CHD/2019/23/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (24, '2019-11-04 07:18:41.043223+00', '2020-04-02 16:57:17.595802+00', 'open', '2. Assister à la désignation des lanceurs de SMS dans les localités identifiées compte tenu de difficultés logistiques du CPA', '2019-11-30', NULL, 14700, 14362, 14700, 22, NULL, NULL, NULL, 387, NULL, 2, NULL, false, 79, NULL, NULL, 'CHD/2019/24/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (25, '2019-11-04 07:19:45.939626+00', '2020-04-02 16:57:17.597531+00', 'open', '3. Former les lanceurs de SMS à l’utilisation du protocole d’envoi des messages et de la promotion et de recrutement de U-reporters', '2019-11-30', NULL, 14700, 14362, 14700, 22, NULL, NULL, NULL, 387, NULL, 2, NULL, false, 79, NULL, NULL, 'CHD/2019/25/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (26, '2019-11-04 07:20:37.790156+00', '2020-04-02 16:57:17.599248+00', 'open', '4. Former les Points focaux SAP du CPA à l’utilisation de la plateforme technique du SAP', '2019-11-30', NULL, 14700, 14362, 14700, 22, NULL, NULL, NULL, 387, NULL, 2, NULL, false, 79, NULL, NULL, 'CHD/2019/26/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (27, '2019-11-05 07:53:44.274766+00', '2020-04-02 16:57:17.600989+00', 'completed', 'Assurer le suivi de la finalisation avec l''equipe restreinte de tous les documents relatifs a l ''evaluation du Programme', '2019-10-31', '2019-11-05 08:13:40.794958+00', 13031, 13031, 13031, 35, NULL, NULL, NULL, 391, NULL, 7, NULL, false, 38, NULL, NULL, 'CHD/2019/27/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (28, '2019-11-05 08:04:00.125325+00', '2020-04-02 16:57:17.602747+00', 'open', 'Traitement et paiement de la requête de financement de la campagne CPS 2019', '2019-11-15', NULL, 21654, 15628, 21654, 35, NULL, NULL, NULL, 387, 174, 12, NULL, true, 19, NULL, NULL, 'CHD/2019/28/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (29, '2019-11-05 08:10:02.412986+00', '2020-04-02 16:57:17.604474+00', 'open', 'Appuyer la DSP du Guera à faire un point sur la distribution et la gestion des intrants CPS 2019 dans tous les districts sanitaires', '2019-11-30', NULL, 21654, 10707, 21654, NULL, NULL, NULL, NULL, 390, NULL, 7, NULL, true, 19, NULL, NULL, 'CHD/2019/29/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (30, '2019-11-05 14:41:32.706034+00', '2020-04-02 16:57:17.606192+00', 'open', 'appuyer le partenaire pour finaliser et envoyer le rapport de liquidation', '2019-10-30', NULL, 13512, 13512, 13512, 37, NULL, NULL, NULL, 391, 447, 8, NULL, true, 85, NULL, NULL, 'CHD/2019/30/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (31, '2019-11-05 14:46:17.102512+00', '2020-04-02 16:57:17.607934+00', 'open', 'suivi pour la livraison des intrants aux partenaires APDI et CRT', '2019-11-15', NULL, 13512, 9032, 13512, 37, NULL, NULL, NULL, 387, 447, 8, NULL, false, 85, NULL, NULL, 'CHD/2019/31/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (32, '2019-11-05 14:58:46.420001+00', '2020-04-02 16:57:17.609747+00', 'open', 'reformuler les besoins dans ce projet en fonction des realites de terrain', '2019-11-30', NULL, 13512, 14044, 13512, 37, NULL, NULL, NULL, 387, 418, 9, NULL, true, 84, NULL, NULL, 'CHD/2019/32/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (33, '2019-11-07 15:10:56.424581+00', '2020-04-02 16:57:17.611643+00', 'open', 'Organiser dans un bref delai une restitution sur l''atelier aux collegues de Bureau de Moundou', '2019-11-28', NULL, 11068, 11068, 11068, 16, NULL, NULL, NULL, 391, NULL, 12, NULL, false, 67, NULL, NULL, 'CHD/2019/33/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (34, '2019-11-08 12:30:50.236969+00', '2020-04-02 16:57:17.613397+00', 'open', 'Assurer le coaching des gestionnaires de DS de Mandoul lors de mission de supervision sur le HACT en vue d''ameliorer la qualite des pieces justificatives', '2019-12-31', NULL, 13031, 13031, 13031, 46, NULL, NULL, NULL, 391, 41, 7, NULL, false, 111, NULL, NULL, 'CHD/2019/34/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (35, '2019-11-08 12:34:12.655988+00', '2020-04-02 16:57:17.61514+00', 'open', 'Assurer le suivi de prelevement des enfants nes des meres seropositives pour le diagnostic precoce rencontres a l''hopital et dans les 2 autres CS visites', '2019-11-30', NULL, 13031, 13031, 13031, 46, NULL, NULL, NULL, 391, 41, 7, NULL, false, 111, NULL, NULL, 'CHD/2019/35/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (36, '2019-11-08 13:09:40.066402+00', '2020-04-02 16:57:17.616962+00', 'open', 'Appuyer la Maison de Culture Ahmat Pecos d’Abeche à renforcer la planification et le reporting des interventions communautaires via les pairs éducateurs', '2019-11-30', NULL, 20819, 9329, 20819, 47, NULL, NULL, NULL, 388, NULL, 7, NULL, true, 107, NULL, NULL, 'CHD/2019/36/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (37, '2019-11-08 13:11:36.216284+00', '2020-04-02 16:57:17.618764+00', 'open', 'Appuyer le DS d’Abougoudam à intégrer dans la prochaine requête, l’appui aux interventions des relais communautaires et la formation de l’Union des organisations de femmes d’Abougoudam', '2019-12-30', NULL, 20819, 9329, 20819, 47, NULL, NULL, NULL, 388, 437, 7, NULL, false, 107, NULL, NULL, 'CHD/2019/37/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (38, '2019-11-08 13:12:41.007559+00', '2020-04-02 16:57:17.620573+00', 'open', 'Appuyer le DS d’Abougoudam à acquérir un tricycle en vue de faciliter les déplacements des équipes vers les villages environnant en stratégie avancée', '2019-12-30', NULL, 20819, 9329, 20819, 45, NULL, NULL, NULL, 388, 437, 7, NULL, false, 107, NULL, NULL, 'CHD/2019/38/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (39, '2019-11-12 08:38:13.883985+00', '2020-04-02 16:57:17.622576+00', 'completed', 'Mission de supervision de distribution de kits scolaires', '2019-10-24', '2019-11-12 14:49:39.144639+00', 14616, 14616, 14616, 12, NULL, NULL, 55, 390, NULL, 9, NULL, true, NULL, NULL, NULL, 'CHD/2019/39/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (40, '2019-11-12 09:06:57.851511+00', '2020-04-02 16:57:17.624619+00', 'completed', 'mission de supervision de distribution de kits scolaires', '2019-10-24', '2019-11-12 14:35:20.019347+00', 14616, 14616, 14616, 12, NULL, NULL, 55, 390, NULL, 9, NULL, true, NULL, NULL, NULL, 'CHD/2019/40/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (41, '2019-11-12 15:28:31.682852+00', '2020-04-02 16:57:17.626642+00', 'open', 'Mobiliser les APE pour qu’elles mobilisent les communautes à soutenir la scolarisation des enfants', '2019-10-24', NULL, 14616, 14616, 14616, 12, NULL, NULL, 55, 390, NULL, 9, NULL, true, NULL, NULL, NULL, 'CHD/2019/41/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (42, '2019-11-12 15:34:08.085197+00', '2020-04-02 16:57:17.628621+00', 'open', 'Mission de supervision de distribution de kits scolaires', '2019-11-24', NULL, 14616, 14616, 14616, 12, NULL, NULL, 55, 390, NULL, 9, NULL, true, NULL, NULL, NULL, 'CHD/2019/42/APD', NULL); -INSERT INTO [[schema]].action_points_actionpoint VALUES (43, '2019-11-13 10:16:43.534573+00', '2020-04-02 16:57:17.630598+00', 'open', 'Elaborer deux projets distincts de formation en PCIMA des agents de santé qualifiés et des agents de santé communautaires. +INSERT INTO [[schema]].action_points_actionpoint VALUES (18, '2019-10-30 10:25:29.550795+00', '2019-12-05 17:00:44.460908+00', 'completed', '2. Concevoir et mettre à la disposition des ASC un outil d’analyse et de présentation mensuelle des données communautaires (performances/indicateurs clés et leurs écarts) aux réunions des plateformes communautaires pour la résolution des problèmes constatés.', '2019-10-31', '2019-10-30 10:26:52.226204+00', 12132, 12132, 12132, 29, NULL, NULL, 12, 387, 187, 11, NULL, true, NULL, NULL, NULL, 'CHD/2019/18/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (90, '2020-01-20 11:25:07.025581+00', '2020-02-25 13:53:24.181402+00', 'open', '- Envoyer deux SMS au 1301 par mois même au cas où il n’y a aucun cas à rapporter. Le contenu du message peut être RAS', '2020-01-31', NULL, 14700, 14362, 14700, 22, NULL, NULL, NULL, 387, 302, 2, NULL, false, 196, NULL, NULL, 'CHD/2020/90/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (125, '2020-03-03 08:31:36.928809+00', '2020-03-03 08:31:37.156533+00', 'open', 'Amener UAFAT à mener les activités dans les régions reculées lors de la mise en œuvre du prochain projet en 2020.', '2020-03-03', NULL, 10616, 5056, 10616, 36, NULL, 5, NULL, 387, 401, 2, NULL, false, 311, NULL, NULL, 'CHD/2020/125/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (147, '2020-03-30 09:07:55.736314+00', '2020-03-30 09:07:55.935543+00', 'open', 'Fournir les matériels (balances, registres de suivi, tables Z-score, registre de rapport mensuel) à l’UNA et l’UNT de Faya ainsi que l’UNA de Kirdimi', '2020-04-30', NULL, 25166, 25166, 25166, 53, NULL, NULL, NULL, 388, 446, 7, NULL, false, 273, NULL, NULL, 'CHD/2020/147/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (109, '2020-02-26 08:26:45.678915+00', '2020-02-26 11:42:57.377587+00', 'completed', 'S’assurer de la prise en compte des informations/données collectées dans le rapport sur la capitalisation des expériences tirées des processus d’élaboration et de la mise en œuvre des PDP et PDC', '2020-02-25', '2020-02-26 11:42:57.377609+00', 5074, 5074, 5074, 14, NULL, NULL, 22, 387, 302, 11, NULL, false, NULL, NULL, NULL, 'CHD/2020/109/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (30, '2019-11-05 14:41:32.706034+00', '2019-12-26 16:27:16.289826+00', 'open', 'appuyer le partenaire pour finaliser et envoyer le rapport de liquidation', '2019-10-30', NULL, 13512, 13512, 13512, 37, NULL, NULL, NULL, 391, 447, 8, NULL, true, 85, NULL, NULL, 'CHD/2019/30/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (20, '2019-10-30 10:30:03.037536+00', '2019-12-05 17:00:44.475978+00', 'open', 'Accélérer la mise en place d’une UNA dans les centres de santé de Bénoye et Krim-Krim pour la prise en charge des enfants malnutris dépistés par les ASC dans leur communauté', '2019-11-29', NULL, 12132, 12528, 12132, 29, NULL, NULL, 22, 391, 187, 3, NULL, true, NULL, NULL, NULL, 'CHD/2019/20/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (35, '2019-11-08 12:34:12.655988+00', '2020-02-22 14:51:25.147916+00', 'completed', 'Assurer le suivi de prelevement des enfants nes des meres seropositives pour le diagnostic precoce rencontres a l''hopital et dans les 2 autres CS visites', '2019-11-30', '2020-02-22 14:51:25.147938+00', 13031, 13031, 13031, 46, NULL, NULL, NULL, 391, 41, 7, NULL, false, 111, NULL, NULL, 'CHD/2019/35/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (27, '2019-11-05 07:53:44.274766+00', '2019-12-05 17:00:44.507773+00', 'completed', 'Assurer le suivi de la finalisation avec l''equipe restreinte de tous les documents relatifs a l ''evaluation du Programme', '2019-10-31', '2019-11-05 08:13:40.794958+00', 13031, 13031, 13031, 35, NULL, NULL, NULL, 391, NULL, 7, NULL, false, 38, NULL, NULL, 'CHD/2019/27/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (28, '2019-11-05 08:04:00.125325+00', '2019-12-05 17:00:44.513128+00', 'open', 'Traitement et paiement de la requête de financement de la campagne CPS 2019', '2019-11-15', NULL, 21654, 15628, 21654, 35, NULL, NULL, NULL, 387, 174, 12, NULL, true, 19, NULL, NULL, 'CHD/2019/28/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (29, '2019-11-05 08:10:02.412986+00', '2019-12-05 17:00:44.518574+00', 'open', 'Appuyer la DSP du Guera à faire un point sur la distribution et la gestion des intrants CPS 2019 dans tous les districts sanitaires', '2019-11-30', NULL, 21654, 10707, 21654, NULL, NULL, NULL, NULL, 390, NULL, 7, NULL, true, 19, NULL, NULL, 'CHD/2019/29/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (31, '2019-11-05 14:46:17.102512+00', '2019-12-05 17:00:44.526806+00', 'open', 'suivi pour la livraison des intrants aux partenaires APDI et CRT', '2019-11-15', NULL, 13512, 9032, 13512, 37, NULL, NULL, NULL, 387, 447, 8, NULL, false, 85, NULL, NULL, 'CHD/2019/31/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (32, '2019-11-05 14:58:46.420001+00', '2019-12-05 17:00:44.530954+00', 'open', 'reformuler les besoins dans ce projet en fonction des realites de terrain', '2019-11-30', NULL, 13512, 14044, 13512, 37, NULL, NULL, NULL, 387, 418, 9, NULL, true, 84, NULL, NULL, 'CHD/2019/32/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (33, '2019-11-07 15:10:56.424581+00', '2019-12-05 17:00:44.53585+00', 'open', 'Organiser dans un bref delai une restitution sur l''atelier aux collegues de Bureau de Moundou', '2019-11-28', NULL, 11068, 11068, 11068, 16, NULL, NULL, NULL, 391, NULL, 12, NULL, false, 67, NULL, NULL, 'CHD/2019/33/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (67, '2019-12-12 14:42:31.843445+00', '2019-12-12 14:42:32.066716+00', 'open', '3. Accélérer la mise à disposition des réfrigérateurs, du matériel médical et des motos de supervision', '2019-11-30', NULL, 12132, 11647, 12132, 29, NULL, NULL, NULL, 387, 187, 7, NULL, false, 7, NULL, NULL, 'CHD/2019/67/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (79, '2019-12-30 15:48:40.077663+00', '2019-12-30 15:48:40.189757+00', 'open', 'Assurer le suivi de la mise en œuvre effective des techniques apprises lors des ateliers en accord avec le Ministère de la sante.', '2020-02-29', NULL, 5056, 5056, 5056, 23, NULL, NULL, NULL, 387, 81, 2, NULL, false, 106, NULL, NULL, 'CHD/2019/79/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (39, '2019-11-12 08:38:13.883985+00', '2019-12-05 17:00:44.561563+00', 'completed', 'Mission de supervision de distribution de kits scolaires', '2019-10-24', '2019-11-12 14:49:39.144639+00', 14616, 14616, 14616, 12, NULL, NULL, 55, 390, NULL, 9, NULL, true, NULL, NULL, NULL, 'CHD/2019/39/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (40, '2019-11-12 09:06:57.851511+00', '2019-12-05 17:00:44.565591+00', 'completed', 'mission de supervision de distribution de kits scolaires', '2019-10-24', '2019-11-12 14:35:20.019347+00', 14616, 14616, 14616, 12, NULL, NULL, 55, 390, NULL, 9, NULL, true, NULL, NULL, NULL, 'CHD/2019/40/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (41, '2019-11-12 15:28:31.682852+00', '2019-12-05 17:00:44.569731+00', 'completed', 'Mobiliser les APE pour qu’elles mobilisent les communautes à soutenir la scolarisation des enfants', '2019-10-24', '2019-11-21 11:04:04.729601+00', 14616, 14616, 14616, 12, NULL, NULL, 55, 390, NULL, 9, NULL, true, NULL, NULL, NULL, 'CHD/2019/41/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (42, '2019-11-12 15:34:08.085197+00', '2019-12-05 17:00:44.574092+00', 'open', 'Mission de supervision de distribution de kits scolaires', '2019-11-24', NULL, 14616, 14616, 14616, 12, NULL, NULL, 55, 390, NULL, 9, NULL, true, NULL, NULL, NULL, 'CHD/2019/42/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (43, '2019-11-13 10:16:43.534573+00', '2019-12-05 17:00:44.578236+00', 'open', 'Elaborer deux projets distincts de formation en PCIMA des agents de santé qualifiés et des agents de santé communautaires. Programmer le suivi/évaluation trimestrielle de la mise en œuvre et de la performance du programme PCIMA dans les centres de santé.', '2020-02-03', NULL, 22479, 12528, 22479, 55, NULL, NULL, NULL, 391, 237, 7, NULL, false, 95, NULL, NULL, 'CHD/2019/43/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (44, '2019-11-18 11:29:34.280476+00', '2019-12-05 17:00:44.582669+00', 'completed', 'Contacter la SDV pour in approvisionnement des districts sanitaires de Doba, Bebedjia et Bodo en cartes de vaccination et en cartes doubles', '2019-11-30', '2019-11-25 08:17:59.83705+00', 11859, 9333, 11859, 35, NULL, NULL, NULL, 387, 48, 7, NULL, false, 125, NULL, NULL, 'CHD/2019/44/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (45, '2019-11-18 11:33:13.209238+00', '2019-12-05 17:00:44.587427+00', 'completed', 'Instruire les RCS de determiner les cibles attendues pour la vaccinationpar village', '2019-11-30', '2019-12-02 08:41:08.140391+00', 11859, 11859, 11859, 35, NULL, NULL, NULL, 391, 48, 7, NULL, false, 125, NULL, NULL, 'CHD/2019/45/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (46, '2019-11-18 11:35:29.818584+00', '2019-12-05 17:00:44.593269+00', 'completed', 'Instruire les RCS de mettre en place in cahier d''enregistrement des nouveau-nes dans chaque village en collaboration avec les chefs de villages', '2019-11-30', '2019-12-02 16:12:45.712528+00', 11859, 11859, 11859, 35, NULL, NULL, NULL, 391, 48, 7, NULL, false, 125, NULL, NULL, 'CHD/2019/46/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (47, '2019-11-18 11:39:38.030286+00', '2019-12-05 17:00:44.597764+00', 'completed', 'Instruire les RCS de Doba, bebidjia et Bodo ayant des cartes de vaccination de mettre en place in echeancier', '2019-11-30', '2019-12-02 16:18:47.638364+00', 11859, 11859, 11859, 35, NULL, NULL, NULL, 391, 48, 7, NULL, false, 125, NULL, NULL, 'CHD/2019/47/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (172, '2020-04-10 09:48:52.296986+00', '2020-04-10 09:48:52.874067+00', 'open', 'Mettre à disposition du CLAC les boîtes à images sur le VIH pour les prochaines séances de dialogues communautaires', '2020-04-30', NULL, 12058, 12058, 12058, 23, NULL, NULL, NULL, 387, 270, 2, NULL, false, 430, NULL, NULL, 'CHD/2020/172/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (169, '2020-04-03 09:29:57.346257+00', '2020-04-03 09:29:57.672291+00', 'open', 'Assurer suivi de traitement prompt des requêtes provenant des DSP au niveau du MSP et leur transmission dans un délais raisonnable aux partenaires afin de faciliter la mise en œuvre des activités planifiées', '2021-12-31', NULL, 13031, 13031, 13031, NULL, NULL, NULL, NULL, 391, NULL, 7, NULL, false, 244, NULL, NULL, 'CHD/2020/169/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (37, '2019-11-08 13:11:36.216284+00', '2019-12-07 09:29:07.89508+00', 'open', 'Plaider auprès de la section Wash pour l’installation d’un point d’eau au Centre de Santé de Pao', '2019-12-31', NULL, 20819, 11436, 20819, 47, NULL, NULL, NULL, 387, 437, 7, NULL, false, 107, NULL, NULL, 'CHD/2019/37/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (83, '2019-12-31 21:33:52.792497+00', '2019-12-31 21:33:53.174973+00', 'open', 'Plaidoyer auprès du Ministère pour élaborer des micros plans de façon ascendante et participative', '2020-03-31', NULL, 9984, 11647, 9984, 28, NULL, NULL, NULL, 387, 430, 7, NULL, false, 188, NULL, NULL, 'CHD/2019/83/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (38, '2019-11-08 13:12:41.007559+00', '2019-12-07 09:34:41.406806+00', 'open', 'Rien à signaler', '2019-12-30', NULL, 20819, 24090, 20819, 45, NULL, NULL, NULL, 387, 437, 7, NULL, false, 107, NULL, NULL, 'CHD/2019/38/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (170, '2020-04-08 15:25:38.135545+00', '2020-04-08 15:25:38.387369+00', 'open', 'Doter les UNA/UNT des districts sanitaires de Moissala et Bekourou de palettes pour l’entreposage des intrants nutritionnels.', '2020-06-01', NULL, 22479, 22479, 22479, 57, NULL, NULL, NULL, 391, 41, 7, NULL, true, 314, NULL, NULL, 'CHD/2020/170/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (25, '2019-11-04 07:19:45.939626+00', '2020-01-20 11:36:58.820601+00', 'completed', '3. Former les lanceurs de SMS à l’utilisation du protocole d’envoi des messages et de la promotion et de recrutement de U-reporters', '2019-11-30', '2020-01-20 11:36:58.820623+00', 14700, 14362, 14700, 22, NULL, NULL, NULL, 387, NULL, 2, NULL, false, 79, NULL, NULL, 'CHD/2019/25/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (34, '2019-11-08 12:30:50.236969+00', '2020-01-30 09:32:39.038226+00', 'completed', 'Assurer le coaching des gestionnaires de DS de Mandoul lors de mission de supervision sur le HACT en vue d''ameliorer la qualite des pieces justificatives', '2019-12-31', '2020-01-30 09:32:39.038251+00', 13031, 13031, 13031, 46, NULL, NULL, NULL, 391, 41, 7, NULL, false, 111, NULL, NULL, 'CHD/2019/34/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (26, '2019-11-04 07:20:37.790156+00', '2020-01-20 11:37:47.152707+00', 'completed', '4. Former les Points focaux SAP du CPA à l’utilisation de la plateforme technique du SAP', '2019-11-30', '2020-01-20 11:37:47.152728+00', 14700, 14362, 14700, 22, NULL, NULL, NULL, 387, NULL, 2, NULL, false, 79, NULL, NULL, 'CHD/2019/26/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (24, '2019-11-04 07:18:41.043223+00', '2020-01-20 11:36:32.747766+00', 'completed', '2. Assister à la désignation des lanceurs de SMS dans les localités identifiées compte tenu de difficultés logistiques du CPA', '2019-11-30', '2020-01-20 11:36:32.747793+00', 14700, 14362, 14700, 22, NULL, NULL, NULL, 387, NULL, 2, NULL, false, 79, NULL, NULL, 'CHD/2019/24/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (91, '2020-01-20 11:26:45.904115+00', '2020-02-25 14:03:15.787925+00', 'open', '- Se connecter au moins deux fois par jour pour consulter la boite de réception des SMS', '2020-01-31', NULL, 14700, 14362, 14700, 22, NULL, NULL, NULL, 391, 302, 2, NULL, false, 196, NULL, NULL, 'CHD/2020/91/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (21, '2019-10-30 10:31:59.814884+00', '2020-03-16 16:19:05.794369+00', 'completed', 'Renforcer l’offre de services de qualité en appuyer la DSP/LOC, les 2 districts et les 2 centres de santé à adopter un système efficace d’approvisionnement en vaccins, cartes de vaccination, médicaments essentiels et en registre d’enregistrement des naissances ainsi que l’organisation des services', '2019-11-29', '2020-03-16 16:19:05.794395+00', 12132, 11859, 12132, 29, NULL, NULL, 22, 391, 187, 3, NULL, false, NULL, NULL, NULL, 'CHD/2019/21/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (50, '2019-11-18 11:48:54.479126+00', '2019-12-05 17:00:44.610309+00', 'completed', 'Le DS de bebedjia doit organiser les reunions de monitorage sur une base reguliere, en l''absence de ressources, une reunion de monitorage trimestrielle reguliere pourrait suffire', '2019-11-30', '2019-12-02 16:20:41.502616+00', 11859, 11859, 11859, 35, NULL, NULL, NULL, 391, 48, 7, NULL, false, 125, NULL, NULL, 'CHD/2019/50/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (51, '2019-11-20 12:16:40.931936+00', '2019-12-05 17:00:44.614648+00', 'open', '1. Finaliser le plan d’action de soin personnel', '2019-10-31', NULL, 5069, 9109, 5069, NULL, NULL, NULL, NULL, 387, NULL, 10, NULL, false, 29, NULL, NULL, 'CHD/2019/51/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (53, '2019-11-20 12:21:44.653207+00', '2019-12-05 17:00:44.622749+00', 'open', '3. Faire le suivi du plan d’action de soin personnel', '2019-12-31', NULL, 5069, 5069, 5069, NULL, NULL, NULL, NULL, 387, NULL, 7, NULL, false, 29, NULL, NULL, 'CHD/2019/53/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (54, '2019-11-21 11:14:24.278735+00', '2019-12-05 17:00:44.628001+00', 'open', 'Restituer le contenu des echanges aux delegues de l''education', '2019-11-21', NULL, 14616, 14616, 14616, 33, NULL, NULL, 87, 390, NULL, 9, NULL, true, NULL, NULL, NULL, 'CHD/2019/54/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (57, '2019-12-04 13:35:47.051756+00', '2019-12-05 17:00:44.641579+00', 'open', 'Assurer le suivi des recommandations issues de travaux de groupe PCA WVI. +Identifier les interventions a documenter pour l''ecriture d''articles par le Reseau des Journalistes T[[schema]]ien pour la Nutrition', '2019-12-31', NULL, 12528, 12528, 12528, 55, NULL, NULL, NULL, 391, 415, 7, NULL, false, 105, NULL, NULL, 'CHD/2019/57/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (59, '2019-12-07 09:43:12.334868+00', '2019-12-07 09:43:12.768845+00', 'open', 'Appuyer le DS d’Abougoudam à intégrer dans la prochaine requête, l’appui aux interventions des relais communautaires et la formation de l’Union des organisations de femmes d’Abougoudam', '2019-12-31', NULL, 20819, 9329, 20819, 47, NULL, NULL, NULL, 388, 437, 7, NULL, false, 42, NULL, NULL, 'CHD/2019/59/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (84, '2019-12-31 21:38:57.654618+00', '2019-12-31 21:38:58.484441+00', 'open', 'Mettre l’accent sur la préparation de la campagne en faisant l’état des lieux en termes de disponibilités ( chaines de froid, ressources humaines, formations, logistiques, intrants…etc.)', '2020-03-31', NULL, 9984, 11566, 9984, 29, NULL, NULL, NULL, 387, 405, 7, NULL, false, 188, NULL, NULL, 'CHD/2019/84/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (23, '2019-11-04 07:17:25.193552+00', '2020-01-20 11:35:50.939544+00', 'completed', '1. Faire participer le point focal PRU des Bureaux de zone de Moundou et de Bol à l’atelier de formation des formateurs', '2019-11-19', '2020-01-20 11:35:50.939571+00', 14700, 13846, 14700, 22, NULL, NULL, NULL, 387, NULL, 3, NULL, false, 79, NULL, NULL, 'CHD/2019/23/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (94, '2020-02-07 11:38:56.981253+00', '2020-02-07 11:38:57.093592+00', 'open', '3.Planifier et accentuer des supervisions conjointes mensuelles des mobilisateurs communautaires ainsi que des ASC des 2 ZR avec la DSP et les 2 DS en vue de renforcer leurs capacités d’intervention (Mobilisateur de Bénoye, nouveaux ASC de Krim-Krim et anciens ASC encore fébriles).', '2020-03-14', NULL, 12132, 12528, 12132, 14, NULL, NULL, NULL, 391, 187, 3, NULL, true, 193, NULL, NULL, 'CHD/2020/94/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (110, '2020-02-26 08:35:11.783272+00', '2020-02-26 08:35:15.098461+00', 'open', 'Appuyer la préparation de la réunion de validation du rapport sur la capitalisation des expériences tirées des processus d’élaboration et de la mise en œuvre des PDP et PDC', '2020-02-28', NULL, 5074, 5074, 5074, 14, NULL, NULL, 22, 387, 302, 11, NULL, false, NULL, NULL, NULL, 'CHD/2020/110/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (115, '2020-02-26 09:20:52.043663+00', '2020-02-26 09:20:52.225411+00', 'open', 'Suivre la mise en place par arrêté du Gouverneur d’un Comité de Pilotage du processus de Révision du Plan de Développement de la Province du Ouaddaï', '2020-01-06', NULL, 5074, 5074, 5074, 14, NULL, NULL, NULL, 387, 335, 11, NULL, false, 184, NULL, NULL, 'CHD/2020/115/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (112, '2020-02-26 08:48:43.180475+00', '2020-02-29 11:25:17.048793+00', 'completed', 'S’assurer de la prise en compte des informations/données collectées dans le rapport sur la capitalisation des expériences tirées des processus d’élaboration et de la mise en œuvre des PDP et PDC', '2020-02-25', '2020-02-29 11:25:17.048817+00', 5074, 5074, 5074, 14, NULL, NULL, NULL, 387, 302, 11, NULL, false, 226, NULL, NULL, 'CHD/2020/112/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (107, '2020-02-25 12:52:03.546099+00', '2020-02-26 09:56:47.588176+00', 'completed', 'Appui Logistique a la section nutrition pour le dechargment et la livaison des ATPE dans les centres de santes, UNA et UNT des regions du Kanem, Lac et BEG', '2020-02-25', '2020-02-26 09:56:47.588198+00', 12553, 9542, 12553, 53, NULL, NULL, 59, 389, 43, 7, NULL, false, NULL, NULL, NULL, 'CHD/2020/107/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (116, '2020-02-26 09:31:07.466431+00', '2020-02-26 11:57:25.95768+00', 'completed', 'Assurer le suivi des documents à remplir par la Mairie et le Gouvernorat par rapport à la capitalisation des expériences du PDC Abéché et PDP du Ouaddaï', '2020-01-08', '2020-02-26 11:57:25.957702+00', 5074, 5074, 5074, 14, NULL, NULL, NULL, 387, 335, 11, NULL, false, 184, NULL, NULL, 'CHD/2020/116/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (56, '2019-11-29 10:08:13.125081+00', '2020-03-01 08:36:51.920324+00', 'completed', 'Présenter les constats observés sur les ruptures en intrants du PAM dans le district de Mongo', '2019-12-31', '2020-03-01 08:36:51.92035+00', 11672, 11672, 11672, 59, NULL, NULL, NULL, 387, 435, 7, NULL, false, 10, NULL, NULL, 'CHD/2019/56/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (113, '2020-02-26 08:50:04.81409+00', '2020-02-29 11:33:24.448154+00', 'open', 'Appuyer la préparation de la réunion de validation du rapport sur la capitalisation des expériences tirées des processus d’élaboration et de la mise en œuvre des PDP et PDC', '2020-02-28', NULL, 5074, 5074, 5074, 14, NULL, NULL, NULL, 387, 302, 11, NULL, false, 226, NULL, NULL, 'CHD/2020/113/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (55, '2019-11-29 07:29:10.319817+00', '2020-03-01 08:41:49.065684+00', 'completed', 'Faire le suivi de l''analyse des donnees et la publication du rapport final', '2019-11-30', '2020-03-01 08:41:49.065707+00', 11672, 60199, 11672, NULL, NULL, NULL, NULL, 387, 435, 7, NULL, false, 10, NULL, NULL, 'CHD/2019/55/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (120, '2020-03-02 15:49:39.821847+00', '2020-03-02 15:49:39.945068+00', 'open', 'Soumettre une note au dossier au management pour demande dérogatoire d’approbation de face trimestriel pour régulariser le 1er trimestre 2020 passé sans PCA.', '2020-03-15', NULL, 21654, 11344, 21654, 19, NULL, 5, NULL, 387, 237, 7, NULL, false, 219, NULL, NULL, 'CHD/2020/120/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (121, '2020-03-02 15:50:53.647851+00', '2020-03-02 15:50:54.109899+00', 'open', 'Faire le suivi rapproché pour la signature du PCA dans les meilleurs délais', '2020-03-15', NULL, 21654, 11344, 21654, 19, NULL, 5, NULL, 387, 237, 7, NULL, false, 219, NULL, NULL, 'CHD/2020/121/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (122, '2020-03-02 16:37:08.13623+00', '2020-03-02 16:37:08.446935+00', 'open', 'Louer des véhicules de supervision pour les mettre à la disposition du partenaire au lieu d’inclure la location dans la requête dès les prochaines campagnes de masse', '2020-03-31', NULL, 21654, 197100, 21654, 34, NULL, 5, NULL, 387, 433, 7, NULL, true, 215, NULL, NULL, 'CHD/2020/122/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (123, '2020-03-02 16:40:08.254693+00', '2020-03-02 16:40:08.449412+00', 'open', 'Plaidoyer pour renforcer la capacité opérationnelle du district (logistique/ Chaine de froid, ressources humaines)', '2020-06-30', NULL, 21654, 8519, 21654, 28, NULL, 5, NULL, 387, 433, 7, NULL, false, 215, NULL, NULL, 'CHD/2020/123/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (124, '2020-03-02 16:42:52.125266+00', '2020-03-02 16:42:52.350872+00', 'open', 'Développer une stratégie de communication de masse spécifique pour les milieux urbains pour les campagnes de vaccination de masse', '2020-06-30', NULL, 21654, 197100, 21654, NULL, NULL, 5, NULL, 387, 433, 7, NULL, false, 215, NULL, NULL, 'CHD/2020/124/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (118, '2020-03-02 15:43:21.636837+00', '2020-03-02 17:01:56.785611+00', 'open', 'Continuer avec le plaidoyer auprès du PNLP et MSP pour appropriation et intégration des activités des ASC de Goré, Bessao et Mbaibokoum dans la planification nationale du PNLP afin de fournir des intrants (TDR et antipaludiques) nécessaire à la prise en charge communautaires des patient(e)s de plus de cinq (5) ans.', '2020-03-31', NULL, 21654, 11647, 21654, 32, NULL, 5, NULL, 387, 237, 7, NULL, true, 217, NULL, NULL, 'CHD/2020/118/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (126, '2020-03-06 08:47:11.873532+00', '2020-03-06 08:47:12.10352+00', 'open', 'Doter les centres de sante qui n''ont pas de frigo avec les frigos en panneaux de solaires', '2020-03-31', NULL, 12767, 12767, 12767, 32, NULL, NULL, NULL, 391, 206, 7, NULL, true, 239, NULL, NULL, 'CHD/2020/126/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (129, '2020-03-15 14:29:23.99897+00', '2020-03-15 14:29:24.131576+00', 'open', '1. Demander l’appui d’un ingénieur du bureau de Ndjamena pour la réception définitive des EAE prévue pour fin mars 2020 par le partenaire.', '2020-03-20', NULL, 13372, 9984, 13372, 52, NULL, 16, NULL, 391, 139, 17, NULL, false, 287, NULL, NULL, 'CHD/2020/129/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (132, '2020-03-16 08:54:33.017449+00', '2020-03-16 08:54:33.269041+00', 'open', 'Mobiliser les APE a appuyer la scolarisation des enfants.', '2019-10-27', NULL, 14616, 14616, 14616, 12, NULL, NULL, NULL, 390, 125, 9, NULL, true, 83, NULL, NULL, 'CHD/2020/132/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (128, '2020-03-12 08:40:56.141089+00', '2020-03-12 08:40:56.359138+00', 'open', 'Rendre concret l''intersectorialite en integrant la formation sur les outils EAHMS pour les enseignants et les animateurs pedagogiques', '2020-06-30', NULL, 12059, 13512, 12059, 39, NULL, NULL, NULL, 391, NULL, 8, NULL, false, 204, NULL, NULL, 'CHD/2020/128/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (127, '2020-03-07 11:29:37.328621+00', '2020-03-13 13:31:15.988579+00', 'completed', 'Participer aux reunions de Coordination humanitaire; +Participer aux reunios Inter-clusters ICC; +Ameliore la communication sur la chaine d''approvisionnement des intrants avec les partenaires.', '2020-02-28', '2020-03-13 13:31:15.988618+00', 24425, 11514, 24425, 19, NULL, NULL, NULL, 389, 130, 3, NULL, true, 36, NULL, NULL, 'CHD/2020/127/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (130, '2020-03-15 14:33:16.310965+00', '2020-03-15 14:33:16.607513+00', 'open', '2. ire', '2020-03-31', NULL, 13372, 13372, 13372, 52, NULL, NULL, NULL, 391, 139, 10, NULL, false, 287, NULL, NULL, 'CHD/2020/130/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (133, '2020-03-16 09:01:58.287703+00', '2020-03-16 09:01:58.38913+00', 'open', 'Renforcer la mobilisation des ressources en faveur des enfants en besoins spécifiques', '2019-12-31', NULL, 14616, 11719, 14616, 33, NULL, NULL, NULL, 387, NULL, 9, NULL, true, 136, NULL, NULL, 'CHD/2020/133/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (134, '2020-03-16 10:41:19.605663+00', '2020-03-16 10:41:19.8129+00', 'open', 'Encourager la section Protection de l’Enfant à rétablir la collaboration avec le partenaire IHDL', '2020-03-31', NULL, 14006, 9109, 14006, 52, NULL, 18, NULL, 387, 298, 10, NULL, true, 17, NULL, NULL, 'CHD/2020/134/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (135, '2020-03-16 10:47:40.485593+00', '2020-03-16 10:47:40.633167+00', 'open', 'Faire une clarification avec INTERSOS afin de revoir les réalisations des travaux quand il n’existe pas dans les documents les spécifications qui pourraient orienter le travail.', '2019-12-31', NULL, 14006, 9109, 14006, 52, NULL, 18, NULL, 387, 298, 10, NULL, true, 17, NULL, NULL, 'CHD/2020/135/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (137, '2020-03-16 11:06:30.306334+00', '2020-03-16 11:06:30.428441+00', 'open', 'Envoyer une lettre a SECADEV pour prendre les mesures afin d’achever les travaux dans les sites de Don, Békan et Bédangkoussang', '2019-12-31', NULL, 14006, 11399, 14006, 41, NULL, 18, NULL, 387, 88, 8, NULL, false, 17, NULL, NULL, 'CHD/2020/137/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (48, '2019-11-18 11:43:19.884665+00', '2020-03-16 16:06:49.935704+00', 'completed', 'Instruire les RCS de Bodo-MSP et de Miandoum (DS Doba)de doubler le nombre de séances de vaccination en strategie fixe', '2019-11-30', '2020-03-16 16:06:49.935731+00', 11859, 11859, 11859, 35, NULL, NULL, NULL, 391, 48, 7, NULL, false, 125, NULL, NULL, 'CHD/2019/48/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (49, '2019-11-18 11:46:46.751159+00', '2020-03-16 16:09:42.724115+00', 'completed', 'Instruire les RCS a preparer les séances de vaccination avec les vaccinateurs et les ASC et evaluer avec eux chaque séance de vaccination realisee (degree d''atteinte de la cible attendee, perdus de vue a rechercher, etc.)', '2019-11-30', '2020-03-16 16:09:42.724141+00', 11859, 11859, 11859, 35, NULL, NULL, NULL, 391, 48, 7, NULL, false, 125, NULL, NULL, 'CHD/2019/49/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (17, '2019-10-30 10:21:03.693564+00', '2020-03-16 16:12:58.905427+00', 'completed', '1. Renforcer les activités de supervision formative des prestataires et des ASC et celles d’encadrement des deux (02) mobilisateurs communautaires au profit des activités communautaires', '2019-10-31', '2020-03-16 16:12:58.90546+00', 12132, 11859, 12132, 29, NULL, NULL, 22, 391, 187, 3, NULL, true, NULL, NULL, NULL, 'CHD/2019/17/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (92, '2020-02-07 11:36:32.689117+00', '2020-03-16 16:16:13.833987+00', 'completed', '1. Suivre avec la DSP/LOC et les districts l’approvisionnement rapide des centres de santé en cartes de vaccination pour faciliter un meilleur suivi personnalisé des enfants de 0-59 mois sur l’utilisation des services de vaccination sans perdre de vue le carnet de la femme enceinte pour le suivi des CPN.', '2020-02-28', '2020-03-16 16:16:13.834009+00', 12132, 11859, 12132, 14, NULL, NULL, NULL, 391, 187, 3, NULL, true, 193, NULL, NULL, 'CHD/2020/92/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (140, '2020-03-19 19:17:00.956665+00', '2020-03-19 19:17:01.299805+00', 'open', 'Suivre la réalisation effective d''une évaluation dans les centres de santé de Mongo par ASRADD pour les besoins de Baseline de l''accord à venir', '2020-03-31', NULL, 60199, 60199, 60199, 55, NULL, NULL, NULL, 387, 174, 7, NULL, false, 211, NULL, NULL, 'CHD/2020/140/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (148, '2020-03-30 09:09:07.31699+00', '2020-03-30 09:09:07.457586+00', 'open', 'Doter l’UNA de Kirdimi et de Faya en palettes', '2020-04-30', NULL, 25166, 25166, 25166, 53, NULL, NULL, NULL, 388, 446, 7, NULL, false, 273, NULL, NULL, 'CHD/2020/148/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (142, '2020-03-20 13:18:33.064084+00', '2020-03-26 09:25:11.058799+00', 'completed', 'Demander au Délégué sanitaire d’envoyer les frais de carburant de l’animateur communautaire de Krim-Krim', '2020-03-30', '2020-03-26 09:25:11.058999+00', 11859, 11859, 11859, 32, NULL, NULL, NULL, 391, 187, 7, NULL, false, 315, NULL, NULL, 'CHD/2020/142/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (146, '2020-03-20 13:24:28.612856+00', '2020-03-20 13:24:28.789549+00', 'open', 'Envisager la formation des plateformes de Krim-Krim et Benoye sur leurs roles', '2020-04-15', NULL, 11859, 11344, 11859, 32, NULL, NULL, NULL, 391, 187, 7, NULL, false, 315, NULL, NULL, 'CHD/2020/146/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (149, '2020-03-30 09:10:03.979016+00', '2020-03-30 09:10:04.090196+00', 'open', 'Faire un réajustement sur le PPD du mois d’Avril en vue d’éviter les ruptures au niveau de l’UNA de Faya Urbain', '2020-04-30', NULL, 25166, 25166, 25166, 53, NULL, NULL, NULL, 388, 446, 7, NULL, false, 273, NULL, NULL, 'CHD/2020/149/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (143, '2020-03-20 13:20:10.658963+00', '2020-03-20 13:34:06.621886+00', 'completed', 'Demander au MCD de Benoye d’approvisionner le CS en seringues AB BCG et de 0.5ml et a celui de Krim-Krim d’approvisionner le CS en BCG', '2020-03-09', '2020-03-20 13:34:06.621911+00', 11859, 11859, 11859, 32, NULL, NULL, NULL, 391, 187, 7, NULL, true, 315, NULL, NULL, 'CHD/2020/143/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (150, '2020-03-31 10:03:34.02904+00', '2020-03-31 10:03:34.238213+00', 'open', 'Assurer avec le point focal de la DSP du Moyen Chari l’expression des intrants PTME au niveau de chaque DS pour prendre en compte dans la commande trimestrielle', '2020-03-31', NULL, 13031, 13031, 13031, 42, NULL, NULL, NULL, 391, 177, 7, NULL, false, 245, NULL, NULL, 'CHD/2020/150/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (144, '2020-03-20 13:21:41.659677+00', '2020-03-20 13:35:42.120473+00', 'completed', 'Demander au MCD de Benoye de trouver une solution quant au problème d’accès de la population a l’ambulance en cas de besoin.', '2020-03-30', '2020-03-20 13:35:42.120499+00', 11859, 11859, 11859, 32, NULL, NULL, NULL, 391, 187, 7, NULL, false, 315, NULL, NULL, 'CHD/2020/144/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (145, '2020-03-20 13:23:00.690477+00', '2020-03-20 13:46:39.40946+00', 'open', 'Accélérer la mise en place d’une UNA dans les centres de santé de Bénoye et Krim-Krim pour la prise en charge des enfants malnutris dépistés par les ASC dans leur communauté.', '2020-03-30', NULL, 11859, 12528, 11859, 32, NULL, NULL, NULL, 391, 187, 7, NULL, false, 315, NULL, NULL, 'CHD/2020/145/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (151, '2020-03-31 10:05:15.438841+00', '2020-03-31 10:05:15.718322+00', 'open', 'Assurer avec le point focal de la DSP du Moyen Chari l’expression des intrants PTME au niveau de chaque DS pour prendre en compte dans la commande trimestrielle', '2020-03-31', NULL, 13031, 13031, 13031, 42, NULL, NULL, NULL, 391, 177, 7, NULL, false, 245, NULL, NULL, 'CHD/2020/151/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (152, '2020-03-31 10:19:32.01643+00', '2020-03-31 10:19:32.291344+00', 'open', 'Appuyer les délégations et les DS a décentralisé davantage le dépistage base sur les cas index', '2020-12-31', NULL, 13031, 13031, 13031, 42, NULL, NULL, NULL, 391, 238, 7, NULL, false, 246, NULL, NULL, 'CHD/2020/152/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (153, '2020-03-31 10:24:25.158466+00', '2020-03-31 10:24:25.264934+00', 'open', 'Assurer le suivi de la gestion des intrants dans les provinces couvertes', '2020-12-31', NULL, 13031, 13031, 13031, 42, NULL, NULL, NULL, 391, 238, 7, NULL, false, 246, NULL, NULL, 'CHD/2020/153/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (154, '2020-03-31 10:25:30.574227+00', '2020-03-31 10:25:30.677008+00', 'open', 'Assurer le suivi et la mise à disposition des intrants pour la prise en charge des mères, et enfants ainsi que les tests pour le dépistage précoce dans les sites GenXpert.', '2020-12-31', NULL, 13031, 20436, 13031, NULL, NULL, NULL, NULL, 387, NULL, 7, NULL, false, 246, NULL, NULL, 'CHD/2020/154/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (155, '2020-03-31 10:26:28.857357+00', '2020-03-31 10:26:29.096538+00', 'open', 'Appuyer l’intégration avec l’appui des DSP/DS, le dépistage et la PEC des adolescents dans les CLAC/Maisons de la Culture', '2020-12-31', NULL, 13031, 13031, 13031, NULL, NULL, NULL, NULL, 391, NULL, 7, NULL, false, 246, NULL, NULL, 'CHD/2020/155/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (14, '2019-10-28 16:13:56.084368+00', '2020-03-31 14:24:36.264913+00', 'open', 'Mettre a la disposition des centres de sante des UNA des fiches de suivi individuel', '2019-11-30', NULL, 173681, 173681, 173681, 55, NULL, NULL, NULL, 390, 42, 7, NULL, false, 82, NULL, NULL, 'CHD/2019/14/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (119, '2020-03-02 15:48:26.543972+00', '2020-03-31 14:42:28.272259+00', 'open', 'Faire le plaidoyer auprès des MCD (Goré, Bessao, Mbaibokoum) pour renforcer la supervision de proximité des activités de routine en avancée, des centres de santé couverts par les ASC', '2020-03-31', NULL, 21654, 13031, 21654, 19, NULL, 5, NULL, 391, 237, 7, NULL, false, 218, NULL, NULL, 'CHD/2020/119/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (171, '2020-04-08 15:28:06.525753+00', '2020-04-08 15:28:06.956182+00', 'open', 'Poursuivre le renforcement de capacité des acteurs terrain sur la gestion des intrants nutritionnels.', '2020-06-04', NULL, 22479, 22479, 22479, 57, NULL, NULL, NULL, 391, 41, 7, NULL, false, 314, NULL, NULL, 'CHD/2020/171/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (179, '2020-04-10 15:57:00.440796+00', '2020-04-10 15:59:40.351757+00', 'open', 'Procéder à la vérification des villages et écoles du canton de Ndjokou et de Djoli', '2020-04-30', NULL, 13750, 13512, 13750, 41, NULL, NULL, NULL, 391, 444, 8, NULL, true, 306, NULL, NULL, 'CHD/2020/179/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (156, '2020-03-31 15:18:16.524568+00', '2020-03-31 15:18:16.629706+00', 'open', 'Elaborer une requête supplémentaire pour prendre en compte les 7 ZR non budgétisés du District sanitaire de Moundou', '2019-12-15', NULL, 11859, 197100, 11859, 35, NULL, NULL, NULL, 387, 187, 7, NULL, true, 429, NULL, NULL, 'CHD/2020/156/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (157, '2020-03-31 15:20:15.20726+00', '2020-03-31 15:20:15.300913+00', 'open', 'Faire reprendre la vaccination dans les quartiers Mbalkabra Mission (ZR Mbalkabra), Quartier Doyon-Carré 1 (ZR Tri), carre 1 (ZR Béthanie) à cause du grand nombre d’enfants trouvés non-vaccinés au cours des enquêtes rapides pendant la campagne', '2019-12-16', NULL, 11859, 11859, 11859, 35, NULL, NULL, NULL, 391, 187, 7, NULL, false, 429, NULL, NULL, 'CHD/2020/157/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (158, '2020-03-31 15:21:50.920356+00', '2020-03-31 15:21:51.105022+00', 'open', 'Chaque superviseur doit attirer l’attention des équipes de vaccination et des responsables des centres de sante sur le respect strict de la cible de 6 a 59 mois pour la campagne.', '2019-12-15', NULL, 11859, 11859, 11859, 35, NULL, NULL, NULL, 391, 187, 7, NULL, false, 429, NULL, NULL, 'CHD/2020/158/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (159, '2020-03-31 15:51:38.792532+00', '2020-03-31 15:51:39.010477+00', 'open', 'Suivre avec la DSP/LOC et les districts l’approvisionnement rapide des centres de santé en cartes de vaccination pour faciliter un meilleur suivi personnalisé des enfants de 0-59 mois sur l’utilisation des services de vaccination', '2020-01-31', NULL, 11859, 11859, 11859, 35, NULL, NULL, NULL, 391, 187, 7, NULL, false, 428, NULL, NULL, 'CHD/2020/159/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (160, '2020-03-31 15:59:10.940675+00', '2020-03-31 15:59:11.034096+00', 'open', 'Accélérer le processus d’immatriculation des motos et la remise en place des équipements médicotechniques et moyens roulants aux 2 zones de responsabilité afin d’améliorer l’offre de services.', '2020-02-15', NULL, 11859, 11344, 11859, 35, NULL, NULL, NULL, 387, 187, 7, NULL, false, 428, NULL, NULL, 'CHD/2020/160/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (161, '2020-03-31 16:00:46.161571+00', '2020-03-31 16:00:46.878279+00', 'open', 'Planifier et accentuer des supervisions conjointes des mobilisateurs communautaires ainsi que les ASC des 2 ZR avec la DSP et les DS en vue de renforcer leurs capacités d’intervention (Mobilisateur de Bénoye, nouveaux ASC de Krim-Krim et anciens ASC encore fébriles).', '2020-02-29', NULL, 11859, 12528, 11859, 35, NULL, NULL, NULL, 391, 187, 7, NULL, false, 428, NULL, NULL, 'CHD/2020/161/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (162, '2020-03-31 16:01:48.521729+00', '2020-03-31 16:01:48.685437+00', 'open', 'Suivre avec les collègues des urgences les prochaines étapes pour la validation du plan de contingence de la province. notamment l’élaboration de la Feuille route pour la vulgarisation du document en cours d’élaboration ; l’organisation de l’atelier de validation du plan de contingence et la simulation du plan de contingence.', '2020-04-30', NULL, 13372, 13372, 13372, 15, NULL, NULL, NULL, 391, 452, 10, NULL, false, 290, NULL, NULL, 'CHD/2020/162/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (163, '2020-03-31 16:02:05.809841+00', '2020-03-31 16:02:05.892558+00', 'open', 'Veiller à l’assurance qualité des données communautaires en participant aux séances mensuelles de validation des données communautaires dans les 2 ZR, les récupérer et les transmettre au niveau central pour analyse complémentaire et orientation', '2020-02-29', NULL, 11859, 12528, 11859, 35, NULL, NULL, NULL, 391, 187, 7, NULL, false, 428, NULL, NULL, 'CHD/2020/163/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (164, '2020-03-31 16:03:57.491181+00', '2020-03-31 16:04:00.671665+00', 'open', 'Appuyer la mise en place des plateformes communautaires multisectorielles dans les communautés nouvellement couvertes y compris leur formation sur leur rôle, fonctionnement et l’analyse mensuelles des données et goulots d’étranglement à l’utilisation des services sociaux de base et prendre des actions correctrices locales.', '2020-03-31', NULL, 11859, 12528, 11859, 35, NULL, NULL, NULL, 391, 187, 7, NULL, false, 428, NULL, NULL, 'CHD/2020/164/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (165, '2020-03-31 16:04:52.652988+00', '2020-03-31 16:04:54.386575+00', 'open', ' Designer un point focal devant faciliter l’organisation locale et répondre de toutes les questions relatives au processus du diagnostic devant le chef de bureau et le responsable du niveau central', '2020-03-31', NULL, 12132, 10707, 12132, 14, NULL, NULL, NULL, 390, 423, 3, NULL, true, 354, NULL, NULL, 'CHD/2020/165/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (166, '2020-03-31 16:05:39.261127+00', '2020-03-31 16:05:40.283369+00', 'open', 'Appuyer la DSP/LOC et les districts dans la préparation et l’organisation des journée foraines communautaires afin d’offrir de services intégrés dans les communautés à problèmes.', '2020-04-15', NULL, 11859, 21654, 11859, 35, NULL, NULL, NULL, 391, 187, 7, NULL, false, 428, NULL, NULL, 'CHD/2020/166/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (101, '2020-02-21 13:40:59.498677+00', '2020-04-09 06:48:05.678272+00', 'completed', 'Faire la restitution des feedbacks des partenaires sur les liquidations à 100% proposées aux partenaires', '2020-05-31', '2020-04-09 06:48:05.678299+00', 4606, 4606, 4606, 50, NULL, NULL, NULL, 387, 315, 11, NULL, true, 27, NULL, NULL, 'CHD/2020/101/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (167, '2020-03-31 16:06:13.429392+00', '2020-03-31 16:07:50.362585+00', 'open', 'Faire participer un représentant de chacun des 4 secteurs d’intervention du niveau provincial à la formation des animateurs locaux', '2020-04-15', NULL, 12132, 10707, 12132, 14, NULL, NULL, NULL, 390, 423, 3, NULL, true, 354, NULL, NULL, 'CHD/2020/167/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (70, '2019-12-17 15:09:22.487289+00', '2020-04-09 15:19:50.234349+00', 'completed', '1.Appuyer le CPA du Logone Oriental à identifier les acteurs à former +2.Faire la restitution de la formation au niveau provincial', '2020-01-31', '2020-04-09 15:19:50.234376+00', 13372, 13372, 13372, 49, NULL, NULL, NULL, 391, 420, 10, NULL, true, 154, NULL, NULL, 'CHD/2019/70/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (173, '2020-04-10 11:31:18.366443+00', '2020-04-10 11:31:18.577959+00', 'open', 'Organiser une réunion dans chaque école avec les acteurs clés pour un plan d’actions post-activités (à la reprise des activités dans les écoles)', '2020-06-30', NULL, 13750, 13750, 13750, 41, NULL, NULL, NULL, 387, 95, 8, NULL, false, 404, NULL, NULL, 'CHD/2020/173/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (175, '2020-04-10 11:41:19.230721+00', '2020-04-10 11:41:19.403406+00', 'open', 'Finaliser les enquêtes CAP finales pour la gestion de l’hygiène menstruelle (à la reprise des activités dans les écoles)', '2020-06-30', NULL, 13750, 13750, 13750, 41, NULL, NULL, NULL, 387, 95, 8, NULL, false, NULL, NULL, NULL, 'CHD/2020/175/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (188, '2020-04-11 16:18:51.120289+00', '2020-04-11 16:18:51.342523+00', 'open', 'Développer avec l’Association des Scouts du T[[schema]], de nouveaux accords de partenariat, qui prennent en compte toutes les leçons tirées de la phase pilote du programme de leadership transformationnel des adolescents et jeunes.', '2020-04-30', NULL, 12058, 12058, 12058, 36, NULL, 9, NULL, 387, 220, 2, NULL, false, 313, NULL, NULL, 'CHD/2020/188/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (177, '2020-04-10 11:57:40.615982+00', '2020-04-10 11:59:53.595+00', 'open', 'Organiser une réunion avec les enseignantes et directeurs d’écoles sur l’utilisation correcte des outils pédagogiques (à la reprise des activités dans les écoles)', '2020-06-30', NULL, 13750, 13750, 13750, 41, NULL, NULL, NULL, 387, 95, 8, NULL, false, 405, NULL, NULL, 'CHD/2020/177/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (180, '2020-04-10 16:00:27.177535+00', '2020-04-10 16:00:30.01373+00', 'open', 'Certifier le canton de Ndjokou et Djoli', '2020-05-20', NULL, 13750, 13512, 13750, NULL, NULL, NULL, NULL, 391, 162, 8, NULL, true, 307, NULL, NULL, 'CHD/2020/180/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (182, '2020-04-10 16:03:47.175577+00', '2020-04-10 16:03:48.353407+00', 'open', 'Appuyer dans la formation des maçons', '2020-05-31', NULL, 13750, 9032, 13750, 41, NULL, NULL, NULL, 387, 162, 8, NULL, false, 307, NULL, NULL, 'CHD/2020/182/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (184, '2020-04-10 16:06:26.931088+00', '2020-04-10 16:06:27.261512+00', 'open', 'Certifier les canton de Ndjokou et Alako', '2020-05-31', NULL, 13750, 13512, 13750, 41, NULL, NULL, NULL, 391, 444, 8, NULL, true, 306, NULL, NULL, 'CHD/2020/184/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (97, '2020-02-07 11:42:18.097052+00', '2020-04-16 17:08:28.300715+00', 'open', '6. Appuyer la DSP/LOC et les 2 districts dans la préparation et l’organisation périodique des journée foraines communautaires afin d’offrir de services intégrés dans les communautés à problèmes', '2020-03-31', NULL, 12132, 21654, 12132, 14, NULL, NULL, NULL, 391, 187, 3, NULL, true, 193, NULL, NULL, 'CHD/2020/97/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (186, '2020-04-10 16:08:09.003911+00', '2020-04-10 16:30:24.191705+00', 'open', 'Envoyer les intrants pour les écoles (savon et kits hygiéniques)', '2020-04-30', NULL, 13750, 9032, 13750, 41, NULL, NULL, NULL, 387, 444, 8, NULL, false, 306, NULL, NULL, 'CHD/2020/186/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (168, '2020-03-31 16:07:14.298584+00', '2020-03-31 16:07:14.987502+00', 'open', 'Veiller à ce que la démarche et la logique du travail en focus group soient expliquées en introduction aux focus group', '2020-04-30', NULL, 12132, 10707, 12132, 14, NULL, NULL, NULL, 390, 423, 13, NULL, true, 354, NULL, NULL, 'CHD/2020/168/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (139, '2020-03-19 14:23:10.510043+00', '2020-04-09 06:58:25.194892+00', 'open', 'Suivre avec le bureau de zone d’Abéché pour que le partenaire soit inclus parmi les participants pour la prochaine formation HACT des partenaires', '2020-05-31', NULL, 4606, 4606, 4606, 19, NULL, NULL, NULL, 387, 335, 11, NULL, true, 262, NULL, NULL, 'CHD/2020/139/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (176, '2020-04-10 11:43:34.228423+00', '2020-04-10 11:43:34.420287+00', 'open', 'Faire le suivi avec le partenaire pour les besoins des écoles en termes de matériels pédagogiques', '2020-04-30', NULL, 13750, 13750, 13750, 41, NULL, NULL, NULL, 387, 95, 8, NULL, false, 405, NULL, NULL, 'CHD/2020/176/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (178, '2020-04-10 11:58:37.973123+00', '2020-04-10 11:58:38.248574+00', 'open', 'Finaliser les enquêtes CAP finales pour la gestion de l’hygiène menstruelle (à la reprise des activités dans les écoles)', '2020-06-30', NULL, 13750, 13750, 13750, 41, NULL, NULL, NULL, 387, 95, 8, NULL, false, 405, NULL, NULL, 'CHD/2020/178/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (174, '2020-04-10 11:35:39.031768+00', '2020-04-10 15:11:40.928217+00', 'open', 'Organiser une réunion avec les enseignantes et directeurs d’écoles sur l’utilisation correcte des outils pédagogiques (à la reprise des activités dans les écoles)', '2020-06-30', NULL, 13750, 13750, 13750, 41, NULL, NULL, 87, 387, 95, 8, NULL, false, NULL, NULL, NULL, 'CHD/2020/174/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (183, '2020-04-10 16:05:38.696265+00', '2020-04-10 16:05:39.163589+00', 'open', 'Procéder à la vérification des villages et écoles du canton de Ndjokou', '2020-03-31', NULL, 13750, 13512, 13750, 41, NULL, NULL, NULL, 391, 444, 8, NULL, true, 306, NULL, NULL, 'CHD/2020/183/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (187, '2020-04-10 16:08:43.952223+00', '2020-04-10 16:08:44.290765+00', 'open', 'Appuyer dans la formation des maçons', '2020-05-31', NULL, 13750, 9032, 13750, NULL, NULL, NULL, NULL, 387, 444, 8, NULL, false, 306, NULL, NULL, 'CHD/2020/187/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (181, '2020-04-10 16:01:29.324411+00', '2020-04-10 16:26:08.282615+00', 'completed', 'Accorder la demande de No-cost extension', '2020-03-31', '2020-04-10 16:26:08.282639+00', 13750, 13750, 13750, NULL, NULL, NULL, NULL, 387, 162, 8, NULL, false, 307, NULL, NULL, 'CHD/2020/181/APD', NULL); +INSERT INTO [[schema]].action_points_actionpoint VALUES (185, '2020-04-10 16:07:19.395515+00', '2020-04-10 16:28:53.278216+00', 'completed', 'Accorder la demande de No-cost extension', '2020-03-31', '2020-04-10 16:28:53.278237+00', 13750, 13750, 13750, 41, NULL, NULL, NULL, 387, 444, 8, NULL, false, 306, NULL, NULL, 'CHD/2020/185/APD', NULL); -- @@ -5897,26 +6049,115 @@ Programmer le suivi/évaluation trimestrielle de la mise en œuvre et de la perf -- Data for Name: attachments_attachmentflat; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].attachments_attachmentflat VALUES (341, 'ONRTV ABECHE', 'Government', '2500224578', '', 'Core Values Assessment', '/api/v2/attachments/file/341/', '', 341, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (131, 'CNEAH', 'Government', '2500226725', '', 'Core Values Assessment', '/api/v2/attachments/file/131/', '', 131, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (396, 'REAT', 'Civil Society Organization', '2500224473', '', 'Core Values Assessment', '/api/v2/attachments/file/396/', '', 396, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (442, '', '', '', '', '', '/api/v2/attachments/file/442/', 'Mokein Caleb Mian-Gainda', 442, 'Spot_check_JRS_2020.zip', '', '', '', NULL, '2020-01-28 15:37:45.874559+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (446, 'DELEGATION SANITAIRE DU SALAMAT', 'Government', '2500214000', '', 'FACE form', '/api/v2/attachments/file/446/', 'Mokein Caleb Mian-Gainda', 446, 'face_salamat_T1_repris.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F3%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-01-29 13:43:45.811712+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (449, 'RESEAU NATIONAL TCHADIEN DES ASSOCIATIONS DES PERSONNES VIVANT AVEC LE VIH RNTAP', 'Civil Society Organization', '2500221790', '', '', '/api/v2/attachments/file/449/', 'Ibrahim Ahmat Manoufi', 449, 'UNICEF_-_CHAD_-_Rapport__Micro_Evaluation_-_RNTAP_Final.pdf', '', '', 'Partnership Management Portal', NULL, '2020-02-12 13:53:12.888102+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (465, '', '', '', '', '', '/api/v2/attachments/file/465/', 'Vonki Faba', 465, '8._Formulaire_de_soumission_des_accords_de_partenariat.pdf', '', '', '', NULL, '2020-02-12 15:13:10.68323+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (480, '', '', '', '', '', '/api/v2/attachments/file/480/', 'Vonki Faba', 480, 'Mail_au_Gouvernement.pdf', '', '', '', NULL, '2020-02-12 16:19:21.777882+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (491, 'CELLULE DE LIAISON ET D INFORMATION DES ASSOCIATIONS FEMININES COORDINATION NATIONALE', 'Civil Society Organization', '2500233143', '', '', '/api/v2/attachments/file/491/', 'Vonki Faba', 491, '1.accord_UNICEF-CELIAF.pdf', 'CHD/PCA20193', '/api/v2/agreements/3/', 'Partnership Management Portal', NULL, '2020-02-17 10:49:58.835904+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (492, 'CELLULE DE LIAISON ET D INFORMATION DES ASSOCIATIONS FEMININES COORDINATION NATIONALE', 'Civil Society Organization', '2500233143', 'CHD/PCA20193/PD20197', '', '/api/v2/attachments/file/492/', 'Vonki Faba', 492, '3.document_de_programme_CELIAF.pdf', 'CHD/PCA20193', '/api/v2/interventions/7/', 'Partnership Management Portal', 7, '2020-02-17 12:26:45.182618+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (509, 'COMITE POUR LE DEVELOPPEMENT DU VOLONTARIAT AU TCHAD', 'Civil Society Organization', '2500233727', 'CHD/PCA20194/PD20198', 'Other', '/api/v2/attachments/file/509/', 'Vonki Faba', 509, '7.formulaire_evaluation_finale_CDVT_kLJJYuh.pdf', 'CHD/PCA20194', '', 'Partnership Management Portal', 8, '2020-02-17 14:34:35.557226+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (516, 'ASSOCIATION DES GUIDES DU TCHAD', 'Civil Society Organization', '2500213937', 'CHD/PCA20186/PD201810', '', '/api/v2/attachments/file/516/', 'Vonki Faba', 516, '3-Annexe_C1ere_Partie-_Document_de_programme.pdf', 'CHD/PCA20186', '/api/v2/interventions/10/', 'Partnership Management Portal', 10, '2020-02-17 16:23:23.393742+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (530, 'UNION DES RADIOS PRIVEES DU TCHAD', 'Civil Society Organization', '2500240733', '', '', '/api/v2/attachments/file/530/', 'Vonki Faba', 530, 'Accords_Juridique_URPT.pdf', 'CHD/PCA20197', '/api/v2/agreements/7/', 'Partnership Management Portal', NULL, '2020-02-18 14:00:58.115752+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (542, '', '', '', '', '', '/api/v2/attachments/file/542/', 'Vonki Faba', 542, 'Reponse_extension_sans_cout__PCA_AGT_31_dec_19.pdf', '', '', '', NULL, '2020-02-19 13:00:16.43393+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (548, 'ACTION CONTRE LA FAIM FRANCE', 'Civil Society Organization', '2500213920', '', '', '/api/v2/attachments/file/548/', 'Vonki Faba', 548, 'ACF_Accord_new.pdf', 'CHD/PCA20198', '/api/v2/agreements/8/', 'Partnership Management Portal', NULL, '2020-02-20 12:51:37.93351+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (565, 'ALTERNATIVES D APPUI STRATEGIQUE AU DVPT', 'Civil Society Organization', '2500240664', 'CHD/PCA20199/HPD201913', 'Other', '/api/v2/attachments/file/565/', 'Vonki Faba', 565, 'amendement_1.pdf', 'CHD/PCA20199', '', 'Partnership Management Portal', 13, '2020-02-20 14:49:47.701861+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (581, 'ALTERNATIVES D APPUI STRATEGIQUE AU DVPT', 'Civil Society Organization', '2500240664', 'CHD/PCA20199/HPD201913', 'FACE', '/api/v2/attachments/file/581/', 'Vonki Faba', 581, '130120AASD.pdf', 'CHD/PCA20199', '', 'Partnership Management Portal', 13, '2020-02-20 14:55:08.580275+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (65, 'ASSOCIATION HELP TCHAD POUR LE DEVELOPPEMENT', 'Civil Society Organization', '2500233810', '', 'Core Values Assessment', '/api/v2/attachments/file/65/', '', 65, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (68, 'ASSOCIATION INTERDIOCÉSAINE DE LUTTE CONTRE LE SIDA', 'Civil Society Organization', '2500213939', '', 'Core Values Assessment', '/api/v2/attachments/file/68/', '', 68, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (597, 'ECOLE SAINE MENAGE SAIN', 'Civil Society Organization', '2500214062', 'CHD/PCA201910/PD201914', '', '/api/v2/attachments/file/597/', 'Vonki Faba', 597, 'Document_de_Programme_67FSC2s.pdf', 'CHD/PCA201910', '/api/v2/interventions/14/', 'Partnership Management Portal', 14, '2020-02-20 16:54:12.538071+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (598, 'COMITE POUR LE DEVELOPPEMENT DU VOLONTARIAT AU TCHAD', 'Civil Society Organization', '2500233727', 'CHD/PCA20194/PD20198', '', '/api/v2/attachments/file/598/', 'Vonki Faba', 598, '3.document_de_programme_CDVT_B0igF09.pdf', 'CHD/PCA20194', '/api/v2/interventions/8/', 'Partnership Management Portal', 8, '2020-02-24 13:36:14.852895+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (599, 'ASSOCIATION DES FEMMES ALLAITANTES', 'Civil Society Organization', '2500235282', 'CHD/SSFA201911', '', '/api/v2/attachments/file/599/', 'Vonki Faba', 599, 'SSFA_DE_AFA.pdf', 'CHD/SSFA201911', '/api/v2/interventions/15/', 'Partnership Management Portal', 15, '2020-02-25 13:50:15.429742+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (604, 'WORLD VISION', 'Civil Society Organization', '2500237165', '', 'FACE form', '/api/v2/attachments/file/604/', 'Mokein Caleb Mian-Gainda', 604, 'FACE_1051_WV_Liquidation_51_189_794FCFA.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F4%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-04 07:13:12.915281+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (606, 'ACRA TCD ECW EDUCATION CANNOT WAIT', 'Civil Society Organization', '2500237522', '', 'FACE form', '/api/v2/attachments/file/606/', 'Mokein Caleb Mian-Gainda', 606, 'ACRA_liquidation_de_16_712_484.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F5%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-04 08:21:04.317628+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (613, 'APSELPA', 'Civil Society Organization', '2500227539', 'CHD/PCA201913/PD201916', 'Other', '/api/v2/attachments/file/613/', 'Mokein Caleb Mian-Gainda', 613, 'Attestation_de_reconnaissance_partenaire.pdf', 'CHD/PCA201913', '', 'Partnership Management Portal', 16, '2020-03-05 16:31:25.295323+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (611, '', '', '', '', '', '/api/v2/attachments/file/611/', 'Mokein Caleb Mian-Gainda', 611, 'Humanitarian_Programme_document__APSELPA.pdf', '', '', '', NULL, '2020-03-04 17:19:07.248432+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (616, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', '', '', '/api/v2/attachments/file/616/', 'Vonki Faba', 616, 'PCA_INTERSOS_Ksrj7Zp.pdf', 'CHD/PCA201914', '/api/v2/agreements/14/', 'Partnership Management Portal', NULL, '2020-03-06 13:08:11.098024+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (632, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918', 'Other', '/api/v2/attachments/file/632/', 'Vonki Faba', 632, '12_-_Autres_echange_mail.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 14:40:48.097176+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (648, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/648/', 'Mokein Caleb Mian-Gainda', 648, 'CPPET_dliquidation_de_1_887_080.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 10:53:40.748733+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (707, '', '', '', '', '', '/api/v2/attachments/file/707/', 'Mokein Caleb Mian-Gainda', 707, 'Signed_DPH_INTERSOS.pdf', '', '', '', NULL, '2020-04-02 10:57:53.91286+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (708, '', '', '', '', '', '/api/v2/attachments/file/708/', 'Mokein Caleb Mian-Gainda', 708, '3._Formulaire_de_soumission_PRC.pdf', '', '', '', NULL, '2020-04-06 19:37:36.026583+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (69, 'ASSOCIATION INTERDIOCESAINE DE LUTTE CONTRE LE SIDA - AILS', 'Civil Society Organization', '2500228048', '', 'Core Values Assessment', '/api/v2/attachments/file/69/', '', 69, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (443, '', '', '', '', '', '/api/v2/attachments/file/443/', 'Mokein Caleb Mian-Gainda', 443, 'Spot_check_JRS_2020_NaoQP2l.zip', '', '', '', NULL, '2020-01-28 15:41:43.720037+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (447, 'DELEGATION SANITAIRE DU SALAMAT', 'Government', '2500214000', '', 'FACE form', '/api/v2/attachments/file/447/', 'Mokein Caleb Mian-Gainda', 447, 'Requete_T3_2018..pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F3%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-01-29 13:44:12.280172+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (450, '', '', '', '', '', '/api/v2/attachments/file/450/', 'Vonki Faba', 450, '2._Accord_de_coopération.pdf', '', '', '', NULL, '2020-02-12 14:14:56.725947+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (467, 'RESEAU NATIONAL TCHADIEN DES ASSOCIATIONS DES PERSONNES VIVANT AVEC LE VIH RNTAP', 'Civil Society Organization', '2500221790', 'CHD/PCA20191/PD20195', 'Other', '/api/v2/attachments/file/467/', 'Vonki Faba', 467, '9.A-Annexe_H_budget_détaillé_du_programme.pdf', 'CHD/PCA20191', '', 'Partnership Management Portal', 5, '2020-02-12 15:13:32.151494+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (481, 'ASSOCIATION DES FEMMES POUR LE DEVELOPPEMENT INTEGRE AFDI', 'Civil Society Organization', '2500223261', 'CHD/PCA20192/PD20196', '', '/api/v2/attachments/file/481/', 'Vonki Faba', 481, 'afdi_doc_de_prog.pdf', 'CHD/PCA20192', '/api/v2/interventions/6/', 'Partnership Management Portal', 6, '2020-02-12 16:21:20.408819+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (488, 'ASSOCIATION DES FEMMES POUR LE DEVELOPPEMENT INTEGRE AFDI', 'Civil Society Organization', '2500223261', 'CHD/PCA20192/PD20196', 'Other', '/api/v2/attachments/file/488/', 'Vonki Faba', 488, 'afdi_soumission.pdf', 'CHD/PCA20192', '', 'Partnership Management Portal', 6, '2020-02-12 16:26:06.261584+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (493, 'CELLULE DE LIAISON ET D INFORMATION DES ASSOCIATIONS FEMININES COORDINATION NATIONALE', 'Civil Society Organization', '2500233143', 'CHD/PCA20193/PD20197', 'FACE', '/api/v2/attachments/file/493/', 'Vonki Faba', 493, 'FACE_111219CELIA.pdf', 'CHD/PCA20193', '', 'Partnership Management Portal', 7, '2020-02-17 12:37:03.799657+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (510, 'COMITE POUR LE DEVELOPPEMENT DU VOLONTARIAT AU TCHAD', 'Civil Society Organization', '2500233727', 'CHD/PCA20194/PD20198', 'Correspondence', '/api/v2/attachments/file/510/', 'Vonki Faba', 510, 'RE_Document_de_programme_avec_CDVT_sur_le_financement_KFW2_pour_ton_approbation_et_transmission_au_Secretariat_PRC.zip', 'CHD/PCA20194', '', 'Partnership Management Portal', 8, '2020-02-17 14:37:29.12808+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (517, 'ASSOCIATION DES GUIDES DU TCHAD', 'Civil Society Organization', '2500213937', 'CHD/PCA20186/PD201810', 'FACE', '/api/v2/attachments/file/517/', 'Vonki Faba', 517, 'PCA_2018_AGT_1ere_tranche.pdf', 'CHD/PCA20186', '', 'Partnership Management Portal', 10, '2020-02-17 16:28:35.49783+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (531, 'UNION DES RADIOS PRIVEES DU TCHAD', 'Civil Society Organization', '2500240733', 'CHD/PCA20197/PD201911', '', '/api/v2/attachments/file/531/', 'Vonki Faba', 531, 'Document_de_Programme_URPT.pdf', 'CHD/PCA20197', '/api/v2/interventions/11/', 'Partnership Management Portal', 11, '2020-02-18 14:31:20.134131+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (543, '', '', '', '', '', '/api/v2/attachments/file/543/', 'Vonki Faba', 543, 'Reponse_extension_sans_cout__PCA_AGT_31_dec_19_Nz72D7E.pdf', '', '', '', NULL, '2020-02-19 13:01:38.325277+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (553, 'ACTION CONTRE LA FAIM FRANCE', 'Civil Society Organization', '2500213920', 'CHD/PCA20198/PD201912', 'Other', '/api/v2/attachments/file/553/', 'Vonki Faba', 553, 'Annexe_K_supply.pdf', 'CHD/PCA20198', '', 'Partnership Management Portal', 12, '2020-02-20 14:02:26.478716+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (549, 'ACTION CONTRE LA FAIM FRANCE', 'Civil Society Organization', '2500213920', 'CHD/PCA20198/PD201912', '', '/api/v2/attachments/file/549/', 'Vonki Faba', 549, 'Annexe_C_1ere_partie.pdf', 'CHD/PCA20198', '/api/v2/interventions/12/', 'Partnership Management Portal', 12, '2020-02-20 13:59:41.678768+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (566, 'ALTERNATIVES D APPUI STRATEGIQUE AU DVPT', 'Civil Society Organization', '2500240664', 'CHD/PCA20199/HPD201913', 'Other', '/api/v2/attachments/file/566/', 'Vonki Faba', 566, 'budget_amendement_1.pdf', 'CHD/PCA20199', '', 'Partnership Management Portal', 13, '2020-02-20 14:50:02.535888+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (582, 'ALTERNATIVES D APPUI STRATEGIQUE AU DVPT', 'Civil Society Organization', '2500240664', 'CHD/PCA20199/HPD201913', 'FACE', '/api/v2/attachments/file/582/', 'Vonki Faba', 582, '210120AASD.pdf', 'CHD/PCA20199', '', 'Partnership Management Portal', 13, '2020-02-20 14:55:27.282832+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (600, 'ASSOCIATION DES FEMMES ALLAITANTES', 'Civil Society Organization', '2500235282', 'CHD/SSFA201911', 'Other', '/api/v2/attachments/file/600/', 'Vonki Faba', 600, 'SSFA_DE_AFA_mrJmiVd.pdf', 'CHD/SSFA201911', '', 'Partnership Management Portal', 15, '2020-02-25 13:51:00.568175+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (605, 'WORLD VISION', 'Civil Society Organization', '2500237165', '', 'FACE form', '/api/v2/attachments/file/605/', 'Mokein Caleb Mian-Gainda', 605, 'FACE_1141WV_Liquidation_59_763_319FCFA.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F4%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-04 07:13:34.235952+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (607, 'ACRA TCD ECW EDUCATION CANNOT WAIT', 'Civil Society Organization', '2500237522', '', 'FACE form', '/api/v2/attachments/file/607/', 'Mokein Caleb Mian-Gainda', 607, 'ACRA_liquidation_de_74_068_782.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F5%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-04 08:21:28.016326+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (610, 'APSELPA', 'Civil Society Organization', '2500227539', '', '', '/api/v2/attachments/file/610/', 'Mokein Caleb Mian-Gainda', 610, 'Document_programme_PCA_urgence_APSELPA_Sept_2019_dBcRF9X.pdf', 'CHD/PCA201913', '/api/v2/agreements/13/', 'Partnership Management Portal', NULL, '2020-03-04 15:03:33.507871+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (612, 'APSELPA', 'Civil Society Organization', '2500227539', 'CHD/PCA201913/PD201916', '', '/api/v2/attachments/file/612/', 'Mokein Caleb Mian-Gainda', 612, 'Humanitarian_Programme_document__APSELPA_zFE4tVp.pdf', 'CHD/PCA201913', '/api/v2/interventions/16/', 'Partnership Management Portal', 16, '2020-03-04 17:45:05.310265+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (614, 'APSELPA', 'Civil Society Organization', '2500227539', 'CHD/PCA201913/PD201916', 'FACE', '/api/v2/attachments/file/614/', 'Mokein Caleb Mian-Gainda', 614, 'FACE_APSELPA_LIQUIDATION_-_PAIEMENT_5_717_000_XAF.pdf', 'CHD/PCA201913', '', 'Partnership Management Portal', 16, '2020-03-05 16:32:35.907159+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (633, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918', 'Other', '/api/v2/attachments/file/633/', 'Vonki Faba', 633, 'Budget_PCA_05_PCA_2019_PRO_Intersoso_active.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 14:41:03.930177+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (617, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918', '', '/api/v2/attachments/file/617/', 'Vonki Faba', 617, 'Document_programme_PCA_active_05PCA2019PROINTERSOS.pdf', 'CHD/PCA201914', '/api/v2/interventions/18/', 'Partnership Management Portal', 18, '2020-03-06 14:35:28.885009+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (649, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/649/', 'Mokein Caleb Mian-Gainda', 649, 'CPPET_Liquidation__de__6_543_050.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 10:54:06.815196+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (713, '', '', '', '', '', '/api/v2/attachments/file/713/', 'Mokein Caleb Mian-Gainda', 713, 'Formulaire_de_soumission_et_dapprobation_au_PRC.pdf', '', '', '', NULL, '2020-04-15 08:05:27.434454+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (77, 'ASSOCIATION POUR LA REINSERTION DES FEMMES VICTIMES DE FISTULE', 'Civil Society Organization', '2500215472', '', 'Core Values Assessment', '/api/v2/attachments/file/77/', '', 77, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (264, 'DREN - MC', 'Government', '2500234921', '', 'Core Values Assessment', '/api/v2/attachments/file/264/', '', 264, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (444, 'JRS UNICEF', 'Civil Society Organization', '2500213951', '', 'FACE form', '/api/v2/attachments/file/444/', 'Mokein Caleb Mian-Gainda', 444, 'JRS_FACE_de_liquidation_de_125_605_517.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F1%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-01-28 15:42:12.121538+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (448, 'DELEGATION SANITAIRE DU SALAMAT', 'Government', '2500214000', '', 'FACE form', '/api/v2/attachments/file/448/', 'Mokein Caleb Mian-Gainda', 448, 'requete_T4_Salamat.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F3%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-01-29 13:44:29.969341+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (451, '', '', '', '', '', '/api/v2/attachments/file/451/', 'Vonki Faba', 451, 'CHDPCA20201.pdf', '', '', '', NULL, '2020-02-12 14:20:21.016869+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (468, '', '', '', '', '', '/api/v2/attachments/file/468/', 'Vonki Faba', 468, '10-Annexe_I_Evaluation_conjointe_du_partenaire.pdf', '', '', '', NULL, '2020-02-12 15:13:52.064525+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (482, 'ASSOCIATION DES FEMMES POUR LE DEVELOPPEMENT INTEGRE AFDI', 'Civil Society Organization', '2500223261', 'CHD/PCA20192/PD20196', 'Other', '/api/v2/attachments/file/482/', 'Vonki Faba', 482, 'afdi_budget.pdf', 'CHD/PCA20192', '', 'Partnership Management Portal', 6, '2020-02-12 16:24:06.730786+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (494, 'CELLULE DE LIAISON ET D INFORMATION DES ASSOCIATIONS FEMININES COORDINATION NATIONALE', 'Civil Society Organization', '2500233143', 'CHD/PCA20193/PD20197', 'Other', '/api/v2/attachments/file/494/', 'Vonki Faba', 494, '0.liste_de_contrôle_CELIAF.pdf', 'CHD/PCA20193', '', 'Partnership Management Portal', 7, '2020-02-17 12:37:19.013815+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (512, 'ASSOCIATION DES SCOUTS DU TCHAD', 'Civil Society Organization', '2500224593', 'CHD/SSFA20195', '', '/api/v2/attachments/file/512/', 'Vonki Faba', 512, 'SSFA_2019_AST_COMMUNICATION.pdf', 'CHD/SSFA20195', '/api/v2/interventions/9/', 'Partnership Management Portal', 9, '2020-02-17 15:14:19.685756+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (518, 'ASSOCIATION DES GUIDES DU TCHAD', 'Civil Society Organization', '2500213937', 'CHD/PCA20186/PD201810', 'FACE', '/api/v2/attachments/file/518/', 'Vonki Faba', 518, '2è_Tranche_PCA_AGT.pdf', 'CHD/PCA20186', '', 'Partnership Management Portal', 10, '2020-02-17 16:28:53.272665+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (532, 'UNION DES RADIOS PRIVEES DU TCHAD', 'Civil Society Organization', '2500240733', 'CHD/PCA20197/PD201911', 'Other', '/api/v2/attachments/file/532/', 'Vonki Faba', 532, 'Formulaire_Declaration_URPT.pdf', 'CHD/PCA20197', '', 'Partnership Management Portal', 11, '2020-02-18 14:36:18.772468+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (82, 'ASSOCIATION POUR LE DEVELOPPEMENT ECONO SOCIAL DU LAC', 'Civil Society Organization', '2500230977', '', 'Core Values Assessment', '/api/v2/attachments/file/82/', '', 82, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (544, 'ASSOCIATION DES GUIDES DU TCHAD', 'Civil Society Organization', '2500213937', 'CHD/PCA20186/PD201810-1', '', '/api/v2/attachments/file/544/', 'Vonki Faba', 544, 'Reponse_extension_sans_cout__PCA_AGT_31_dec_19_mv8kiUB.pdf', 'CHD/PCA20186', '', 'Partnership Management Portal', 10, '2020-02-19 13:02:03.126051+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (84, 'ASSOCIATION POUR LE SERVICE DE SANTE DE ROUROU', 'Civil Society Organization', '2500223632', '', 'Core Values Assessment', '/api/v2/attachments/file/84/', '', 84, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (88, 'ASSOCIATION SOEURS DE NOTRE DAME DES APOTRES', 'Civil Society Organization', '2500237892', '', 'Core Values Assessment', '/api/v2/attachments/file/88/', '', 88, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (550, 'ACTION CONTRE LA FAIM FRANCE', 'Civil Society Organization', '2500213920', 'CHD/PCA20198/PD201912', 'Other', '/api/v2/attachments/file/550/', 'Vonki Faba', 550, 'Annexe_D.pdf', 'CHD/PCA20198', '', 'Partnership Management Portal', 12, '2020-02-20 14:01:34.950407+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (91, 'ASSOICATION CLUB PLANETE JEUNE DE BONGOR', 'Civil Society Organization', '2500223093', '', 'Core Values Assessment', '/api/v2/attachments/file/91/', '', 91, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (94, 'BASE APPUI DSB ET HRA', 'Civil Society Organization', '2500221193', '', 'Core Values Assessment', '/api/v2/attachments/file/94/', '', 94, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (567, 'ALTERNATIVES D APPUI STRATEGIQUE AU DVPT', 'Civil Society Organization', '2500240664', 'CHD/PCA20199/HPD201913', 'Other', '/api/v2/attachments/file/567/', 'Vonki Faba', 567, 'Budget_cfWAvJz.pdf', 'CHD/PCA20199', '', 'Partnership Management Portal', 13, '2020-02-20 14:50:16.521607+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (107, 'CELIAF - MONGO CELIAF - MONGO', 'Civil Society Organization', '2500225655', '', 'Core Values Assessment', '/api/v2/attachments/file/107/', '', 107, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (583, '', '', '', '', '', '/api/v2/attachments/file/583/', 'Vonki Faba', 583, 'Document_de_Programme_8opvTYw.pdf', '', '', '', NULL, '2020-02-20 16:11:39.557709+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (601, '', '', '', '', '', '/api/v2/attachments/file/601/', 'Vonki Faba', 601, '1ERE_TRANCHE_AFA.pdf', '', '', '', NULL, '2020-02-25 13:51:40.111419+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (120, 'CENTRE DE SUPPORT EN SANTÉ INTERNATIONALE', 'Civil Society Organization', '2500213966', '', 'Core Values Assessment', '/api/v2/attachments/file/120/', '', 120, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (608, 'ACRA TCD ECW EDUCATION CANNOT WAIT', 'Civil Society Organization', '2500237522', '', 'FACE form', '/api/v2/attachments/file/608/', 'Mokein Caleb Mian-Gainda', 608, 'ACRA_liquidation_de_208_962_962.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F5%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-04 08:21:41.446557+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (148, 'CONSEIL NATIONAL DE LUTTE CONTRE LE SIDA', 'Government', '2500220945', '', 'Core Values Assessment', '/api/v2/attachments/file/148/', '', 148, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (223, 'DIRECTION DE LA PLANIFICATION ET DU DEV. DU DEVELOPPEMENT', 'Government', '2500214014', '', 'Core Values Assessment', '/api/v2/attachments/file/223/', '', 223, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (225, 'DIRECTION DE L HYDRAULIQUE', 'Government', '2500214017', '', 'Core Values Assessment', '/api/v2/attachments/file/225/', '', 225, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (233, 'DISTRICT SANITAIRE D''ABDI', 'Government', '2500223681', '', 'Core Values Assessment', '/api/v2/attachments/file/233/', '', 233, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (234, 'DISTRICT SANITAIRE D ABECHE', 'Government', '2500214024', '', 'Core Values Assessment', '/api/v2/attachments/file/234/', '', 234, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (615, '', '', '', '', '', '/api/v2/attachments/file/615/', 'Mokein Caleb Mian-Gainda', 615, 'FACE_APSELPA_LIQUIDATION_22868000.pdf', '', '', '', NULL, '2020-03-05 16:32:53.582764+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (235, 'DISTRICT SANITAIRE DABOUGOUDAM', 'Government', '2500233448', '', 'Core Values Assessment', '/api/v2/attachments/file/235/', '', 235, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (618, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918', 'Other', '/api/v2/attachments/file/618/', 'Vonki Faba', 618, '00_-_Fiche_de_revue_de_la_documentation_PCA.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 14:37:19.341739+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (634, '', '', '', '', '', '/api/v2/attachments/file/634/', 'Vonki Faba', 634, 'Document_programme_PCA_active_05PCA2019PROINTERSOS_6OLQ2qS.pdf', '', '', '', NULL, '2020-03-06 14:41:17.344181+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (650, '', '', '', '', '', '/api/v2/attachments/file/650/', 'Mokein Caleb Mian-Gainda', 650, 'CPPET_Liquidation__de__10_086_600.pdf', '', '', '', NULL, '2020-03-11 10:54:29.518308+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (445, 'JRS UNICEF', 'Civil Society Organization', '2500213951', '', 'Other', '/api/v2/attachments/file/445/', 'Mokein Caleb Mian-Gainda', 445, 'PCA_JRS_-_version_finale.zip', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F1%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-01-28 15:45:46.434256+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (452, '', '', '', '', '', '/api/v2/attachments/file/452/', 'Vonki Faba', 452, 'CHD_PCA20201-RESEAU_NATIONAL_TCHADIEN_DES_ASSOCIATIONS_DES_PERSONNES_VIVANT_AVEC_LE_VIH_RNTAP.pdf', '', '', '', NULL, '2020-02-12 14:21:18.47273+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (469, '', '', '', '', '', '/api/v2/attachments/file/469/', 'Vonki Faba', 469, '10-Annexe_I_Evaluation_conjointe_du_partenaire_w6iNj3q.pdf', '', '', '', NULL, '2020-02-12 15:13:59.18195+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (483, 'ASSOCIATION DES FEMMES POUR LE DEVELOPPEMENT INTEGRE AFDI', 'Civil Society Organization', '2500223261', 'CHD/PCA20192/PD20196', 'Supply/Distribution Plan', '/api/v2/attachments/file/483/', 'Vonki Faba', 483, 'afdi_capa_d_appro.pdf', 'CHD/PCA20192', '', 'Partnership Management Portal', 6, '2020-02-12 16:24:24.814751+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (495, 'CELLULE DE LIAISON ET D INFORMATION DES ASSOCIATIONS FEMININES COORDINATION NATIONALE', 'Civil Society Organization', '2500233143', 'CHD/PCA20193/PD20197', 'Other', '/api/v2/attachments/file/495/', 'Vonki Faba', 495, '2.declaration_du_profil_du_partenaire_CELIAF.pdf', 'CHD/PCA20193', '', 'Partnership Management Portal', 7, '2020-02-17 12:37:38.327591+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (513, 'ASSOCIATION DES SCOUTS DU TCHAD', 'Civil Society Organization', '2500224593', 'CHD/SSFA20195', 'Other', '/api/v2/attachments/file/513/', 'Vonki Faba', 513, 'SSFA_2019_AST_COMMUNICATION_lg6mQY3.pdf', 'CHD/SSFA20195', '', 'Partnership Management Portal', 9, '2020-02-17 15:27:16.197562+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (519, 'ASSOCIATION DES GUIDES DU TCHAD', 'Civil Society Organization', '2500213937', 'CHD/PCA20186/PD201810', 'Other', '/api/v2/attachments/file/519/', 'Vonki Faba', 519, '0-Fiche_de_revue_de_la_documentation_PCA_u2vPwn4.pdf', 'CHD/PCA20186', '', 'Partnership Management Portal', 10, '2020-02-17 16:29:32.239215+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (533, 'UNION DES RADIOS PRIVEES DU TCHAD', 'Civil Society Organization', '2500240733', 'CHD/PCA20197/PD201911', 'Other', '/api/v2/attachments/file/533/', 'Vonki Faba', 533, 'Formulaire_soumission.pdf', 'CHD/PCA20197', '', 'Partnership Management Portal', 11, '2020-02-18 14:36:40.064537+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (545, '', '', '', '', '', '/api/v2/attachments/file/545/', 'Vonki Faba', 545, '2_e_extension_sans_cout_AGT..pdf', '', '', '', NULL, '2020-02-19 13:05:38.345609+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (551, 'ACTION CONTRE LA FAIM FRANCE', 'Civil Society Organization', '2500213920', 'CHD/PCA20198/PD201912', 'Other', '/api/v2/attachments/file/551/', 'Vonki Faba', 551, 'Annexe_G_qBqwhqB.pdf', 'CHD/PCA20198', '', 'Partnership Management Portal', 12, '2020-02-20 14:01:55.869373+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (568, 'ALTERNATIVES D APPUI STRATEGIQUE AU DVPT', 'Civil Society Organization', '2500240664', 'CHD/PCA20199/HPD201913', 'Other', '/api/v2/attachments/file/568/', 'Vonki Faba', 568, 'Echange_kRoySHi.pdf', 'CHD/PCA20199', '', 'Partnership Management Portal', 13, '2020-02-20 14:50:33.31595+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (584, '', '', '', '', '', '/api/v2/attachments/file/584/', 'Vonki Faba', 584, 'Document_de_Programme_5YbOyop.pdf', '', '', '', NULL, '2020-02-20 16:46:20.141146+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (619, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918', 'Other', '/api/v2/attachments/file/619/', 'Vonki Faba', 619, '0_-_Lettre_activation_PCA_urgence.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 14:37:40.072638+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (635, '', '', '', '', '', '/api/v2/attachments/file/635/', 'Vonki Faba', 635, 'Document_programme_PCA_active_05PCA2019PROINTERSOS_qAK6V0V.pdf', '', '', '', NULL, '2020-03-06 14:41:22.994121+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (639, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918', 'Other', '/api/v2/attachments/file/639/', 'Vonki Faba', 639, 'Note_au_dossier_PCA_Intersos_active_7RR40Jp.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 14:42:14.428947+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (651, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/651/', 'Mokein Caleb Mian-Gainda', 651, 'CPPET_Liquidation__de__10_086_600_JwwcNSw.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 10:55:05.894658+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (700, 'ASSOCIATION DES FEMMES POUR LE DEVELOPPEMENT INTEGRE AFDI', 'Civil Society Organization', '2500223261', '', 'FACE form', '/api/v2/attachments/file/700/', 'Mokein Caleb Mian-Gainda', 700, '201119AFDI.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F11%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-12 16:50:01.798175+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (678, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/678/', 'Mokein Caleb Mian-Gainda', 678, 'CPPET_liquidation_2_954_500.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:08:03.855258+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (692, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/692/', 'Mokein Caleb Mian-Gainda', 692, 'CPPET_liquidation_de_4_708_400.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:19:33.121549+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (704, 'INTERNATIONAL AID SERVICES', 'Civil Society Organization', '2500214085', '', 'FACE form', '/api/v2/attachments/file/704/', 'Mokein Caleb Mian-Gainda', 704, 'FACE_de_la_demande_de_remboursement-IAS.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F12%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-16 15:12:45.545569+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (706, 'THE MENTOR INITIATIVE', 'Civil Society Organization', '2500225653', '', '', '/api/v2/attachments/file/706/', 'Mokein Caleb Mian-Gainda', 706, 'Accord_de_Cooperation_UNICEF__Menthor_Initiative.pdf', 'CHD/PCA201815', '/api/v2/agreements/15/', 'Partnership Management Portal', NULL, '2020-04-01 10:03:35.503642+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (255, 'DISTRICT SANITAIRE DE MOUNDOU', 'Government', '2500234495', '', 'Core Values Assessment', '/api/v2/attachments/file/255/', '', 255, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (256, 'DISTRICT SANITAIRE DE NGOURI', 'Government', '2500214027', '', 'Core Values Assessment', '/api/v2/attachments/file/256/', '', 256, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (436, 'UNITE DE GESTION DES PROJETS UGP', 'Government', '2500238874', '', 'Core Values Assessment', '/api/v2/attachments/file/436/', '', 436, '', '', '', 'Partnership Management Portal', NULL, '2018-08-29 00:00:00+00'); @@ -5924,40 +6165,150 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (328, 'MINISTERE DE LA INSERT INTO [[schema]].attachments_attachmentflat VALUES (343, 'ONRTV MOUNDOU RADIO', 'Government', '2500224698', '', 'Core Values Assessment', '/api/v2/attachments/file/343/', '', 343, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (21, 'AGENCE INTERGOUVERNEMENTALE PANAFRICAINE EAU ET ASSAINISSEMENT POUR L AFRIQUE', 'Civil Society Organization', '2500223094', '', 'Core Values Assessment', '/api/v2/attachments/file/21/', '', 21, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (346, 'OPAD', 'Civil Society Organization', '2500212785', '', 'Core Values Assessment', '/api/v2/attachments/file/346/', '', 346, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (453, '', '', '', '', '', '/api/v2/attachments/file/453/', 'Vonki Faba', 453, 'CHD_PCA20201-RESEAU_NATIONAL_TCHADIEN_DES_ASSOCIATIONS_DES_PERSONNES_VIVANT_AVEC_LE_VIH_RNTAP_VgIQEHv.pdf', '', '', '', NULL, '2020-02-12 14:28:10.32325+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (470, '', '', '', '', '', '/api/v2/attachments/file/470/', 'Vonki Faba', 470, '10-Annexe_I_Evaluation_conjointe_du_partenaire_YNLAsA0.pdf', '', '', '', NULL, '2020-02-12 15:14:23.647773+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (357, 'PROGRAMME NATIONAL DE LUTTE PALUDISME', 'Government', '2500224804', '', 'Core Values Assessment', '/api/v2/attachments/file/357/', '', 357, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (484, 'ASSOCIATION DES FEMMES POUR LE DEVELOPPEMENT INTEGRE AFDI', 'Civil Society Organization', '2500223261', 'CHD/PCA20192/PD20196', 'Other', '/api/v2/attachments/file/484/', 'Vonki Faba', 484, 'afdi_declaration_du_partenaire.pdf', 'CHD/PCA20192', '', 'Partnership Management Portal', 6, '2020-02-12 16:24:59.144745+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (368, 'RADIO ALRACHAT 89.9 FM', 'Government', '2500224576', '', 'Core Values Assessment', '/api/v2/attachments/file/368/', '', 368, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (435, 'ECOLE SAINE MENAGE SAIN', 'Civil Society Organization', '2500214062', '', 'Core Values Assessment', '/api/v2/attachments/file/435/', '', 435, '', '', '', 'Partnership Management Portal', NULL, '2018-08-12 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (496, 'CELLULE DE LIAISON ET D INFORMATION DES ASSOCIATIONS FEMININES COORDINATION NATIONALE', 'Civil Society Organization', '2500233143', 'CHD/PCA20193/PD20197', 'Other', '/api/v2/attachments/file/496/', 'Vonki Faba', 496, '4.rapport_trimestriel_CELIAF.pdf', 'CHD/PCA20193', '', 'Partnership Management Portal', 7, '2020-02-17 12:37:57.49507+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (514, 'ASSOCIATION DES SCOUTS DU TCHAD', 'Civil Society Organization', '2500224593', 'CHD/SSFA20195', 'FACE', '/api/v2/attachments/file/514/', 'Vonki Faba', 514, 'paiement_1ere_tranche_AST.pdf', 'CHD/SSFA20195', '', 'Partnership Management Portal', 9, '2020-02-17 15:29:11.503764+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (520, 'ASSOCIATION DES GUIDES DU TCHAD', 'Civil Society Organization', '2500213937', 'CHD/PCA20186/PD201810', 'Other', '/api/v2/attachments/file/520/', 'Vonki Faba', 520, '1-Liste_de_controle.pdf', 'CHD/PCA20186', '', 'Partnership Management Portal', 10, '2020-02-17 16:29:48.126868+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (577, '', '', '', '', '', '/api/v2/attachments/file/577/', 'Vonki Faba', 577, 'NCE_ASD.pdf', '', '', '', NULL, '2020-02-20 14:52:59.735424+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (534, 'UNION DES RADIOS PRIVEES DU TCHAD', 'Civil Society Organization', '2500240733', 'CHD/PCA20197/PD201911', 'Other', '/api/v2/attachments/file/534/', 'Vonki Faba', 534, 'Liste_controle.pdf', 'CHD/PCA20197', '', 'Partnership Management Portal', 11, '2020-02-18 14:37:36.477785+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (546, 'ASSOCIATION DES GUIDES DU TCHAD', 'Civil Society Organization', '2500213937', 'CHD/PCA20186/PD201810-1', 'Other', '/api/v2/attachments/file/546/', 'Vonki Faba', 546, '2_e_extension_sans_cout_AGT._D5kWxPt.pdf', 'CHD/PCA20186', '', 'Partnership Management Portal', 10, '2020-02-19 13:05:49.602273+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (552, 'ACTION CONTRE LA FAIM FRANCE', 'Civil Society Organization', '2500213920', 'CHD/PCA20198/PD201912', 'Other', '/api/v2/attachments/file/552/', 'Vonki Faba', 552, 'Annexe_I_Evaluation_conjointe.pdf', 'CHD/PCA20198', '', 'Partnership Management Portal', 12, '2020-02-20 14:02:12.598644+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (569, '', '', '', '', '', '/api/v2/attachments/file/569/', 'Vonki Faba', 569, 'Evaluation_des_capacites_dapprovisionnt.pdf', '', '', '', NULL, '2020-02-20 14:50:46.84238+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (585, '', '', '', '', '', '/api/v2/attachments/file/585/', 'Vonki Faba', 585, 'Budget_detaille_3jjbqW0.pdf', '', '', '', NULL, '2020-02-20 16:46:55.335465+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (603, 'ASSOCIATION DES FEMMES ALLAITANTES', 'Civil Society Organization', '2500235282', 'CHD/SSFA201911', 'FACE', '/api/v2/attachments/file/603/', 'Vonki Faba', 603, '1ere_Tranche_9_687_000_AFA.pdf', 'CHD/SSFA201911', '', 'Partnership Management Portal', 15, '2020-02-25 15:49:11.315582+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (620, '', '', '', '', '', '/api/v2/attachments/file/620/', 'Vonki Faba', 620, '1_-_Note_pour_memoire.pdf', '', '', '', NULL, '2020-03-06 14:37:53.348601+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (636, '', '', '', '', '', '/api/v2/attachments/file/636/', 'Vonki Faba', 636, 'Document_programme_PCA_active_05PCA2019PROINTERSOS_Q5Syfy7.pdf', '', '', '', NULL, '2020-03-06 14:41:38.881778+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (652, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/652/', 'Mokein Caleb Mian-Gainda', 652, 'CPPET_Liquidation__de__16_288_980_et__4_327_120.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 10:55:30.335949+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (666, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/666/', 'Mokein Caleb Mian-Gainda', 666, 'CPPET_Liquidation__de_177_400.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:01:49.384934+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (680, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/680/', 'Mokein Caleb Mian-Gainda', 680, 'CPPET_Liquidation_5_338_700_E7dwDdt.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:12:39.720173+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (693, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/693/', 'Mokein Caleb Mian-Gainda', 693, 'CPPET_liquidation_de_5_054_200.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:19:57.791285+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (701, 'DELEGATION SANITAIRE REGI DU OUADDAI', 'Government', '2500214007', '', 'FACE form', '/api/v2/attachments/file/701/', 'Mokein Caleb Mian-Gainda', 701, '100919DSROU.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F10%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-12 16:53:24.914514+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (705, 'INTERNATIONAL AID SERVICES', 'Civil Society Organization', '2500214085', '', 'Other', '/api/v2/attachments/file/705/', 'Mokein Caleb Mian-Gainda', 705, 'RE_ATT_IAS_Mission_Spot_check_.msg', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F12%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-16 15:13:06.456796+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (710, 'CELLULE DE LIAISON ET D INFORMATION DES ASSOCIATIONS FEMININES COORDINATION NATIONALE', 'Civil Society Organization', '2500233143', 'CHD/PCA20193/PD202022', '', '/api/v2/attachments/file/710/', 'Mokein Caleb Mian-Gainda', 710, '4._Document_de_programme_CELIAF.pdf', 'CHD/PCA20193', '/api/v2/interventions/22/', 'Partnership Management Portal', 22, '2020-04-07 08:36:38.714946+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (714, 'THE MENTOR INITIATIVE', 'Civil Society Organization', '2500225653', 'CHD/PCA201815/PD202021', '', '/api/v2/attachments/file/714/', 'Mokein Caleb Mian-Gainda', 714, 'Document_programme_PCA_02_2020_Mentor.pdf', 'CHD/PCA201815', '/api/v2/interventions/21/', 'Partnership Management Portal', 21, '2020-04-15 08:05:45.072157+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (715, 'ACTION CONTRE LA FAIM FRANCE', 'Civil Society Organization', '2500213920', 'CHD/PCA20198/PD201912-1', '', '/api/v2/attachments/file/715/', 'Mokein Caleb Mian-Gainda', 715, 'NCE_07-2019-_PCA-ACF_-WASH.pdf', 'CHD/PCA20198', '', 'Partnership Management Portal', 12, '2020-04-15 12:26:05.850287+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (440, 'SOUS DIRECTION DE LA VACCINATION SDV', 'Government', '2500239370', '', 'Core Values Assessment', '/api/v2/attachments/file/440/', '', 440, '', '', '', 'Partnership Management Portal', NULL, '2018-10-31 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (454, 'RESEAU NATIONAL TCHADIEN DES ASSOCIATIONS DES PERSONNES VIVANT AVEC LE VIH RNTAP', 'Civil Society Organization', '2500221790', '', '', '/api/v2/attachments/file/454/', 'Vonki Faba', 454, 'CHD_PCA20201-RESEAU_NATIONAL_TCHADIEN_DES_ASSOCIATIONS_DES_PERSONNES_VIVANT_AVEC_LE_VIH_RNTAP_2F5wiTE.pdf', 'CHD/PCA20191', '/api/v2/agreements/1/', 'Partnership Management Portal', NULL, '2020-02-12 14:51:29.655057+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (471, '', '', '', '', '', '/api/v2/attachments/file/471/', 'Vonki Faba', 471, 'Attestation_de_reconnaissance.pdf', '', '', '', NULL, '2020-02-12 15:14:33.631988+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (485, 'ASSOCIATION DES FEMMES POUR LE DEVELOPPEMENT INTEGRE AFDI', 'Civil Society Organization', '2500223261', 'CHD/PCA20192/PD20196', 'Other', '/api/v2/attachments/file/485/', 'Vonki Faba', 485, 'afdi_eval_final_part.pdf', 'CHD/PCA20192', '', 'Partnership Management Portal', 6, '2020-02-12 16:25:13.920074+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (497, 'CELLULE DE LIAISON ET D INFORMATION DES ASSOCIATIONS FEMININES COORDINATION NATIONALE', 'Civil Society Organization', '2500233143', 'CHD/PCA20193/PD20197', 'Other', '/api/v2/attachments/file/497/', 'Vonki Faba', 497, '5.formulaire_de_soumission_CELIAF.pdf', 'CHD/PCA20193', '', 'Partnership Management Portal', 7, '2020-02-17 12:38:14.031329+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (515, 'ASSOCIATION DES GUIDES DU TCHAD', 'Civil Society Organization', '2500213937', '', '', '/api/v2/attachments/file/515/', 'Vonki Faba', 515, '2.A_Accord_de_coopération.pdf', 'CHD/PCA20186', '/api/v2/agreements/6/', 'Partnership Management Portal', NULL, '2020-02-17 15:39:05.313882+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (521, 'ASSOCIATION DES GUIDES DU TCHAD', 'Civil Society Organization', '2500213937', 'CHD/PCA20186/PD201810', 'Other', '/api/v2/attachments/file/521/', 'Vonki Faba', 521, '4-Annexe_C_2e_partie-Rapport_davancement_E04CBD7.pdf', 'CHD/PCA20186', '', 'Partnership Management Portal', 10, '2020-02-17 16:30:02.949765+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (535, '', '', '', '', '', '/api/v2/attachments/file/535/', 'Vonki Faba', 535, 'Note_au_dossier.pdf', '', '', '', NULL, '2020-02-18 14:39:09.936506+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (547, 'ASSOCIATION DES GUIDES DU TCHAD', 'Civil Society Organization', '2500213937', 'CHD/PCA20186/PD201810-2', '', '/api/v2/attachments/file/547/', 'Vonki Faba', 547, '2_e_extension_sans_cout_AGT._4sPm6CW.pdf', 'CHD/PCA20186', '', 'Partnership Management Portal', 10, '2020-02-19 13:12:25.685816+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (554, 'ACTION CONTRE LA FAIM FRANCE', 'Civil Society Organization', '2500213920', 'CHD/PCA20198/PD201912', 'Other', '/api/v2/attachments/file/554/', 'Vonki Faba', 554, 'Budget_tbWMoBb.pdf', 'CHD/PCA20198', '', 'Partnership Management Portal', 12, '2020-02-20 14:02:44.493408+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (4, 'ACRA TCD ECW EDUCATION CANNOT WAIT', 'Civil Society Organization', '2500237522', '', 'Core Values Assessment', '/api/v2/attachments/file/4/', '', 4, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (570, 'ALTERNATIVES D APPUI STRATEGIQUE AU DVPT', 'Civil Society Organization', '2500240664', 'CHD/PCA20199/HPD201913', 'Other', '/api/v2/attachments/file/570/', 'Vonki Faba', 570, 'Evaluation_des_capacites_dapprovisionnt_3gW4XbE.pdf', 'CHD/PCA20199', '', 'Partnership Management Portal', 13, '2020-02-20 14:50:57.067038+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (586, 'ECOLE SAINE MENAGE SAIN', 'Civil Society Organization', '2500214062', 'CHD/PCA201910/PD201914', 'Other', '/api/v2/attachments/file/586/', 'Vonki Faba', 586, 'Budget_detaille_z7Ywa2U.pdf', 'CHD/PCA201910', '', 'Partnership Management Portal', 14, '2020-02-20 16:47:04.56526+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (621, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918', 'Other', '/api/v2/attachments/file/621/', 'Vonki Faba', 621, '1_-_Note_pour_memoire_EIC3TPQ.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 14:38:01.171649+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (637, '', '', '', '', '', '/api/v2/attachments/file/637/', 'Vonki Faba', 637, 'Note_au_dossier_PCA_Intersos_active.pdf', '', '', '', NULL, '2020-03-06 14:41:48.674002+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (653, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/653/', 'Mokein Caleb Mian-Gainda', 653, 'CPPET_Liquidation__de__842_500.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 10:55:50.796667+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (53, 'ASSOCIATION DES REALISATEURS ET DES PRODUCTEURS TCHADIENS', 'Civil Society Organization', '2500228871', '', 'Core Values Assessment', '/api/v2/attachments/file/53/', '', 53, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (667, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/667/', 'Mokein Caleb Mian-Gainda', 667, 'CPPET_Liquidation__de_14_300_040.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:02:59.220313+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (59, 'ASSOCIATION EVECHE DE DOBA', 'Civil Society Organization', '2500228104', '', 'Core Values Assessment', '/api/v2/attachments/file/59/', '', 59, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (61, 'ASSOCIATION FEMININE DEVELOPPEMENT DE DELFI', 'Civil Society Organization', '2500223886', '', 'Core Values Assessment', '/api/v2/attachments/file/61/', '', 61, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (681, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/681/', 'Mokein Caleb Mian-Gainda', 681, 'CPPET_liquidation_7_084_800.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:13:03.953775+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (14, 'AFFOV', 'Civil Society Organization', '2500225499', '', 'Core Values Assessment', '/api/v2/attachments/file/14/', '', 14, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (17, 'AFRICARE', 'Civil Society Organization', '2500213924', '', 'Core Values Assessment', '/api/v2/attachments/file/17/', '', 17, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (694, '', '', '', '', '', '/api/v2/attachments/file/694/', 'Mokein Caleb Mian-Gainda', 694, 'CPPET_liquidation_de_6_920_100.pdf', '', '', '', NULL, '2020-03-11 11:20:38.971406+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (695, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/695/', 'Mokein Caleb Mian-Gainda', 695, 'CPPET_liquidation_de_6_920_100_c26zGfC.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:20:57.31891+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (702, 'DELEGATION SANITAIRE REGI DU OUADDAI', 'Government', '2500214007', '', 'FACE form', '/api/v2/attachments/file/702/', 'Mokein Caleb Mian-Gainda', 702, '121119DSROU.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F10%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-12 16:53:46.987865+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (20, 'AGENCE HUMANITAIRE AFRICAINE AHA', 'Civil Society Organization', '2500234300', '', 'Core Values Assessment', '/api/v2/attachments/file/20/', '', 20, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (709, 'CELLULE DE LIAISON ET D INFORMATION DES ASSOCIATIONS FEMININES COORDINATION NATIONALE', 'Civil Society Organization', '2500233143', 'CHD/PCA20193/PD202022', '', '/api/v2/attachments/file/709/', 'Mokein Caleb Mian-Gainda', 709, '3._Formulaire_de_soumission_PRC_Cob3jLL.pdf', 'CHD/PCA20193', '/api/v2/interventions/22/', 'Partnership Management Portal', 22, '2020-04-07 08:28:42.361615+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (25, 'ANDAT', 'Civil Society Organization', '2500236169', '', 'Core Values Assessment', '/api/v2/attachments/file/25/', '', 25, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (498, '', '', '', '', '', '/api/v2/attachments/file/498/', 'Vonki Faba', 498, '7.formulaire_devaluation_finale_CELIAF.pdf', '', '', '', NULL, '2020-02-17 12:38:29.553124+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (455, 'RESEAU NATIONAL TCHADIEN DES ASSOCIATIONS DES PERSONNES VIVANT AVEC LE VIH RNTAP', 'Civil Society Organization', '2500221790', 'CHD/PCA20191/PD20195', '', '/api/v2/attachments/file/455/', 'Vonki Faba', 455, '3-_Annexe_C_1ere_Partie_-_Document_de_programme.pdf', 'CHD/PCA20191', '/api/v2/interventions/5/', 'Partnership Management Portal', 5, '2020-02-12 15:00:41.957455+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (35, 'ASSOCIATION ARIADA', 'Civil Society Organization', '2500232786', '', 'Core Values Assessment', '/api/v2/attachments/file/35/', '', 35, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (36, 'ASSOCIATION ASSALAMA ASSOCIATION ASSALAMA', 'Civil Society Organization', '2500225656', '', 'Core Values Assessment', '/api/v2/attachments/file/36/', '', 36, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (472, 'RESEAU NATIONAL TCHADIEN DES ASSOCIATIONS DES PERSONNES VIVANT AVEC LE VIH RNTAP', 'Civil Society Organization', '2500221790', 'CHD/PCA20191/PD20195', 'Other', '/api/v2/attachments/file/472/', 'Vonki Faba', 472, '10-Annexe_I_Evaluation_conjointe_du_partenaire_nPBSucs.pdf', 'CHD/PCA20191', '', 'Partnership Management Portal', 5, '2020-02-12 15:14:54.734907+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (486, 'ASSOCIATION DES FEMMES POUR LE DEVELOPPEMENT INTEGRE AFDI', 'Civil Society Organization', '2500223261', 'CHD/PCA20192/PD20196', 'Other', '/api/v2/attachments/file/486/', 'Vonki Faba', 486, 'afdi_liste_de_controle.pdf', 'CHD/PCA20192', '', 'Partnership Management Portal', 6, '2020-02-12 16:25:31.246528+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (522, 'ASSOCIATION DES GUIDES DU TCHAD', 'Civil Society Organization', '2500213937', 'CHD/PCA20186/PD201810', 'Other', '/api/v2/attachments/file/522/', 'Vonki Faba', 522, '5-Annexe_D.pdf', 'CHD/PCA20186', '', 'Partnership Management Portal', 10, '2020-02-17 16:30:19.38863+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (536, 'UNION DES RADIOS PRIVEES DU TCHAD', 'Civil Society Organization', '2500240733', 'CHD/PCA20197/PD201911', 'Other', '/api/v2/attachments/file/536/', 'Vonki Faba', 536, 'Note_au_dossier_V2nwUSD.pdf', 'CHD/PCA20197', '', 'Partnership Management Portal', 11, '2020-02-18 14:39:25.99631+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (555, 'ACTION CONTRE LA FAIM FRANCE', 'Civil Society Organization', '2500213920', 'CHD/PCA20198/PD201912', 'Other', '/api/v2/attachments/file/555/', 'Vonki Faba', 555, 'Declaration_du_profil_de_partenaire.pdf', 'CHD/PCA20198', '', 'Partnership Management Portal', 12, '2020-02-20 14:03:05.878266+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (571, 'ALTERNATIVES D APPUI STRATEGIQUE AU DVPT', 'Civil Society Organization', '2500240664', 'CHD/PCA20199/HPD201913', 'Other', '/api/v2/attachments/file/571/', 'Vonki Faba', 571, 'Formulaire_d_Evaluation_finale_du_partenariat.pdf', 'CHD/PCA20199', '', 'Partnership Management Portal', 13, '2020-02-20 14:51:10.054818+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (587, 'ECOLE SAINE MENAGE SAIN', 'Civil Society Organization', '2500214062', 'CHD/PCA201910/PD201914', 'Other', '/api/v2/attachments/file/587/', 'Vonki Faba', 587, 'Fiche_de_revue_de_PCA.pdf', 'CHD/PCA201910', '', 'Partnership Management Portal', 14, '2020-02-20 16:47:22.638632+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (622, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918', 'Other', '/api/v2/attachments/file/622/', 'Vonki Faba', 622, '3_-_Liste_de_controle_PCA.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 14:38:15.419159+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (638, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918', 'Other', '/api/v2/attachments/file/638/', 'Vonki Faba', 638, 'Document_programme_PCA_active_05PCA2019PROINTERSOS_rL138mR.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 14:41:59.015261+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (654, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/654/', 'Mokein Caleb Mian-Gainda', 654, 'CPPET_Liquidation__de_1_650_000.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 10:56:13.638014+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (668, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/668/', 'Mokein Caleb Mian-Gainda', 668, 'CPPET_Liquidation__de_30_282_200.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:03:19.399308+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (682, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/682/', 'Mokein Caleb Mian-Gainda', 682, 'CPPET_liquidation_8_095_450.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:13:26.062524+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (696, '', '', '', '', '', '/api/v2/attachments/file/696/', 'Mokein Caleb Mian-Gainda', 696, 'CPPET_liquidation_de_9_667_000.pdf', '', '', '', NULL, '2020-03-11 11:21:22.56501+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (698, '', '', '', '', '', '/api/v2/attachments/file/698/', 'Mokein Caleb Mian-Gainda', 698, 'CPPET_liquidation_de_28_308_190.pdf', '', '', '', NULL, '2020-03-11 11:22:13.149298+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (703, 'DELEGATION SANITAIRE REGI DU OUADDAI', 'Government', '2500214007', '', 'FACE form', '/api/v2/attachments/file/703/', 'Mokein Caleb Mian-Gainda', 703, '121119DSROU1.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F10%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-12 16:54:01.623056+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (711, 'CELLULE DE LIAISON ET D INFORMATION DES ASSOCIATIONS FEMININES COORDINATION NATIONALE', 'Civil Society Organization', '2500233143', 'CHD/PCA20193/PD202022', 'Other', '/api/v2/attachments/file/711/', 'Mokein Caleb Mian-Gainda', 711, '4._Document_de_programme_CELIAF_UqhjvTC.pdf', 'CHD/PCA20193', '', 'Partnership Management Portal', 22, '2020-04-07 08:43:56.947623+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (716, 'ONG ASSOCIATION HELP TCHAD POUR LE DEVELOPPEMENT', 'Civil Society Organization', '2500233810', 'CHD/PCA202018/HPD202025', '', '/api/v2/attachments/file/716/', 'Mokein Caleb Mian-Gainda', 716, 'HELP_DPH_2020.pdf', 'CHD/PCA202018', '/api/v2/interventions/25/', 'Partnership Management Portal', 25, '2020-04-16 10:41:45.077886+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (717, 'APSELPA', 'Civil Society Organization', '2500227539', 'CHD/PCA201913/PD201916-1', '', '/api/v2/attachments/file/717/', 'Vonki Faba', 717, 'Lettre_réponse_UNICEF_Extension_avec_cout_5_mars-4_mai_2020.pdf', 'CHD/PCA201913', '', 'Partnership Management Portal', 16, '2020-04-20 12:12:41.696432+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (39, 'ASSOCIATION BOUSSO CONTRE LE SIDA', 'Civil Society Organization', '2500232774', '', 'Core Values Assessment', '/api/v2/attachments/file/39/', '', 39, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (456, '', '', '', '', '', '/api/v2/attachments/file/456/', 'Vonki Faba', 456, '4-Annexe_C_2e_partie-Rapport_davancement.pdf', '', '', '', NULL, '2020-02-12 15:07:57.483812+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (466, 'RESEAU NATIONAL TCHADIEN DES ASSOCIATIONS DES PERSONNES VIVANT AVEC LE VIH RNTAP', 'Civil Society Organization', '2500221790', 'CHD/PCA20191/PD20195', 'Other', '/api/v2/attachments/file/466/', 'Vonki Faba', 466, '8._Formulaire_de_soumission_des_accords_de_partenariat_PPAxoAj.pdf', 'CHD/PCA20191', '', 'Partnership Management Portal', 5, '2020-02-12 15:13:17.515145+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (43, 'ASSOCIATION DES CHEFS TRADITIONNELS DU TCHAD', 'Civil Society Organization', '2500234334', '', 'Core Values Assessment', '/api/v2/attachments/file/43/', '', 43, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (473, 'RESEAU NATIONAL TCHADIEN DES ASSOCIATIONS DES PERSONNES VIVANT AVEC LE VIH RNTAP', 'Civil Society Organization', '2500221790', 'CHD/PCA20191/PD20195', 'Other', '/api/v2/attachments/file/473/', 'Vonki Faba', 473, 'Attestation_de_reconnaissance_4KqfPvw.pdf', 'CHD/PCA20191', '', 'Partnership Management Portal', 5, '2020-02-12 15:15:07.213031+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (487, 'ASSOCIATION DES FEMMES POUR LE DEVELOPPEMENT INTEGRE AFDI', 'Civil Society Organization', '2500223261', 'CHD/PCA20192/PD20196', 'Other', '/api/v2/attachments/file/487/', 'Vonki Faba', 487, 'afdi_rapport_tri.pdf', 'CHD/PCA20192', '', 'Partnership Management Portal', 6, '2020-02-12 16:25:47.520229+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (44, 'ASSOCIATION DES FEMMES ALLAITANTES', 'Civil Society Organization', '2500235282', '', 'Core Values Assessment', '/api/v2/attachments/file/44/', '', 44, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (499, 'CELLULE DE LIAISON ET D INFORMATION DES ASSOCIATIONS FEMININES COORDINATION NATIONALE', 'Civil Society Organization', '2500233143', 'CHD/PCA20193/PD20197', 'Other', '/api/v2/attachments/file/499/', 'Vonki Faba', 499, '8.budget_CELIAF.pdf', 'CHD/PCA20193', '', 'Partnership Management Portal', 7, '2020-02-17 12:38:41.416445+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (47, 'ASSOCIATION DES GUIDES DU TCHAD', 'Civil Society Organization', '2500213937', '', 'Core Values Assessment', '/api/v2/attachments/file/47/', '', 47, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (523, 'ASSOCIATION DES GUIDES DU TCHAD', 'Civil Society Organization', '2500213937', 'CHD/PCA20186/PD201810', 'Other', '/api/v2/attachments/file/523/', 'Vonki Faba', 523, '6_et_7_Annexe_E_et_F_Déclaration_du_partenaire_UWmbQyy.pdf', 'CHD/PCA20186', '', 'Partnership Management Portal', 10, '2020-02-17 16:30:57.402624+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (537, 'UNION DES RADIOS PRIVEES DU TCHAD', 'Civil Society Organization', '2500240733', 'CHD/PCA20197/PD201911', 'Other', '/api/v2/attachments/file/537/', 'Vonki Faba', 537, 'Rapport_Progres_URPT.pdf', 'CHD/PCA20197', '', 'Partnership Management Portal', 11, '2020-02-18 14:39:44.4429+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (556, 'ACTION CONTRE LA FAIM FRANCE', 'Civil Society Organization', '2500213920', 'CHD/PCA20198/PD201912', 'Other', '/api/v2/attachments/file/556/', 'Vonki Faba', 556, 'Echange.pdf', 'CHD/PCA20198', '', 'Partnership Management Portal', 12, '2020-02-20 14:03:30.711629+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (572, 'ALTERNATIVES D APPUI STRATEGIQUE AU DVPT', 'Civil Society Organization', '2500240664', 'CHD/PCA20199/HPD201913', 'Other', '/api/v2/attachments/file/572/', 'Vonki Faba', 572, 'Formulaire_de_demande_fourniture.pdf', 'CHD/PCA20199', '', 'Partnership Management Portal', 13, '2020-02-20 14:51:20.349248+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (588, 'ECOLE SAINE MENAGE SAIN', 'Civil Society Organization', '2500214062', 'CHD/PCA201910/PD201914', 'Other', '/api/v2/attachments/file/588/', 'Vonki Faba', 588, 'Fiche_dexamen_de_la_documentation_PCA.pdf', 'CHD/PCA201910', '', 'Partnership Management Portal', 14, '2020-02-20 16:47:36.05105+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (655, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/655/', 'Mokein Caleb Mian-Gainda', 655, 'CPPET_Liquidation__de_2_127_000.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 10:56:31.061311+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (640, '', '', '', '', '', '/api/v2/attachments/file/640/', 'Vonki Faba', 640, 'FACE_INTERSOS_94_286_021_XAF.pdf', '', '', '', NULL, '2020-03-06 14:45:34.924291+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (669, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/669/', 'Mokein Caleb Mian-Gainda', 669, 'CPPET_Liquidation__de_625_000.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:03:33.911961+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (683, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/683/', 'Mokein Caleb Mian-Gainda', 683, 'CPPET_Liquidation_105_279_560.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:13:47.336806+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (57, 'ASSOCIATION DISPENSAIRE NDA CHAGOUA BP 82 NDJAMENA', 'Civil Society Organization', '2500212780', '', 'Core Values Assessment', '/api/v2/attachments/file/57/', '', 57, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (697, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/697/', 'Mokein Caleb Mian-Gainda', 697, 'CPPET_liquidation_de_9_667_000_XS3AE3E.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:21:41.538997+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (712, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD202019', '', '/api/v2/attachments/file/712/', 'Mokein Caleb Mian-Gainda', 712, 'Signed_DPH_INTERSOS_AM8Fu4Z.pdf', 'CHD/PCA201914', '/api/v2/interventions/19/', 'Partnership Management Portal', 19, '2020-04-07 08:50:21.046764+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (81, 'ASSOCIATION POUR L''AUTOPROMOTION RURALE', 'Government', '2500228415', '', 'Core Values Assessment', '/api/v2/attachments/file/81/', '', 81, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (277, 'FM DAR BADJA', 'Civil Society Organization', '2500228854', '', 'Core Values Assessment', '/api/v2/attachments/file/277/', '', 277, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (457, '', '', '', '', '', '/api/v2/attachments/file/457/', 'Vonki Faba', 457, '0-Fiche_de_revue_de_la_documentation_PCA.pdf', '', '', '', NULL, '2020-02-12 15:10:48.684882+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (474, '', '', '', '', '', '/api/v2/attachments/file/474/', 'Vonki Faba', 474, 'RNTAP_DCT_Liquidation_16212000.pdf', '', '', '', NULL, '2020-02-12 15:18:08.44997+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (89, 'ASSOCIATION TCHADIENNE DES VOLONTAIRES DU PROGRÈS', 'Civil Society Organization', '2500213945', '', 'Core Values Assessment', '/api/v2/attachments/file/89/', '', 89, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (121, 'CENTRE D''ETUDE ET DE RECHERCHE POUR LA DYNAMIQUE DES ORGANISIONS', 'Civil Society Organization', '2500215477', '', 'Core Values Assessment', '/api/v2/attachments/file/121/', '', 121, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (489, 'ASSOCIATION DES FEMMES POUR LE DEVELOPPEMENT INTEGRE AFDI', 'Civil Society Organization', '2500223261', 'CHD/PCA20192/PD20196', 'Other', '/api/v2/attachments/file/489/', 'Vonki Faba', 489, 'Mail_BdZ_Abeche_PCA_AFDI.pdf', 'CHD/PCA20192', '', 'Partnership Management Portal', 6, '2020-02-12 16:26:25.951706+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (500, 'CELLULE DE LIAISON ET D INFORMATION DES ASSOCIATIONS FEMININES COORDINATION NATIONALE', 'Civil Society Organization', '2500233143', 'CHD/PCA20193/PD20197', 'Other', '/api/v2/attachments/file/500/', 'Vonki Faba', 500, '7.formulaire_devaluation_finale_CELIAF_aXlG9RM.pdf', 'CHD/PCA20193', '', 'Partnership Management Portal', 7, '2020-02-17 12:38:57.834278+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (524, 'ASSOCIATION DES GUIDES DU TCHAD', 'Civil Society Organization', '2500213937', 'CHD/PCA20186/PD201810', 'Other', '/api/v2/attachments/file/524/', 'Vonki Faba', 524, '8-Annexe_G.pdf', 'CHD/PCA20186', '', 'Partnership Management Portal', 10, '2020-02-17 16:31:18.415712+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (538, '', '', '', '', '', '/api/v2/attachments/file/538/', 'Vonki Faba', 538, '1ère_Tranche_SSFA_URPT.pdf', '', '', '', NULL, '2020-02-18 14:40:50.769126+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (122, 'CENTRE EVANGÉLIQUE POUR L''ENCADREMENT NUTRITIONNEL', 'Civil Society Organization', '2500226593', '', 'Core Values Assessment', '/api/v2/attachments/file/122/', '', 122, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (258, 'DISTRICT SANITAIRE DE SARH', 'Government', '2500214053', '', 'Core Values Assessment', '/api/v2/attachments/file/258/', '', 258, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (259, 'DISTRICT SANITAIRE DIRIBA', 'Government', '2500229233', '', 'Core Values Assessment', '/api/v2/attachments/file/259/', '', 259, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (264, 'DREN - MC', 'Government', '2500234921', '', 'Core Values Assessment', '/api/v2/attachments/file/264/', '', 264, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (557, 'ACTION CONTRE LA FAIM FRANCE', 'Civil Society Organization', '2500213920', 'CHD/PCA20198/PD201912', 'Other', '/api/v2/attachments/file/557/', 'Vonki Faba', 557, 'fiche_de_revue_du_PCA.pdf', 'CHD/PCA20198', '', 'Partnership Management Portal', 12, '2020-02-20 14:03:45.404173+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (573, '', '', '', '', '', '/api/v2/attachments/file/573/', 'Vonki Faba', 573, 'Formulaire_de_soumission_et_demande_dapprobation_non_PCR.pdf', '', '', '', NULL, '2020-02-20 14:51:35.948734+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (589, 'ECOLE SAINE MENAGE SAIN', 'Civil Society Organization', '2500214062', 'CHD/PCA201910/PD201914', 'Other', '/api/v2/attachments/file/589/', 'Vonki Faba', 589, 'Formualire_de_demande_de_fournitures.pdf', 'CHD/PCA201910', '', 'Partnership Management Portal', 14, '2020-02-20 16:48:03.452532+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (624, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918', 'Other', '/api/v2/attachments/file/624/', 'Vonki Faba', 624, '4_-_05PCA2019PROINTERSOS.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 14:38:55.760662+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (641, '', '', '', '', '', '/api/v2/attachments/file/641/', 'Vonki Faba', 641, 'FACE_INTERSOS_77919697_XAF.pdf', '', '', '', NULL, '2020-03-06 14:46:56.129108+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (656, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/656/', 'Mokein Caleb Mian-Gainda', 656, 'CPPET_liquidation__de_2_176_000.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 10:57:00.854111+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (670, '', '', '', '', '', '/api/v2/attachments/file/670/', 'Mokein Caleb Mian-Gainda', 670, 'CPPET_liquidation__de_798_600.pdf', '', '', '', NULL, '2020-03-11 11:04:21.536958+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (265, 'DRHCO N DJAMENA', 'Government', '2500227032', '', 'Core Values Assessment', '/api/v2/attachments/file/265/', '', 265, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (684, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/684/', 'Mokein Caleb Mian-Gainda', 684, 'CPPET_liquidation_630_000.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:14:07.9204+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (699, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/699/', 'Mokein Caleb Mian-Gainda', 699, 'CPPET_liquidation_de_28_308_190_15Qq2C2.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:22:37.362318+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (458, '', '', '', '', '', '/api/v2/attachments/file/458/', 'Vonki Faba', 458, '0-Fiche_de_revue_de_la_documentation_PCA_OPuwY28.pdf', '', '', '', NULL, '2020-02-12 15:11:03.246669+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (266, 'DRHRU NO', 'Government', '2500226901', '', 'Core Values Assessment', '/api/v2/attachments/file/266/', '', 266, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (475, 'RESEAU NATIONAL TCHADIEN DES ASSOCIATIONS DES PERSONNES VIVANT AVEC LE VIH RNTAP', 'Civil Society Organization', '2500221790', 'CHD/PCA20191/PD20195', 'FACE', '/api/v2/attachments/file/475/', 'Vonki Faba', 475, 'RNTAP_DCT_Liquidation_16212000_ODyaziY.pdf', 'CHD/PCA20191', '', 'Partnership Management Portal', 5, '2020-02-12 15:18:48.18906+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (490, 'ASSOCIATION DES FEMMES POUR LE DEVELOPPEMENT INTEGRE AFDI', 'Civil Society Organization', '2500223261', 'CHD/PCA20192/PD20196', 'Other', '/api/v2/attachments/file/490/', 'Vonki Faba', 490, 'Mail_BdZ_Abeche_PCA_AFDI_Z1ZvUWK.pdf', 'CHD/PCA20192', '', 'Partnership Management Portal', 6, '2020-02-12 16:27:05.75717+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (501, 'COMITE POUR LE DEVELOPPEMENT DU VOLONTARIAT AU TCHAD', 'Civil Society Organization', '2500233727', '', '', '/api/v2/attachments/file/501/', 'Vonki Faba', 501, '1.accord_UNICEF-_CDVT.pdf', 'CHD/PCA20194', '/api/v2/agreements/4/', 'Partnership Management Portal', NULL, '2020-02-17 14:08:15.362471+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (525, 'ASSOCIATION DES GUIDES DU TCHAD', 'Civil Society Organization', '2500213937', 'CHD/PCA20186/PD201810', 'Other', '/api/v2/attachments/file/525/', 'Vonki Faba', 525, '9.A-Annexe_H_budget_détaillé_du_programme_Zn4Jx1m.pdf', 'CHD/PCA20186', '', 'Partnership Management Portal', 10, '2020-02-17 16:31:35.984023+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (558, 'ACTION CONTRE LA FAIM FRANCE', 'Civil Society Organization', '2500213920', 'CHD/PCA20198/PD201912', 'Other', '/api/v2/attachments/file/558/', 'Vonki Faba', 558, 'Liste_de_controle.pdf', 'CHD/PCA20198', '', 'Partnership Management Portal', 12, '2020-02-20 14:04:02.864884+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (240, 'DISTRICT SANITAIRE DE BEBEDJIA', 'Government', '2500232862', '', 'Core Values Assessment', '/api/v2/attachments/file/240/', '', 240, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (574, 'ALTERNATIVES D APPUI STRATEGIQUE AU DVPT', 'Civil Society Organization', '2500240664', 'CHD/PCA20199/HPD201913', 'Other', '/api/v2/attachments/file/574/', 'Vonki Faba', 574, 'Formulaire_de_soumission_et_demande_dapprobation_non_PCR_Oh6frVB.pdf', 'CHD/PCA20199', '', 'Partnership Management Portal', 13, '2020-02-20 14:51:45.176291+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (590, 'ECOLE SAINE MENAGE SAIN', 'Civil Society Organization', '2500214062', 'CHD/PCA201910/PD201914', 'Other', '/api/v2/attachments/file/590/', 'Vonki Faba', 590, 'formulaire_de_declaration_du_parternaire.pdf', 'CHD/PCA201910', '', 'Partnership Management Portal', 14, '2020-02-20 16:48:22.036148+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (625, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918', 'Other', '/api/v2/attachments/file/625/', 'Vonki Faba', 625, '6_-_Annexe_B_2eme_partie_document_de_programme.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 14:39:12.914834+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (642, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918', 'Other', '/api/v2/attachments/file/642/', 'Vonki Faba', 642, 'Formulaire_de_modification_de_programme_UNICEF_Amendement_PCA_INTERSOS.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 15:35:06.529711+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (657, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/657/', 'Mokein Caleb Mian-Gainda', 657, 'CPPET_liquidation__de_2_300_000.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 10:57:22.69952+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (671, '', '', '', '', '', '/api/v2/attachments/file/671/', 'Mokein Caleb Mian-Gainda', 671, 'CPPET_liquidation__de_798_600_mdc729t.pdf', '', '', '', NULL, '2020-03-11 11:04:51.266957+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (685, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/685/', 'Mokein Caleb Mian-Gainda', 685, 'CPPET_Liquidation_886_500.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:14:24.98076+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (268, 'DSR DU CHARI BAGUIRMI', 'Government', '2500230473', '', 'Core Values Assessment', '/api/v2/attachments/file/268/', '', 268, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (272, 'ENTENTE DES EGLISES ET MISSIONS EVANGELIQUE AU TCHAD', 'Civil Society Organization', '2500232846', '', 'Core Values Assessment', '/api/v2/attachments/file/272/', '', 272, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (332, 'MINISTERE DE LA SANTE PUBLIQUE BCE', 'Government', '2500218947', '', 'Core Values Assessment', '/api/v2/attachments/file/332/', '', 332, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (349, 'PAROISSE EVECHE DE LAI', 'Civil Society Organization', '2500233321', '', 'Core Values Assessment', '/api/v2/attachments/file/349/', '', 349, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (350, 'PEV- CAMPAGNE DE MENINGITE TCHAD MSP', 'Government', '2500221252', '', 'Core Values Assessment', '/api/v2/attachments/file/350/', '', 350, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (361, 'PROJET APPUI A LA DSIS FOSAP FONDS MONDIAL', 'Government', '2500221661', '', 'Core Values Assessment', '/api/v2/attachments/file/361/', '', 361, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (93, 'BAMBINI NEL DESERTO', 'Civil Society Organization', '2500215473', '', 'Core Values Assessment', '/api/v2/attachments/file/93/', '', 93, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (363, 'PROJET DE REVITALISATION DES STRUCTURES SANITAIRES DE BASE', 'Government', '2500222713', '', 'Core Values Assessment', '/api/v2/attachments/file/363/', '', 363, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (366, 'RADIO ABSOUN 97.3 FM', 'Government', '2500224577', '', 'Core Values Assessment', '/api/v2/attachments/file/366/', '', 366, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (369, 'RADIO BISSAM DE MONDO KANEM', 'Government', '2500224699', '', 'Core Values Assessment', '/api/v2/attachments/file/369/', '', 369, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); @@ -5970,12 +6321,49 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (12, 'ADRA TCHAD', 'Civ INSERT INTO [[schema]].attachments_attachmentflat VALUES (105, 'CELIAF ANTENNE MONGO', 'Civil Society Organization', '2500232204', '', 'Core Values Assessment', '/api/v2/attachments/file/105/', '', 105, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (108, 'CELIALF ANTENNE DE SARH', 'Civil Society Organization', '2500232850', '', 'Core Values Assessment', '/api/v2/attachments/file/108/', '', 108, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (110, 'CELLULE DE COORDINATION DE PROGRAMME MINISTERE DU PLAN DE L''ECONOMIE ET DE LA COOPERATION', 'Government', '2500213957', '', 'Core Values Assessment', '/api/v2/attachments/file/110/', '', 110, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (459, 'RESEAU NATIONAL TCHADIEN DES ASSOCIATIONS DES PERSONNES VIVANT AVEC LE VIH RNTAP', 'Civil Society Organization', '2500221790', 'CHD/PCA20191/PD20195', 'Other', '/api/v2/attachments/file/459/', 'Vonki Faba', 459, '0-Fiche_de_revue_de_la_documentation_PCA_pvbPSCp.pdf', 'CHD/PCA20191', '', 'Partnership Management Portal', 5, '2020-02-12 15:11:24.026276+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (476, '', '', '', '', '', '/api/v2/attachments/file/476/', 'Vonki Faba', 476, 'Remboursement_RNTAP_1800000_FCFA.pdf', '', '', '', NULL, '2020-02-12 15:19:11.329481+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (502, '', '', '', '', '', '/api/v2/attachments/file/502/', 'Vonki Faba', 502, '3.document_de_programme_CDVT.pdf', '', '', '', NULL, '2020-02-17 14:28:09.015233+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (526, 'ASSOCIATION DES GUIDES DU TCHAD', 'Civil Society Organization', '2500213937', 'CHD/PCA20186/PD201810', 'Other', '/api/v2/attachments/file/526/', 'Vonki Faba', 526, '10-Annexe_I_Evaluation_conjointe_du_partenaire_yP0292o.pdf', 'CHD/PCA20186', '', 'Partnership Management Portal', 10, '2020-02-17 16:31:49.185555+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (540, 'UNION DES RADIOS PRIVEES DU TCHAD', 'Civil Society Organization', '2500240733', 'CHD/PCA20197/PD201911', 'FACE', '/api/v2/attachments/file/540/', 'Vonki Faba', 540, 'FACE_1ere_Tranche_URPT.pdf', 'CHD/PCA20197', '', 'Partnership Management Portal', 11, '2020-02-18 14:43:53.326269+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (559, 'ACTION CONTRE LA FAIM FRANCE', 'Civil Society Organization', '2500213920', 'CHD/PCA20198/PD201912', 'FACE', '/api/v2/attachments/file/559/', 'Vonki Faba', 559, 'Dossier_liquidation_ACFT1_et_paiement_T2_002.pdf', 'CHD/PCA20198', '', 'Partnership Management Portal', 12, '2020-02-20 14:04:31.459834+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (575, 'ALTERNATIVES D APPUI STRATEGIQUE AU DVPT', 'Civil Society Organization', '2500240664', 'CHD/PCA20199/HPD201913', 'Other', '/api/v2/attachments/file/575/', 'Vonki Faba', 575, 'Formulaire_du_declaration_du_partenaire.pdf', 'CHD/PCA20199', '', 'Partnership Management Portal', 13, '2020-02-20 14:52:00.656907+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (591, 'ECOLE SAINE MENAGE SAIN', 'Civil Society Organization', '2500214062', 'CHD/PCA201910/PD201914', 'Other', '/api/v2/attachments/file/591/', 'Vonki Faba', 591, 'Formulaire_de_soumission_et_dapprobation.pdf', 'CHD/PCA201910', '', 'Partnership Management Portal', 14, '2020-02-20 16:48:38.436979+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (626, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918', 'Other', '/api/v2/attachments/file/626/', 'Vonki Faba', 626, '5_-Annexe_B_1ere_partie_document_de_programme_humanitaire_simplifie.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 14:39:28.411807+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (643, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918', 'Other', '/api/v2/attachments/file/643/', 'Vonki Faba', 643, 'BUDGET_AMENDE.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 15:36:03.963244+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (658, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/658/', 'Mokein Caleb Mian-Gainda', 658, 'CPPET_Liquidation__de_3_209_500.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 10:57:41.574326+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (672, '', '', '', '', '', '/api/v2/attachments/file/672/', 'Mokein Caleb Mian-Gainda', 672, 'CPPET_liquidation__de_798_600_0We4Vsw.pdf', '', '', '', NULL, '2020-03-11 11:05:17.166185+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (686, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/686/', 'Mokein Caleb Mian-Gainda', 686, 'CPPET_liquidation_de__4_052_350_et__1_917_000.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:14:53.267533+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (117, 'CENTRE CULTUREL AL-MOUNA', 'Civil Society Organization', '2500213958', '', 'Core Values Assessment', '/api/v2/attachments/file/117/', '', 117, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (460, 'RESEAU NATIONAL TCHADIEN DES ASSOCIATIONS DES PERSONNES VIVANT AVEC LE VIH RNTAP', 'Civil Society Organization', '2500221790', 'CHD/PCA20191/PD20195', 'Other', '/api/v2/attachments/file/460/', 'Vonki Faba', 460, '1-Liste_de_controle_PCA.pdf', 'CHD/PCA20191', '', 'Partnership Management Portal', 5, '2020-02-12 15:11:44.081159+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (477, 'RESEAU NATIONAL TCHADIEN DES ASSOCIATIONS DES PERSONNES VIVANT AVEC LE VIH RNTAP', 'Civil Society Organization', '2500221790', 'CHD/PCA20191/PD20195', 'FACE', '/api/v2/attachments/file/477/', 'Vonki Faba', 477, 'Remboursement_RNTAP_1800000_FCFA_nhltqxS.pdf', 'CHD/PCA20191', '', 'Partnership Management Portal', 5, '2020-02-12 15:19:43.881592+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (125, 'CENTRE NATIONAL NUTRITION ET TECHNOLOGIE ALIMENTAIRE', 'Government', '2500218289', '', 'Core Values Assessment', '/api/v2/attachments/file/125/', '', 125, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (129, 'CJERCAB', 'Civil Society Organization', '2500234565', '', 'Core Values Assessment', '/api/v2/attachments/file/129/', '', 129, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (130, 'CNCDJ CONSEIL NATIONAL CONSULTATIF DES JEUNES', 'Civil Society Organization', '2500224553', '', 'Core Values Assessment', '/api/v2/attachments/file/130/', '', 130, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (134, 'COMITE ISLAMIQUE DU LOGONE OCCIDENT AL', 'Civil Society Organization', '2500219700', '', 'Core Values Assessment', '/api/v2/attachments/file/134/', '', 134, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (228, 'DIRECTION DES ETUDES ET DE PREVISION', 'Government', '2500234840', '', 'Core Values Assessment', '/api/v2/attachments/file/228/', '', 228, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (503, 'COMITE POUR LE DEVELOPPEMENT DU VOLONTARIAT AU TCHAD', 'Civil Society Organization', '2500233727', 'CHD/PCA20194/PD20198', 'Other', '/api/v2/attachments/file/503/', 'Vonki Faba', 503, '0.liste_de_contrôle_CDVT.pdf', 'CHD/PCA20194', '', 'Partnership Management Portal', 8, '2020-02-17 14:32:54.072377+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (527, 'ASSOCIATION DES GUIDES DU TCHAD', 'Civil Society Organization', '2500213937', 'CHD/PCA20186/PD201810', 'Other', '/api/v2/attachments/file/527/', 'Vonki Faba', 527, 'Autorisation_de_fonctionner.pdf', 'CHD/PCA20186', '', 'Partnership Management Portal', 10, '2020-02-17 16:32:18.016053+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (541, 'UNION DES RADIOS PRIVEES DU TCHAD', 'Civil Society Organization', '2500240733', 'CHD/PCA20197/PD201911', 'FACE', '/api/v2/attachments/file/541/', 'Vonki Faba', 541, 'FACE_2e_tranche_URPT.pdf', 'CHD/PCA20197', '', 'Partnership Management Portal', 11, '2020-02-18 14:44:22.876127+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (560, 'ACTION CONTRE LA FAIM FRANCE', 'Civil Society Organization', '2500213920', 'CHD/PCA20198/PD201912', 'FACE', '/api/v2/attachments/file/560/', 'Vonki Faba', 560, 'Liqui_partiel_T1__paiement_T2_WASH_In_NUT.pdf', 'CHD/PCA20198', '', 'Partnership Management Portal', 12, '2020-02-20 14:04:49.966449+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (576, 'ALTERNATIVES D APPUI STRATEGIQUE AU DVPT', 'Civil Society Organization', '2500240664', 'CHD/PCA20199/HPD201913', 'Other', '/api/v2/attachments/file/576/', 'Vonki Faba', 576, 'Liste_de_controle_3iPQned.pdf', 'CHD/PCA20199', '', 'Partnership Management Portal', 13, '2020-02-20 14:52:35.950011+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (592, 'ECOLE SAINE MENAGE SAIN', 'Civil Society Organization', '2500214062', 'CHD/PCA201910/PD201914', 'Other', '/api/v2/attachments/file/592/', 'Vonki Faba', 592, 'formulaire_devaluation_final.pdf', 'CHD/PCA201910', '', 'Partnership Management Portal', 14, '2020-02-20 16:48:52.924487+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (627, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918', 'Other', '/api/v2/attachments/file/627/', 'Vonki Faba', 627, '7_-_Annexe_D_resume_des_services_et_repartition_type_activites.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 14:39:40.070675+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (644, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918-1', '', '/api/v2/attachments/file/644/', 'Vonki Faba', 644, 'BUDGET_AMENDE_yE3yWk7.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 15:36:45.690926+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (659, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/659/', 'Mokein Caleb Mian-Gainda', 659, 'CPPET_liquidation__de_5_241_500.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 10:58:06.646641+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (673, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/673/', 'Mokein Caleb Mian-Gainda', 673, 'CPPET_liquidation__de_798_600_ZOc4gWO.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:06:18.550964+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (687, '', '', '', '', '', '/api/v2/attachments/file/687/', 'Mokein Caleb Mian-Gainda', 687, 'CPPET_liquidation_de_1_000_000_de_17_811_500.pdf', '', '', '', NULL, '2020-03-11 11:15:38.686393+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (461, 'RESEAU NATIONAL TCHADIEN DES ASSOCIATIONS DES PERSONNES VIVANT AVEC LE VIH RNTAP', 'Civil Society Organization', '2500221790', 'CHD/PCA20191/PD20195', 'Other', '/api/v2/attachments/file/461/', 'Vonki Faba', 461, '4-Annexe_C_2e_partie-Rapport_davancement_nqYJQXj.pdf', 'CHD/PCA20191', '', 'Partnership Management Portal', 5, '2020-02-12 15:12:04.701372+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (478, 'RESEAU NATIONAL TCHADIEN DES ASSOCIATIONS DES PERSONNES VIVANT AVEC LE VIH RNTAP', 'Civil Society Organization', '2500221790', 'CHD/PCA20191/PD20195', 'Progress Report', '/api/v2/attachments/file/478/', 'Vonki Faba', 478, 'Rapport_Unicef_T1_2019_final.docx', 'CHD/PCA20191', '', 'Partnership Management Portal', 5, '2020-02-12 15:20:09.247788+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (504, 'COMITE POUR LE DEVELOPPEMENT DU VOLONTARIAT AU TCHAD', 'Civil Society Organization', '2500233727', 'CHD/PCA20194/PD20198', 'Other', '/api/v2/attachments/file/504/', 'Vonki Faba', 504, '2.declaration_du_profil_du_partenaire_CDVT.pdf', 'CHD/PCA20194', '', 'Partnership Management Portal', 8, '2020-02-17 14:33:10.018696+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (528, 'ASSOCIATION DES GUIDES DU TCHAD', 'Civil Society Organization', '2500213937', 'CHD/PCA20186/PD201810', 'Other', '/api/v2/attachments/file/528/', 'Vonki Faba', 528, 'Note_au_dossier_selection_directe.pdf', 'CHD/PCA20186', '', 'Partnership Management Portal', 10, '2020-02-17 16:32:38.124249+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (561, 'ACTION CONTRE LA FAIM FRANCE', 'Civil Society Organization', '2500213920', 'CHD/PCA20198/PD201912', 'FACE', '/api/v2/attachments/file/561/', 'Vonki Faba', 561, 'paiemt_T1_PCA_NO_7_ACF_WASH_NUT.pdf', 'CHD/PCA20198', '', 'Partnership Management Portal', 12, '2020-02-20 14:05:07.819231+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (593, 'ECOLE SAINE MENAGE SAIN', 'Civil Society Organization', '2500214062', 'CHD/PCA201910/PD201914', 'Other', '/api/v2/attachments/file/593/', 'Vonki Faba', 593, 'Liste_de_controle_dpy08nY.pdf', 'CHD/PCA201910', '', 'Partnership Management Portal', 14, '2020-02-20 16:49:08.182283+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (628, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918', 'Other', '/api/v2/attachments/file/628/', 'Vonki Faba', 628, '8_-_Annexe_E_Dclaration_du_profil_de_partenaire.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 14:39:52.748168+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (645, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918-1', '', '/api/v2/attachments/file/645/', 'Vonki Faba', 645, 'Formulaire_de_modification_de_programme_UNICEF_Amendement_PCA_INTERSOS_AmdTkCz.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 15:37:06.14012+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (660, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/660/', 'Mokein Caleb Mian-Gainda', 660, 'CPPET_Liquidation__de_6_666_000.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 10:58:27.902605+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (674, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/674/', 'Mokein Caleb Mian-Gainda', 674, 'CPPET_Liquidation_1_155_250.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:06:39.183234+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (688, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/688/', 'Mokein Caleb Mian-Gainda', 688, 'CPPET_liquidation_de_1_000_000_de_17_811_500_6TTz6D1.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:16:47.832551+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (2, '', '', '1900706553', '', 'Core Values Assessment', '/api/v2/attachments/file/2/', '', 2, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (51, 'ASSOCIATION DES MALADES VIVANTS AVEC LE SIDA', 'Civil Society Organization', '2500232779', '', 'Core Values Assessment', '/api/v2/attachments/file/51/', '', 51, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (54, 'ASSOCIATION DES SCOUTS DU TCHAD', 'Civil Society Organization', '2500224593', '', 'Core Values Assessment', '/api/v2/attachments/file/54/', '', 54, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); @@ -5984,7 +6372,28 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (70, 'ASSOCIATION LABEL INSERT INTO [[schema]].attachments_attachmentflat VALUES (80, 'ASSOCIATION POUR L''AUTOPROMOTION RURALE', 'Civil Society Organization', '2500232382', '', 'Core Values Assessment', '/api/v2/attachments/file/80/', '', 80, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (87, 'ASSOCIATION SAUVER LES ENFANTS DE LA RUE-ASER', 'Civil Society Organization', '2500221314', '', 'Core Values Assessment', '/api/v2/attachments/file/87/', '', 87, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (98, 'BUREAU INFORMATION EDUCATION ET COMMUNI', 'Government', '2500213950', '', 'Core Values Assessment', '/api/v2/attachments/file/98/', '', 98, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (462, 'RESEAU NATIONAL TCHADIEN DES ASSOCIATIONS DES PERSONNES VIVANT AVEC LE VIH RNTAP', 'Civil Society Organization', '2500221790', 'CHD/PCA20191/PD20195', 'Other', '/api/v2/attachments/file/462/', 'Vonki Faba', 462, '5-Annexe_D_-_Résumé_des_services.pdf', 'CHD/PCA20191', '', 'Partnership Management Portal', 5, '2020-02-12 15:12:26.286563+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (479, 'ASSOCIATION DES FEMMES POUR LE DEVELOPPEMENT INTEGRE AFDI', 'Civil Society Organization', '2500223261', '', '', '/api/v2/attachments/file/479/', 'Vonki Faba', 479, 'afdi_accord_de_coop.pdf', 'CHD/PCA20192', '/api/v2/agreements/2/', 'Partnership Management Portal', NULL, '2020-02-12 15:50:23.442562+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (505, 'COMITE POUR LE DEVELOPPEMENT DU VOLONTARIAT AU TCHAD', 'Civil Society Organization', '2500233727', 'CHD/PCA20194/PD20198', 'Other', '/api/v2/attachments/file/505/', 'Vonki Faba', 505, '4.rapport_trimestriel_CDVT.pdf', 'CHD/PCA20194', '', 'Partnership Management Portal', 8, '2020-02-17 14:33:29.70239+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (529, 'ASSOCIATION DES GUIDES DU TCHAD', 'Civil Society Organization', '2500213937', 'CHD/PCA20186/PD201810', 'Other', '/api/v2/attachments/file/529/', 'Vonki Faba', 529, 'Accord_de_coopération_-_PSEA.pdf', 'CHD/PCA20186', '', 'Partnership Management Portal', 10, '2020-02-17 16:36:04.759026+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (562, 'ALTERNATIVES D APPUI STRATEGIQUE AU DVPT', 'Civil Society Organization', '2500240664', '', '', '/api/v2/attachments/file/562/', 'Vonki Faba', 562, 'Accord_de_cooperation.pdf', 'CHD/PCA20199', '/api/v2/agreements/9/', 'Partnership Management Portal', NULL, '2020-02-20 14:23:13.213513+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (578, 'ALTERNATIVES D APPUI STRATEGIQUE AU DVPT', 'Civil Society Organization', '2500240664', 'CHD/PCA20199/HPD201913', 'Other', '/api/v2/attachments/file/578/', 'Vonki Faba', 578, 'NCE_ASD_paQBLhG.pdf', 'CHD/PCA20199', '', 'Partnership Management Portal', 13, '2020-02-20 14:53:06.129729+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (594, 'ECOLE SAINE MENAGE SAIN', 'Civil Society Organization', '2500214062', 'CHD/PCA201910/PD201914', 'Other', '/api/v2/attachments/file/594/', 'Vonki Faba', 594, 'Rapport_standard_trimestriel_du_progres.pdf', 'CHD/PCA201910', '', 'Partnership Management Portal', 14, '2020-02-20 16:49:23.040963+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (629, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918', 'Other', '/api/v2/attachments/file/629/', 'Vonki Faba', 629, '9_-_Annexe_G_Formulaire_de_demande_au_PRC_evaluation_et_approbation.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 14:40:08.042587+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (646, '', '', '', '', '', '/api/v2/attachments/file/646/', 'Vonki Faba', 646, 'Lettre_Demande_Amendement.pdf', '', '', '', NULL, '2020-03-06 15:46:58.021902+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (661, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/661/', 'Mokein Caleb Mian-Gainda', 661, 'CPPET_Liquidation__de_14_013_000.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 10:58:45.949339+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (675, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/675/', 'Mokein Caleb Mian-Gainda', 675, 'CPPET_liquidation_1_212_428.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:06:57.290003+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (689, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/689/', 'Mokein Caleb Mian-Gainda', 689, 'CPPET_liquidation_de_1_877_040.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:17:10.398197+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (100, 'CAMPAGNE MENINGITE TCHAD', 'Government', '2500219702', '', 'Core Values Assessment', '/api/v2/attachments/file/100/', '', 100, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (463, '', '', '', '', '', '/api/v2/attachments/file/463/', 'Vonki Faba', 463, '6_et_7_Annexe_E_et_F_Déclaration_du_partenaire.pdf', '', '', '', NULL, '2020-02-12 15:12:44.302043+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (506, 'COMITE POUR LE DEVELOPPEMENT DU VOLONTARIAT AU TCHAD', 'Civil Society Organization', '2500233727', 'CHD/PCA20194/PD20198', 'Other', '/api/v2/attachments/file/506/', 'Vonki Faba', 506, '5.formulaire_de_soumissionCDVT.pdf', 'CHD/PCA20194', '', 'Partnership Management Portal', 8, '2020-02-17 14:33:47.256167+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (563, '', '', '', '', '', '/api/v2/attachments/file/563/', 'Vonki Faba', 563, 'Document_de_Programme_humanitaire.pdf', '', '', '', NULL, '2020-02-20 14:47:27.04783+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (579, 'ALTERNATIVES D APPUI STRATEGIQUE AU DVPT', 'Civil Society Organization', '2500240664', 'CHD/PCA20199/HPD201913', 'Other', '/api/v2/attachments/file/579/', 'Vonki Faba', 579, 'Rapport_Humanitaire_transmis_une_fois_par_mois.pdf', 'CHD/PCA20199', '', 'Partnership Management Portal', 13, '2020-02-20 14:53:19.890654+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (595, 'ECOLE SAINE MENAGE SAIN', 'Civil Society Organization', '2500214062', 'CHD/PCA201910/PD201914', 'FACE', '/api/v2/attachments/file/595/', 'Vonki Faba', 595, 'DECAISSMT_T1_PCA_24_2019_ESMS.pdf', 'CHD/PCA201910', '', 'Partnership Management Portal', 14, '2020-02-20 16:49:51.20373+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (630, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918', 'Other', '/api/v2/attachments/file/630/', 'Vonki Faba', 630, '10_-_Annexe_H_budget.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 14:40:24.175404+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (647, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918-1', 'Correspondence', '/api/v2/attachments/file/647/', 'Vonki Faba', 647, 'Lettre_Demande_Amendement_uZFla1Y.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 15:47:03.769692+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (676, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/676/', 'Mokein Caleb Mian-Gainda', 676, 'CPPET_Liquidation_1_300_000.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:07:15.008631+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (690, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/690/', 'Mokein Caleb Mian-Gainda', 690, 'CPPET_liquidation_de_2_290_914_et_4_027_200.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:17:29.583487+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (102, 'CARITAS AURA', 'Civil Society Organization', '2500228049', '', 'Core Values Assessment', '/api/v2/attachments/file/102/', '', 102, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (137, 'COMITE REGIONAL DE CROIX ROUGE DU LAC', 'Civil Society Organization', '2500221408', '', 'Core Values Assessment', '/api/v2/attachments/file/137/', '', 137, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (139, 'COMITE REGIONALE D''ACTION LOG OCC', 'Government', '2500228884', '', 'Core Values Assessment', '/api/v2/attachments/file/139/', '', 139, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); @@ -6001,7 +6410,6 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (262, 'DOCTORS OF THE W INSERT INTO [[schema]].attachments_attachmentflat VALUES (273, 'EVECHE DE LAI RADIO EFFATA', 'Civil Society Organization', '2500233646', '', 'Core Values Assessment', '/api/v2/attachments/file/273/', '', 273, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (232, 'DIRECTION RNT SOUS DIRECTION RADIO RURALE', 'Government', '2500214020', '', 'Core Values Assessment', '/api/v2/attachments/file/232/', '', 232, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (274, 'FCACT SABANGALI', 'Civil Society Organization', '2500234967', '', 'Core Values Assessment', '/api/v2/attachments/file/274/', '', 274, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (277, 'FM DAR BADJA', 'Civil Society Organization', '2500228854', '', 'Core Values Assessment', '/api/v2/attachments/file/277/', '', 277, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (281, 'FONDATION DIEU BENIT', 'Civil Society Organization', '2500224985', '', 'Core Values Assessment', '/api/v2/attachments/file/281/', '', 281, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (284, 'GROUPEMENT ALINGUE-ECLAIRAGE', 'Civil Society Organization', '2500234557', '', 'Core Values Assessment', '/api/v2/attachments/file/284/', '', 284, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (287, 'GROUPEMENT DES FILLES MERES', 'Civil Society Organization', '2500232773', '', 'Core Values Assessment', '/api/v2/attachments/file/287/', '', 287, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); @@ -6016,7 +6424,6 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (348, 'OXFAM GB', 'Civi INSERT INTO [[schema]].attachments_attachmentflat VALUES (11, 'ADMINISTRATION PUBLIQUE MAIRIE D AM TIMAN COMMUNE', 'Government', '2500236590', '', 'Core Values Assessment', '/api/v2/attachments/file/11/', '', 11, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (218, 'DIOCESE DE GORE', 'Civil Society Organization', '2500228221', '', 'Core Values Assessment', '/api/v2/attachments/file/218/', '', 218, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (238, 'DISTRICT SANITAIRE DE ABECHE', 'Government', '2500214028', '', 'Core Values Assessment', '/api/v2/attachments/file/238/', '', 238, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (240, 'DISTRICT SANITAIRE DE BEBEDJIA', 'Government', '2500232862', '', 'Core Values Assessment', '/api/v2/attachments/file/240/', '', 240, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (247, 'DISTRICT SANITAIRE DE GUEREDA', 'Government', '2500214041', '', 'Core Values Assessment', '/api/v2/attachments/file/247/', '', 247, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (441, 'ASSOCIATION DES FEMMES ANNASSOUR', 'Civil Society Organization', '2500227536', '', 'Core Values Assessment', '/api/v2/attachments/file/441/', '', 441, '', '', '', 'Partnership Management Portal', NULL, '2018-11-14 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (231, 'DIRECTION GENERALE DE LA SANTE ENVIRONNEMENTALE ET DE LA LUTTE CONTRE LA MALADIE DGSELM', 'Government', '2500235511', '', 'Core Values Assessment', '/api/v2/attachments/file/231/', '', 231, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); @@ -6031,6 +6438,7 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (334, 'MINISTERE DU PLA INSERT INTO [[schema]].attachments_attachmentflat VALUES (337, 'MOUSTAGBAL "AVENIR"', 'Civil Society Organization', '2500212779', '', 'Core Values Assessment', '/api/v2/attachments/file/337/', '', 337, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (338, 'OFFICE NATIONALE DE RADIO ET TELEVISION', 'Government', '2500232691', '', 'Core Values Assessment', '/api/v2/attachments/file/338/', '', 338, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (431, 'ONG CROIX ROUGE FRANCAISE', 'Civil Society Organization', '2500238161', '', 'Core Values Assessment', '/api/v2/attachments/file/431/', '', 431, '', '', '', 'Partnership Management Portal', NULL, '2018-04-25 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (341, 'ONRTV ABECHE', 'Government', '2500224578', '', 'Core Values Assessment', '/api/v2/attachments/file/341/', '', 341, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (342, 'ONRTV ADRE', 'Government', '2500232790', '', 'Core Values Assessment', '/api/v2/attachments/file/342/', '', 342, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (354, 'PROGRAMME CLAC', 'Government', '2500227705', '', 'Core Values Assessment', '/api/v2/attachments/file/354/', '', 354, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (358, 'PROGRAMME PLAIDOYER-COMMUNICATION', 'Government', '2500221199', '', 'Core Values Assessment', '/api/v2/attachments/file/358/', '', 358, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); @@ -6052,7 +6460,6 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (3, 'ACRA', 'Civil Soci INSERT INTO [[schema]].attachments_attachmentflat VALUES (23, 'AIDE BAMBINI NEL DESERTO', 'Civil Society Organization', '2500000912', '', 'Core Values Assessment', '/api/v2/attachments/file/23/', '', 23, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (96, 'BUREAU D''APPUI SANTE ENVIRONNEMENT', 'Civil Society Organization', '2500215474', '', 'Core Values Assessment', '/api/v2/attachments/file/96/', '', 96, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (132, 'COLLATION TCHADIENNE DE LUTTE CONTRE LES TORTURES FAITES AUX ENFANTS ET AUX', 'Civil Society Organization', '2500232849', '', 'Core Values Assessment', '/api/v2/attachments/file/132/', '', 132, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (104, 'CEDIAM DIOCESE DE N''DJAMENA', 'Civil Society Organization', '2500228125', '', 'Core Values Assessment', '/api/v2/attachments/file/104/', '', 104, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (159, 'COORDINATION LOCALE DE L''EEMET DE S ARH/ATEBAM', 'Civil Society Organization', '2500219693', '', 'Core Values Assessment', '/api/v2/attachments/file/159/', '', 159, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (295, 'HOPITAL DE LA MERE ET DE L ENFANT', 'Government', '2500224825', '', 'Core Values Assessment', '/api/v2/attachments/file/295/', '', 295, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (302, 'INITIATIVE HUMANITAIRE POUR LE DEVELOPPEMENT LOCAL TCHAD', 'Civil Society Organization', '2500228112', '', 'Core Values Assessment', '/api/v2/attachments/file/302/', '', 302, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); @@ -6089,6 +6496,7 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (72, 'ASSOCIATION LIGUE INSERT INTO [[schema]].attachments_attachmentflat VALUES (73, 'ASSOCIATION POUR LA DÉFENSE DES DROITS DES CONSOMMATEURS', 'Civil Society Organization', '2500215471', '', 'Core Values Assessment', '/api/v2/attachments/file/73/', '', 73, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (86, 'ASSOCIATION RECAF', 'Civil Society Organization', '2500229793', '', 'Core Values Assessment', '/api/v2/attachments/file/86/', '', 86, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (92, 'ASSOICATION TCHADIENNE POUR LE BIEN ETRE FAMILIAL', 'Civil Society Organization', '2500213931', '', 'Core Values Assessment', '/api/v2/attachments/file/92/', '', 92, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (104, 'CEDIAM DIOCESE DE N''DJAMENA', 'Civil Society Organization', '2500228125', '', 'Core Values Assessment', '/api/v2/attachments/file/104/', '', 104, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (118, 'CENTRE DE SUPPORT (CSSI) EN SANTE INTERNATIONAL', 'Civil Society Organization', '2500224943', '', 'Core Values Assessment', '/api/v2/attachments/file/118/', '', 118, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (124, 'CENTRE NATIONAL DE DEMINAGE', 'Government', '2500214079', '', 'Core Values Assessment', '/api/v2/attachments/file/124/', '', 124, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (193, 'DÉLÉGATION RÉGIONALE DE SANTÉ - BILTINE', 'Government', '2500213998', '', 'Core Values Assessment', '/api/v2/attachments/file/193/', '', 193, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); @@ -6130,6 +6538,7 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (333, 'MINISTERE DE LA INSERT INTO [[schema]].attachments_attachmentflat VALUES (339, 'ONG CONCERN WORLDWIDE', 'Civil Society Organization', '2500215479', '', 'Core Values Assessment', '/api/v2/attachments/file/339/', '', 339, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (344, 'ONRTV MOUSSORO', 'Government', '2500224580', '', 'Core Values Assessment', '/api/v2/attachments/file/344/', '', 344, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (365, 'PROTECTION D ENFANTS AU MINISTERE DE LA DE LA DEFENSE', 'Government', '2500237862', '', 'Core Values Assessment', '/api/v2/attachments/file/365/', '', 365, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (131, 'CNEAH', 'Government', '2500226725', '', 'Core Values Assessment', '/api/v2/attachments/file/131/', '', 131, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (371, 'RADIO COMMUNAUTAIRE DE MONGO', 'Civil Society Organization', '2500215493', '', 'Core Values Assessment', '/api/v2/attachments/file/371/', '', 371, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (388, 'RADIO RURALE DE GOUNOU-GAYA', 'Civil Society Organization', '2500212812', '', 'Core Values Assessment', '/api/v2/attachments/file/388/', '', 388, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (395, 'RADIO ZAHSOO DE LERE', 'Civil Society Organization', '2500224923', '', 'Core Values Assessment', '/api/v2/attachments/file/395/', '', 395, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); @@ -6146,6 +6555,7 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (9, 'ACTION D''AIDE A L INSERT INTO [[schema]].attachments_attachmentflat VALUES (19, 'AGENCE DE DEVELOPPEMENT ECONOMIQUE ET SOCIALE ADES', 'Civil Society Organization', '2500228587', '', 'Core Values Assessment', '/api/v2/attachments/file/19/', '', 19, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (13, 'AFASALES', 'Civil Society Organization', '2500224381', '', 'Core Values Assessment', '/api/v2/attachments/file/13/', '', 13, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (24, 'ALLIANCE FOR INTERNATIONAL MEDICAL ACTION ALIMA', 'Civil Society Organization', '2500228510', '', 'Core Values Assessment', '/api/v2/attachments/file/24/', '', 24, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (507, '', '', '', '', '', '/api/v2/attachments/file/507/', 'Vonki Faba', 507, '7.formulaire_evaluation_finale_CDVT.pdf', '', '', '', NULL, '2020-02-17 14:34:09.225033+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (28, 'A.P.S.C.O.F.I.S', 'Civil Society Organization', '2500226636', '', 'Core Values Assessment', '/api/v2/attachments/file/28/', '', 28, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (29, 'APSELPA AGAT CHAWAYE', 'Civil Society Organization', '2500227539', '', 'Core Values Assessment', '/api/v2/attachments/file/29/', '', 29, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (34, 'ASSOCIATION AIDE SOCIALE ET DVLPT INT.', 'Civil Society Organization', '2500234497', '', 'Core Values Assessment', '/api/v2/attachments/file/34/', '', 34, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); @@ -6177,7 +6587,6 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (76, 'ASSOCIATION POUR INSERT INTO [[schema]].attachments_attachmentflat VALUES (78, 'ASSOCIATION POUR L''ASSAINISSEMENT TOTAL', 'Civil Society Organization', '2500225602', '', 'Core Values Assessment', '/api/v2/attachments/file/78/', '', 78, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (83, 'ASSOCIATION POUR LE DEVELOPPEMENT REGION DU BATHA', 'Civil Society Organization', '2500232531', '', 'Core Values Assessment', '/api/v2/attachments/file/83/', '', 83, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (85, 'ASSOCIATION RADIO FM DOUMCHI DAGANA MASSAKORY', 'Civil Society Organization', '2500229055', '', 'Core Values Assessment', '/api/v2/attachments/file/85/', '', 85, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); -INSERT INTO [[schema]].attachments_attachmentflat VALUES (93, 'BAMBINI NEL DESERTO', 'Civil Society Organization', '2500215473', '', 'Core Values Assessment', '/api/v2/attachments/file/93/', '', 93, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (95, 'BELACD CARITAS DE LAI', 'Civil Society Organization', '2500228222', '', 'Core Values Assessment', '/api/v2/attachments/file/95/', '', 95, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (101, 'CARE INTERNATIONAL', 'Civil Society Organization', '2500213954', '', 'Core Values Assessment', '/api/v2/attachments/file/101/', '', 101, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (106, 'CELIAF CELLULE DE BOL LAC', 'Civil Society Organization', '2500232212', '', 'Core Values Assessment', '/api/v2/attachments/file/106/', '', 106, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); @@ -6243,6 +6652,7 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (382, 'RADIO HARMONIE F INSERT INTO [[schema]].attachments_attachmentflat VALUES (389, 'RADIO SOLEI KAR UBA', 'Civil Society Organization', '2500232402', '', 'Core Values Assessment', '/api/v2/attachments/file/389/', '', 389, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (392, 'RADIO TERRE NOUVELLE', 'Civil Society Organization', '2500212813', '', 'Core Values Assessment', '/api/v2/attachments/file/392/', '', 392, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (394, 'RADIO TOB FM DE KOUMRA ACDM', 'Civil Society Organization', '2500233645', '', 'Core Values Assessment', '/api/v2/attachments/file/394/', '', 394, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (396, 'REAT', 'Civil Society Organization', '2500224473', '', 'Core Values Assessment', '/api/v2/attachments/file/396/', '', 396, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (397, 'REFUGEE EDUCATION TRUST RET', 'Civil Society Organization', '2500237473', '', 'Core Values Assessment', '/api/v2/attachments/file/397/', '', 397, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (400, 'RESEAU DES JOURNALISTES TCHADIENS EN NUTRITION', 'Civil Society Organization', '2500237900', '', 'Core Values Assessment', '/api/v2/attachments/file/400/', '', 400, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (405, 'RESEAU ISLAMIQUE POUR POPULATION "FOSAP"', 'Civil Society Organization', '2500234970', '', 'Core Values Assessment', '/api/v2/attachments/file/405/', '', 405, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); @@ -6338,6 +6748,16 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (312, 'JOURNAL LE COURR INSERT INTO [[schema]].attachments_attachmentflat VALUES (313, 'JOURNAL L''OBSERVATEUR', 'Government', '2500214099', '', 'Core Values Assessment', '/api/v2/attachments/file/313/', '', 313, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (315, 'JRS UNICEF', 'Civil Society Organization', '2500213951', '', 'Core Values Assessment', '/api/v2/attachments/file/315/', '', 315, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); INSERT INTO [[schema]].attachments_attachmentflat VALUES (316, 'LA FUTURE PORTE DU TCHAD', 'Civil Society Organization', '2500214101', '', 'Core Values Assessment', '/api/v2/attachments/file/316/', '', 316, '', '', '', 'Partnership Management Portal', NULL, '2018-03-29 00:00:00+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (464, 'RESEAU NATIONAL TCHADIEN DES ASSOCIATIONS DES PERSONNES VIVANT AVEC LE VIH RNTAP', 'Civil Society Organization', '2500221790', 'CHD/PCA20191/PD20195', 'Other', '/api/v2/attachments/file/464/', 'Vonki Faba', 464, '6_et_7_Annexe_E_et_F_Déclaration_du_partenaire_7QQYa38.pdf', 'CHD/PCA20191', '', 'Partnership Management Portal', 5, '2020-02-12 15:12:57.465133+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (508, 'COMITE POUR LE DEVELOPPEMENT DU VOLONTARIAT AU TCHAD', 'Civil Society Organization', '2500233727', 'CHD/PCA20194/PD20198', 'Other', '/api/v2/attachments/file/508/', 'Vonki Faba', 508, '8.budget_CDVT.pdf', 'CHD/PCA20194', '', 'Partnership Management Portal', 8, '2020-02-17 14:34:17.166242+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (511, 'COMITE POUR LE DEVELOPPEMENT DU VOLONTARIAT AU TCHAD', 'Civil Society Organization', '2500233727', 'CHD/PCA20194/PD20198', 'Correspondence', '/api/v2/attachments/file/511/', 'Vonki Faba', 511, 'Re_Docs_pour_le_document_de_progamme_debut_echange_avecc_CDVT.zip', 'CHD/PCA20194', '', 'Partnership Management Portal', 8, '2020-02-17 14:37:46.097198+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (564, 'ALTERNATIVES D APPUI STRATEGIQUE AU DVPT', 'Civil Society Organization', '2500240664', 'CHD/PCA20199/HPD201913', '', '/api/v2/attachments/file/564/', 'Vonki Faba', 564, 'Document_de_Programme_humanitaire_vl0GpqY.pdf', 'CHD/PCA20199', '/api/v2/interventions/13/', 'Partnership Management Portal', 13, '2020-02-20 14:48:38.173146+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (580, 'ALTERNATIVES D APPUI STRATEGIQUE AU DVPT', 'Civil Society Organization', '2500240664', 'CHD/PCA20199/HPD201913', 'FACE', '/api/v2/attachments/file/580/', 'Vonki Faba', 580, 'Paiement_asd_cholera_mk.pdf', 'CHD/PCA20199', '', 'Partnership Management Portal', 13, '2020-02-20 14:53:40.882002+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (596, 'ECOLE SAINE MENAGE SAIN', 'Civil Society Organization', '2500214062', '', '', '/api/v2/attachments/file/596/', 'Vonki Faba', 596, 'Accord_de_cooperation_XET1FYe.pdf', 'CHD/PCA201910', '/api/v2/agreements/10/', 'Partnership Management Portal', NULL, '2020-02-20 16:52:55.905693+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (631, 'INTERSOS PROJET UNICEF', 'Civil Society Organization', '2500218808', 'CHD/PCA201914/HPD201918', 'Other', '/api/v2/attachments/file/631/', 'Vonki Faba', 631, '11_-_Annexe_I_Evaluation_conjointe_du_partenaire.pdf', 'CHD/PCA201914', '', 'Partnership Management Portal', 18, '2020-03-06 14:40:37.198102+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (677, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/677/', 'Mokein Caleb Mian-Gainda', 677, 'CPPET_liquidation_1_760_400.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:07:40.487509+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (679, '', '', '', '', '', '/api/v2/attachments/file/679/', 'Mokein Caleb Mian-Gainda', 679, 'CPPET_Liquidation_5_338_700.pdf', '', '', '', NULL, '2020-03-11 11:12:02.649935+00'); +INSERT INTO [[schema]].attachments_attachmentflat VALUES (691, 'COORDINATION PRINCIPALE PROGRAMME EDUCATION', 'Government', '2500213988', '', 'FACE form', '/api/v2/attachments/file/691/', 'Mokein Caleb Mian-Gainda', 691, 'CPPET_liquidation_de_4_456_100.pdf', '', 'https://etools.unicef.org/login/?next=%2Fusers%2Fapi%2Fchangecountry%2F%3Fcountry%3D131%26next%3D%252Fap%252Fspot-checks%252F2%252Foverview', 'Financial Assurance (FAM)', NULL, '2020-03-11 11:17:52.303012+00'); -- @@ -6356,36 +6776,108 @@ INSERT INTO [[schema]].attachments_attachmentflat VALUES (316, 'LA FUTURE PORTE -- Data for Name: audit_engagement; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].audit_engagement VALUES (5, '2020-03-04 08:18:46.919728+00', '2020-03-11 10:35:42.358921+00', 'partner_contacted', '2020-02-06', 'sc', '2019-05-01', '2019-11-30', 509058.24, '2020-03-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 416, false, 1, NULL, '{}', 0.00, ''); +INSERT INTO [[schema]].audit_engagement VALUES (6, '2020-03-05 08:00:39.070762+00', '2020-03-05 08:01:21.571998+00', 'cancelled', '2020-02-27', 'sc', '2019-01-02', '2019-08-01', 74637.89, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-05', 0.00, 0.00, 0.00, 0.00, 'Error on the end date', '', 268, false, 1, NULL, '{}', 0.00, ''); +INSERT INTO [[schema]].audit_engagement VALUES (4, '2020-03-03 16:43:25.118868+00', '2020-03-03 16:53:41.102468+00', 'partner_contacted', '2020-02-03', 'sc', '2019-07-01', '2019-09-30', 188352.80, '2020-02-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 415, false, 1, NULL, '{}', 0.00, ''); +INSERT INTO [[schema]].audit_engagement VALUES (8, '2020-03-05 17:31:53.569976+00', '2020-03-05 17:40:50.717234+00', 'partner_contacted', '2020-02-19', 'sc', '2019-07-01', '2019-09-30', 122951.00, '2020-02-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 430, false, 1, NULL, '{}', 0.00, 'XAF'); +INSERT INTO [[schema]].audit_engagement VALUES (1, '2020-01-28 15:04:03.948502+00', '2020-03-06 14:18:19.374437+00', 'partner_contacted', '2020-01-15', 'sc', '2019-07-01', '2019-09-30', 213792.00, '2020-01-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 53, false, 1, NULL, '{}', 0.00, ''); +INSERT INTO [[schema]].audit_engagement VALUES (9, '2020-03-12 08:54:01.823306+00', '2020-03-12 08:57:42.583151+00', 'partner_contacted', '2020-02-27', 'sc', '2019-01-02', '2019-08-31', 74637.89, '2020-03-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 449, false, 1, NULL, '{}', 0.00, 'XAF'); +INSERT INTO [[schema]].audit_engagement VALUES (7, '2020-03-05 08:07:16.125397+00', '2020-03-11 10:49:06.018094+00', 'cancelled', '2020-01-27', 'sc', '2019-01-02', '2019-08-31', 74637.89, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-11', 0.00, 0.00, 0.00, 0.00, 'Wrong amount and period covered', '', 268, false, 1, NULL, '{}', 0.00, ''); +INSERT INTO [[schema]].audit_engagement VALUES (2, '2020-01-28 16:12:29.340826+00', '2020-03-11 11:23:01.387665+00', 'partner_contacted', '2020-01-27', 'sc', '2018-01-02', '2019-06-30', 611872.00, '2020-03-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 125, false, 1, NULL, '{}', 0.00, ''); +INSERT INTO [[schema]].audit_engagement VALUES (11, '2020-03-12 16:46:31.303228+00', '2020-03-12 16:46:31.303228+00', 'partner_contacted', '2020-03-04', 'sc', '2019-07-01', '2019-10-31', 63790.52, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 182, false, 1, NULL, '{}', 0.00, ''); +INSERT INTO [[schema]].audit_engagement VALUES (10, '2020-03-12 16:33:21.869655+00', '2020-03-12 16:54:10.323455+00', 'partner_contacted', '2020-03-04', 'sc', '2019-03-01', '2019-06-30', 148681.92, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 49, false, 1, NULL, '{}', 0.00, ''); +INSERT INTO [[schema]].audit_engagement VALUES (13, '2020-03-19 13:40:09.866833+00', '2020-03-19 13:40:09.866833+00', 'partner_contacted', '2020-03-10', 'sc', '2019-03-01', '2019-08-31', 271824.93, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 7, false, 1, NULL, '{}', 0.00, ''); +INSERT INTO [[schema]].audit_engagement VALUES (12, '2020-03-16 15:12:12.492491+00', '2020-03-16 16:13:32.773441+00', 'partner_contacted', '2020-03-10', 'sc', '2019-10-01', '2019-12-31', 46101.69, '2020-03-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 7, false, 1, NULL, '{}', 0.00, ''); +INSERT INTO [[schema]].audit_engagement VALUES (3, '2020-01-29 13:38:51.470532+00', '2020-03-19 14:19:48.685717+00', 'partner_contacted', '2020-01-29', 'sc', '2019-01-02', '2019-03-31', 143538.00, '2020-02-04', '2020-03-12', '2020-03-19', '2020-03-19', NULL, NULL, NULL, NULL, 0.00, 0.00, 0.00, 0.00, '', '', 42, false, 1, NULL, '{}', 0.00, ''); -- -- Data for Name: audit_engagement_active_pd; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].audit_engagement_active_pd VALUES (1, 11, 6); -- -- Data for Name: audit_engagement_authorized_officers; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].audit_engagement_authorized_officers VALUES (1, 11, 2); -- -- Data for Name: audit_engagement_offices; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].audit_engagement_offices VALUES (1, 1, 387); +INSERT INTO [[schema]].audit_engagement_offices VALUES (2, 2, 387); +INSERT INTO [[schema]].audit_engagement_offices VALUES (3, 3, 390); +INSERT INTO [[schema]].audit_engagement_offices VALUES (4, 4, 387); +INSERT INTO [[schema]].audit_engagement_offices VALUES (5, 5, 387); +INSERT INTO [[schema]].audit_engagement_offices VALUES (6, 6, 387); +INSERT INTO [[schema]].audit_engagement_offices VALUES (7, 7, 387); +INSERT INTO [[schema]].audit_engagement_offices VALUES (8, 8, 387); +INSERT INTO [[schema]].audit_engagement_offices VALUES (9, 9, 387); +INSERT INTO [[schema]].audit_engagement_offices VALUES (10, 10, 387); +INSERT INTO [[schema]].audit_engagement_offices VALUES (11, 11, 387); +INSERT INTO [[schema]].audit_engagement_offices VALUES (12, 13, 387); -- -- Data for Name: audit_engagement_sections; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].audit_engagement_sections VALUES (1, 1, 9); +INSERT INTO [[schema]].audit_engagement_sections VALUES (2, 2, 9); +INSERT INTO [[schema]].audit_engagement_sections VALUES (3, 3, 7); +INSERT INTO [[schema]].audit_engagement_sections VALUES (4, 4, 7); +INSERT INTO [[schema]].audit_engagement_sections VALUES (5, 5, 9); +INSERT INTO [[schema]].audit_engagement_sections VALUES (6, 6, 7); +INSERT INTO [[schema]].audit_engagement_sections VALUES (7, 7, 7); +INSERT INTO [[schema]].audit_engagement_sections VALUES (8, 8, 7); +INSERT INTO [[schema]].audit_engagement_sections VALUES (9, 9, 7); +INSERT INTO [[schema]].audit_engagement_sections VALUES (10, 10, 7); +INSERT INTO [[schema]].audit_engagement_sections VALUES (11, 11, 7); +INSERT INTO [[schema]].audit_engagement_sections VALUES (12, 13, 8); -- -- Data for Name: audit_engagement_staff_members; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (1, 1, 1468); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (2, 1, 1469); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (3, 2, 1472); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (4, 2, 1470); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (5, 2, 1471); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (6, 3, 1488); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (7, 3, 1489); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (8, 3, 1493); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (10, 4, 1531); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (11, 4, 1532); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (12, 4, 1533); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (13, 5, 1536); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (14, 5, 1532); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (15, 5, 1535); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (16, 2, 1537); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (17, 6, 1539); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (18, 6, 1470); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (19, 7, 1539); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (20, 7, 1470); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (21, 8, 1540); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (22, 8, 1541); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (23, 9, 1539); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (24, 9, 1470); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (25, 10, 1546); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (26, 10, 1547); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (27, 10, 1548); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (28, 11, 1546); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (29, 11, 1547); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (30, 11, 1548); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (31, 12, 1468); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (32, 13, 1472); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (33, 13, 1532); +INSERT INTO [[schema]].audit_engagement_staff_members VALUES (34, 13, 1471); -- @@ -6605,6 +7097,19 @@ INSERT INTO [[schema]].audit_riskcategory VALUES (38, 6, 'Procurement', 'default -- Data for Name: audit_spotcheck; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].audit_spotcheck VALUES (5, 0.00, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (6, 0.00, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (4, 188352.80, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (8, 0.00, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (1, 0.00, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (9, 0.00, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (7, 0.00, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (2, 0.00, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (11, 0.00, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (10, 0.00, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (13, 0.00, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (12, 0.00, 0.00, ''); +INSERT INTO [[schema]].audit_spotcheck VALUES (3, 0.00, 0.00, ''); -- @@ -6626,6 +7131,68 @@ INSERT INTO [[schema]].django_comments VALUES (10, '27', '', '', '', 'Tous les d INSERT INTO [[schema]].django_comments VALUES (11, '40', '', '', '', 'Mobiliser les APE pour qu’elles mobilisent les communautes à soutenir scolarisation des enfants', '2019-11-12 14:34:59.734173+00', NULL, true, false, 270, 1, 14616); INSERT INTO [[schema]].django_comments VALUES (12, '39', '', '', '', 'Mobiliser les APE pour qu’elles mobilisent les communautes à soutenir la scolarisation des enfants', '2019-11-12 14:49:17.854656+00', NULL, true, false, 270, 1, 14616); INSERT INTO [[schema]].django_comments VALUES (13, '12', '', '', '', 'Realiser', '2019-11-12 15:37:37.264658+00', NULL, true, false, 270, 1, 14616); +INSERT INTO [[schema]].django_comments VALUES (14, '41', '', '', '', 'Realise et cloture', '2019-11-21 11:03:20.943721+00', NULL, true, false, 270, 1, 14616); +INSERT INTO [[schema]].django_comments VALUES (15, '44', '', '', '', 'J''ai envoye un mail au responsable national de la logistique (Ali Orchei) et au chef de depot subnational de Moundou (Ahmat Djabar Khamis) avec copie au chef des operations vaccinales (Leonie Ngaordoum), Sous directeur de la vaccination (Youssouf Annadif), au chef d''equipe immunisation UNICEF (Dr Etienne D.) et a Dr Etienne M. ce 25 novembre 2019.', '2019-11-25 08:14:27.956546+00', NULL, true, false, 270, 1, 9333); +INSERT INTO [[schema]].django_comments VALUES (62, '101', '', '', '', 'Le feedback été fait lors des sessions de formation (HACT et ECM/OneDrive) du staff dans les BZ d’Abéché, Bol et Moundou', '2020-04-09 06:47:38.109429+00', NULL, true, false, 270, 1, 4606); +INSERT INTO [[schema]].django_comments VALUES (17, '15', '', '', '', 'l''outil mis a la disposition de la DSP est en attente de validation', '2019-12-02 08:01:59.023599+00', NULL, true, false, 270, 1, 173681); +INSERT INTO [[schema]].django_comments VALUES (18, '50', '', '', '', 'La recommandation a deja ete portee a la connaissance du Medecin Chef de District de Bebedjia', '2019-12-02 08:04:13.832574+00', NULL, true, false, 270, 1, 11859); +INSERT INTO [[schema]].django_comments VALUES (19, '45', '', '', '', 'Recommandation portee a la connaisance des MBD de Doba, Bebedjia et Bodo pour prise d''action', '2019-12-02 08:40:59.499411+00', NULL, true, false, 270, 1, 11859); +INSERT INTO [[schema]].django_comments VALUES (20, '46', '', '', '', 'Cette recommandation a ete portee a la connaissances des Medecins chefs de districts en vue d''emettre une instruction aux RCS', '2019-12-02 16:12:31.822558+00', NULL, true, false, 270, 1, 11859); +INSERT INTO [[schema]].django_comments VALUES (21, '47', '', '', '', 'Recommandation transmise aux medecins chefs de district en leur demandant d''emettre une instruction aux RCS lors de la reunion de monitorage', '2019-12-02 16:18:40.444883+00', NULL, true, false, 270, 1, 11859); +INSERT INTO [[schema]].django_comments VALUES (22, '64', '', '', '', 'Le suivi avec la Ministère du Plan a été fait et la liquidation a eu lieu le 19 novembre 2019.', '2019-12-31 09:39:13.552537+00', NULL, true, false, 270, 1, 4606); +INSERT INTO [[schema]].django_comments VALUES (24, '85', '', '', '', 'L''OMT est en cours de revision des couts unitaires en vue d''une harmonisation entre les agences.', '2020-01-07 09:28:19.41604+00', NULL, true, false, 270, 1, 3701); +INSERT INTO [[schema]].django_comments VALUES (25, '23', '', '', '', 'Action taken', '2020-01-20 11:32:35.904174+00', NULL, true, false, 270, 1, 14700); +INSERT INTO [[schema]].django_comments VALUES (26, '24', '', '', '', 'Action taken', '2020-01-20 11:33:29.155915+00', NULL, true, false, 270, 1, 14700); +INSERT INTO [[schema]].django_comments VALUES (27, '25', '', '', '', 'Action taken', '2020-01-20 11:34:18.472649+00', NULL, true, false, 270, 1, 14700); +INSERT INTO [[schema]].django_comments VALUES (29, '89', '', '', '', 'Action taken', '2020-01-20 11:35:29.748125+00', NULL, true, false, 270, 1, 14700); +INSERT INTO [[schema]].django_comments VALUES (28, '26', '', '', '', 'Action taken', '2020-01-20 11:34:56.132673+00', NULL, true, false, 270, 1, 14700); +INSERT INTO [[schema]].django_comments VALUES (30, '34', '', '', '', 'Lors de ma derniere mission dans la Province du Mandoul, nous avions organise une seance de travail avec le point Focal de la DSP, le Gestionnaire et le delegue sur les nouvelles procedures du HACT', '2020-01-30 09:32:27.743299+00', NULL, true, false, 270, 1, 13031); +INSERT INTO [[schema]].django_comments VALUES (31, '36', '', '', '', 'La requete a ete finalisee avec la DSP du LOR pour la mise en oeuvre des activites SMNI/PTME dans le DS de Larmanaye.', '2020-01-30 09:39:50.129387+00', NULL, true, false, 270, 1, 13031); +INSERT INTO [[schema]].django_comments VALUES (32, '81', '', '', '', 'L''ouverture de l''UNT de Pala est prise en compte dans le plan de travail annuel 2020', '2020-02-09 18:53:43.792338+00', NULL, true, false, 270, 1, 11672); +INSERT INTO [[schema]].django_comments VALUES (33, '35', '', '', '', 'Tous les enfants ont ete preleves et les resultats transmis aux parents', '2020-02-22 14:51:06.745631+00', NULL, true, false, 270, 1, 13031); +INSERT INTO [[schema]].django_comments VALUES (23, '61', '', '', '', 'Cartographie des interentions finalise', '2020-01-04 09:54:20.91666+00', NULL, true, false, 270, 1, 5074); +INSERT INTO [[schema]].django_comments VALUES (39, '111', '', '', '', 'La reunion a ete organisee en date du 3/02/20 regroupant tous les collegues au niveau du BZ. Cela a permis de donner les grandes orientations pour l''elaboration du PPA 2020-2021. cette reunion a vue aussi la participation du Chef de BZ de Moundou.', '2020-02-26 08:45:54.225412+00', NULL, true, false, 270, 1, 13031); +INSERT INTO [[schema]].django_comments VALUES (40, '109', '', '', '', 'Le rapport provisoire de la capitalisation des expériences tirées de l’élaboration et de la mise en œuvre des PDP et PDC partagé le 25 février 2020 pour la réunion de restitution du 28 février 2020 a pris en compte les résultats de la mission.', '2020-02-26 11:42:36.607139+00', NULL, true, false, 270, 1, 5074); +INSERT INTO [[schema]].django_comments VALUES (34, '90', '', '', '', 'Action taken', '2020-02-25 11:46:51.567529+00', NULL, true, false, 270, 1, 14700); +INSERT INTO [[schema]].django_comments VALUES (36, '90', '', '', '', 'L''action a ete prise et les lanceurs d''alerte SMS envoient des messages RAS par mois pour signifier que leur telephone fonctionne.', '2020-02-25 13:51:17.60604+00', NULL, true, false, 270, 1, 14700); +INSERT INTO [[schema]].django_comments VALUES (41, '112', '', '', '', 'Le rapport provisoire de la capitalisation des expériences tirées de l’élaboration et de la mise en œuvre des PDP et PDC partagé le 25 février 2020 pour la réunion de restitution du 28 février 2020 a pris en compte les résultats de la mission.', '2020-02-26 11:46:34.865472+00', NULL, true, false, 270, 1, 5074); +INSERT INTO [[schema]].django_comments VALUES (42, '116', '', '', '', 'Après plusieurs rappels, les documents ont été remplis et transmis au consultant. Les informations fournies ont été pris en compte dans la version provisoire du rapport sur la capitalisation des expériences tirées de l’élaboration et de la mise en œuvre des PDP et PDC.', '2020-02-26 11:56:50.970083+00', NULL, true, false, 270, 1, 5074); +INSERT INTO [[schema]].django_comments VALUES (35, '91', '', '', '', 'Action taken', '2020-02-25 11:47:37.362406+00', NULL, true, false, 270, 1, 14700); +INSERT INTO [[schema]].django_comments VALUES (37, '91', '', '', '', 'La connection est reguliere et a permis de recevoir plusieurs cas d''alerte lies a l''epidemie de rougeole dans la province du Logone Oriental', '2020-02-25 13:57:06.571204+00', NULL, true, false, 270, 1, 14700); +INSERT INTO [[schema]].django_comments VALUES (38, '107', '', '', '', 'Cher Majitoloum, est-tu sûr de l''activité que tu viens de partager avec moi? je crois que non!', '2020-02-25 15:19:20.875144+00', NULL, true, false, 270, 1, 9542); +INSERT INTO [[schema]].django_comments VALUES (43, '113', '', '', '', 'La réunion de restitution de la mission d’appui à la capitalisation des expériences tirées de l’élaboration et de la mise en œuvre des PDP et PDC s’est tenue le 28 février 2020 avec la participation de la GIZ, de l’AFD, du PNUD, de l’UNICEF, de la direction générale de la décentralisation (Ministère de l’administration du territoire) et de la direction de la planification provinciale (Ministère en charge du plan).', '2020-02-29 11:33:19.70175+00', NULL, true, false, 270, 1, 5074); +INSERT INTO [[schema]].django_comments VALUES (44, '56', '', '', '', 'Un questionnaire a ete elabore pour documenter les ruptures pendant la periode du 1 juillet au 31 decembre 2019. la collecte des donnees est prevue a partir du 1 mars 2020 suivi d''une session d''analyse', '2020-03-01 08:36:45.858644+00', NULL, true, false, 270, 1, 11672); +INSERT INTO [[schema]].django_comments VALUES (45, '55', '', '', '', 'Le rapport final de l''enquete LQAS est finalise', '2020-03-01 08:41:18.643769+00', NULL, true, false, 270, 1, 11672); +INSERT INTO [[schema]].django_comments VALUES (48, '118', '', '', '', 'Plaidoyer en cours avec le MSP et le PNUD/GFATM et le GFF', '2020-03-02 17:01:56.801128+00', NULL, true, false, 270, 1, 11647); +INSERT INTO [[schema]].django_comments VALUES (46, '74', '', '', '', 'La Celiaf Antenne de N''Djamena a commence les negociations avec la radio nationale, la radio FM Liberte (privee) et Electron TV (prive). Il est attendu le prochain accord de partenariat pour concretiser l''action', '2020-03-02 09:41:18.792114+00', NULL, true, false, 270, 1, 5056); +INSERT INTO [[schema]].django_comments VALUES (47, '117', '', '', '', 'Le besoin des enregistreurs a ete pris en compte dans le PPA 2020. Il reste la bugetisation dans le prochain accord de partenariat', '2020-03-02 10:01:03.494675+00', NULL, true, false, 270, 1, 5056); +INSERT INTO [[schema]].django_comments VALUES (49, '127', '', '', '', 'Les points d''actions ete executes dans leur ensemble', '2020-03-13 13:26:44.698637+00', NULL, true, false, 270, 1, 24425); +INSERT INTO [[schema]].django_comments VALUES (50, '48', '', '', '', 'Rapport de mission avec les principales recommandations envoyes au MCD pour prise d''actions', '2020-03-16 16:06:42.441582+00', NULL, true, false, 270, 1, 11859); +INSERT INTO [[schema]].django_comments VALUES (51, '49', '', '', '', 'Rapport de mission avec les principales recommandations envoyes au MCD en Decembre 2019 pour prise d''actions', '2020-03-16 16:09:35.578572+00', NULL, true, false, 270, 1, 11859); +INSERT INTO [[schema]].django_comments VALUES (52, '17', '', '', '', 'Deux missions de supervisions deja realisees dans les 2 zones de responsabilites depuis Janvier 2020 en vue d''apporter un appui technique dans la mise en oeuvre de l''approche CFC-RTM', '2020-03-16 16:12:51.152324+00', NULL, true, false, 270, 1, 11859); +INSERT INTO [[schema]].django_comments VALUES (53, '92', '', '', '', 'Une demande d''approvisionnement des districts en cartes de vaccination a deja ete adressee au PEV N''Djamena via Sylvain Djimrangar', '2020-03-16 16:16:09.009857+00', NULL, true, false, 270, 1, 11859); +INSERT INTO [[schema]].django_comments VALUES (54, '21', '', '', '', 'Deux missions d''appui technique realisees conjointement avec les points focaux de la DSP-LOC ont ete realisees depuis Janvier 2020 en vue d''ameliorer la qualite de la mise en oeuvre du CFC-RTM', '2020-03-16 16:19:00.761123+00', NULL, true, false, 270, 1, 11859); +INSERT INTO [[schema]].django_comments VALUES (55, '63', '', '', '', 'Le rappel de l''enregistrement des OSC nationales a ete fait lors des sessions de formation / refresh en E-tools', '2020-03-17 14:09:44.322466+00', NULL, true, false, 270, 1, 4606); +INSERT INTO [[schema]].django_comments VALUES (56, '100', '', '', '', 'Suivi avec le bureau de Mongo sur le dossier de liquidation des DTC de la DPAS du Guera', '2020-03-17 14:11:15.2352+00', NULL, true, false, 270, 1, 4606); +INSERT INTO [[schema]].django_comments VALUES (57, '143', '', '', '', 'Le feedback a ete fait aux MCDs de Benoye et Krim-Krim et les intrants qui etaient en rupture de stock ont deja ete commandes et servis aux CS', '2020-03-20 13:33:49.940927+00', NULL, true, false, 270, 1, 11859); +INSERT INTO [[schema]].django_comments VALUES (58, '144', '', '', '', 'Le feed back lui a ete fait. Il a promis de reflechir sur les modalites d;utilisation de l''ambulance par la communaute', '2020-03-20 13:35:35.991014+00', NULL, true, false, 270, 1, 11859); +INSERT INTO [[schema]].django_comments VALUES (59, '142', '', '', '', 'un mail a ete envoye au Delegue lui demandant de payer les frais de carburant a l''animateur communautaire de Krim-Krim', '2020-03-26 09:24:28.247371+00', NULL, true, false, 270, 1, 11859); +INSERT INTO [[schema]].django_comments VALUES (16, '14', '', '', '', 'les fiches de suivi individuel sont mis a la disposition avec le dispatche des intrants le 25 novembre 2019', '2019-12-02 07:58:17.744703+00', NULL, true, false, 270, 1, 173681); +INSERT INTO [[schema]].django_comments VALUES (60, '119', '', '', '', '3 MCD ont ete saisi au telephone en date du 09/03/20 en vue renforcer leur presence sur le terrain dans les zones de mise en oeuvre des iCCM.', '2020-03-31 14:42:28.289502+00', NULL, true, false, 270, 1, 13031); +INSERT INTO [[schema]].django_comments VALUES (61, '108', '', '', '', 'Le rapport global de l''evaluation a ete finalise en equipe avec OCHA. Le rapport a ete partage avec l''ensemble des acteurs. Un debut d''execution a eu lieu en fin fevrier.', '2020-03-31 14:47:01.268727+00', NULL, true, false, 270, 1, 13031); +INSERT INTO [[schema]].django_comments VALUES (63, '100', '', '', '', 'Les dossiers de liquidation sont depuis le 30 mars 2020 au sein de la Section Protection pour traitement', '2020-04-09 06:50:44.553294+00', NULL, true, false, 270, 1, 4606); +INSERT INTO [[schema]].django_comments VALUES (64, '102', '', '', '', 'Suivi téléphonique fait avec le gestionnaire de l’hôpital de Biltine qui a géré les fonds de l’activité', '2020-04-09 06:54:12.271499+00', NULL, true, false, 270, 1, 4606); +INSERT INTO [[schema]].django_comments VALUES (65, '102', '', '', '', 'Suivi téléphonique fait avec Dr Issakha pour la liquidation du DCT', '2020-04-09 06:54:24.234762+00', NULL, true, false, 270, 1, 4606); +INSERT INTO [[schema]].django_comments VALUES (66, '102', '', '', '', 'Suivi des dossiers de liquidation, les dossiers sont depuis le 30 mars 2020 au sein de la Section Protection pour traitement', '2020-04-09 06:55:38.983738+00', NULL, true, false, 270, 1, 4606); +INSERT INTO [[schema]].django_comments VALUES (67, '103', '', '', '', 'Vu le contexte actuel avec le COVID 19, cette activité sera difficilement mise en œuvre', '2020-04-09 06:57:42.550806+00', NULL, true, false, 270, 1, 4606); +INSERT INTO [[schema]].django_comments VALUES (68, '139', '', '', '', 'Vu le contexte actuel avec le COVID 19, cette activité sera difficilement mise en œuvre', '2020-04-09 06:58:25.212467+00', NULL, true, false, 270, 1, 4606); +INSERT INTO [[schema]].django_comments VALUES (69, '136', '', '', '', 'une deuxieme visite programmatique a ete realisee par rapport aux activites mises en oeuvre sur le terrain', '2020-04-09 15:17:26.546522+00', NULL, true, false, 270, 1, 13372); +INSERT INTO [[schema]].django_comments VALUES (70, '70', '', '', '', 'la restitiution a ete realisee au mois de mars 2020', '2020-04-09 15:19:38.641566+00', NULL, true, false, 270, 1, 13372); +INSERT INTO [[schema]].django_comments VALUES (71, '174', '', '', '', 'Aucune action ne peut être prise pour le moment. Les écoles sont fermées.', '2020-04-10 15:11:24.414363+00', NULL, true, false, 270, 1, 13750); +INSERT INTO [[schema]].django_comments VALUES (72, '181', '', '', '', 'The NCE was transfered to CRT', '2020-04-10 16:25:54.765197+00', NULL, true, false, 270, 1, 13750); +INSERT INTO [[schema]].django_comments VALUES (73, '185', '', '', '', 'La NCE a été accordée et transmise', '2020-04-10 16:28:48.31893+00', NULL, true, false, 270, 1, 13750); +INSERT INTO [[schema]].django_comments VALUES (74, '186', '', '', '', 'Les RO ont été faits. Les cotations prises.', '2020-04-10 16:30:20.338608+00', NULL, true, false, 270, 1, 13750); +INSERT INTO [[schema]].django_comments VALUES (75, '97', '', '', '', 'un échange informel a eu lieu avec le point focal CFC au niveau de la DSP mais le contexte actuel du COVID-19 ne permet pas de réaliser de telles activtés.', '2020-04-16 17:08:15.339892+00', NULL, true, false, 270, 1, 21654); -- @@ -6948,46 +7515,54 @@ INSERT INTO [[schema]].django_migrations VALUES (561, 'psea', '0011_indicator_ra INSERT INTO [[schema]].django_migrations VALUES (562, 'audit', '0018_auto_20191008_2235', '2019-11-08 16:53:47.418753+00'); INSERT INTO [[schema]].django_migrations VALUES (563, 'psea', '0012_auto_20191004_1752', '2019-11-08 16:53:47.604002+00'); INSERT INTO [[schema]].django_migrations VALUES (564, 'tpm', '0008_auto_20191016_1312', '2019-11-08 16:53:48.845061+00'); -INSERT INTO [[schema]].django_migrations VALUES (565, 'partners', '0039_auto_20191106_1345', '2020-04-02 16:57:12.804206+00'); -INSERT INTO [[schema]].django_migrations VALUES (566, 'field_monitoring_settings', '0001_initial_20191113', '2020-04-02 16:57:14.084677+00'); -INSERT INTO [[schema]].django_migrations VALUES (567, 'field_monitoring_planning', '0001_initial_20191113', '2020-04-02 16:57:15.294431+00'); -INSERT INTO [[schema]].django_migrations VALUES (568, 'field_monitoring_planning', '0002_auto_20191119_1503', '2020-04-02 16:57:16.134297+00'); -INSERT INTO [[schema]].django_migrations VALUES (569, 'users', '0013_auto_20191010_1621', '2020-04-02 16:57:16.639533+00'); -INSERT INTO [[schema]].django_migrations VALUES (570, 'reports', '0020_office', '2020-04-02 16:57:16.750177+00'); -INSERT INTO [[schema]].django_migrations VALUES (571, 'reports', '0021_auto_20191011_1201', '2020-04-02 16:57:17.142146+00'); -INSERT INTO [[schema]].django_migrations VALUES (572, 'action_points', '0011_actionpoint_reference_number', '2020-04-02 16:57:17.702188+00'); -INSERT INTO [[schema]].django_migrations VALUES (573, 'action_points', '0012_auto_20191011_1303', '2020-04-02 16:57:18.137363+00'); -INSERT INTO [[schema]].django_migrations VALUES (574, 'action_points', '0013_actionpoint_monitoring_activity', '2020-04-02 16:57:18.715456+00'); -INSERT INTO [[schema]].django_migrations VALUES (575, 'attachments', '0016_auto_20190708_1607', '2020-04-02 16:57:18.958163+00'); -INSERT INTO [[schema]].django_migrations VALUES (576, 'attachments', '0017_attachmentflat_created_timestamp', '2020-04-02 16:57:20.035177+00'); -INSERT INTO [[schema]].django_migrations VALUES (577, 'attachments', '0018_remove_attachmentflat_created', '2020-04-02 16:57:20.323408+00'); -INSERT INTO [[schema]].django_migrations VALUES (578, 'reports', '0022_userprofileoffice', '2020-04-02 16:57:20.551358+00'); -INSERT INTO [[schema]].django_migrations VALUES (579, 'reports', '0023_auto_20191014_1546', '2020-04-02 16:57:34.31744+00'); -INSERT INTO [[schema]].django_migrations VALUES (580, 'reports', '0024_auto_20191122_1559', '2020-04-02 16:57:34.620993+00'); -INSERT INTO [[schema]].django_migrations VALUES (581, 'audit', '0019_engagement_users_notified', '2020-04-02 16:57:34.899717+00'); -INSERT INTO [[schema]].django_migrations VALUES (582, 'audit', '0020_auto_20191125_2045', '2020-04-02 16:57:35.478367+00'); -INSERT INTO [[schema]].django_migrations VALUES (583, 'categories', '0005_auto_20191126_1133', '2020-04-02 16:57:35.698772+00'); -INSERT INTO [[schema]].django_migrations VALUES (584, 'field_monitoring_data_collection', '0001_initial_20191113', '2020-04-02 16:57:37.628524+00'); -INSERT INTO [[schema]].django_migrations VALUES (585, 'field_monitoring_data_collection', '0002_auto_20191116_1045', '2020-04-02 16:57:38.123995+00'); -INSERT INTO [[schema]].django_migrations VALUES (586, 'field_monitoring_planning', '0003_monitoringactivityactionpoint', '2020-04-02 16:57:38.180649+00'); -INSERT INTO [[schema]].django_migrations VALUES (587, 'field_monitoring_planning', '0004_auto_20191204_0804', '2020-04-02 16:57:38.773312+00'); -INSERT INTO [[schema]].django_migrations VALUES (588, 'field_monitoring_planning', '0005_auto_20191211_1414', '2020-04-02 16:57:39.052405+00'); -INSERT INTO [[schema]].django_migrations VALUES (589, 'field_monitoring_planning', '0006_monitoringactivity_report_reject_reason', '2020-04-02 16:57:39.343045+00'); -INSERT INTO [[schema]].django_migrations VALUES (590, 'field_monitoring_planning', '0007_monitoringactivity_number', '2020-04-02 16:57:40.169546+00'); -INSERT INTO [[schema]].django_migrations VALUES (591, 'field_monitoring_settings', '0002_method_use_information_source', '2020-04-02 16:57:40.293122+00'); -INSERT INTO [[schema]].django_migrations VALUES (592, 'field_monitoring_settings', '0003_method_short_name', '2020-04-02 16:57:40.479374+00'); -INSERT INTO [[schema]].django_migrations VALUES (593, 'field_monitoring_settings', '0004_globalconfig', '2020-04-02 16:57:40.621226+00'); -INSERT INTO [[schema]].django_migrations VALUES (594, 'field_monitoring_settings', '0005_auto_20191211_0903', '2020-04-02 16:57:40.802389+00'); -INSERT INTO [[schema]].django_migrations VALUES (595, 'field_monitoring_settings', '0006_auto_20191212_1257', '2020-04-02 16:57:41.136105+00'); -INSERT INTO [[schema]].django_migrations VALUES (596, 'field_monitoring_settings', '0007_auto_20200219_1036', '2020-04-02 16:57:41.451315+00'); -INSERT INTO [[schema]].django_migrations VALUES (597, 'partners', '0040_auto_20191011_1429', '2020-04-02 16:57:41.925138+00'); -INSERT INTO [[schema]].django_migrations VALUES (598, 'partners', '0041_auto_20191209_2039', '2020-04-02 16:57:44.222168+00'); -INSERT INTO [[schema]].django_migrations VALUES (599, 'reports', '0025_auto_20191220_2022', '2020-04-02 16:57:44.359742+00'); -INSERT INTO [[schema]].django_migrations VALUES (600, 't2f', '0016_auto_20191011_1348', '2020-04-02 16:57:44.64573+00'); -INSERT INTO [[schema]].django_migrations VALUES (601, 'tpm', '0009_auto_20191014_1304', '2020-04-02 16:57:45.069911+00'); -INSERT INTO [[schema]].django_migrations VALUES (602, 'tpm', '0010_auto_20191029_1826', '2020-04-02 16:57:45.491676+00'); -INSERT INTO [[schema]].django_migrations VALUES (603, 'unicef_attachments', '0004_filetype_group', '2020-04-02 16:57:45.654735+00'); -INSERT INTO [[schema]].django_migrations VALUES (604, 'unicef_attachments', '0005_auto_20190705_1746', '2020-04-02 16:57:46.391247+00'); +INSERT INTO [[schema]].django_migrations VALUES (565, 'users', '0013_auto_20191010_1621', '2019-12-05 17:00:42.905917+00'); +INSERT INTO [[schema]].django_migrations VALUES (566, 'reports', '0020_office', '2019-12-05 17:00:43.315704+00'); +INSERT INTO [[schema]].django_migrations VALUES (567, 'reports', '0021_auto_20191011_1201', '2019-12-05 17:00:43.427804+00'); +INSERT INTO [[schema]].django_migrations VALUES (568, 'action_points', '0011_actionpoint_reference_number', '2019-12-05 17:00:44.675941+00'); +INSERT INTO [[schema]].django_migrations VALUES (569, 'action_points', '0012_auto_20191011_1303', '2019-12-05 17:00:45.179076+00'); +INSERT INTO [[schema]].django_migrations VALUES (570, 'attachments', '0016_auto_20190708_1607', '2019-12-05 17:00:45.406906+00'); +INSERT INTO [[schema]].django_migrations VALUES (571, 'reports', '0022_userprofileoffice', '2019-12-05 17:00:45.749003+00'); +INSERT INTO [[schema]].django_migrations VALUES (572, 'reports', '0023_auto_20191014_1546', '2019-12-05 17:01:09.601459+00'); +INSERT INTO [[schema]].django_migrations VALUES (573, 'reports', '0024_auto_20191122_1559', '2019-12-05 17:01:09.948839+00'); +INSERT INTO [[schema]].django_migrations VALUES (574, 'audit', '0019_engagement_users_notified', '2019-12-05 17:01:10.305279+00'); +INSERT INTO [[schema]].django_migrations VALUES (575, 'audit', '0020_auto_20191125_2045', '2019-12-05 17:01:11.236564+00'); +INSERT INTO [[schema]].django_migrations VALUES (576, 'partners', '0039_auto_20191106_1345', '2019-12-05 17:01:11.812723+00'); +INSERT INTO [[schema]].django_migrations VALUES (577, 'partners', '0040_auto_20191011_1429', '2019-12-05 17:01:12.440951+00'); +INSERT INTO [[schema]].django_migrations VALUES (578, 't2f', '0016_auto_20191011_1348', '2019-12-05 17:01:12.827138+00'); +INSERT INTO [[schema]].django_migrations VALUES (579, 'tpm', '0009_auto_20191014_1304', '2019-12-05 17:01:13.447528+00'); +INSERT INTO [[schema]].django_migrations VALUES (580, 'tpm', '0010_auto_20191029_1826', '2019-12-05 17:01:13.929436+00'); +INSERT INTO [[schema]].django_migrations VALUES (581, 'unicef_attachments', '0004_filetype_group', '2019-12-05 17:01:14.062512+00'); +INSERT INTO [[schema]].django_migrations VALUES (582, 'unicef_attachments', '0005_auto_20190705_1746', '2019-12-05 17:01:14.960754+00'); +INSERT INTO [[schema]].django_migrations VALUES (583, 'attachments', '0017_attachmentflat_created_timestamp', '2020-01-10 17:56:03.11066+00'); +INSERT INTO [[schema]].django_migrations VALUES (584, 'attachments', '0018_remove_attachmentflat_created', '2020-01-10 17:56:03.504114+00'); +INSERT INTO [[schema]].django_migrations VALUES (585, 'partners', '0041_auto_20191209_2039', '2020-01-10 17:56:05.998466+00'); +INSERT INTO [[schema]].django_migrations VALUES (586, 'reports', '0025_auto_20191220_2022', '2020-01-10 17:56:06.117706+00'); +INSERT INTO [[schema]].django_migrations VALUES (587, 'field_monitoring_settings', '0001_initial_20191113', '2020-03-06 18:55:30.327188+00'); +INSERT INTO [[schema]].django_migrations VALUES (588, 'field_monitoring_planning', '0001_initial_20191113', '2020-03-06 18:55:31.56128+00'); +INSERT INTO [[schema]].django_migrations VALUES (589, 'field_monitoring_planning', '0002_auto_20191119_1503', '2020-03-06 18:55:32.945193+00'); +INSERT INTO [[schema]].django_migrations VALUES (590, 'action_points', '0013_actionpoint_monitoring_activity', '2020-03-06 18:55:33.17634+00'); +INSERT INTO [[schema]].django_migrations VALUES (591, 'categories', '0005_auto_20191126_1133', '2020-03-06 18:55:33.330888+00'); +INSERT INTO [[schema]].django_migrations VALUES (592, 'field_monitoring_data_collection', '0001_initial_20191113', '2020-03-06 18:55:34.804234+00'); +INSERT INTO [[schema]].django_migrations VALUES (593, 'field_monitoring_data_collection', '0002_auto_20191116_1045', '2020-03-06 18:55:35.304559+00'); +INSERT INTO [[schema]].django_migrations VALUES (594, 'field_monitoring_planning', '0003_monitoringactivityactionpoint', '2020-03-06 18:55:35.361807+00'); +INSERT INTO [[schema]].django_migrations VALUES (595, 'field_monitoring_planning', '0004_auto_20191204_0804', '2020-03-06 18:55:36.001784+00'); +INSERT INTO [[schema]].django_migrations VALUES (596, 'field_monitoring_planning', '0005_auto_20191211_1414', '2020-03-06 18:55:36.249662+00'); +INSERT INTO [[schema]].django_migrations VALUES (597, 'field_monitoring_planning', '0006_monitoringactivity_report_reject_reason', '2020-03-06 18:55:36.574774+00'); +INSERT INTO [[schema]].django_migrations VALUES (598, 'field_monitoring_planning', '0007_monitoringactivity_number', '2020-03-06 18:55:37.000595+00'); +INSERT INTO [[schema]].django_migrations VALUES (599, 'field_monitoring_settings', '0002_method_use_information_source', '2020-03-06 18:55:37.136803+00'); +INSERT INTO [[schema]].django_migrations VALUES (600, 'field_monitoring_settings', '0003_method_short_name', '2020-03-06 18:55:37.225021+00'); +INSERT INTO [[schema]].django_migrations VALUES (601, 'field_monitoring_settings', '0004_globalconfig', '2020-03-06 18:55:37.34139+00'); +INSERT INTO [[schema]].django_migrations VALUES (602, 'field_monitoring_settings', '0005_auto_20191211_0903', '2020-03-06 18:55:37.421663+00'); +INSERT INTO [[schema]].django_migrations VALUES (603, 'field_monitoring_settings', '0006_auto_20191212_1257', '2020-03-06 18:55:37.709187+00'); +INSERT INTO [[schema]].django_migrations VALUES (604, 'field_monitoring_settings', '0007_auto_20200219_1036', '2020-03-06 18:55:37.97286+00'); +INSERT INTO [[schema]].django_migrations VALUES (605, 'audit', '0021_auto_20200729_2123', '2020-09-24 15:17:34.242772+00'); +INSERT INTO [[schema]].django_migrations VALUES (606, 'partners', '0042_auto_20200414_1439', '2020-09-24 15:17:35.195986+00'); +INSERT INTO [[schema]].django_migrations VALUES (607, 'partners', '0043_auto_20200729_2123', '2020-09-24 15:17:35.367697+00'); +INSERT INTO [[schema]].django_migrations VALUES (608, 'partners', '0044_auto_20200914_1428', '2020-09-24 15:17:35.618179+00'); +INSERT INTO [[schema]].django_migrations VALUES (609, 'users', '0014_auto_20200611_1747', '2020-09-24 15:17:35.829669+00'); +INSERT INTO [[schema]].django_migrations VALUES (610, 'users', '0015_auto_20200924_1453', '2020-11-03 18:53:27.231877+00'); +INSERT INTO [[schema]].django_migrations VALUES (611, 'partners', '0045_partnerstaffmember_user', '2020-11-03 18:53:27.567795+00'); +INSERT INTO [[schema]].django_migrations VALUES (612, 'partners', '0046_auto_20200924_1453', '2020-11-03 18:53:27.808128+00'); -- @@ -7846,35 +8421,49 @@ INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1383, '2500237874', ' INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (710, '2500218289', '0100037999', '2012-10-25', 'HACT:DCT', 'USD', 'EVALUATION RAPIDE DE L''ETAT NUTRIONNEL DES ENFANTS', '1', 'Roger Sodjinou', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (711, '2500222713', '0100042752', '2012-11-21', 'HACT:DCT', 'USD', 'FINANCEMENT FORMATION 30 PARA. DU SUD / 2 LOGONES', '1', 'Djimasde Mbairebe', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (712, '2500213951', '0100045716', '2012-12-05', 'HACT:DCT', 'USD', 'FC POUR DERNIERE TRANCHE(70%) PROJET/JRS EDUCATION', '1', 'Sarhane Mahamat Khamis', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1384, '2500240242', '0100412153', '2019-11-15', 'HACT:DCT', 'XAF', '0810/001222 - WASH', '-590.42', 'Ousseini Mai Maigana', '2019-11-23 00:05:12.236891+00', '2019-11-23 00:05:12.236891+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (714, '2500221193', '0100071628', '2013-07-12', 'HACT:DCT', 'XAF', 'VERSEMENT 1ERE TRANCHE PCA/008/CHD/PRO/BASE/2013', '-503.119', 'Paola Valenti', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1385, '2500238161', '0100413409', '2019-11-13', 'HACT:Reimbursement', 'XAF', '0810/001229 - 884 WASH 2019', '-590.42', 'Ousseini Mai Maigana', '2019-11-28 00:10:14.798064+00', '2019-11-28 00:10:14.798064+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (716, '2500213951', '0100028277', '2012-08-30', 'HACT:DCT', 'USD', 'PAYEMENT DE LA 1ERE TRANCHE DE JRS', '1', 'Henri Nzeyimana', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (717, '2500221790', '0100089807', '2013-11-19', 'HACT:DCT', 'XAF', 'RNTAP/SUIVI MEDICAL OEV/SUIVI NUTRITIONNEL', '-489.344', 'Therese Nduwimana', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1386, '2500212828', '0100413324', '2019-10-30', 'HACT:DCT', 'XAF', '0810/001228 - WASH', '-590.42', 'Ousseini Mai Maigana', '2019-11-28 00:10:14.798168+00', '2019-11-28 00:10:14.798168+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (721, '2500220945', '0100067196', '2013-06-10', 'HACT:DCT', 'USD', 'FINANCEMENT 2E PHASE ATELIER ELABORATION MESSAGE', '1', 'Therese Nduwimana', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (722, '2500215480', '0100015174', '2012-06-04', 'HACT:DCT', 'USD', 'FC-FINANCEMENT APE/CSAI NDJAMENA/PTME', '1', 'Therese Nduwimana', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (723, '2500221790', '0100089808', '2013-11-19', 'HACT:DCT', 'XAF', 'RNTAP+/SOUTIEN PSYCHO-S DES PVVIH/APPUI PSYCHOLOGI', '-489.344', 'Therese Nduwimana', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (724, '2500221169', '0100198947', '2016-03-15', 'HACT:Reimbursement', 'XAF', 'FC REMBOURSEMENT PCA WASH/EDUC/CRT', '-586.776', 'Jean-Mathieu Laroche', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1387, '2500213951', '0100413334', '2019-11-14', 'HACT:Reimbursement', 'XAF', '0810/001227 - EDUCATION', '-590.42', 'Jean-Mathieu Laroche', '2019-11-28 00:10:14.798237+00', '2019-11-28 00:10:14.798237+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (726, '2500213955', '0100216354', '2016-07-20', 'HACT:DCT', 'XAF', 'FINANCEMENT SNDE TRANCHE PCA CRS/POT', '-591.005', 'Bakary Sogoba', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (728, '2500212790', '0100005174', '2012-03-23', 'HACT:Reimbursement', 'USD', 'FC REMBOURSEMENT DES PREFINANCEMENT DES AVS 2011', '1', 'Naoko Horii', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (729, '2500223633', '0100034129', '2012-10-04', 'HACT:DCT', 'USD', 'FINANCEMENT DE L''APE TCHAD SOS', '1', 'Domaya Diongoto', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (730, '2500221641', '0100061808', '2013-05-02', 'HACT:DCT', 'USD', 'MALL SCALE FUNDING AGREEMENT ATPCS', '1', 'Bakary Sogoba', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1388, '2500228510', '0100415542', '2019-11-26', 'HACT:DCT', 'XAF', '0810/001243 - WASH', '-596.27', 'Ousseini Mai Maigana', '2019-12-06 00:12:46.226711+00', '2019-12-06 00:12:46.226711+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (732, '2500223093', '0100041797', '2012-11-16', 'HACT:DCT', 'USD', '1E TRANCHE APE/UNICEF/ACPJ MAYO BENEYE ET MAY', '1', 'Lillian Okwirry', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1389, '2500223261', '0100416351', '2019-10-25', 'HACT:DCT', 'XAF', '0810/001253 - 884 WASH 2019', '-596.27', NULL, '2019-12-09 15:35:59.536061+00', '2019-12-09 15:35:59.536061+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (735, '2500228222', '0100102957', '2014-03-21', 'HACT:DCT', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PROJET CDLS/LAI', '-479.431', 'Gueim MORGAYE', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (736, '2500232382', '0100184478', '2015-11-16', 'HACT:DCT', 'XAF', 'FINANCEMENT SECONDE TRANCHE ASSOSIATION ( APR)', '-598.446', 'Charles Tayo Jiofack', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1390, '2500240134', '0100416849', '2019-10-21', 'HACT:DCT', 'XAF', '0810/001256 - 884 WASH 2019', '-596.27', NULL, '2019-12-10 04:23:08.367538+00', '2019-12-10 04:23:08.367538+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (737, '2500229637', '0100290706', '2017-10-24', 'HACT:DCT', 'XAF', '0810/0185 - 887 COMMUNICATION STRATEGIQUE', '-564.653', 'Maria Fernández Ruiz de Larrinaga', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (778, '2500213943', '0100085622', '2013-10-25', 'HACT:DCT', 'XAF', '1ERE TRANCHE PCA/2013/13/CHD/PROT/APLFT', '-483.44', 'Desire Mohindo Muhangi', '2018-03-15 16:10:05.327774+00', '2018-06-17 00:02:43.31338+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (521, '2500221714', '0100010732', '2012-05-08', 'HACT:DCT', 'USD', 'FR PAIEMENT 3È TRANCHE PCA MDM - REDUCTº MORTALIT', '1', 'Djimasde Mbairebe', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (734, '2500215499', '0100064858', '2013-05-22', 'HACT:DCT', 'USD', 'DÉCAISSEMENT 2° TRANCHE À LA RADIO SOLEIL KAR UBA', '1', 'Achta Abderaman Aboubakar', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (719, '2500212819', '0100122842', '2014-08-20', 'HACT:DCT', 'XAF', 'DECAISSMT 1ER TRANCH PCA Nº17/SECADEV', '-490.398', 'Moustapha Harouna', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (718, '2500223261', '0100130132', '2014-10-13', 'HACT:DCT', 'XAF', 'DECAISSMT 2E TRANCH PCA Nº8/AFDI/2014', '-516.258', 'Moustapha Harouna', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1391, '2500213920', '0100416860', '2019-10-25', 'HACT:DCT', 'XAF', '0810/001216 - 884 WASH 2019', '-596.27', 'Ousseini Mai Maigana', '2019-12-11 00:11:47.389083+00', '2019-12-11 00:11:47.389083+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (685, '2500225658', '0100180078', '2015-10-22', 'HACT:Reimbursement', 'XAF', 'REMBOURSEMENT COÛT DIRECT DU PROJET/ADERBA', '-584.632', 'Moustapha Harouna', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1392, '2500237473', '0100417912', '2019-11-27', 'HACT:Reimbursement', 'XAF', '0810/001264 - 885 EDUCATION 2019', '-596.27', NULL, '2019-12-13 00:41:55.350576+00', '2019-12-13 00:41:55.350576+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1393, '2500237473', '0100418242', '2019-11-19', 'HACT:Reimbursement', 'XAF', '0810/001269 - EDUCATION', '-596.27', 'Jean-Mathieu Laroche', '2019-12-14 00:03:48.203178+00', '2019-12-14 00:03:48.203178+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (743, '2500221791', '0100021086', '2012-07-10', 'HACT:DCT', 'USD', '1ERE TRANCHE PCA AVEC ASSO DJENANDOUM NASSON (ADN)', '1', 'Therese Nduwimana', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (744, '2500226636', '0100077937', '2013-09-04', 'HACT:DCT', 'XAF', 'APE SUR LA SCOLARISATION DES FILLES AU SALAMAT', '-495.248', 'Guy Yogo', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (745, '2500221790', '0100021085', '2012-07-10', 'HACT:DCT', 'USD', '1ERE TRANCHE PCA AVEC RNTAP+', '1', 'Therese Nduwimana', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (746, '2500225653', '0100061099', '2013-04-26', 'HACT:DCT', 'USD', 'PAIEMENT DE LA PREMIERE AVANCE MENTOR INITIATIVE', '1', 'Guy Yogo', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (747, '2500228510', '0100286219', '2017-09-13', 'HACT:DCT', 'XAF', '0810/0166 - 882 CSD NUTRITION', '-564.653', 'Mamadou Ndiaye', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (748, '2500214062', '0100001192', '2012-02-15', 'HACT:DCT', 'USD', 'DCT 2EM TRANCHE PCA CHOLÉRA ESMS', '1', 'Lillian Okwirry', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1394, '2500213955', '0100418318', '2019-11-04', 'HACT:DCT', 'XAF', '0810/001271 - 886 PROTECTION 2019', '-596.27', NULL, '2019-12-14 00:03:48.203269+00', '2019-12-14 00:03:48.203269+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (750, '2500215473', '0100056709', '2013-03-21', 'HACT:Reimbursement', 'USD', 'REMBOURSEMENT DE LA DERNIERE TRANCHE APE BAMBINI', '1', 'Bakary Sogoba', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1395, '2500214062', '0100418224', '2019-11-08', 'HACT:DCT', 'XAF', '0810/001268 - WASH', '-596.27', 'Ousseini Mai Maigana', '2019-12-14 00:03:48.203339+00', '2019-12-14 00:03:48.203339+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1396, '2500238161', '0100418616', '2019-12-09', 'HACT:Reimbursement', 'XAF', '0810/001274 - 884 WASH 2019', '-596.27', NULL, '2019-12-15 00:13:44.875579+00', '2019-12-15 00:13:44.875579+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (753, '2500220423', '0100125902', '2014-09-11', 'HACT:DCT', 'XAF', 'ACTIVITÉ CHOLERA/CORRECTION LIQUIDATION', '-498.107', 'Moustapha Harouna', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1397, '2500214062', '0100418629', '2019-12-10', 'HACT:DCT', 'XAF', '0810/001273 - 884 WASH 2019', '-596.27', NULL, '2019-12-15 00:13:44.875716+00', '2019-12-15 00:13:44.875716+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (755, '2500213920', '0100246667', '2017-02-17', 'HACT:DCT', 'XAF', 'FR PCA 002/2017- ACF- WASH', '-614.825', 'Brigitte PEDRO', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (756, '2500213172', '0100220812', '2016-08-22', 'HACT:DCT', 'XOF', 'TRANSF FOND À UNICEF NIGER PR LES ACTIVITÉS AU LAC', '-587.301', 'Hamissou Maoude', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (757, '2500235282', '0100247615', '2017-02-23', 'HACT:DCT', 'XAF', 'PROMO ALLAITEMENT MAT EXCL & LUTTE CONTRE MARIAGE', '-614.825', 'Maria Fernandez', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); @@ -7886,57 +8475,84 @@ INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (762, '2500212759', '0 INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (763, '2500219704', '0100059511', '2013-04-15', 'HACT:DCT', 'USD', 'FONDS POUR HYGIENE ET ASSAINISSEMENT AVEC CHORA', '1', 'Guy Yogo', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (764, '2500228112', '0100300351', '2017-12-27', 'HACT:DCT', 'XAF', '0810/0295 - 884 WASH', '-553.504', 'Fabienne Bertrand', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (765, '2500229712', '0100151414', '2015-03-19', 'HACT:DCT', 'XAF', 'PAIEMENT SSA/COCORICO/ESPRESSION&PARTICIPATION ADO', '-618.886', 'Charles Tayo Jiofack', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1398, '2500224593', '0100418869', '2019-12-07', 'HACT:DCT', 'XAF', '0810/001276 - 887/001 COMMUNICATION 2019', '-596.27', 'Christophe Jules O Verhellen', '2019-12-17 00:44:29.274574+00', '2019-12-17 00:44:29.274574+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (767, '2500222713', '0100039044', '2012-11-02', 'HACT:DCT', 'USD', 'VERSEMENT SALAIRES PARAMEDICAUX 3 MOIS DSR /LAC', '1', 'Djimasde Mbairebe', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (768, '2500221883', '0100050200', '2012-12-30', 'HACT:DCT', 'USD', 'FC POUR TRANSFERT DE CHARGE DU FC 100032503', '1', 'Ahmat Outman Issa', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (770, '2500215481', '0100068414', '2013-06-17', 'HACT:DCT', 'XAF', 'FINANCEMENT EXTENSION DU PROJET PROTECTION A TISSI', '-.00199', 'Bakary Sogoba', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (771, '2500212820', '0100264439', '2017-06-14', 'HACT:Reimbursement', 'XAF', 'REMBOURSEMENT 7% DU PCA AVEC SIF', '-586.095', 'Celestin Traore', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1399, '2500233727', '0100418951', '2019-12-09', 'HACT:DCT', 'XAF', '0810/001279 - EDUCATION', '-596.27', 'Jean-Mathieu Laroche', '2019-12-18 00:14:10.665116+00', '2019-12-18 00:14:10.665116+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (773, '2500213970', '0100006371', '2012-04-03', 'HACT:DCT', 'USD', 'PERDIEM DISTRIBUTION DE PLUMPY DOZZ 2', '1', 'Ahmat Outman Issa', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (774, '2500225602', '0100197483', '2016-03-02', 'HACT:DCT', 'XAF', 'APPUI RENFORCEMENT DE MECANISME DE PROTECTION', '-598.501', 'Moustapha Harouna', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (775, '2500215499', '0100028719', '2012-09-04', 'HACT:DCT', 'USD', 'DÉCAISSEMENT 2È TRANCHE À LA RADIO SOLEIL KAR UBA', '1', 'Hector CALDERON', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (776, '2500214062', '0100184753', '2015-11-17', 'HACT:DCT', 'XAF', 'FINANCEMENT 2NDE TRANCHE PCA ESMS- UNICEF 006/2015', '-598.446', 'Moustapha Harouna', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (777, '2500224402', '0100110830', '2014-05-22', 'HACT:DCT', 'XAF', 'APE POUR LA SENSIBILISATION DE WASH DARASALAM', '-474.54', 'Moustapha Harouna', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (779, '2500233778', '0100192093', '2015-12-22', 'HACT:DCT', 'XAF', 'FINANCEMENT REALISATION MAGAZINE,MICROP RADIO ET V', '-597.084', 'Charles Tayo Jiofack', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1400, '2500213985', '0100419252', '2019-12-03', 'HACT:DCT', 'XAF', '0810/001287 - PROTECTION', '-596.27', 'Ingabire A Bakuramutsa', '2019-12-19 00:47:17.279476+00', '2019-12-19 00:47:17.279476+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (781, '2500228587', '0100297954', '2017-11-13', 'HACT:DCT', 'XAF', '0810/0252 - 881 CSD SANTE', '-553.504', 'Marie Therese Baranyikwa', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (783, '2500213985', '0100265012', '2017-06-19', 'HACT:DCT', 'XAF', 'FINANCEMENT 2ND TRIMESTRE 2017- COOPI', '-586.095', 'Hissein Djaba', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (784, '2500214062', '0100195715', '2016-02-17', 'HACT:DCT', 'XAF', 'FC POUR FINANCMENT 3ÈME TRANCHE PCA ESMS', '-578.241', 'Moustapha Harouna', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (785, '2500223632', '0100040067', '2012-11-08', 'HACT:DCT', 'USD', 'PAIEMENT 2ÈME TRANCHE SSFA 2012 ASSAR', '1', 'Moustapha Grovogui', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1401, '2500237522', '0100419125', '2019-11-25', 'HACT:Reimbursement', 'XAF', '0810/001283 - 885 EDUCATION 2019', '-596.27', NULL, '2019-12-19 00:47:17.279569+00', '2019-12-19 00:47:17.279569+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (786, '2500000156', '0100131967', '2014-10-23', 'HACT:DCT', 'XAF', 'PAIEMENT 1ERE TRANCHE CORD /PBE & A', '-516.258', 'Beatrice Wakimunu-Lelias', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (788, '2500215473', '0100006689', '2012-04-05', 'HACT:DCT', 'USD', 'FC - FINANCEMENT 1ERE TRANCHE APE BAMBINI', '1', 'Muhangi Désiré Mohindo', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (790, '2500222713', '0100020467', '2012-07-05', 'HACT:DCT', 'USD', 'FFINANCEMENT DEPLOIEMENT PARAMEDICAUX DE L''EST', '1', 'Djimasde Mbairebe', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (792, '2500212785', '0100151896', '2015-03-24', 'HACT:DCT', 'XAF', 'FINANCEMENT PROJET RENFORCEMENT CAPACITES APE&AME', '-618.886', 'Mario Bacigalupo', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (793, '2500213937', '0100292946', '2017-11-16', 'HACT:DCT', 'XAF', '0810/0221 - COMMUNICATION STRATEGIQUE', '-564.653', 'Maria Fernández Ruiz de Larrinaga', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (376, '2500214085', '0100013161', '2012-05-22', 'HACT:DCT', 'USD', 'FC POUR 1E TRANCHE PCA Nº 2012/08/CHD/WASH/IAS', '1', 'Lillian Okwirry', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1402, '2500238464', '0100419256', '2019-11-26', 'HACT:DCT', 'XAF', '0810/001288 - 882 CSD NUTRITION 2019', '-596.27', NULL, '2019-12-19 00:47:17.279638+00', '2019-12-19 00:47:17.279638+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1403, '2500213951', '0100419435', '2019-11-21', 'HACT:Reimbursement', 'XAF', '0810/001289 - EDUCATION', '-596.27', 'Jean-Mathieu Laroche', '2019-12-19 00:47:17.27971+00', '2019-12-19 00:47:17.27971+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (791, '2500215492', '0100049324', '2012-12-19', 'HACT:DCT', 'USD', 'DÉCAISSEMENT 1° TRANCHE À LA RADIO COMM. NGOURKOSS', '1', 'Achta Abderaman Aboubakar', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (787, '2500213964', '0100073170', '2013-07-24', 'HACT:DCT', 'XAF', 'FINANCEMENT APE Nº 05/ PRO/POLIO/CELIAF/2013', '-503.119', 'Gianluca Flamigni', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (782, '2500225906', '0100073179', '2013-07-24', 'HACT:DCT', 'XAF', 'FINANCEMENT APE Nº08/PRO/POLIO/TCHAD-SOS/2013', '-503.119', 'Gianluca Flamigni', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (769, '2500219704', '0100082394', '2013-10-04', 'HACT:Reimbursement', 'XAF', 'REMBOURSEMENT APE Nº006/PRO/POLIO/CHORA/2013', '-483.44', 'Gianluca Flamigni', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1404, '2500214062', '0100419551', '2019-12-04', 'HACT:DCT', 'XAF', '0810/001278 - WASH', '-596.27', 'Ousseini Mai Maigana', '2019-12-20 00:17:35.322036+00', '2019-12-20 00:17:35.322036+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (798, '2500213954', '0100139908', '2014-12-02', 'HACT:Reimbursement', 'XAF', 'REMBOURSEMENT PCA/2001/20/CHD/EDUC/CARE', '-524.137', 'Therese Nduwimana', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (799, '2500222184', '0100040827', '2012-11-13', 'HACT:Reimbursement', 'USD', 'FINANCEMENT JIEA/SILA', '1', 'Muhangi Désiré Mohindo', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1405, '2500237165', '0100419901', '2019-12-13', 'HACT:DCT', 'XAF', '0810/001294 - CSD', '-596.27', 'Jean-Michel Goman', '2019-12-21 00:14:58.881271+00', '2019-12-21 00:14:58.881271+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1406, '2500237522', '0100420069', '2019-11-29', 'HACT:Reimbursement', 'XAF', '0810/001306 - 885 EDUCATION 2019', '-596.27', NULL, '2019-12-22 00:08:16.936699+00', '2019-12-22 00:08:16.936699+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (802, '2500219704', '0100047569', '2012-12-12', 'HACT:DCT', 'USD', 'PAIEMENT DE LA 4È ET DERNRE TRNCHE PCA CHORA 12-04', '1', 'Moustapha Grovogui', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1407, '2500233143', '0100420040', '2019-12-10', 'HACT:DCT', 'XAF', '0810/001302 - COMM, SANTE, WASH ET EDUCATION 2019', '-596.27', NULL, '2019-12-22 00:08:16.936812+00', '2019-12-22 00:08:16.936812+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (806, '2500214085', '0100024164', '2012-08-02', 'HACT:DCT', 'USD', 'FONDS POUR RÉALISATION 20 FORAGES EST AVEC IAS', '1', 'Moustapha Harouna', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1408, '2500237165', '0100420415', '2019-12-13', 'HACT:DCT', 'XAF', '0810/001294 - CSD', '-596.27', 'Jean-Michel Goman', '2019-12-26 01:47:02.33734+00', '2019-12-26 01:47:02.33734+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (37, '2500218289', '0100020543', '2012-07-06', 'HACT:DCT', 'USD', 'FINANCEMENT ENQUÊTE CAP L''ALLAITEMENT MATERNEL', '1', 'Roger Sodjinou', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1409, '2500212787', '0100420417', '2019-10-28', 'HACT:DCT', 'XAF', '0810/001293 - CSD', '-596.27', 'Mamadou Ndiaye', '2019-12-26 01:47:02.33743+00', '2019-12-26 01:47:02.33743+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (810, '2500222184', '0100026729', '2012-08-21', 'HACT:DCT', 'USD', 'PAIEMENT 2ÉME ET 3ÉME TRANCHE MICROPLAN DRAS SILA', '1', 'Muhangi Désiré Mohindo', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (811, '2500222713', '0100039016', '2012-11-02', 'HACT:DCT', 'USD', 'COMPLEMENT DE SALAIRE DES PARAMEDICAUX DSR OUADDAI', '1', 'Djimasde Mbairebe', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1410, '2500212787', '0100420418', '2019-12-13', 'HACT:Reimbursement', 'XAF', '0810/001307 - 882 CSD NUTRITION 2019', '-596.27', NULL, '2019-12-26 01:47:02.337491+00', '2019-12-26 01:47:02.337491+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (813, '2500224655', '0100140517', '2014-12-04', 'HACT:DCT', 'XAF', '1ÈRE TRANCHE APE CEVANUTRI 2014', '-524.137', 'Mehoundo Faton', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1411, '2500237165', '0100420555', '2019-12-26', 'HACT:Reimbursement', 'XAF', '0810/001311 - CSD', '-596.27', 'Jean-Michel Goman', '2019-12-29 00:39:35.456065+00', '2019-12-29 00:39:35.456065+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (815, '2500222557', '0100038683', '2012-10-31', 'HACT:DCT', 'USD', 'FC POUR PROJET MINEURS EN CONFLIT AVEC LA LOI', '1', 'Muhangi Désiré Mohindo', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1412, '2500240733', '0100420990', '2019-12-20', 'HACT:DCT', 'XAF', '0810/001312 - 887/001 COMMUNICATION 2020', '-587.512', NULL, '2020-01-16 00:06:51.576894+00', '2020-01-16 00:06:51.576894+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1413, '2500240242', '0100421155', '2019-12-23', 'HACT:DCT', 'XAF', '0810/001319 - WASH', '-587.512', 'Ousseini Mai Maigana', '2020-01-18 00:07:36.949133+00', '2020-01-18 00:07:36.949133+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (818, '2500213939', '0100126657', '2014-09-17', 'HACT:DCT', 'XAF', 'FACE 2È TRANCHE PCA/AILS/VIH (REVISÉ)', '-498.107', 'Therese Nduwimana', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (819, '2500221193', '0100094683', '2013-12-12', 'HACT:DCT', 'XAF', 'VERSEMENT DE LA 2ÈME TRANCHE PCA ONG BASE 2013', '-482.889', 'Paola Valenti', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1414, '2500221790', '0100421231', '2020-01-15', 'HACT:DCT', 'XAF', '0810/001317 - 883 CSD VIH SIDA 2020', '-587.512', 'Thomas Munyuzangabo', '2020-01-19 00:07:39.527282+00', '2020-01-19 00:07:39.527282+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (821, '2500228119', '0100102601', '2014-03-19', 'HACT:DCT', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PROJET CDLS/SARH', '-479.431', 'Gueim MORGAYE', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (822, '2500224593', '0100054905', '2013-03-06', 'HACT:Reimbursement', 'USD', 'REMBURSMT DES PREFINANCMTS SCOUT 2013', '1', 'Gianluca Flamigni', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (823, '2500221790', '0100089805', '2013-11-19', 'HACT:DCT', 'XAF', 'RNTAP/SENSIB IMPORTCE PTME EN MILIEU CONFES/COMMU', '-489.344', 'Therese Nduwimana', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1415, '2500213937', '0100421811', '2020-01-02', 'HACT:DCT', 'XAF', '0810/001321 - COMMUNICATION', '-587.512', 'Christophe Jules O Verhellen', '2020-01-26 04:08:58.86237+00', '2020-01-26 04:08:58.86237+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (826, '2300006133', '0100079625', '2013-09-16', 'HACT:DCT', 'XAF', 'DECAISSMT 1ER TRANCH PCA ACRA ( ENFTS BOUVIERS)', '-495.248', 'Beatrice Wakimunu-Lelias', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (828, '2500222557', '0100040849', '2012-11-13', 'HACT:Reimbursement', 'USD', 'FINANCEMENT REUNIFICATION ENFANTS VICT.DE TRAITE', '1', 'Muhangi Désiré Mohindo', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (829, '2500212780', '0100301429', '2018-01-09', 'HACT:DCT', 'XAF', '0810/0320 - CSD NUTRITION', '-549.01', 'Mamadou Ndiaye', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1416, '2500235397', '0100422081', '2019-12-13', 'HACT:Reimbursement', 'EUR', '381R/000066 - NUTRITION (DATA, MONITORING & KM)', '-.896', 'Noel Zagre', '2020-02-03 17:16:10.601244+00', '2020-02-03 17:16:10.601244+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1417, '2500212820', '0100423822', '2020-01-24', 'HACT:DCT', 'XAF', '0810/001333 - WASH', '-594.864', 'Ousseini Mai Maigana', '2020-02-13 00:11:27.96468+00', '2020-02-13 00:11:27.96468+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (833, '2500219704', '0100177685', '2015-10-07', 'HACT:Reimbursement', 'XAF', 'REMBOURSEMENT APPPUI LOGISTIQUE INTRANTS NUT CONSO', '-620.056', 'Aime Birimwiragi Namululi', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1418, '2500240664', '0100424024', '2020-01-13', 'HACT:Reimbursement', 'XAF', '0810/001336 - WASH', '-594.864', 'Fabienne Bertrand', '2020-02-14 00:26:17.392864+00', '2020-02-14 00:26:17.392864+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (835, '2500213939', '0100085016', '2013-10-22', 'HACT:DCT', 'XAF', 'RENFORCEMENT DES CAPACITÉS DE L''AILS ET APPUI À LA', '-483.44', 'Therese Nduwimana', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1419, '2500240664', '0100424025', '2020-01-21', 'HACT:DCT', 'XAF', '0810/001335 - WASH', '-594.864', 'Fabienne Bertrand', '2020-02-14 00:26:17.392947+00', '2020-02-14 00:26:17.392947+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1420, '2500235282', '0100424355', '2020-01-28', 'HACT:DCT', 'XAF', '0810/001338 - 880/004 COMMUNICATION 2019', '-594.864', NULL, '2020-02-18 00:11:49.137092+00', '2020-02-18 00:11:49.137092+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (838, '2500224727', '0100098968', '2014-02-12', 'HACT:Reimbursement', 'XAF', 'REMBOURSEMENT ARNUT', '-483.245', 'Paola Valenti', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (839, '2500212828', '0100114399', '2014-06-17', 'HACT:DCT', 'XAF', 'DECSIMT 1RE TRANCH PCA CELIAF-WASH/14/', '-482.357', 'Moustapha Harouna', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1421, '2500214085', '0100425582', '2020-01-23', 'HACT:DCT', 'XAF', '0810/001340 - WASH', '-594.864', 'Ousseini Mai Maigana', '2020-02-26 00:11:16.721878+00', '2020-02-26 00:11:16.721878+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (841, '2500213970', '0100017783', '2012-06-19', 'HACT:DCT', 'USD', 'FFINANCEMENT PERDIEM FORMATEUR PARAMEDICAUX PCIMA', '1', 'Djimasde Mbairebe', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (842, '2500214003', '0100045527', '2012-12-04', 'HACT:DCT', 'USD', 'FINANCEMENT FORMATION EN PEV DS LE DS BILTINE', '1', 'Issaka Saleh', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1423, '2500214088', '0100426416', '2020-01-28', 'HACT:Reimbursement', 'XAF', '0810/001348 - 882 CSD NUTRITION 2020', '-596.704', NULL, '2020-03-04 00:04:35.648192+00', '2020-03-04 00:04:35.648192+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (844, '2500232212', '0100162535', '2015-06-16', 'HACT:DCT', 'XAF', 'FINANCEMENT APE/CELIAF/BOL', '-602.182', 'Mehoundo Faton', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1424, '2500214088', '0100426749', '2020-01-28', 'HACT:Reimbursement', 'XAF', '0810/001347 - 882 CSD NUTRITION 2020', '-596.704', NULL, '2020-03-06 00:05:26.586363+00', '2020-03-06 00:05:26.586363+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (846, '2500223367', '0100027297', '2012-08-24', 'HACT:DCT', 'USD', 'ACTIVITE COMMUNICATION PALU DSR LOG OCCIDENTAL', '1', 'Djimasde Mbairebe', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (847, '2500223367', '0100032775', '2012-09-26', 'HACT:DCT', 'USD', 'FORMATION 20 AGENTS DSRK /NOKOU PROGRAMME LMD IRA', '1', 'Djimasde Mbairebe', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (849, '2500213953', '0100000437', '2012-02-01', 'HACT:DCT', 'USD', 'DCT POUR PCA PROTECTION UNICEF/CARE', '1', 'Muhangi Désiré Mohindo', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1425, '2500240134', '0100426978', '2020-02-19', 'HACT:DCT', 'XAF', '0810/001351 - WASH', '-596.704', 'Ousseini Mai Maigana', '2020-03-07 00:05:22.980041+00', '2020-03-07 00:05:22.980041+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (851, '2500218808', '0100048492', '2012-12-14', 'HACT:DCT', 'USD', 'FC PAYEMENT FINAL PROJET EDUC/INTERSOS', '1', 'Sarhane Mahamat Khamis', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (852, '2500213970', '0100037801', '2012-10-24', 'HACT:DCT', 'USD', 'EVALUATION RAPIDE DE L''ETAT NUTRIONNEL DES ENFANTS', '1', 'Roger Sodjinou', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (827, '2500225860', '0100113955', '2014-06-13', 'HACT:DCT', 'XAF', 'MOBILISATION SOCIALE A TRAVERS LES RADIOS - AL BIC', '-482.357', 'Lalaina Andriamasinoro', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); @@ -7946,11 +8562,20 @@ INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (825, '2500232211', '0 INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (831, '2500221408', '0100114171', '2014-06-16', 'HACT:Direct Payment', 'XAF', 'PAIEMENT INTEGRAL DE L''APE Nº27/PRO/POLIO/CRT/LAC', '-482.357', 'Gianluca Flamigni', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (853, '2500224893', '0100124893', '2014-09-04', 'HACT:DCT', 'XAF', 'PREVENTION CHOLERA AU 1ER-8E ARRONDISSMT NDJ SID', '-498.107', 'Moustapha Harouna', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (854, '2500219704', '0100136103', '2014-11-13', 'HACT:DCT', 'XAF', 'FINANCEMENT 2E TRANCHE PCA CHORA CONSORTIUM TISSI', '-520.105', 'Aime Birimwiragi Namululi', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1422, '2500225653', '0100425798', '2020-01-14', 'HACT:Reimbursement', 'XAF', '0810/001342 - CSD', '-596.704', 'Celestin Traore', '2020-02-27 00:55:07.450174+00', '2020-03-10 00:04:30.296571+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1426, '2500214062', '0100428806', '2020-03-03', 'HACT:DCT', 'XAF', '0810/001362 - WASH', '-579.672', 'Ousseini Mai Maigana', '2020-03-22 00:07:09.35761+00', '2020-03-22 00:07:09.35761+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1427, '2500213985', '0100429642', '2020-03-24', 'HACT:DCT', 'XAF', '0810/001363 - 886 PROTECTION 2020', '-579.672', 'Ingabire A Bakuramutsa', '2020-03-28 00:07:25.438232+00', '2020-03-28 00:07:25.438232+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (860, '2500222557', '0100039468', '2012-11-06', 'HACT:DCT', 'USD', 'FC COMPLEMENT 2È TRANCHE DRASO GRPTS ET EAE', '1', 'Muhangi Désiré Mohindo', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (862, '2500227181', '0100296539', '2017-11-22', 'HACT:DCT', 'XAF', '0810/0229 - 887 COMMUNICATION STRATEGIQUE', '-553.504', 'Jean-Mathieu Laroche', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (863, '2500213931', '0100008406', '2012-04-20', 'HACT:DCT', 'USD', 'FC - FINANCEMENT TROISIEME TRANCHE ASTBEF', '1', 'Therese Nduwimana', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1428, '2500213920', '0100430061', '2020-03-09', 'HACT:DCT', 'XAF', '0810/001370 - 884 WASH 2020', '-579.672', NULL, '2020-04-02 00:05:25.601905+00', '2020-04-02 00:05:25.601905+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1429, '2500218808', '0100430255', '2020-03-25', 'HACT:DCT', 'XAF', '0810/001372 - 884 WASH 2020', '-594.218', NULL, '2020-04-04 00:05:28.933603+00', '2020-04-04 00:05:28.933603+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (867, '2500231570', '0100272087', '2017-08-04', 'HACT:DCT', 'XAF', '2E RENF MEDIA DROITS DE L''ENFT & EXPRES DE JEUNES', '-557.739', 'Maria Fernandez', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1430, '2500240242', '0100430369', '2020-03-28', 'HACT:DCT', 'XAF', '0810/001373 - 884 WASH 2020', '-594.218', 'Ousseini Mai Maigana', '2020-04-05 00:50:45.656674+00', '2020-04-05 00:50:45.656674+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1431, '2500213920', '0100430576', '2020-03-09', 'HACT:DCT', 'XAF', '0810/001370 - 884 WASH 2020', '-579.672', NULL, '2020-04-08 00:04:38.461314+00', '2020-04-08 00:04:38.461314+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1432, '2500214062', '0100430578', '2020-03-30', 'HACT:DCT', 'XAF', '0810/001374 - 884 WASH 2020', '-594.218', 'Ousseini Mai Maigana', '2020-04-08 00:04:38.461401+00', '2020-04-08 00:04:38.461401+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (871, '2500215473', '0100055200', '2013-03-08', 'HACT:DCT', 'USD', 'FINANCEMENT DERNIERE TRANCHE APE BAMBINI', '1', 'Bakary Sogoba', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); +INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (1433, '2500225653', '0100430994', '2020-03-17', 'HACT:Reimbursement', 'XAF', '0810/001381 - 881 CSD SANTE 2020', '-594.218', 'Celestin Traore', '2020-04-13 00:46:34.601581+00', '2020-04-13 00:46:34.601581+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (873, '2500220423', '0100019220', '2012-06-27', 'HACT:Reimbursement', 'USD', 'REBOUSEMENT DEPENSES ACTIVITES WASH/CHOLERA OGB', '1', 'Lillian Okwirry', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (875, '2500223367', '0100031674', '2012-09-20', 'HACT:DCT', 'USD', 'RENFORCEMENT DES CAPACITÉ DES BENEVOLES MONGO ET M', '1', 'Roger Sodjinou', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); INSERT INTO [[schema]].funds_fundscommitmentheader VALUES (876, '2500231570', '0100287737', '2017-11-06', 'HACT:DCT', 'XAF', '0810/0192 - 880 COMMUNICATION STRATEGIQUE', '-564.653', 'Maria Fernández Ruiz de Larrinaga', '2018-03-15 16:10:05.327774+00', '2018-03-15 16:10:05.539589+00'); @@ -8764,7 +9389,7 @@ INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1891, '0100377870-2', ' INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1892, '0100377870-1', '1', '0810/A0/05/884/004/004', 'NON-GRANT', 'GC', '', '2019-05-13', '0400068339', 260110.05, 152995953.00, 0.00, '20129303 - APPUI REPONSE URGENCES REFUGIES ET IDPS', 1326, '2019-05-16 00:24:08.321915+00', '2019-05-18 00:04:59.226421+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1864, '0100375216-1', '1', '0810/A0/05/886/004/004', 'NON-GRANT', 'GC', '', '2019-04-25', '0400068011', 0.00, 0.00, 0.00, '20126376 - RENFORCEMENT SYSTEME PROTECTION EN FAVE', 1317, '2019-04-28 00:05:29.674385+00', '2019-05-19 00:26:54.06465+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1939, '0100388221-1', '1', '0810/A0/05/886/004/004', 'NON-GRANT', 'GC', '', '2019-07-15', '0400068469', 39681.80, 22906000.00, 0.00, '20140320 - RENFORCEMENT SYSTEME PROTECTION ENFANTS', 1347, '2019-07-17 00:07:40.174235+00', '2019-07-17 00:07:40.17466+00'); -INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1893, '0100378652-1', '1', '0810/A0/05/884/001/003', 'SC189906', 'SC', '', '2019-05-17', '0400068450', 26940.57, 15846364.00, 0.00, '20130544 - MISE EN OEUVRE ATPC ATPE DANS 2 CANTONS', 1327, '2019-05-19 00:26:54.035753+00', '2019-05-22 00:03:07.535569+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2048, '0100420418-1', '1', '0810/A0/05/882/002/008', 'SM190128', 'SM', '', '2019-12-24', '0400073240', 4838.02, 2884767.00, 0.00, '30025048 - 7 POURCENT COUT SUPPORT INDIRECT DU PRO', 1410, '2019-12-26 01:47:02.605488+00', '2019-12-26 01:47:02.605488+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1914, '0100380789-3', '3', '0810/A0/05/885/003/001', 'SC170753', 'SC', '', '2019-05-29', '0400068748', 3606.33, 2121234.00, 0.00, '20132860 - FINANCEMENT MECANISME DE CONSOLIDATION', 1332, '2019-05-31 00:31:46.034736+00', '2019-05-31 00:31:46.035506+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1918, '0100381818-1', '1', '0810/A0/05/885/001/001', 'SC170715', 'SC', '', '2019-06-05', '0400065408', 2218.15, 1308110.00, 0.00, '20133948 - 2E TRANCHE APPUI MOBILISATION COMMUNAUT', 1337, '2019-06-07 00:26:41.881524+00', '2019-06-09 00:04:10.69968+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1894, '0100378946-8', '8', '0810/A0/05/885/004/004', 'SC160666', 'SC', '', '2019-05-08', '0400068250', 26440.23, 15552062.00, 0.00, '20128483 - CONSTR ET EQUIP DES INFRAST SCOL SITUA', 1329, '2019-05-22 00:03:07.509593+00', '2019-05-24 00:04:28.681944+00'); @@ -8793,19 +9418,19 @@ INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1916, '0100381029-1', ' INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1924, '0100381771-1', '1', '0810/A0/05/886/004/004', 'SM190166', 'SM', '', '2019-06-03', '0400068859', 132127.75, 77919696.00, 0.00, '20133540 - FINANCEMENT PCA URGENCE PRO INTERSOS', 1336, '2019-06-07 00:26:41.882263+00', '2019-06-07 00:26:41.883441+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1922, '0100381818-2', '2', '0810/A0/05/887/001/002', 'SC170715', 'SC', '', '2019-06-05', '0400065408', 13404.44, 7905000.00, 0.00, '20133950 - 2E TRANCHE APPUI MOBILISATION COMMUNAUT', 1337, '2019-06-07 00:26:41.882064+00', '2019-06-09 00:04:10.746405+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1923, '0100381818-6', '6', '0810/A0/05/885/001/001', 'SC170715', 'SC', '', '2019-06-05', '0400065408', 1848.30, 1090000.00, 0.00, '20133947 - 2E TRANCHE APPUI MOBILISATION COMMUNAUT', 1337, '2019-06-07 00:26:41.882166+00', '2019-06-09 00:04:10.757691+00'); -INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1929, '0100383115-1', '1', '0810/A0/05/884/001/003', 'SC189906', 'SC', '', '2019-06-13', '0400069044', 23754.68, 14008850.00, 0.00, '20135286 - MISE EN OEUVRE DE ATPC ET ATPE', 1340, '2019-06-15 00:08:24.417764+00', '2019-06-16 00:05:51.545154+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1952, '0100395005-2', '2', '0810/A0/05/883/004/003', 'NON-GRANT', 'GC', '', '2019-08-23', '0400070479', 0.00, 0.00, 0.00, '20148184 - PAIEMENT TRANCHE PCA AVEC RNTAP', 1356, '2019-08-25 00:15:15.824949+00', '2020-01-24 00:26:49.979395+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1930, '0100383382-1', '1', '0810/A0/05/880/004/005', 'NON-GRANT', 'GC', '', '2019-06-03', '0400066809', 18277.86, 10779000.00, 0.00, '20135246 - FINANACEMENT SECONDE TRANCHE PCA AVEC C', 1341, '2019-06-16 00:05:51.511178+00', '2019-06-20 00:10:27.914208+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1925, '0100382570-2', '2', '0810/A0/05/885/002/001', 'SC170198', 'SC', '', '2019-06-11', '0400068977', 46155.89, 27219514.00, 0.00, '30018416 - COUT SUPPORT INDIRECT DE PROGRAMME', 1338, '2019-06-13 00:05:36.721914+00', '2019-06-26 00:09:11.08088+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1928, '0100382570-1', '1', '0810/A0/05/885/001/002', 'SC170198', 'SC', '', '2019-06-11', '0400068977', 2210.91, 1303839.00, 0.00, '30018415 - COUT SUPPORT INDIRECT DE PROGRAMME', 1338, '2019-06-13 00:05:36.722332+00', '2019-06-26 00:09:11.096931+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1927, '0100382569-2', '2', '0810/A0/05/885/002/001', 'SC170198', 'SC', '', '2019-06-11', '0400068974', 30568.90, 18027398.00, 0.00, '30018414 - COUT SUPPORT INDIRECT DE PROGRAMME', 1339, '2019-06-13 00:05:36.722227+00', '2019-07-01 00:23:29.28596+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1932, '0100386380-1', '1', '0810/A0/05/882/002/009', 'NON-GRANT', 'GC', '', '2019-07-02', '0400067214', 117862.18, 68035000.00, 0.00, '20138358 - 2E TRAN PCA N 04 2019 NUT ASRADD PREVEN', 1345, '2019-07-05 15:01:02.804396+00', '2019-07-05 15:01:02.805507+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2074, '0100430061-1', '1', '0810/A0/05/884/001/003', 'GS180090', 'GS', '', '2020-03-30', '0400074774', 0.00, 0.00, 0.00, '20184246 - 3E TRANCHE 07 PCA 2019 WASH ACF', 1428, '2020-04-02 00:05:25.81539+00', '2020-04-02 00:05:25.81539+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1934, '0100386578-1', '1', '0810/A0/05/884/001/003', 'SC189906', 'SC', '', '2019-07-03', '0400069407', 14444.55, 8338000.00, 0.00, '20138621 - PAIEMENT TRANCHE 1 PCA WASH AVEC ESMS', 1344, '2019-07-05 15:01:02.804666+00', '2019-07-05 15:01:02.805676+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1900, '0100378805-1', '1', '0810/A0/05/886/004/004', 'NON-GRANT', 'GC', '', '2019-05-17', '0400068469', 0.00, 0.00, 0.00, '20130539 - RENFORCEMENT SYSTEME PROTECTION EN FAVE', 1328, '2019-05-22 00:03:07.51019+00', '2019-07-05 15:01:02.829121+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1936, '0100387540-4', '4', '0810/A0/05/885/001/003', 'SC170198', 'SC', '', '2019-07-09', '0400069588', 6770.42, 3908168.00, 0.00, '20139465 - PAIEMENT DERNIERE TRANCHE PCA EDUCATION', 1346, '2019-07-12 00:08:38.067946+00', '2019-07-13 00:05:13.539684+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1937, '0100387540-2', '2', '0810/A0/05/885/001/004', 'SC170198', 'SC', '', '2019-07-09', '0400069588', 15168.69, 8756006.00, 0.00, '20139459 - PAIEMENT DERNIERE TRANCHE PCA EDUCATION', 1346, '2019-07-12 00:08:38.068113+00', '2019-07-13 00:05:13.552435+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1938, '0100387540-1', '1', '0810/A0/05/885/001/002', 'SC170198', 'SC', '', '2019-07-09', '0400069588', 140686.17, 81209967.00, 0.00, '20139454 - PAIEMENT DERNIERE TRANCHE PCA EDUCATION', 1346, '2019-07-12 00:08:38.068283+00', '2019-07-13 00:05:13.563793+00'); -INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1933, '0100386121-1', '1', '0810/A0/05/884/002/002', 'SM180557', 'SM', '', '2019-06-28', '0400069369', 87692.56, 51714931.00, 0.00, '20137826 - PAIEMENT TRANCHE 1 PCA WASH ET ACF', 1342, '2019-07-05 15:01:02.804564+00', '2019-07-17 00:07:40.202592+00'); -INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1952, '0100395005-2', '2', '0810/A0/05/883/004/003', 'NON-GRANT', 'GC', '', '2019-08-23', '0400070479', 5723.65, 3355500.00, 0.00, '20148184 - PAIEMENT TRANCHE PCA AVEC RNTAP', 1356, '2019-08-25 00:15:15.824949+00', '2019-08-25 00:15:15.825544+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2077, '0100430576-1', '1', '0810/A0/05/884/001/003', 'GS180090', 'GS', '', '2020-03-30', '0400074774', 0.00, 0.00, 0.00, '20184246 - 3E TRANCHE 07 PCA 2019 WASH ACF', 1431, '2020-04-08 00:04:38.739185+00', '2020-04-12 00:05:57.748419+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1942, '0100390235-1', '1', '0810/A0/05/882/003/001', 'SM190128', 'SM', '', '2019-07-24', '0400069899', 82588.93, 47673798.00, 0.00, '20142255 - APPUI INSTITUTIONNEL PARTENAIRES', 1350, '2019-07-27 00:07:41.171058+00', '2019-07-27 00:07:41.171778+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1943, '0100390235-2', '2', '0810/A0/05/882/002/009', 'SM190128', 'SM', '', '2019-07-24', '0400069899', 665.23, 383996.00, 0.00, '20142257 - APPUI INSTITUTIONNEL PARTENAIRES', 1350, '2019-07-27 00:07:41.171198+00', '2019-07-27 00:07:41.171923+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1944, '0100390235-3', '3', '0810/A0/05/882/003/005', 'SM190128', 'SM', '', '2019-07-24', '0400069899', 5425.80, 3132000.00, 0.00, '20142258 - APPUI INSTITUTIONNEL PARTENAIRES', 1350, '2019-07-27 00:07:41.17129+00', '2019-07-27 00:07:41.172002+00'); @@ -8868,9 +9493,87 @@ INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1997, '0100407553-1', ' INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1999, '0100408819-1', '1', '0810/A0/05/885/001/001', 'SC170198', 'SC', '', '2019-11-06', '0400068169', 3495.71, 2063936.00, 0.00, '30022688 - 7 POURCENT DU COUT SUPPORT INDIRECT DU', 1380, '2019-11-08 17:13:58.271319+00', '2019-11-08 17:13:58.271319+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1994, '0100406487-1', '1', '0810/A0/05/886/004/004', 'NON-GRANT', 'GC', '', '2019-10-25', '0400071814', 12829.01, 7692211.00, 0.00, '30022309 - 7POURCENT DES COUTS SUPPORT INDIRECT DU', 1376, '2019-10-27 00:17:00.041096+00', '2019-11-14 00:08:06.31534+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1998, '0100407713-1', '1', '0810/A0/05/882/002/014', 'SC181084', 'SC', '', '2019-10-31', '0400071926', 29820.13, 17880000.00, 0.00, '20162037 - PAIEMENT SECONDE TRANCHE PCA AVEC RESEA', 1379, '2019-11-02 00:34:21.651283+00', '2019-11-03 00:35:31.27776+00'); -INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2001, '0100410446-1', '1', '0810/A0/05/884/002/002', 'NON-GRANT', 'GC', '', '2019-11-13', '0400066882', 3638.09, 2148001.00, 21480.01, '30022860 - 7 POURCENT COUT DE SUPPORT INDIRECT', 1382, '2019-11-15 00:10:41.241502+00', '2019-11-15 00:10:41.241502+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2002, '0100410302-1', '1', '0810/A0/05/885/002/002', 'NON-GRANT', 'GC', '', '2019-11-13', '0400066639', 1183.48, 698750.00, 0.00, '20164892 - PAIEMENT TRANCHE 3 DU SSFA AVEC LABEL', 1383, '2019-11-15 00:10:41.241594+00', '2019-11-15 00:10:41.241594+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2001, '0100410446-1', '1', '0810/A0/05/884/002/002', 'NON-GRANT', 'GC', '', '2019-11-13', '0400066882', 3638.09, 2148001.00, 0.00, '30022860 - 7 POURCENT COUT DE SUPPORT INDIRECT', 1382, '2019-11-15 00:10:41.241502+00', '2019-11-20 00:05:46.038433+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (656, '0100126373-9', '9', '0810/A0/04/802/002/002', 'SC130377', 'SC', '', '2014-09-18', '0400023942', 0.00, 0.00, 0.00, 'INDEMNITES DES CPS', 641, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2003, '0100412153-1', '1', '0810/A0/05/884/001/003', 'SC189906', 'SC', '', '2019-11-21', '0400072361', 13962.94, 8244000.00, 0.00, '20167175 - PAIEMENT SNDE TRANCHE PCA AVEC CR DU MO', 1384, '2019-11-23 00:05:12.657218+00', '2019-11-24 00:09:36.698814+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2005, '0100413324-1', '1', '0810/A0/05/884/001/003', 'SC189906', 'SC', '', '2019-11-26', '0400072478', 56771.62, 33519100.00, 0.00, '20168511 - PAIEMENT TRANCHE 1 PCA TERRE VERTE', 1386, '2019-11-28 00:10:15.225791+00', '2019-11-28 00:10:15.225791+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2006, '0100413409-2', '2', '0810/A0/05/884/003/002', 'NON-GRANT', 'GC', '', '2019-11-26', '0400058431', 3274.63, 1933407.00, 0.00, '30023444 - 7POURCENT COUT SUPPORTS INDIRECT 3E ET', 1385, '2019-11-28 00:10:15.225881+00', '2019-11-29 00:25:53.907418+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2007, '0100413409-1', '1', '0810/A0/05/884/001/003', 'SC181084', 'SC', '', '2019-11-26', '0400072488', 14676.42, 8665253.00, 0.00, '30023443 - 7POURCENT COUT SUPPORTS INDIRECT 3E ET', 1385, '2019-11-28 00:10:15.22597+00', '2019-11-29 00:25:53.927018+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1893, '0100378652-1', '1', '0810/A0/05/884/001/003', 'SC189906', 'SC', '', '2019-05-17', '0400068450', 23145.92, 13614364.00, 0.00, '20130544 - MISE EN OEUVRE ATPC ATPE DANS 2 CANTONS', 1327, '2019-05-19 00:26:54.035753+00', '2019-12-04 00:13:17.151368+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2004, '0100413334-1', '1', '0810/A0/05/885/002/001', 'SC170198', 'SC', '', '2019-11-26', '0400072474', 18679.99, 11029039.00, 0.00, '30023430 - COUTS INDIRECT TRANCHE 4 ET 4 PCA AVEC', 1387, '2019-11-28 00:10:15.225638+00', '2019-12-06 00:12:46.670257+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2008, '0100415542-1', '1', '0810/A0/05/884/004/002', 'SM190227', 'SM', '', '2019-12-04', '0400072732', 38960.19, 23230795.00, 0.00, '20170846 - FINANCEMENT PROJET DISTRIB KITS WASH NU', 1388, '2019-12-06 00:12:46.632394+00', '2019-12-07 00:10:25.407251+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2009, '0100416351-1', '1', '0810/A0/05/884/004/004', 'SM190180', 'SM', '', '2019-12-06', '0400070223', 67258.42, 40104179.00, 0.00, '20171675 - 2E TRANCHE 15 PCA 2019 WASH AFDI', 1389, '2019-12-09 15:35:59.980669+00', '2019-12-12 00:11:51.11969+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2010, '0100416849-1', '1', '0810/A0/05/884/001/003', 'SC189906', 'SC', '', '2019-12-09', '0400072879', 13981.92, 8337000.00, 0.00, '20172202 - 2E TRA MISE OEUVRE ATPC 91 VILLAG ET AT', 1390, '2019-12-10 04:23:08.820231+00', '2019-12-12 00:11:51.264776+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2011, '0100416860-1', '1', '0810/A0/05/884/002/002', 'SM180557', 'SM', '', '2019-12-09', '0400069369', 95784.35, 57113336.00, 0.00, '20172236 - 2E TRANCHE 07 PCA 2019 WASH ACF', 1391, '2019-12-11 00:11:47.661905+00', '2019-12-12 00:11:51.310337+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2012, '0100417912-1', '1', '0810/A0/05/885/004/002', 'SC170198', 'SC', '', '2019-12-11', '0400072969', 19279.64, 11495870.00, 0.00, '30024420 - 7POURCEN DE 4E TRANCHE DES COUTS SUPPO', 1392, '2019-12-13 00:41:55.718215+00', '2019-12-14 00:03:53.124645+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2016, '0100418318-3', '3', '0810/A0/05/886/002/003', 'SC181202', 'SC', '', '2019-12-12', '0400073012', 78639.38, 46890303.00, 0.00, '20173538 - MISE EN PLACE MECANISME COMM DROITS HUM', 1394, '2019-12-14 00:03:53.06908+00', '2019-12-17 00:44:29.583214+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2018, '0100418318-1', '1', '0810/A0/05/886/001/002', 'SC181202', 'SC', '', '2019-12-12', '0400073012', 13801.66, 8229515.00, 0.00, '20173532 - MISE EN PLACE MECANISME COMM DROITS HUM', 1394, '2019-12-14 00:03:53.069299+00', '2019-12-17 00:44:29.591923+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2021, '0100418318-2', '2', '0810/A0/05/886/001/003', 'SC181202', 'SC', '', '2019-12-12', '0400073012', 15209.60, 9069027.00, 0.00, '20173533 - MISE EN PLACE MECANISME COMM DROITS HUM', 1394, '2019-12-14 00:03:53.06952+00', '2019-12-17 00:44:29.6033+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2028, '0100418951-2', '2', '0810/A0/05/885/003/003', 'SC181084', 'SC', '', '2019-12-16', '0400072987', 5002.98, 2983125.00, 0.00, '20174051 - PAIEMENT TRANCHE 1 DU PCA AVEC CDVT', 1399, '2019-12-18 00:14:12.141237+00', '2019-12-18 00:14:12.141237+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2029, '0100418951-1', '1', '0810/A0/05/885/002/004', 'SC181084', 'SC', '', '2019-12-16', '0400072987', 43492.18, 25933083.00, 0.00, '20174050 - PAIEMENT TRANCHE 1 DU PCA AVEC CDVT', 1399, '2019-12-18 00:14:12.141388+00', '2019-12-18 00:14:12.141388+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2022, '0100418616-2', '2', '0810/A0/05/884/002/002', 'SC181084', 'SC', '', '2019-12-13', '0400066565', 2218.99, 1323118.00, 0.00, '30024572 - 7 POURCEN COUT INDIRECT DU PROGRAMME 3E', 1396, '2019-12-15 00:13:47.308816+00', '2019-12-18 00:14:14.116785+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2013, '0100418224-1', '1', '0810/A0/05/884/001/004', 'SC181135', 'SC', '', '2019-12-11', '0400067661', 3168.81, 1889466.00, 0.00, '20173417 - PAIEMENT TRANCHE 3 PCA AVEC ESMS', 1395, '2019-12-14 00:03:53.068573+00', '2019-12-18 00:14:14.364693+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2014, '0100418242-1', '1', '0810/A0/05/885/001/001', 'SC170198', 'SC', '', '2019-12-12', '0400073004', 644.66, 384394.00, 0.00, '30024470 - REMBOURSEMENT 7 POUR CENT TRANCHE 6 PCA', 1393, '2019-12-14 00:03:53.068804+00', '2019-12-18 00:14:14.374754+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2015, '0100418224-4', '4', '0810/A0/05/884/001/004', 'NON-GRANT', 'GC', '', '2019-12-11', '0400067661', 10066.80, 6002530.00, 0.00, '20173424 - PAIEMENT TRANCHE 3 PCA AVEC ESMS', 1395, '2019-12-14 00:03:53.068942+00', '2019-12-18 00:14:14.384339+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2017, '0100418224-2', '2', '0810/A0/05/884/002/002', 'SC181135', 'SC', '', '2019-12-11', '0400067661', 592.01, 352997.00, 0.00, '20173421 - PAIEMENT TRANCHE 3 PCA AVEC ESMS', 1395, '2019-12-14 00:03:53.06922+00', '2019-12-18 00:14:14.448826+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2019, '0100418224-5', '5', '0810/A0/05/884/001/004', 'NON-GRANT', 'GC', '', '2019-12-11', '0400067661', 367.78, 219295.00, 0.00, '20173428 - PAIEMENT TRANCHE 3 PCA AVEC ESMS', 1395, '2019-12-14 00:03:53.069371+00', '2019-12-18 00:14:14.47134+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2020, '0100418224-3', '3', '0810/A0/05/884/002/002', 'SC181135', 'SC', '', '2019-12-11', '0400067661', 6865.82, 4093882.00, 0.00, '20173422 - PAIEMENT TRANCHE 3 PCA AVEC ESMS', 1395, '2019-12-14 00:03:53.06944+00', '2019-12-18 00:14:14.497945+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2023, '0100418629-3', '3', '0810/A0/05/884/003/002', 'SC181084', 'SC', '', '2019-12-13', '0400073041', 32621.28, 19451091.00, 0.00, '20173819 - 1ERE TRANCHE 24 PCA 2019 WASH ESMS', 1397, '2019-12-15 00:13:47.308955+00', '2019-12-18 00:14:14.532393+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2024, '0100418629-2', '2', '0810/A0/05/884/002/002', 'SC181084', 'SC', '', '2019-12-13', '0400073041', 2683.23, 1599931.00, 0.00, '20173818 - 1ERE TRANCHE 24 PCA 2019 WASH ESMS', 1397, '2019-12-15 00:13:47.309104+00', '2019-12-18 00:14:15.80281+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2025, '0100418616-1', '1', '0810/A0/05/884/002/001', 'NON-GRANT', 'GC', '', '2019-12-13', '0400066565', 7917.55, 4721000.00, 0.00, '30024571 - 7POURCENT COUT INDIRECT DU PROGRAMME 3E', 1396, '2019-12-15 00:13:47.309193+00', '2019-12-18 00:14:17.125603+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2026, '0100418629-1', '1', '0810/A0/05/884/001/003', 'SC181084', 'SC', '', '2019-12-13', '0400073041', 32764.22, 19536321.00, 0.00, '20173817 - 1ERE TRANCHE 24 PCA 2019 WASH ESMS', 1397, '2019-12-15 00:13:47.309274+00', '2019-12-18 00:14:17.152647+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2055, '0100420555-1', '1', '0810/A0/05/882/002/012', 'SC160629', 'SC', '', '2019-12-26', '0400073255', 7016.00, 4183432.00, 0.00, '30025055 - REMB 7 POUR CENT COUTS ADMINSTRATIFS WO', 1411, '2019-12-29 00:39:35.712861+00', '2019-12-29 00:39:35.712861+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2035, '0100419551-2', '2', '0810/A0/05/884/001/003', 'NON-GRANT', 'GC', '', '2019-12-16', '0400069407', 6876.08, 4100000.00, 0.00, '20174567 - PAIEMENT TRANCHE 2 ESMS', 1404, '2019-12-20 00:17:37.872017+00', '2019-12-20 00:17:37.872017+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2036, '0100419551-1', '1', '0810/A0/05/884/001/003', 'SC189906', 'SC', '', '2019-12-16', '0400069407', 22696.09, 13533000.00, 0.00, '20174564 - PAIEMENT TRANCHE 2 ESMS', 1404, '2019-12-20 00:17:37.872262+00', '2019-12-20 00:17:37.872262+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2037, '0100419551-3', '3', '0810/A0/05/884/001/003', 'SC189906', 'SC', '', '2019-12-16', '0400069407', 4565.05, 2722000.00, 0.00, '20174569 - PAIEMENT TRANCHE 2 ESMS', 1404, '2019-12-20 00:17:37.872501+00', '2019-12-20 00:17:37.872501+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2030, '0100419256-1', '1', '0810/A0/05/882/002/009', 'SM180557', 'SM', '', '2019-12-17', '0400073121', 54564.21, 32535000.00, 0.00, '20174300 - 4E TRANCH 04 2019 NUTRITION ASRADD', 1402, '2019-12-19 00:47:17.564689+00', '2019-12-20 00:17:37.949492+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2027, '0100418869-1', '1', '0810/A0/05/887/001/001', 'NON-GRANT', 'GC', '', '2019-12-16', '0400073074', 24854.51, 14820000.00, 0.00, '20173982 - PROMOTION ENGAGEMENT COMMUNAUTAIRE DES', 1398, '2019-12-17 00:44:29.542764+00', '2019-12-20 00:17:37.962042+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2033, '0100419435-1', '1', '0810/A0/05/885/002/001', 'SC170198', 'SC', '', '2019-12-17', '0400072474', 105.66, 63000.00, 0.00, '30024737 - DIFFERENTIEL REMBOURSEMENT FRAIS ADMINS', 1403, '2019-12-19 00:47:17.56509+00', '2019-12-21 00:15:01.452773+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2032, '0100419125-1', '1', '0810/A0/05/885/002/001', 'SC170198', 'SC', '', '2019-12-17', '0400073099', 1961.99, 1169874.00, 0.00, '30024711 - 7POURCENT COUT SUPPORT INDIRECT DE PRO', 1401, '2019-12-19 00:47:17.564969+00', '2019-12-22 00:08:17.336744+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2039, '0100419901-1', '1', '0810/A0/05/882/002/012', 'SC160629', 'SC', '', '2019-12-19', '0400073177', 0.00, 0.00, 0.00, '20174727 - PAIEMENT TRANCHE NOVEMB ET DECEMB PCA A', 1405, '2019-12-21 00:15:01.370589+00', '2019-12-22 00:08:17.345952+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2049, '0100420417-3', '3', '0810/A0/05/882/002/008', 'SM180347', 'SM', '', '2019-12-19', '0400073170', 38399.99, 22896760.00, 0.00, '20175262 - SECONDE TRANCHE PCA AVEC PREMIERE URGEN', 1409, '2019-12-26 01:47:02.605627+00', '2019-12-26 01:47:02.605627+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2050, '0100420415-1', '1', '0810/A0/05/882/002/012', 'SC160629', 'SC', '', '2019-12-19', '0400073177', 63080.00, 37612711.00, 0.00, '20175248 - TRANCHE OCT NOV ET DEC 2019 WORLD VISI', 1408, '2019-12-26 01:47:02.605781+00', '2019-12-26 01:47:02.605781+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2034, '0100419252-1', '1', '0810/A0/05/886/004/004', 'SM190227', 'SM', '', '2019-12-17', '0400073115', 70000.23, 41739036.00, 0.00, '20174292 - PAIEMENT TRANCHE 1 PCA AVEC COOPI', 1400, '2019-12-19 00:47:17.565328+00', '2019-12-26 01:47:02.65275+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2040, '0100420040-6', '6', '0810/A0/05/881/001/003', 'SC180742', 'SC', '', '2019-12-20', '0400073002', 4501.73, 2684247.00, 0.00, '20174923 - 1ERE TRANCHE 26 PCA 2019 EDUCATION CELI', 1407, '2019-12-22 00:08:17.251366+00', '2019-12-22 00:08:17.251366+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2041, '0100420040-7', '7', '0810/A0/05/884/002/002', 'SC180742', 'SC', '', '2019-12-20', '0400073002', 3980.39, 2373385.00, 0.00, '20174926 - 1ERE TRANCHE 26 PCA 2019 EDUCATION CELI', 1407, '2019-12-22 00:08:17.251502+00', '2019-12-22 00:08:17.251502+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2042, '0100420069-1', '1', '0810/A0/05/885/002/001', 'SC170198', 'SC', '', '2019-12-20', '0400073196', 33226.93, 19812222.00, 0.00, '30024966 - 7POURCENT COUT SUPPORT INDIRECT DE PROG', 1406, '2019-12-22 00:08:17.25158+00', '2019-12-22 00:08:17.25158+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2043, '0100420040-4', '4', '0810/A0/05/880/004/003', 'SC180742', 'SC', '', '2019-12-20', '0400073002', 37482.89, 22349920.00, 0.00, '20174921 - 1ERE TRANCHE 26 PCA 2019 EDUCATION CELI', 1407, '2019-12-22 00:08:17.251656+00', '2019-12-22 00:08:17.251656+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2044, '0100420040-1', '1', '0810/A0/05/885/001/001', 'SC180742', 'SC', '', '2019-12-20', '0400073002', 59578.00, 35524577.00, 0.00, '20174918 - 1ERE TRANCHE 26 PCA 2019 EDUCATION CELI', 1407, '2019-12-22 00:08:17.251729+00', '2019-12-22 00:08:17.251729+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2045, '0100420040-3', '3', '0810/A0/05/880/004/001', 'SC180742', 'SC', '', '2019-12-20', '0400073002', 12376.94, 7380000.00, 0.00, '20174920 - 1ERE TRANCHE 26 PCA 2019 EDUCATION CELI', 1407, '2019-12-22 00:08:17.251807+00', '2019-12-22 00:08:17.251807+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2046, '0100420040-2', '2', '0810/A0/05/884/001/004', 'SC180742', 'SC', '', '2019-12-20', '0400073002', 16922.89, 10090612.00, 0.00, '20174919 - 1ERE TRANCHE 26 PCA 2019 EDUCATION CELI', 1407, '2019-12-22 00:08:17.251926+00', '2019-12-22 00:08:17.251926+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2047, '0100420040-5', '5', '0810/A0/05/880/004/005', 'SC180742', 'SC', '', '2019-12-20', '0400073002', 31863.92, 18999497.00, 0.00, '20174922 - 1ERE TRANCHE 26 PCA 2019 EDUCATION CELI', 1407, '2019-12-22 00:08:17.25201+00', '2019-12-22 00:08:17.25201+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2038, '0100419901-2', '2', '0810/A0/05/882/002/012', 'NON-GRANT', 'GC', '', '2019-12-19', '0400073177', 0.00, 0.00, 0.00, '20174728 - PAIEMENT TRANCHE NOVEMB ET DECEMB PCA A', 1405, '2019-12-21 00:15:01.370463+00', '2019-12-22 00:08:17.320532+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2051, '0100420415-2', '2', '0810/A0/05/882/002/012', 'NON-GRANT', 'GC', '', '2019-12-19', '0400073177', 30321.06, 18079539.00, 0.00, '20175249 - TRANCHE OCT NOV ET DEC 2019 WORLD VISI', 1408, '2019-12-26 01:47:02.605866+00', '2019-12-26 01:47:02.605866+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2052, '0100420417-4', '4', '0810/A0/05/882/002/008', 'SM190128', 'SM', '', '2019-12-19', '0400073170', 14430.55, 8604504.00, 0.00, '20175263 - SECONDE TRANCHE PCA AVEC PREMIERE URGEN', 1409, '2019-12-26 01:47:02.605947+00', '2019-12-26 01:47:02.605947+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2053, '0100420417-1', '1', '0810/A0/05/882/002/008', 'SM190180', 'SM', '', '2019-12-19', '0400073170', 109089.44, 65046760.00, 0.00, '20174672 - SECONDE TRANCHE PCA AVEC PREMIERE URGEN', 1409, '2019-12-26 01:47:02.606038+00', '2019-12-26 01:47:02.606038+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2054, '0100420417-2', '2', '0810/A0/05/882/002/008', 'SM180557', 'SM', '', '2019-12-19', '0400073170', 18711.27, 11156968.00, 0.00, '20175261 - SECONDE TRANCHE PCA AVEC PREMIERE URGEN', 1409, '2019-12-26 01:47:02.606118+00', '2019-12-26 01:47:02.606118+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1929, '0100383115-1', '1', '0810/A0/05/884/001/003', 'SC189906', 'SC', '', '2019-06-13', '0400069044', 23754.68, 14008850.00, 7025.00, '20135286 - MISE EN OEUVRE DE ATPC ET ATPE', 1340, '2019-06-15 00:08:24.417764+00', '2020-01-15 00:01:58.911366+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2056, '0100420990-1', '1', '0810/A0/05/887/001/006', 'NON-GRANT', 'GC', '', '2020-01-14', '0400073377', 26317.76, 15462000.00, 0.00, '20175841 - FORM DE 100 JRC EN TECH DE PRODUCTION R', 1412, '2020-01-16 00:06:52.943091+00', '2020-01-17 00:08:38.18854+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2057, '0100421155-1', '1', '0810/A0/05/884/001/003', 'SC189906', 'SC', '', '2020-01-16', '0400073429', 31512.97, 18514250.00, 0.00, '20176060 - FINANCEMENT TRANCHE 3 PCA AVEC CROIX RO', 1413, '2020-01-18 00:07:37.168324+00', '2020-01-19 00:07:39.767582+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2058, '0100421231-1', '1', '0810/A0/05/883/004/002', 'SC190605', 'SC', '', '2020-01-15', '0400073412', 5711.37, 3355500.00, 0.00, '20175948 - CFS PAIEMENT TRANCHE PCA AVEC RNTAP', 1414, '2020-01-19 00:07:39.74601+00', '2020-01-24 00:26:49.996839+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2059, '0100421811-1', '1', '0810/A0/05/887/001/001', 'NON-GRANT', 'GC', '', '2020-01-23', '0400073556', 16850.72, 9900000.00, 0.00, '20176527 - PAIEMENT TRANCHE 3 DU PCA AVEC AGT', 1415, '2020-01-26 04:08:59.073512+00', '2020-02-03 17:16:10.829334+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2060, '0100422081-1', '1', '0810/A0/05/882/002/009', 'NON-GRANT', 'GC', '', '2020-01-14', '0400073418', 5475.07, 4905.66, 0.00, '30025405 - REIMBURSEMENT IRD, CHAD ALLOCATION', 1416, '2020-02-03 17:16:10.80698+00', '2020-02-08 00:24:58.238649+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2062, '0100424025-1', '1', '0810/A0/05/880/005/002', 'SM190227', 'SM', '', '2020-02-12', '0400073906', 17862.91, 10626000.00, 0.00, '20178763 - PAIEMENT TRANCHE 2 DU PCA AVEC ASD', 1419, '2020-02-14 00:26:17.61367+00', '2020-02-18 00:11:49.606986+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2061, '0100423822-1', '1', '0810/A0/05/884/002/004', 'SC180404', 'SC', '', '2020-02-11', '0400073882', 97822.67, 58191183.00, 0.00, '20178603 - PAIEMENT TRANCHE 4 DU PCA AVEC SIF', 1417, '2020-02-13 00:11:28.220622+00', '2020-02-19 00:09:29.839861+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2064, '0100424355-1', '1', '0810/A0/05/880/004/005', 'NON-GRANT', 'GC', '', '2020-02-14', '0400073949', 10237.63, 6090000.00, 0.00, '20179092 - 2E TRANCHE 13 SSFA 2019 COM AFA', 1420, '2020-02-18 00:11:49.546401+00', '2020-02-21 00:52:22.141526+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2063, '0100424024-1', '1', '0810/A0/05/880/005/002', 'SM190227', 'SM', '', '2020-02-12', '0400073906', 12312.52, 7324275.00, 0.00, '30025832 - REMBOURSMENT FRAIS DES ACTIVITES RE NOT', 1418, '2020-02-14 00:26:17.613795+00', '2020-02-26 00:11:17.026863+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2065, '0100425582-1', '1', '0810/A0/05/884/002/003', 'SC189906', 'SC', '', '2020-02-24', '0400074143', 12081.36, 7186767.00, 0.00, '20180255 - PAIEMENT TRANCHE 3 DU PCA AVEC IAS', 1421, '2020-02-26 00:11:16.970442+00', '2020-03-03 00:13:16.652182+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2067, '0100426416-1', '1', '0810/A0/05/882/004/002', 'SM190227', 'SM', '', '2020-03-02', '0400074269', 15399.41, 9188887.00, 0.00, '30026295 - 7POURCENT COUTS SUPPORT DIRECT 1ERE ET', 1423, '2020-03-04 00:04:35.877531+00', '2020-03-06 00:05:26.83215+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2071, '0100426978-1', '1', '0810/A0/05/884/001/003', 'SC189906', 'SC', '', '2020-03-05', '0400074359', 31480.85, 18784750.00, 0.00, '20181563 - PAIEMENT TRANCHE 3 DU PCA AVEC APDI', 1425, '2020-03-07 00:05:23.229442+00', '2020-03-11 00:08:48.702923+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2068, '0100426749-2', '2', '0810/A0/05/882/004/002', 'SM190227', 'SM', '', '2020-03-02', '0400074269', 75836.70, 45252065.00, 0.00, '30026294 - REMB 1ERE ET 2E TRANCHE 16 PCA 2019 IRC', 1424, '2020-03-06 00:05:26.794804+00', '2020-03-12 00:23:39.129622+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2069, '0100426749-3', '3', '0810/A0/05/882/004/002', 'SM190227', 'SM', '', '2020-03-02', '0400074269', 15399.41, 9188887.00, 0.00, '30026373 - REMB 1ERE ET 2E TRANCHE 16 PCA 2019 IRC', 1424, '2020-03-06 00:05:26.794914+00', '2020-03-12 00:23:39.148442+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2070, '0100426749-1', '1', '0810/A0/05/882/004/002', 'SM190367', 'SM', '', '2020-03-02', '0400074269', 128755.41, 76828868.00, 0.00, '30026293 - REMB 1ERE ET 2E TRANCHE 16 PCA 2019 IRC', 1424, '2020-03-06 00:05:26.794996+00', '2020-03-12 00:23:39.182571+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (85, '0100105431-3', '3', '0810/A0/04/802/001/009', 'NON-GRANT', 'GC', '', '2014-09-15', '0400019939', 5253.59, 2505000.00, 0.00, 'ANIMATIONS DANS LES SITES', 45, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1933, '0100386121-1', '1', '0810/A0/05/884/002/002', 'SM180557', 'SM', '', '2019-06-28', '0400069369', 87692.56, 51714931.00, 0.00, '20137826 - PAIEMENT TRANCHE 1 PCA WASH ET ACF', 1342, '2019-07-05 15:01:02.804564+00', '2020-03-12 00:23:39.200789+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2066, '0100425798-1', '1', '0810/A0/05/881/002/012', 'NON-GRANT', 'GC', '', '2020-02-25', '0400074171', 136354.66, 81112479.00, 0.00, '30026177 - REMBOURSEMENT ACTIVITES MENTHOR', 1422, '2020-02-27 00:55:07.655654+00', '2020-03-14 00:06:18.288671+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2073, '0100429642-1', '1', '0810/A0/05/886/004/004', 'SM190227', 'SM', '', '2020-03-24', '0400074691', 85953.64, 49824917.00, 0.00, '20183822 - CFS PAIEMENT TRANCHE 1 PCA 2019 AVEC CO', 1427, '2020-03-28 00:07:25.654329+00', '2020-04-01 00:05:03.113292+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2031, '0100419252-2', '2', '0810/A0/05/886/004/004', 'SM170463', 'SM', '', '2019-12-17', '0400073115', 0.00, 0.00, 0.00, '20174293 - PAIEMENT TRANCHE 1 PCA AVEC COOPI', 1400, '2019-12-19 00:47:17.564869+00', '2020-04-02 00:05:25.862239+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2072, '0100428806-1', '1', '0810/A0/05/884/001/004', 'NON-GRANT', 'GC', '', '2020-03-19', '0400074612', 3363.97, 1950000.00, 0.00, '20183357 - PAIEMENT TRANCHE 4 PCA AVEC ESMS', 1426, '2020-03-22 00:07:09.579008+00', '2020-04-05 00:50:45.921793+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2075, '0100430255-1', '1', '0810/A0/05/884/004/002', 'SM190227', 'SM', '', '2020-04-01', '0400074627', 146075.00, 86800393.00, 0.00, '20184429 - 1 ERE TRANCHE 03 PCA 2020 WASH INTERSOS', 1429, '2020-04-04 00:05:29.157011+00', '2020-04-06 00:05:56.020705+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2076, '0100430369-1', '1', '0810/A0/05/884/001/003', 'SC189906', 'SC', '', '2020-04-02', '0400073429', 19123.87, 11363750.00, 0.00, '20184572 - 4E TRANCHE 10 PCA 2019 WASH CRT', 1430, '2020-04-05 00:50:45.896772+00', '2020-04-06 00:05:56.034239+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2078, '0100430578-1', '1', '0810/A0/05/884/001/003', 'NON-GRANT', 'GC', '', '2020-04-06', '0400074882', 21620.01, 12847000.00, 0.00, '20184796 - 3E TRANCHE PCA WASH 2019', 1432, '2020-04-08 00:04:38.739319+00', '2020-04-09 00:05:08.518025+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2079, '0100430994-1', '1', '0810/A0/05/881/002/014', 'NON-GRANT', 'GC', '', '2020-04-09', '0400074970', 4182.17, 2485119.00, 0.00, '30027329 - 7 POURCENT COUT SUPPORT INDIRECT DE PRO', 1433, '2020-04-13 00:46:34.821746+00', '2020-04-17 00:57:06.607576+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (86, '0100105431-1', '1', '0810/A0/04/802/001/001', 'NON-GRANT', 'GC', '', '2014-09-15', '0400019939', 2705.44, 1290000.00, 0.00, 'CAMPAGNES DE MASSE', 45, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (1, '0100048052-1', '1', '0810/A0/04/808/002/003', 'SC069904', 'SC', '', '2012-12-13', '0400009031', 8778.00, 8778.00, 0.00, 'FINANCMT GROUPEMENTS FÉMININS DANS LE SILA/APLFT', 110, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (2, '0100050004-1', '1', '0810/A0/04/806/004/003', 'SC100588', 'SC', '', '2012-12-26', '0400009411', 15000.00, 15000.00, 0.00, 'FC AVANCE AU PARTENAIRE CSSI', 420, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); @@ -9229,7 +9932,6 @@ INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (364, '0100102957-12', ' INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (365, '0100102957-13', '13', '0810/A0/04/802/003/006', 'SC130377', 'SC', '', '2014-04-30', '0400019412', 458.87, 220000.00, 0.00, 'SIGNER CONTRAT AVEC LES CPS', 735, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (366, '0100102957-14', '14', '0810/A0/04/802/002/003', 'SC130377', 'SC', '', '2014-04-30', '0400019412', 2169.24, 1040000.00, 0.00, 'APPUI MEDICAL, JURIDIQUE, SCOLAIRE/OEV', 735, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (367, '0100102957-15', '15', '0810/A0/04/802/002/006', 'SC130377', 'SC', '', '2014-04-30', '0400019412', 504.76, 242000.00, 0.00, 'MOTIVATION DU PERSONNEL/CDLS', 735, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); -INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (593, '0100127441-18', '18', '0810/A0/04/802/002/006', 'SC130377', 'SC', '', '2014-09-23', '0400023942', 618.98, 308320.00, 0.00, 'SALAIRE GARDIEN', 656, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (368, '0100102957-16', '16', '0810/A0/04/802/003/006', 'SC130377', 'SC', '', '2014-04-30', '0400019412', 271.16, 130000.00, 0.00, 'SUIVI/EVALUATION DES ACTIVITÉS DES CDLS', 735, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (369, '0100102957-17', '17', '0810/A0/04/802/003/006', 'SC130377', 'SC', '', '2014-04-30', '0400019412', 62.58, 30000.00, 0.00, 'FRAIS GENERAUX/CLDS', 735, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (371, '0100125242-1', '1', '0810/A0/04/806/002/012', 'NON-GRANT', 'GC', '', '2014-09-08', '0400023724', 20065.97, 9995000.00, 0.00, 'DECAISSEMENT FONDS SELON PROTOC ACC AVEC AFPAT', 675, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); @@ -9453,6 +10155,7 @@ INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (589, '0100127441-12', ' INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (590, '0100127441-11', '11', '0810/A0/04/802/002/006', 'SC130377', 'SC', '', '2014-09-23', '0400023942', 5324.16, 2652000.00, 0.00, 'LOYER BUREAUX REGIONAUX RNTAP+', 656, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (591, '0100127441-10', '10', '0810/A0/04/802/002/006', 'SC130377', 'SC', '', '2014-09-23', '0400023942', 2810.64, 1400000.00, 0.00, 'LOYER SIEGE RNTAP+', 656, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (592, '0100127441-19', '19', '0810/A0/04/802/002/006', 'SC130377', 'SC', '', '2014-09-23', '0400023942', 3374.74, 1680984.00, 0.00, 'SALAIRE CHARGE DE PROGRAMME', 656, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); +INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (593, '0100127441-18', '18', '0810/A0/04/802/002/006', 'SC130377', 'SC', '', '2014-09-23', '0400023942', 618.98, 308320.00, 0.00, 'SALAIRE GARDIEN', 656, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (600, '0100127515-1', '1', '0810/A0/04/806/004/003', 'SC100588', 'SC', '', '2014-09-23', '0400024132', 5495.81, 2737500.00, 0.00, 'REMBOURSEMENT DES FONDS PREFINANCE PAR LA CRT LAC', 323, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (601, '0100149124-1', '1', '0810/A0/04/886/007/002', 'SM130487', 'SM', '', '2015-02-25', '0400028388', 6469.40, 3744178.00, 0.00, 'APPUI AUX OPS DU PROJET CONSORTIUM', 987, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (602, '0100149124-2', '2', '0810/A0/04/886/007/002', 'SM130229', 'SM', '', '2015-02-25', '0400028388', 8963.38, 5187572.00, 0.00, 'APPUI AUX OPS DU PROJET CONSORTIUM', 987, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); @@ -9503,7 +10206,6 @@ INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (648, '0100170852-1', '1 INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (650, '0100185449-1', '1', '0810/A0/04/883/001/001', 'SC130798', 'SC', '', '2015-11-19', '0400035497', 44579.07, 26678167.00, 0.00, 'FIN 6E TRANCHE PCA 2014/06/CHD/WASH/ADRA', 1143, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (651, '0100099648-1', '1', '0810/A0/04/806/004/003', 'SC130233', 'SC', '', '2014-02-19', '0400018641', 12643.07, 6109700.00, 0.00, 'F APE N 24/PR/POLIO/EEMET-TCHAD/2013.', 211, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (655, '0100126373-8', '8', '0810/A0/04/802/002/002', 'SC130377', 'SC', '', '2014-09-18', '0400023942', 0.00, 0.00, 0.00, 'CONTRACTUALISER 1 CONSULTANT PLATE FORME', 641, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); -INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (656, '0100126373-9', '9', '0810/A0/04/802/002/002', 'SC130377', 'SC', '', '2014-09-18', '0400023942', 0.00, 0.00, 0.00, 'INDEMNITES DES CPS', 641, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (658, '0100036710-1', '1', '0810/A0/04/801/002/001', 'SM120368', 'SM', '', '2012-10-18', '1000003374', 22600.00, 22600.00, 0.00, 'FORMATION DE 20 PARAMEDICAUX DANS DSR DE SILA', 232, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (659, '0100126373-1', '1', '0810/A0/04/802/002/001', 'SC130377', 'SC', '', '2014-09-18', '0400023942', 0.00, 0.00, 0.00, 'ORGANISER DES SEANCES SENSIBILISATION PTME', 641, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); INSERT INTO [[schema]].funds_fundscommitmentitem VALUES (660, '0100126373-2', '2', '0810/A0/04/802/002/001', 'SC130377', 'SC', '', '2014-09-18', '0400023942', 0.00, 0.00, 0.00, 'ORGANISER 200 RENCONTRES/ATELIER', 641, '2018-03-15 16:10:05.706966+00', '2018-03-15 16:10:05.814617+00'); @@ -10540,10 +11242,9 @@ INSERT INTO [[schema]].funds_fundsreservationheader VALUES (435, '2500221714', ' INSERT INTO [[schema]].funds_fundsreservationheader VALUES (40, '2500215472', '0400002617', '2012-05-02', 'SSFA', 'USD', 'PAIEMENT DE LA DERNIERE TRANCHE PROJET FISTULE', '2012-05-02', '2012-05-31', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (912, '2500213920', '0400060128', '2018-05-10', 'Programme Document Against PCA', 'XAF', 'REMOURSEMENT COUT SUPPORT INDIRECT PROGRAMME 7%', '2017-10-01', '2018-01-31', 11169.74, NULL, 11169.74, 0.00, 11169.74, '2018-05-17 16:21:55.670817+00', '2018-05-21 00:04:16.512916+00', 6064788.00, 0.00, 6064788.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1012, '2500237165', '0400067581', '2019-04-03', 'Programme Document Against PCA', 'XAF', '7% DU COUT DE SUPPORT INDIRECT AU PROGRAMME', '2019-04-03', '2019-06-30', 1623.41, NULL, 1623.41, 0.00, 1623.41, '2019-04-05 00:05:05.127966+00', '2019-04-07 00:03:16.745664+00', 948673.00, 0.00, 948673.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (641, '2500212828', '0400000802', '2012-03-03', 'SSFA', 'USD', 'RESSOURCES POUR ACTIVITES PROMOTION D''HYGIENE', '2011-07-01', '2012-02-29', 5354.11, NULL, 5354.11, 0.00, 20000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.033693+00', 0.00, 0.00, 5345.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (997, '2500213985', '0400067059', '2019-03-11', 'Programme Document Against PCA', 'XAF', 'COUT SUPPORT INDIRECT DE PROGRAMME', '2019-03-11', '2019-06-11', 30640.64, NULL, 30640.64, 0.00, 31050.09, '2019-03-15 13:52:32.639083+00', '2019-04-14 00:03:48.317493+00', 17905500.00, 0.00, 17905500.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (903, '2500236515', '0400059250', '2018-04-05', 'SSFA', 'XAF', 'REFORCEMENT DE LA FONCTION EVALUATION DU TCHAD', '2018-04-05', '2018-07-05', 0.00, NULL, 0.00, 0.00, 15713.68, '2018-04-09 17:11:47.912475+00', '2018-11-29 00:01:58.907026+00', 0.00, 0.00, 8347500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (67, '2500213923', '0400001149', '2012-03-15', 'Programme Document Against PCA', 'USD', 'FR POUR 3E TRANCHE PCA ADRA/UNICEF WASH', '2011-11-11', '2012-01-31', 59641.74, NULL, 59641.74, 0.00, 3000000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.13242+00', 0.00, 0.00, 61000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (64, '2500213955', '0400000397', '2012-02-16', 'Programme Document Against PCA', 'USD', 'DECAISSEMENT TROISIEME TRANCHE PROJET OEV MOUNDOU', '2012-02-16', '2012-01-31', 39429.20, NULL, 39429.20, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:51.843551+00', 0.00, 0.00, 39470.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (964, '2500214085', '0400064635', '2018-11-12', 'Programme Document Against PCA', 'XAF', 'COUT DE SUPPORT INDIRECT DE PROGRAMME', '2018-08-24', '2018-11-24', 54095.12, NULL, 54095.12, 0.00, 54095.12, '2018-11-14 00:01:58.829345+00', '2018-11-24 00:01:57.109738+00', 31222240.00, 0.00, 31222240.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (653, '2500212828', '0400055914', '2017-11-24', 'Programme Document Against PCA', 'XAF', 'PROMOTION HYGIENE & SUIVI POUR LE MAINTIEN FDAL', '2017-11-24', '2018-04-30', 21685.00, NULL, 21685.00, 0.00, 21685.00, '2018-03-15 16:10:06.407235+00', '2018-08-18 00:02:16.704283+00', 12244500.00, 0.00, 12244500.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (892, '2500237892', '0400058255', '2018-02-28', 'Programme Document Against PCA', 'XAF', 'MISE EN OEUVRE INTERVENTIONS DE NUT AUX PERS AFFEC', '2018-02-28', '2018-03-31', 11784.12, NULL, 11784.12, 0.00, 11940.75, '2018-03-15 16:10:06.407235+00', '2018-10-11 00:01:41.617237+00', 6302900.00, 0.00, 6302900.00, false, false, false); @@ -10551,31 +11252,31 @@ INSERT INTO [[schema]].funds_fundsreservationheader VALUES (46, '2500221193', '0 INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1028, '2500213943', '0400068469', '2019-05-17', 'Programme Document Against PCA', 'XAF', 'RENFORCEMENT SYSTEME PROTECTION EN FAVEUR DES ENFA', '2019-05-17', '2019-08-17', 78624.54, NULL, 78624.54, 39681.80, 38942.74, '2019-05-19 00:05:23.846727+00', '2019-07-19 00:04:52.281621+00', 45812000.00, 22906000.00, 22906000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1054, '2500214088', '0400071199', '2019-09-28', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT FONDS ENGAGÉS IRC', '2019-09-28', '2019-09-30', 51332.31, NULL, 51332.31, 0.00, 51332.31, '2019-10-01 14:41:45.507954+00', '2019-10-04 00:07:41.946727+00', 30638563.00, 0.00, 30638563.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (963, '2500237165', '0400064576', '2018-11-08', 'Programme Document Against PCA', 'XAF', 'COUT DE SUPPORT INDIRECT DE PROGRAMME (7%)', '2018-10-01', '2018-12-31', 1829.04, NULL, 1829.04, 0.00, 1829.04, '2018-11-10 00:01:59.807233+00', '2018-11-16 00:02:10.91879+00', 1055672.00, 0.00, 1055672.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (544, '2500221790', '0400002846', '2012-05-09', 'Programme Document Against PCA', 'USD', '1ERE TRANCHE PCA AVEC RNTAP+', '2012-05-28', '2013-05-28', 59570.77, NULL, 59570.77, 0.00, 64384.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.511428+00', 0.00, 0.00, 95464.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (38, '2500229637', '0400030772', '2015-05-26', 'SSFA', 'XAF', 'DECAISSMENT APE/ REMOJ/COM/2015', '2015-04-16', '2015-08-01', 16440.82, NULL, 16440.82, 0.00, 16440.82, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.216156+00', 9750000.00, 0.00, 9750000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (6, '2500232213', '0400031327', '2015-06-17', 'SSFA', 'XAF', 'FINANCEMENT APE GROUPEMENT AL-NADJA/LAC', '2015-06-17', '2015-07-31', 49237.61, NULL, 49237.61, 0.00, 49237.61, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.345544+00', 29650000.00, 0.00, 29650000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (41, '2500212819', '0400031358', '2015-06-17', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2È TRANCHE PCA 17/2014/SECADEV/PBEA', '2015-05-01', '2015-07-31', 20566.52, NULL, 20566.52, 0.00, 20566.52, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.366194+00', 12384791.00, 0.00, 12384791.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (969, '2500227536', '0400064656', '2018-11-13', 'Programme Document Against PCA', 'XAF', 'FR 1ERE TRANCHE PCA 17 COMMUNICATION ANNASSOUR', '2018-11-01', '2018-11-30', 21416.34, NULL, 21416.34, 0.00, 21416.34, '2018-11-15 00:02:03.222817+00', '2019-06-22 00:06:33.079019+00', 12360933.00, 0.00, 12360933.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (21, '2500212820', '0400032632', '2015-08-07', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT SECONDE TRANCHE PCA DU SIF', '2015-08-07', '2015-08-15', 136445.81, NULL, 136445.81, 0.00, 136445.81, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.852005+00', 81917014.00, 0.00, 81917014.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (37, '2500234518', '0400039523', '2016-04-14', 'SSFA', 'XAF', 'FR AHEAS MISE EN OEUVRE ACPV', '2016-04-04', '2016-06-30', 4418.26, NULL, 4418.26, 0.00, 4435.11, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.854335+00', 2570000.00, 0.00, 2570000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (9, '2500228587', '0400040314', '2016-05-12', 'Programme Document Against PCA', 'XAF', 'FR PCA AVEC ADES POUR CONSTRUCTION SDC DANS OUADD', '2016-04-10', '2016-12-31', 62569.09, NULL, 62569.09, 0.00, 62569.09, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.61425+00', 36202350.00, 0.00, 36202350.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (17, '2500213923', '0400041141', '2016-06-13', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA N#10/CHD/PROG/WASH/ADRA/2016', '2016-06-13', '2016-09-20', 277568.78, NULL, 277568.78, 0.00, 274564.54, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.930662+00', 161541419.00, 0.00, 161541419.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (36, '2500227539', '0400043186', '2016-09-02', 'SSFA', 'XAF', 'FR PR ACTIVITÉ PROTECTION DES ENFANTS DANS LE LAC', '2016-09-02', '2016-12-07', 49081.33, NULL, 49081.33, 0.00, 49030.35, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.883782+00', 28885000.00, 0.00, 28855000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (43, '2500221193', '0400045163', '2016-11-10', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ERE TRANCHE PCA ONG BASE', '2016-11-10', '2017-02-11', 97135.96, NULL, 97135.96, 0.00, 97591.62, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.215657+00', 58606500.00, 0.00, 58606500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (24, '2500224655', '0400046543', '2016-12-14', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 3EME TRANCHE PCA CEVANUTRI', '2016-12-14', '2017-03-14', 22074.95, NULL, 22074.95, 0.00, 22074.95, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.512497+00', 13640000.00, 0.00, 13640000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (35, '2500234300', '0400046546', '2016-12-14', 'Programme Document Against PCA', 'XAF', 'REPONSSE EDUCATION URGENCES AU SUD', '2016-12-14', '2017-03-14', 87309.41, NULL, 87309.41, 0.00, 87309.41, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.533381+00', 53948050.00, 0.00, 53948050.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1097, '2500214085', '0400074143', '2020-02-24', 'Programme Document Against PCA', 'XAF', 'FR POUR TRANCHE 3 PCA AVEC IAS', '2020-02-24', '2020-03-20', 12081.36, NULL, 12081.36, 12081.36, 12081.36, '2020-02-26 00:09:11.728234+00', '2020-03-03 00:11:07.974433+00', 7186767.00, 7186767.00, 7186767.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (20, '2500213985', '0400048327', '2017-03-01', 'Programme Document Against PCA', 'XAF', '2E T PCA/018/16/PRO/NUT/COOPI - PCIMA- HLAMIS', '2017-03-01', '2017-05-31', 42090.37, NULL, 42090.37, 0.00, 42090.36, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.882059+00', 26036846.00, 0.00, 26036846.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (23, '2500212819', '0400050337', '2017-05-08', 'Programme Document Against PCA', 'XAF', 'FR PCA AVENANT 002/2017- SECADEV-WASH', '2017-05-08', '2017-06-30', 29383.83, NULL, 29383.83, 0.00, 29383.83, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.466243+00', 17758000.00, 0.00, 17758000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (30, '2500214088', '0400050567', '2017-05-15', 'Programme Document Against PCA', 'XAF', '1ERE T PCA SANTE-NUT/VIH PROFIL POPULATION LAC', '2017-03-01', '2017-05-31', 165900.55, NULL, 165900.55, 0.00, 165900.55, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.488451+00', 100261332.00, 0.00, 100261332.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (34, '2500227536', '0400052361', '2017-07-11', 'SSFA', 'XAF', 'FINANCEMENT 1ERE TRANCHE SSFA ANNASSOUR', '2017-07-11', '2017-10-11', 9114.08, NULL, 9114.08, 0.00, 9114.08, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.248429+00', 5253000.00, 0.00, 5253000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (27, '2500214088', '0400053649', '2017-08-29', 'Programme Document Against PCA', 'XAF', '2E T CONTR DES SOINS MEDICO-NUT AIGUE DANS DS LIWA', '2017-08-29', '2017-08-31', 129562.63, NULL, 129562.63, 0.00, 129562.63, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.497147+00', 72017257.00, 0.00, 72017257.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1025, '2500237473', '0400068296', '2019-05-10', 'Programme Document Against PCA', 'XAF', 'APPUI AUX COMMUNAUTES AFFECTEES PAR LA CRISE CENTR', '2019-05-10', '2019-08-10', 279203.59, NULL, 279203.59, 84238.50, 279203.59, '2019-05-12 00:03:23.02666+00', '2019-07-05 15:00:06.518508+00', 164226714.00, 49548829.00, 164226714.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1007, '2500238464', '0400067214', '2019-03-18', 'Programme Document Against PCA', 'XAF', '1ERE T PCA N 04/2019/NUTRITION/ASRADD', '2019-03-18', '2019-03-31', 239353.86, NULL, 239353.86, 0.00, 239471.79, '2019-03-19 14:20:23.485614+00', '2019-12-09 15:34:17.756574+00', 138095000.00, 0.00, 138095000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (29, '2500226341', '0400014360', '2013-07-30', 'SSFA', 'XAF', 'REMBOURSEMENT APE Nº15/PRO/POLIO/ACPJ/2013', '2013-07-30', '2013-09-30', 0.00, NULL, 0.00, 0.00, 7403.82, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (544, '2500221790', '0400002846', '2012-05-09', 'Programme Document Against PCA', 'USD', '1ERE TRANCHE PCA AVEC RNTAP+', '2012-05-28', '2013-05-28', 59570.77, NULL, 59570.77, 0.00, 64384.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.203726+00', 0.00, 0.00, 95464.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (38, '2500229637', '0400030772', '2015-05-26', 'SSFA', 'XAF', 'DECAISSMENT APE/ REMOJ/COM/2015', '2015-04-16', '2015-08-01', 16440.82, NULL, 16440.82, 0.00, 16440.82, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.018987+00', 9750000.00, 0.00, 9750000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (6, '2500232213', '0400031327', '2015-06-17', 'SSFA', 'XAF', 'FINANCEMENT APE GROUPEMENT AL-NADJA/LAC', '2015-06-17', '2015-07-31', 49237.61, NULL, 49237.61, 0.00, 49237.61, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.056975+00', 29650000.00, 0.00, 29650000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (41, '2500212819', '0400031358', '2015-06-17', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2È TRANCHE PCA 17/2014/SECADEV/PBEA', '2015-05-01', '2015-07-31', 20566.52, NULL, 20566.52, 0.00, 20566.52, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.06855+00', 12384791.00, 0.00, 12384791.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (21, '2500212820', '0400032632', '2015-08-07', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT SECONDE TRANCHE PCA DU SIF', '2015-08-07', '2015-08-15', 136445.81, NULL, 136445.81, 0.00, 136445.81, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.263157+00', 81917014.00, 0.00, 81917014.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (37, '2500234518', '0400039523', '2016-04-14', 'SSFA', 'XAF', 'FR AHEAS MISE EN OEUVRE ACPV', '2016-04-04', '2016-06-30', 4418.26, NULL, 4418.26, 0.00, 4435.11, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.122188+00', 2570000.00, 0.00, 2570000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (9, '2500228587', '0400040314', '2016-05-12', 'Programme Document Against PCA', 'XAF', 'FR PCA AVEC ADES POUR CONSTRUCTION SDC DANS OUADD', '2016-04-10', '2016-12-31', 62569.09, NULL, 62569.09, 0.00, 62569.09, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.442625+00', 36202350.00, 0.00, 36202350.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (36, '2500227539', '0400043186', '2016-09-02', 'SSFA', 'XAF', 'FR PR ACTIVITÉ PROTECTION DES ENFANTS DANS LE LAC', '2016-09-02', '2016-12-07', 49081.33, NULL, 49081.33, 0.00, 49030.35, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.940653+00', 28885000.00, 0.00, 28855000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (43, '2500221193', '0400045163', '2016-11-10', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ERE TRANCHE PCA ONG BASE', '2016-11-10', '2017-02-11', 97135.96, NULL, 97135.96, 0.00, 97591.62, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.426712+00', 58606500.00, 0.00, 58606500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (24, '2500224655', '0400046543', '2016-12-14', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 3EME TRANCHE PCA CEVANUTRI', '2016-12-14', '2017-03-14', 22074.95, NULL, 22074.95, 0.00, 22074.95, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.546884+00', 13640000.00, 0.00, 13640000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (35, '2500234300', '0400046546', '2016-12-14', 'Programme Document Against PCA', 'XAF', 'REPONSSE EDUCATION URGENCES AU SUD', '2016-12-14', '2017-03-14', 87309.41, NULL, 87309.41, 0.00, 87309.41, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.555726+00', 53948050.00, 0.00, 53948050.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (641, '2500212828', '0400000802', '2012-03-03', 'SSFA', 'USD', 'RESSOURCES POUR ACTIVITES PROMOTION D''HYGIENE', '2011-07-01', '2012-02-29', 5354.11, NULL, 5354.11, 0.00, 20000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:51.95955+00', 0.00, 0.00, 5345.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (769, '2500219699', '0400003685', '2012-06-04', 'SSFA', 'USD', 'FR-FINANCEMENT APE/EEMET MOUNDOU EN FAVEUR DE PTME', '2012-06-01', '2012-12-31', 8536.96, NULL, 8536.96, 0.00, 8367.32, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.362662+00', 0.00, 0.00, 8653.62, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (49, '2500221883', '0400009486', '2012-12-30', 'Programme Document Against PCA', 'USD', 'FC POUR TRANSFERT DE CHARGE DU FC 100032503', '2012-09-01', '2012-12-31', 0.00, NULL, 0.00, 0.00, 89999.20, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (913, '2500228112', '0400060391', '2018-05-21', 'Programme Document Against PCA', 'XAF', 'FR PCA AVEC IHDL 2NDE TRANCHE AVENANT 01', '2018-05-21', '2018-08-31', 32860.66, NULL, 32860.66, 0.00, 33666.01, '2018-05-24 13:16:55.311633+00', '2018-10-17 00:02:27.201011+00', 18279500.00, 0.00, 18279500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (786, '2500221791', '0400002850', '2012-05-09', 'Programme Document Against PCA', 'USD', '1ERE TRANCHE PCA AVEC ASSO DJENANDOUM NASSON (ADN)', '2012-05-28', '2013-05-28', 28220.15, NULL, 28220.15, 0.00, 32491.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.53422+00', 0.00, 0.00, 64982.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (881, '2500213931', '0400003000', '2012-05-15', 'Programme Document Against PCA', 'USD', 'FR POUR PAIEMENT 3E TRANCHE PCA11/045/ASTBEF/VIF', '2012-05-15', '2012-08-14', 27040.33, NULL, 27040.33, 0.00, 30000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.558519+00', 0.00, 0.00, 27100.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (26, '2500228452', '0400020758', '2014-05-16', 'SSFA', 'XAF', 'APE NºSSFA/2014/001/CHD/DJABAL-ANJE ABKHOUTA', '2014-05-01', '2014-10-31', 19557.14, NULL, 19557.14, 0.00, 19808.66, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.796516+00', 9400000.00, 0.00, 9400000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (881, '2500213931', '0400003000', '2012-05-15', 'Programme Document Against PCA', 'USD', 'FR POUR PAIEMENT 3E TRANCHE PCA11/045/ASTBEF/VIF', '2012-05-15', '2012-08-14', 27040.33, NULL, 27040.33, 0.00, 30000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.225328+00', 0.00, 0.00, 27100.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (898, '2500237165', '0400059092', '2018-03-29', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ERE TRANCHE PCA WVI', '2018-03-29', '2018-06-29', 136086.27, NULL, 136086.27, 0.00, 135160.39, '2018-03-31 00:04:24.685479+00', '2019-04-03 00:04:52.125357+00', 72292429.00, 0.00, 72292429.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (48, '2500221193', '0400009487', '2012-12-30', 'Programme Document Against PCA', 'USD', 'FC POUR TRANSFERT DE CHARGE DU FC 100032501-2', '2012-09-01', '2012-12-31', 0.00, NULL, 0.00, 0.00, 9000.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:12.222368+00', 0.00, 0.00, 9000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (961, '2500237522', '0400064418', '2018-11-02', 'Programme Document Against PCA', 'XAF', 'FR COUTS SUPPORT ADMINISTRATIF PCA AVEC ACCRA TCD', '2017-12-15', '2018-12-31', 39253.39, NULL, 39253.39, 0.00, 39253.39, '2018-11-06 16:46:32.841698+00', '2018-11-14 00:01:58.970333+00', 22655996.00, 0.00, 22655996.00, false, false, false); @@ -10588,68 +11289,67 @@ INSERT INTO [[schema]].funds_fundsreservationheader VALUES (51, '2500223261', '0 INSERT INTO [[schema]].funds_fundsreservationheader VALUES (81, '2500228587', '0400052067', '2017-06-29', 'Programme Document Against PCA', 'XAF', 'FR ACCORD REVISÉ PROJET CONSTRUCTION 21 SDC OUADD', '2017-06-29', '2017-06-30', 0.00, NULL, 0.00, 0.00, 23289.74, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:28.319551+00', 0.00, 0.00, 13650000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (95, '2500232403', '0400044499', '2016-10-21', 'SSFA', 'XAF', 'FNCT SSFA ENCAD CLUB JEUNES REPORTERS FM LIBERTE', '2016-10-21', '2017-01-21', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (943, '2500237165', '0400062685', '2018-08-27', 'Programme Document Against PCA', 'XAF', 'COUTS SUPPORT INDIRECT DE PROGRAMME', '2018-08-27', '2018-11-27', 7803.70, NULL, 7803.70, 0.00, 7803.70, '2018-08-28 13:22:20.095689+00', '2018-08-30 00:05:23.60656+00', 4480431.00, 0.00, 4480431.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (57, '2500213951', '0400022998', '2014-08-12', 'SSFA', 'XAF', 'FINANCEMENT APE JRS', '2014-08-12', '2014-10-31', 7748.81, NULL, 7748.81, 0.00, 7748.81, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:18.94224+00', 3800000.00, 0.00, 3800000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (78, '2500212785', '0400029100', '2015-03-24', 'SSFA', 'XAF', 'FINANCEMENT PROJET RENFORCEMENT CAPACITES APE&AME', '2015-03-24', '2015-04-15', 46035.12, NULL, 46035.12, 0.00, 34700.77, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:20.785762+00', 28530818.00, 0.00, 28630819.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (70, '2500232204', '0400031454', '2015-06-22', 'SSFA', 'XAF', 'FINANCEMENT APE CELIAF MONGO/PROMOTION COMMUNICATI', '2015-06-22', '2015-10-31', 5338.92, NULL, 5338.92, 0.00, 5338.92, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.463634+00', 3215000.00, 0.00, 3215000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (71, '2500232214', '0400031457', '2015-06-22', 'SSFA', 'XAF', 'FINANCEMENT APE UNION GROUPMNT HADJAR SALLO/MONGO', '2015-05-01', '2015-10-31', 5314.01, NULL, 5314.01, 0.00, 5314.01, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.489369+00', 3200000.00, 0.00, 3200000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (76, '2500219686', '0400031514', '2015-06-24', 'SSFA', 'XAF', 'FINANCEMENT APE CSJEFOD/VIH/EDUC PAIX DANS ETABLIS', '2015-07-15', '2015-09-30', 9863.87, NULL, 9863.87, 0.00, 9834.07, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.515395+00', 5921900.00, 0.00, 5921900.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (66, '2500232850', '0400033360', '2015-09-05', 'SSFA', 'XAF', 'FINANCEMENT APE CELIAF - SARH', '2015-07-01', '2015-09-30', 5014.74, NULL, 5014.74, 0.00, 5014.74, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.323323+00', 2925000.00, 0.00, 2925000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (62, '2500233086', '0400033986', '2015-09-30', 'Programme Document Against PCA', 'USD', 'PCA/2014/CHD/PROT/IBCR', '2015-09-30', '2015-12-31', 64120.00, NULL, 64120.00, 0.00, 64120.00, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.544355+00', 64120.00, 0.00, 64120.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (73, '2500219704', '0400036679', '2015-12-18', 'Programme Document Against PCA', 'XAF', 'FR PCA UNICEF- CHORA', '2015-12-01', '2016-01-31', 10700.06, NULL, 10700.06, 0.00, 13588.20, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.176536+00', 6388835.00, 0.00, 6388835.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (50, '2500234499', '0400039532', '2016-04-14', 'SSFA', 'XAF', 'FR AKA AMDAM - ACTIVITES ACPV', '2016-04-04', '2016-06-30', 3240.63, NULL, 3240.63, 0.00, 3252.99, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.093296+00', 1885000.00, 0.00, 1885000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (60, '2500232773', '0400041669', '2016-06-29', 'SSFA', 'XAF', 'FR APE GPMT DES FILLES -MERES DE DANAMADJI', '2016-04-01', '2016-11-30', 11137.81, NULL, 11137.81, 0.00, 11310.39, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.395333+00', 6582500.00, 0.00, 6582500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (54, '2500213943', '0400043261', '2016-09-06', 'Programme Document Against PCA', 'XAF', 'FINANCMENT SNDE TRANCHE PCA/APLFT ( ADECIV BATHA)', '2016-09-01', '2016-12-26', 200213.55, NULL, 200213.55, 0.00, 200213.55, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.902814+00', 117828278.00, 0.00, 117828278.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (69, '2500234540', '0400044363', '2016-10-18', 'SSFA', 'XAF', 'FIN MISE OEUVRE ACPV- GROUPMENT COMM SOLID MOUNDOU', '2016-07-01', '2016-12-31', 3593.48, NULL, 3593.48, 0.00, 3593.48, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.548206+00', 2136667.00, 0.00, 2136667.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (56, '2500212780', '0400044394', '2016-10-19', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ERE TRANCHE PCA/CSNDA/2016', '2016-10-19', '2017-01-19', 28456.34, NULL, 28456.34, 0.00, 28456.34, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.570736+00', 16919998.00, 0.00, 16919998.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (44, '2500236169', '0400046712', '2016-12-23', 'SSFA', 'XAF', 'FINANCEMENT 1ERE TRANCHE APE ANDAT', '2016-12-23', '2017-03-23', 15106.94, NULL, 15106.94, 0.00, 15106.94, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.726273+00', 9334500.00, 0.00, 9334500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (75, '2500214085', '0400003279', '2012-05-22', 'Programme Document Against PCA', 'USD', 'FR POUR PCA Nº 2012/08/CHD/WASH/IAS', '2012-06-01', '2013-12-31', 634512.51, NULL, 634512.51, 0.00, 694000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.262807+00', 0.00, 0.00, 708876.80, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1092, '2500213937', '0400073556', '2020-01-23', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT TRANCHE 3 PCA AVEC AGT', '2020-01-23', '2020-03-31', 16850.72, 10, 16850.72, 16850.72, 16850.72, '2020-01-25 00:41:59.436302+00', '2020-02-03 17:14:12.557954+00', 9900000.00, 9900000.00, 9900000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (74, '2500212820', '0400049616', '2017-04-13', 'Programme Document Against PCA', 'XAF', 'REALISATION/REHABILITATION DES OUVRAGES HYDRAULIQU', '2017-04-01', '2017-06-30', 53417.74, NULL, 53417.74, 0.00, 53417.74, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.210201+00', 33019000.00, 0.00, 33019000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (87, '2500228587', '0400055399', '2017-11-09', 'Programme Document Against PCA', 'XAF', 'ACCORD REVISÉ PROJET CONSTRUCTION 21 SDC OUADD', '2017-11-09', '2018-02-09', 24174.14, NULL, 24174.14, 0.00, 24174.14, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.787472+00', 13650000.00, 0.00, 13650000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (109, '2500214085', '0400057001', '2017-12-27', 'Programme Document Against PCA', 'XAF', 'SUPPORT DIRECT AU PROGRAMME', '2017-10-01', '2017-12-31', 17828.06, NULL, 17828.06, 0.00, 17828.06, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:30.37269+00', 9867900.00, 0.00, 9867900.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (100, '2500228871', '0400021533', '2014-06-12', 'SSFA', 'XAF', 'FIN DEUX COURTS METRAGES SUR LES FILLES BONNES ET', '2014-06-12', '2014-08-30', 7075.67, NULL, 7075.67, 0.00, 7075.67, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.022782+00', 3413000.00, 0.00, 3413000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (53, '2500223093', '0400039537', '2016-04-14', 'SSFA', 'XAF', 'FR CLUB ACTIF PLANETE JEUNES - ACTIVITES ACPV', '2016-04-04', '2016-06-30', 4527.14, NULL, 4527.14, 0.00, 4544.41, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.559501+00', 2633333.00, 0.00, 2633333.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (966, '2500214062', '0400064630', '2018-11-12', 'Programme Document Against PCA', 'XAF', 'CERTIFICATION DE LA SOUS PREFECTURE DE MANDELIA FD', '2018-11-12', '2019-02-12', 3465.17, NULL, 3465.17, 0.00, 3465.17, '2018-11-14 00:01:58.829568+00', '2019-04-04 00:05:00.722077+00', 2000000.00, 0.00, 2000000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1005, '2500224593', '0400067181', '2019-03-15', 'SSFA', 'XAF', '2E T PROJET DE PROMOTION DES DROITS ET DE LA PARTI', '2019-03-15', '2019-06-30', 9187.31, NULL, 10019.68, 0.00, 9187.31, '2019-03-19 14:20:23.485407+00', '2019-08-22 00:17:16.441383+00', 5298000.00, 0.00, 5298000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (212, '2500219692', '0400004374', '2012-06-23', 'SSFA', 'USD', 'FR-FINANCEMENT APE/DIOCESE PALA EN FAVEUR DE PTME', '2012-06-23', '2012-12-31', 0.00, NULL, 0.00, 0.00, 9592.00, '2018-03-15 16:10:06.407235+00', '2018-07-03 00:02:38.712679+00', 0.00, 0.00, 9592.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (715, '2500222378', '0400004391', '2012-06-25', 'SSFA', 'USD', 'FR - CELEBRATION JOURNÉE ENFANT AFRICAIN', '2012-06-25', '2012-07-30', 4232.59, NULL, 4232.59, 0.00, 4233.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.42447+00', 0.00, 0.00, 4435.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (57, '2500213951', '0400022998', '2014-08-12', 'SSFA', 'XAF', 'FINANCEMENT APE JRS', '2014-08-12', '2014-10-31', 7748.81, NULL, 7748.81, 0.00, 7748.81, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.185759+00', 3800000.00, 0.00, 3800000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (78, '2500212785', '0400029100', '2015-03-24', 'SSFA', 'XAF', 'FINANCEMENT PROJET RENFORCEMENT CAPACITES APE&AME', '2015-03-24', '2015-04-15', 46035.12, NULL, 46035.12, 0.00, 34700.77, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.868927+00', 28530818.00, 0.00, 28630819.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (70, '2500232204', '0400031454', '2015-06-22', 'SSFA', 'XAF', 'FINANCEMENT APE CELIAF MONGO/PROMOTION COMMUNICATI', '2015-06-22', '2015-10-31', 5338.92, NULL, 5338.92, 0.00, 5338.92, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.112163+00', 3215000.00, 0.00, 3215000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (71, '2500232214', '0400031457', '2015-06-22', 'SSFA', 'XAF', 'FINANCEMENT APE UNION GROUPMNT HADJAR SALLO/MONGO', '2015-05-01', '2015-10-31', 5314.01, NULL, 5314.01, 0.00, 5314.01, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.122266+00', 3200000.00, 0.00, 3200000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (66, '2500232850', '0400033360', '2015-09-05', 'SSFA', 'XAF', 'FINANCEMENT APE CELIAF - SARH', '2015-07-01', '2015-09-30', 5014.74, NULL, 5014.74, 0.00, 5014.74, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.478545+00', 2925000.00, 0.00, 2925000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (62, '2500233086', '0400033986', '2015-09-30', 'Programme Document Against PCA', 'USD', 'PCA/2014/CHD/PROT/IBCR', '2015-09-30', '2015-12-31', 64120.00, NULL, 64120.00, 0.00, 64120.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.559501+00', 64120.00, 0.00, 64120.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (73, '2500219704', '0400036679', '2015-12-18', 'Programme Document Against PCA', 'XAF', 'FR PCA UNICEF- CHORA', '2015-12-01', '2016-01-31', 10700.06, NULL, 10700.06, 0.00, 13588.20, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.858865+00', 6388835.00, 0.00, 6388835.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (50, '2500234499', '0400039532', '2016-04-14', 'SSFA', 'XAF', 'FR AKA AMDAM - ACTIVITES ACPV', '2016-04-04', '2016-06-30', 3240.63, NULL, 3240.63, 0.00, 3252.99, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.217247+00', 1885000.00, 0.00, 1885000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (53, '2500223093', '0400039537', '2016-04-14', 'SSFA', 'XAF', 'FR CLUB ACTIF PLANETE JEUNES - ACTIVITES ACPV', '2016-04-04', '2016-06-30', 4527.14, NULL, 4527.14, 0.00, 4544.41, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.229748+00', 2633333.00, 0.00, 2633333.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (60, '2500232773', '0400041669', '2016-06-29', 'SSFA', 'XAF', 'FR APE GPMT DES FILLES -MERES DE DANAMADJI', '2016-04-01', '2016-11-30', 11137.81, NULL, 11137.81, 0.00, 11310.39, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.752759+00', 6582500.00, 0.00, 6582500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (69, '2500234540', '0400044363', '2016-10-18', 'SSFA', 'XAF', 'FIN MISE OEUVRE ACPV- GROUPMENT COMM SOLID MOUNDOU', '2016-07-01', '2016-12-31', 3593.48, NULL, 3593.48, 0.00, 3593.48, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.169524+00', 2136667.00, 0.00, 2136667.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (56, '2500212780', '0400044394', '2016-10-19', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ERE TRANCHE PCA/CSNDA/2016', '2016-10-19', '2017-01-19', 28456.34, NULL, 28456.34, 0.00, 28456.34, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.178714+00', 16919998.00, 0.00, 16919998.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (44, '2500236169', '0400046712', '2016-12-23', 'SSFA', 'XAF', 'FINANCEMENT 1ERE TRANCHE APE ANDAT', '2016-12-23', '2017-03-23', 15106.94, NULL, 15106.94, 0.00, 15106.94, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.654165+00', 9334500.00, 0.00, 9334500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (109, '2500214085', '0400057001', '2017-12-27', 'Programme Document Against PCA', 'XAF', 'SUPPORT DIRECT AU PROGRAMME', '2017-10-01', '2017-12-31', 17828.06, NULL, 17828.06, 0.00, 17828.06, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.864213+00', 9867900.00, 0.00, 9867900.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (689, '2500220423', '0400004482', '2012-06-27', 'Programme Document Against PCA', 'USD', 'REBOUSEMENT DEPENSES ACTIVITES WASH/CHOLERA OGB', '2011-11-01', '2012-02-28', 983.37, NULL, 983.37, 0.00, 398000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.433629+00', 0.00, 0.00, 1120.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (26, '2500228452', '0400020758', '2014-05-16', 'SSFA', 'XAF', 'APE NºSSFA/2014/001/CHD/DJABAL-ANJE ABKHOUTA', '2014-05-01', '2014-10-31', 19557.14, NULL, 19557.14, 0.00, 19808.66, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.811195+00', 9400000.00, 0.00, 9400000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (937, '2500237165', '0400062418', '2018-08-14', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME TRANCHE PCA WVI', '2018-06-15', '2018-09-15', 26267.08, NULL, 26267.08, 0.00, 26908.56, '2018-08-16 00:01:48.225525+00', '2019-01-01 00:02:04.379063+00', 15081035.00, 0.00, 15081035.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (915, '2500236515', '0400060489', '2018-05-24', 'SSFA', 'XAF', 'RENFORCEMENT FONCTION EVALUATION AU TCHAD', '2018-05-24', '2018-08-24', 14232.01, NULL, 14232.01, 0.00, 14232.01, '2018-05-26 00:03:15.828817+00', '2018-10-20 00:01:56.110759+00', 7727500.00, 0.00, 7727500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (785, '2500214062', '0400003131', '2012-05-17', 'Programme Document Against PCA', 'USD', 'FONDS POUR FINANCEMENT VIDÉO PARTICIPATIVE', '2012-05-17', '2012-08-30', 2396.03, NULL, 2396.03, 0.00, 2400.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.602478+00', 0.00, 0.00, 2400.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (343, '2500215480', '0400003501', '2012-05-29', 'SSFA', 'USD', 'FR-FINANCEMENT APE/CSAI NDJAMENA EN FAVEUR DE PTME', '2012-06-01', '2012-12-31', 15739.37, NULL, 15739.37, 0.00, 9419.08, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.297201+00', 0.00, 0.00, 15819.08, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (112, '2500212828', '0400026332', '2014-12-05', 'Programme Document Against PCA', 'XAF', 'DECSIMT 2E TRANCH/PCA TERRE VERTE/2014/WASH', '2014-12-05', '2015-03-19', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:18.92117+00', 0.00, 0.00, 20618195.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (968, '2500228510', '0400064667', '2018-11-13', 'Programme Document Against PCA', 'XAF', 'APPUI A LA PREVENTION MALNUTRITION AIGUE SEVERE', '2018-10-01', '2018-12-31', 0.00, NULL, 0.00, 0.00, 12256.85, '2018-11-15 00:02:03.222131+00', '2018-11-28 00:01:56.291701+00', 0.00, 0.00, 7074320.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (75, '2500214085', '0400003279', '2012-05-22', 'Programme Document Against PCA', 'USD', 'FR POUR PCA Nº 2012/08/CHD/WASH/IAS', '2012-06-01', '2013-12-31', 634512.51, NULL, 634512.51, 0.00, 694000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.624291+00', 0.00, 0.00, 708876.80, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (391, '2500221883', '0400006802', '2012-09-25', 'Programme Document Against PCA', 'USD', '2EME TRANCHE PCA/06/CHD/NUT/ACTED/ALIMA/2012', '2012-09-25', '2012-12-25', 90130.41, NULL, 90130.41, 0.00, 90200.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.697614+00', 0.00, 0.00, 90000.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (932, '2500228112', '0400061987', '2018-07-25', 'Programme Document Against PCA', 'XAF', 'REALISATION D''UN FORAGE AU CENTRE DE FORMATION BOL', '2018-07-25', '2018-10-25', 4412.63, NULL, 4412.63, 0.00, 4412.63, '2018-07-27 00:01:29.696167+00', '2018-08-03 00:01:37.632091+00', 2500000.00, 0.00, 2500000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (103, '2500214088', '0400048263', '2017-02-28', 'Programme Document Against PCA', 'XAF', '1ERE T PCA SANTE-NUT/VIH PROFIL POPULATION LAC', '2017-03-01', '2017-05-31', 0.00, NULL, 0.00, 0.00, 167143.13, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:27.055134+00', 0.00, 0.00, 102763772.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (113, '2500228510', '0400054884', '2017-10-19', 'Programme Document Against PCA', 'XAF', 'APPUI AUTONOMISATION DU FONCTIONNEMENT UNT HME', '2017-10-19', '2018-01-19', 0.00, NULL, 0.00, 0.00, 72489.47, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:28.962749+00', 0.00, 0.00, 40310233.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (138, '2500213953', '0400014325', '2013-07-29', 'Programme Document Against PCA', 'XAF', 'FR PCA CARE', '2013-07-29', '2013-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (978, '2500237473', '0400065134', '2018-12-03', 'Programme Document Against PCA', 'XAF', 'COUTS SUPPORT INDIRECT DE PROGRAMME', '2018-10-01', '2018-12-31', 10499.93, NULL, 10499.93, 0.00, 10499.93, '2018-12-05 00:02:01.516996+00', '2018-12-08 00:01:59.612508+00', 6053880.00, 0.00, 6053880.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (106, '2500224655', '0400033272', '2015-09-02', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ERE TRANCHE PCA CEVANUTRI- UNICEF', '2015-08-01', '2016-01-31', 18202.90, NULL, 18202.90, 0.00, 39418.62, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.083887+00', 10617390.00, 0.00, 10617390.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (89, '2500233032', '0400034151', '2015-10-07', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA 09/2015/PROG/WASH/IDO', '2015-10-07', '2016-05-15', 58420.60, NULL, 58420.60, 0.00, 58420.60, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.568456+00', 34154550.00, 0.00, 34154550.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (83, '2500218272', '0400034528', '2015-10-21', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2E TRANCHE PCA CELIAF NDJAMENA/COMM', '2015-05-01', '2015-12-31', 37139.56, NULL, 37139.56, 0.00, 39319.25, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.670364+00', 21712975.00, 0.00, 22987294.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (86, '2500232394', '0400035309', '2015-11-16', 'SSFA', 'XAF', 'FIN 2E TRANCHE APE UNION FEMMES POUR LA PAIX/COM', '2015-07-03', '2016-12-31', 17544.44, NULL, 17544.44, 0.00, 17544.44, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.787218+00', 10499400.00, 0.00, 10499400.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (118, '2500234494', '0400039585', '2016-04-15', 'SSFA', 'XAF', 'FR ACTIVITES ACPV PAR ASSOCIATION JEUNES ASSAIN H', '2016-04-04', '2016-06-30', 4189.04, NULL, 4189.04, 0.00, 4189.04, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.161527+00', 2436667.00, 0.00, 2436667.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (117, '2500234496', '0400039586', '2016-04-15', 'SSFA', 'XAF', 'FR ACTIVITES ACPV PAR ASSOCIATION JEUNES TCHALO Z', '2016-04-04', '2016-06-30', 3636.04, NULL, 3636.04, 0.00, 3636.04, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.182449+00', 2115000.00, 0.00, 2115000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (116, '2500233810', '0400041451', '2016-06-22', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA N#14/2016/PROG/WASH/HELP PROJET', '2016-06-27', '2016-09-27', 11200.25, NULL, 11200.25, 0.00, 11200.25, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.170303+00', 6518400.00, 0.00, 6518400.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (115, '2500231570', '0400041519', '2016-06-24', 'SSFA', 'XAF', 'FR APE MAISON DES MEDIAS DU TCHAD', '2016-04-01', '2016-12-31', 17078.38, NULL, 17078.38, 0.00, 17431.66, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.274733+00', 10145000.00, 0.00, 10145000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (96, '2500225658', '0400042422', '2016-08-01', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME TRANCHE PCA002/2016/PROG WASH/ADE', '2016-08-01', '2016-10-31', 81013.35, NULL, 81013.35, 0.00, 81013.35, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.751596+00', 47875000.00, 0.00, 47875000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (101, '2500221790', '0400044090', '2016-10-07', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT DU PCA#019/2016/PROG-VIH/RNTAP+', '2016-10-07', '2017-01-07', 19282.45, NULL, 19282.45, 0.00, 19604.08, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.195157+00', 11465250.00, 0.00, 11465250.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (110, '2500213955', '0400044731', '2016-10-28', 'Programme Document Against PCA', 'XAF', 'FR PRISE EN CHARGE DES OEV', '2016-10-28', '2017-01-28', 61382.74, NULL, 61382.74, 0.00, 61995.23, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.754275+00', 36862056.00, 0.00, 36862056.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1031, '2500215493', '0400068700', '2019-05-28', 'SSFA', 'XAF', 'APPUI ACTIVITES CONTINUE COMMUNICATION ET MOBILISA', '2019-05-28', '2019-08-25', 8071.49, NULL, 8071.49, 0.00, 8092.53, '2019-05-30 00:03:38.367499+00', '2020-01-10 18:19:25.590347+00', 4760000.00, 0.00, 4760000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (97, '2500235282', '0400048065', '2017-02-23', 'SSFA', 'XAF', 'PROMO ALLAITEMENT MAT EXCL & LUTTE CONTRE MARIAGE', '2017-02-23', '2017-02-28', 9535.23, NULL, 9535.23, 0.00, 9535.23, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.814338+00', 5862500.00, 0.00, 5862500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (371, '2500213923', '0400050610', '2017-05-16', 'Programme Document Against PCA', 'XAF', 'APPROVISIONNEMENT EN EAU POTABLE', '2017-03-01', '2017-05-31', 63131.47, NULL, 63131.47, 0.00, 63131.47, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.529059+00', 38153249.00, 0.00, 38153249.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (61, '2500234300', '0400050891', '2017-05-23', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT 7% COUT SUPPORT INDIRECT PROGRAMME', '2017-04-01', '2017-06-30', 8721.32, NULL, 8721.32, 0.00, 8721.32, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.570322+00', 5270696.00, 0.00, 5270696.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (93, '2500228112', '0400050964', '2017-05-25', 'Programme Document Against PCA', 'XAF', 'PREVENTION ET RIPOSTE AUX URGENCES', '2017-05-25', '2017-08-25', 322535.02, NULL, 322535.02, 0.00, 322535.02, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.611348+00', 194922750.00, 0.00, 194922750.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (120, '2500213937', '0400051765', '2017-06-19', 'SSFA', 'XAF', 'DEVELOPPEMENT ET REALISATION DES CAMPAGNES', '2017-06-19', '2017-09-19', 17451.95, NULL, 17451.95, 0.00, 17451.95, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.010908+00', 10228500.00, 0.00, 10228500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (345, '2500231570', '0400055970', '2017-11-27', 'SSFA', 'XAF', 'ORGANISATION 3 VISITES MEDIAS AVEC LES DECIDEURS', '2017-11-27', '2018-02-27', 650.40, NULL, 650.40, 0.00, 637.56, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.897567+00', 360000.00, 0.00, 360000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (890, '2500228112', '0400058231', '2018-02-28', 'Programme Document Against PCA', 'XAF', 'REMBOURSMENT PCA IHDL', '2018-02-28', '2018-03-31', 129274.73, NULL, 129274.73, 0.00, 130993.01, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:30.640212+00', 69144400.00, 0.00, 69144400.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (149, '2500000912', '0400004599', '2012-07-02', 'Programme Document Against PCA', 'USD', 'FINANCEMENT 2EME TRANCHE PCA/BAMBINI 2012', '2012-07-02', '2012-09-30', 0.00, NULL, 0.00, 0.00, 28324.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1026, '2500213920', '0400068339', '2019-05-13', 'Programme Document Against PCA', 'XAF', 'APPUI REPONSE URGENCES REFUGIES ET IDPS AU LAC', '2019-05-13', '2019-08-13', 379532.77, NULL, 379532.77, 379532.77, 379532.77, '2019-05-15 00:03:25.341397+00', '2019-05-22 00:02:56.981792+00', 223240034.00, 223240034.00, 223240034.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (111, '2500234300', '0400039391', '2016-04-08', 'SSFA', 'XAF', 'FR ACCORD À PETITE ECHELLE AVEC AHA', '2016-03-01', '2016-06-30', 49645.64, NULL, 49645.64, 0.00, 49645.64, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.534656+00', 28768012.00, 0.00, 28768012.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (119, '2500234970', '0400041455', '2016-06-22', 'SSFA', 'XAF', 'FR ACCORD PETITE ECHELLE AVEC CSAI/ UNICEF', '2016-06-01', '2016-12-31', 21552.15, NULL, 21552.15, 0.00, 21793.87, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.603919+00', 12683750.00, 0.00, 12683750.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (220, '2500234767', '0400052689', '2017-07-21', 'SSFA', 'XAF', 'FR WNAKLABS', '2017-06-21', '2017-12-31', 8744.29, NULL, 8744.29, 0.00, 8397.51, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.756628+00', 4840000.00, 0.00, 4840000.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (906, '2500213985', '0400059437', '2018-04-12', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ERE TRANCHE PCA AVEC COOPI', '2018-02-12', '2018-05-31', 193352.67, NULL, 193352.67, 0.00, 319596.24, '2018-04-16 12:47:16.454668+00', '2019-06-08 00:03:35.819402+00', 102713772.00, 0.00, 169777514.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (343, '2500215480', '0400003501', '2012-05-29', 'SSFA', 'USD', 'FR-FINANCEMENT APE/CSAI NDJAMENA EN FAVEUR DE PTME', '2012-06-01', '2012-12-31', 15739.37, NULL, 15739.37, 0.00, 9419.08, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.662741+00', 0.00, 0.00, 15819.08, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (146, '2500224727', '0400018442', '2014-02-12', 'SSFA', 'XAF', 'REMBOURSEMENT ARNUT', '2014-02-12', '2014-02-28', 8811.27, NULL, 8811.27, 0.00, 8811.27, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.143102+00', 4258000.00, 0.00, 4258000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1031, '2500215493', '0400068700', '2019-05-28', 'SSFA', 'XAF', 'APPUI ACTIVITES CONTINUE COMMUNICATION ET MOBILISA', '2019-05-28', '2019-08-25', 8071.49, NULL, 8071.49, 8071.49, 8092.53, '2019-05-30 00:03:38.367499+00', '2019-09-11 00:05:33.051118+00', 4760000.00, 4760000.00, 4760000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (788, '2500226117', '0400018450', '2014-02-12', 'Programme Document Against PCA', 'XAF', '3 ET 4 TRANCHE PCA/2013/04/CHD/PROT/IBCR', '2014-02-12', '2014-12-31', 50211.55, NULL, 50211.55, 0.00, 50211.55, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.184184+00', 24264479.00, 0.00, 24264479.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (575, '2500214088', '0400018518', '2014-02-14', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 1ERE TRANCHE PCA CHD001/IRC- UNICEF 2014', '2014-02-10', '2014-05-10', 302067.24, NULL, 302067.24, 0.00, 0.21, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.204388+00', 144820400.00, 0.00, 219511960.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (146, '2500224727', '0400018442', '2014-02-12', 'SSFA', 'XAF', 'REMBOURSEMENT ARNUT', '2014-02-12', '2014-02-28', 8811.27, NULL, 8811.27, 0.00, 8811.27, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.374692+00', 4258000.00, 0.00, 4258000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (106, '2500224655', '0400033272', '2015-09-02', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ERE TRANCHE PCA CEVANUTRI- UNICEF', '2015-08-01', '2016-01-31', 18202.90, NULL, 18202.90, 0.00, 39418.62, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.366578+00', 10617390.00, 0.00, 10617390.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (89, '2500233032', '0400034151', '2015-10-07', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA 09/2015/PROG/WASH/IDO', '2015-10-07', '2016-05-15', 58420.60, NULL, 58420.60, 0.00, 58420.60, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.569232+00', 34154550.00, 0.00, 34154550.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (83, '2500218272', '0400034528', '2015-10-21', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2E TRANCHE PCA CELIAF NDJAMENA/COMM', '2015-05-01', '2015-12-31', 37139.56, NULL, 37139.56, 0.00, 39319.25, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.617822+00', 21712975.00, 0.00, 22987294.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (86, '2500232394', '0400035309', '2015-11-16', 'SSFA', 'XAF', 'FIN 2E TRANCHE APE UNION FEMMES POUR LA PAIX/COM', '2015-07-03', '2016-12-31', 17544.44, NULL, 17544.44, 0.00, 17544.44, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.694944+00', 10499400.00, 0.00, 10499400.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (111, '2500234300', '0400039391', '2016-04-08', 'SSFA', 'XAF', 'FR ACCORD À PETITE ECHELLE AVEC AHA', '2016-03-01', '2016-06-30', 49645.64, NULL, 49645.64, 0.00, 49645.64, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.112351+00', 28768012.00, 0.00, 28768012.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (118, '2500234494', '0400039585', '2016-04-15', 'SSFA', 'XAF', 'FR ACTIVITES ACPV PAR ASSOCIATION JEUNES ASSAIN H', '2016-04-04', '2016-06-30', 4189.04, NULL, 4189.04, 0.00, 4189.04, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.248089+00', 2436667.00, 0.00, 2436667.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (117, '2500234496', '0400039586', '2016-04-15', 'SSFA', 'XAF', 'FR ACTIVITES ACPV PAR ASSOCIATION JEUNES TCHALO Z', '2016-04-04', '2016-06-30', 3636.04, NULL, 3636.04, 0.00, 3636.04, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.256887+00', 2115000.00, 0.00, 2115000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (119, '2500234970', '0400041455', '2016-06-22', 'SSFA', 'XAF', 'FR ACCORD PETITE ECHELLE AVEC CSAI/ UNICEF', '2016-06-01', '2016-12-31', 21552.15, NULL, 21552.15, 0.00, 21793.87, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.678436+00', 12683750.00, 0.00, 12683750.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (115, '2500231570', '0400041519', '2016-06-24', 'SSFA', 'XAF', 'FR APE MAISON DES MEDIAS DU TCHAD', '2016-04-01', '2016-12-31', 17078.38, NULL, 17078.38, 0.00, 17431.66, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.707077+00', 10145000.00, 0.00, 10145000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (96, '2500225658', '0400042422', '2016-08-01', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME TRANCHE PCA002/2016/PROG WASH/ADE', '2016-08-01', '2016-10-31', 81013.35, NULL, 81013.35, 0.00, 81013.35, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.895774+00', 47875000.00, 0.00, 47875000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (101, '2500221790', '0400044090', '2016-10-07', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT DU PCA#019/2016/PROG-VIH/RNTAP+', '2016-10-07', '2017-01-07', 19282.45, NULL, 19282.45, 0.00, 19604.08, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.062999+00', 11465250.00, 0.00, 11465250.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (110, '2500213955', '0400044731', '2016-10-28', 'Programme Document Against PCA', 'XAF', 'FR PRISE EN CHARGE DES OEV', '2016-10-28', '2017-01-28', 61382.74, NULL, 61382.74, 0.00, 61995.23, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.270339+00', 36862056.00, 0.00, 36862056.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (371, '2500213923', '0400050610', '2017-05-16', 'Programme Document Against PCA', 'XAF', 'APPROVISIONNEMENT EN EAU POTABLE', '2017-03-01', '2017-05-31', 63131.47, NULL, 63131.47, 0.00, 63131.47, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.683432+00', 38153249.00, 0.00, 38153249.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (61, '2500234300', '0400050891', '2017-05-23', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT 7% COUT SUPPORT INDIRECT PROGRAMME', '2017-04-01', '2017-06-30', 8721.32, NULL, 8721.32, 0.00, 8721.32, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.754392+00', 5270696.00, 0.00, 5270696.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (345, '2500231570', '0400055970', '2017-11-27', 'SSFA', 'XAF', 'ORGANISATION 3 VISITES MEDIAS AVEC LES DECIDEURS', '2017-11-27', '2018-02-27', 650.40, NULL, 650.40, 0.00, 637.56, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.820623+00', 360000.00, 0.00, 360000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1056, '2500237522', '0400071342', '2019-10-07', 'Programme Document Against PCA', 'XAF', '5E TRANCHE APPUI COMM AFFECT PAR LA CRISE CENTRAFR', '2019-10-07', '2019-12-31', 27872.95, NULL, 27872.95, 0.00, 27872.95, '2019-10-09 00:11:10.234241+00', '2020-01-01 00:21:58.888118+00', 16712484.00, 0.00, 16712484.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1048, '2500221790', '0400070479', '2019-08-23', 'Programme Document Against PCA', 'XAF', 'PAIEMENT TRANCHE PCA AVEC RNTAP', '2019-08-23', '2019-08-24', 30111.20, 5, 30111.20, 0.00, 30111.20, '2019-08-25 00:14:09.487589+00', '2020-02-07 00:23:08.858702+00', 17652750.00, 0.00, 17652750.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (667, '2500213954', '0400014624', '2013-08-14', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT SOLDE PROJET IRIBA 2012', '2013-08-14', '2013-10-30', 10109.34, NULL, 10109.34, 0.00, 10109.34, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.80363+00', 4999999.00, 0.00, 4999999.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (946, '2500214085', '0400062846', '2018-09-03', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 3EME TRANCHE PCA IAS', '2018-09-03', '2018-12-03', 12405.21, NULL, 12405.21, 0.00, 12405.21, '2018-09-06 00:05:22.79694+00', '2018-12-21 00:01:54.044+00', 6980000.00, 0.00, 6980000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (942, '2500228587', '0400062695', '2018-08-27', 'Programme Document Against PCA', 'XAF', 'AMELIORATION ACCES AUX INTRANTS NUTRIONNELS', '2018-06-06', '2018-09-06', 39820.11, NULL, 39820.11, 0.00, 39820.11, '2018-08-28 13:22:20.09551+00', '2018-11-17 00:02:07.608401+00', 22862398.00, 0.00, 22862398.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (975, '2500237473', '0400064958', '2018-11-26', 'Programme Document Against PCA', 'XAF', 'APPUI AUX COMMUNAUTES AFFECTEES PAR CRISE CENTRAFR', '2018-10-01', '2018-12-31', 276585.02, NULL, 276585.02, 0.00, 276293.18, '2018-11-28 00:01:55.84871+00', '2019-06-12 00:03:30.400023+00', 159468964.00, 0.00, 159468964.00, false, false, false); @@ -10660,58 +11360,46 @@ INSERT INTO [[schema]].funds_fundsreservationheader VALUES (893, '2500212828', ' INSERT INTO [[schema]].funds_fundsreservationheader VALUES (136, '2500237473', '0400056995', '2017-12-27', 'Programme Document Against PCA', 'XAF', 'AMELIO EQUITE ET QUALITE DE L''EDUC ENFANTS REFUGIE', '2017-12-27', '2018-03-27', 0.00, NULL, 0.00, 0.00, 156248.20, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:29.924021+00', 0.00, 0.00, 86484003.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (931, '2500228587', '0400061933', '2018-07-23', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA N#023/ADES/DG/AFP/2018', '2018-07-23', '2018-10-23', 40920.75, NULL, 40920.75, 0.00, 41468.74, '2018-07-25 00:09:40.290731+00', '2019-04-03 00:04:52.146168+00', 23494320.00, 0.00, 23494320.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (186, '2500220423', '0400000127', '2012-01-30', 'Programme Document Against PCA', 'USD', 'DCT 1ÈRE TRANCHE PCA CHOLÉRA OGB', '2011-11-01', '2012-01-31', 0.00, NULL, 0.00, 0.00, 388900.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (543, '2500219696', '0400018641', '2014-02-19', 'SSFA', 'XAF', 'FINANCEMENT APE Nº24/PR/POLIO/EEMET-TCHAD/2013.', '2014-02-19', '2014-12-31', 12643.07, NULL, 12643.07, 0.00, 12643.07, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.344808+00', 6109700.00, 0.00, 6109700.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (935, '2500228112', '0400062338', '2018-08-09', 'Programme Document Against PCA', 'XAF', 'FR PCA AVEC IHDL 3NDE TRANCHE AVENANT 01', '2018-08-09', '2018-09-30', 42822.35, NULL, 42822.35, 0.00, 42822.35, '2018-08-12 00:01:44.576382+00', '2019-03-07 16:43:13.283307+00', 24000000.00, 0.00, 24000000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (934, '2500213923', '0400062217', '2018-08-02', 'Programme Document Against PCA', 'XAF', 'REMOURSEMENT COUT SUPPORT INDIRECT PROGRAMME 7%', '2018-09-01', '2018-12-31', 2366.93, NULL, 2366.93, 0.00, 2366.93, '2018-08-10 00:01:35.394907+00', '2018-08-19 00:01:38.763607+00', 1326559.00, 0.00, 1326559.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (11, '2500219700', '0400003670', '2012-06-04', 'SSFA', 'USD', 'FR-FINANCEMENT APE/CASI MOUNDOU EN FAVEUR DE PTME', '2012-06-04', '2012-12-31', 7982.27, NULL, 7982.27, 0.00, 7982.27, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.700592+00', 0.00, 0.00, 7982.27, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (156, '2500231570', '0400030771', '2015-05-26', 'SSFA', 'XAF', 'RENFORCER ENGAGEMENT MEDIAS NATIONAUX AU TCHAD', '2015-05-26', '2015-05-31', 9958.78, NULL, 9958.78, 0.00, 10112.37, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.187259+00', 5997000.00, 0.00, 5997000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (150, '2500232212', '0400031315', '2015-06-16', 'SSFA', 'XAF', 'FINANCEMENT APE/CELIAF/BOL', '2015-05-15', '2015-06-30', 49237.61, NULL, 49237.61, 0.00, 49237.61, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.32539+00', 29650000.00, 0.00, 29650000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (155, '2500228112', '0400041350', '2016-06-20', 'Programme Document Against PCA', 'XAF', 'FR : 3ÈME TRANCHE PCA/2015/CHD/PROT/IHDL', '2016-03-07', '2016-06-24', 137776.87, NULL, 137776.87, 0.00, 137776.87, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.117331+00', 80184345.00, 0.00, 80184345.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (130, '2500214010', '0400041502', '2016-06-23', 'SSFA', 'XAF', 'FR ACCORD PETITE ECHELLE AVEC UFCCT/ UNICEF', '2016-05-25', '2016-12-31', 8013.47, NULL, 8013.47, 0.00, 8137.64, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.256256+00', 4736000.00, 0.00, 4736000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (153, '2500233810', '0400042819', '2016-08-18', 'Programme Document Against PCA', 'XAF', 'FR 1ERE TRANCHE PCA 14/2016/PROG/WASH/HELP', '2016-08-18', '2016-12-07', 177241.20, NULL, 177241.20, 0.00, 177606.97, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.840673+00', 104308750.00, 0.00, 104308750.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (135, '2500235282', '0400043322', '2016-09-07', 'SSFA', 'XAF', 'FIN PROMOTION ALLAITEMENT MATERNEL EXCLUSIF/PFE', '2016-09-07', '2016-12-07', 7942.05, NULL, 7942.05, 0.00, 15545.96, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.956576+00', 4674000.00, 0.00, 9149000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (141, '2500228587', '0400043551', '2016-09-19', 'Programme Document Against PCA', 'XAF', 'FINANCEMEN 2EME TRANCHE PROJET CONSTRUCTION 21 SDC', '2016-09-19', '2016-12-19', 80674.51, NULL, 80674.51, 0.00, 80674.51, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.010583+00', 47478000.00, 0.00, 47478000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (158, '2500228112', '0400044250', '2016-10-13', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 4EME TRANCHE PCA IHDL', '2016-10-13', '2017-01-13', 57795.17, NULL, 57795.17, 0.00, 58759.18, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.344985+00', 34364721.00, 0.00, 34364721.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (12, '2500219696', '0400003676', '2012-06-04', 'SSFA', 'USD', 'FR-FINANCEMENT APE/EEMET NDJAM EN FAVEUR DE PTME', '2012-06-01', '2012-12-31', 8418.35, NULL, 8418.35, 0.00, 8133.16, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.329506+00', 0.00, 0.00, 8540.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1108, '2500225653', '0400074970', '2020-04-09', 'Programme Document Against PCA', 'XAF', '7% COUT SUPPORT INDIRECT DE PROGRAMME', '2020-04-09', '2020-12-31', 4182.17, NULL, 4182.17, 0.00, 4182.17, '2020-04-11 00:06:40.628664+00', '2020-04-17 00:53:53.221923+00', 2485119.00, 0.00, 2485119.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (151, '2500228510', '0400048329', '2017-03-01', 'Programme Document Against PCA', 'XAF', '2E T PCA/025/16/PRO SN/ALIMA/ALERTE-SANTE', '2017-03-01', '2017-05-31', 113972.90, NULL, 113972.90, 0.00, 113972.90, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.91105+00', 70502950.00, 0.00, 70502950.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (126, '2500232403', '0400051445', '2017-06-08', 'SSFA', 'XAF', '1ERE TRANCHE FIN 10/SSFA/2017/CHD/RADIO FM LIBERTE', '2017-06-08', '2017-12-31', 25840.52, NULL, 25840.52, 0.00, 25840.52, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.885111+00', 15145000.00, 0.00, 15145000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1048, '2500221790', '0400070479', '2019-08-23', 'Programme Document Against PCA', 'XAF', 'PAIEMENT TRANCHE PCA AVEC RNTAP', '2019-08-23', '2019-08-24', 35834.85, NULL, 35834.85, 35834.85, 35834.85, '2019-08-25 00:14:09.487589+00', '2019-08-29 00:27:59.782813+00', 21008250.00, 21008250.00, 21008250.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1089, '2500221790', '0400073412', '2020-01-15', 'Programme Document Against PCA', 'XAF', 'PAIEMENT TRANCHE PCA AVEC RNTAP', '2020-01-15', '2020-03-31', 5723.65, NULL, 5723.65, 0.00, 5711.37, '2020-01-17 00:06:25.362697+00', '2020-02-07 00:23:08.877614+00', 3355500.00, 0.00, 3355500.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (160, '2500234968', '0400052129', '2017-07-03', 'SSFA', 'XAF', 'FR UAFAT', '2017-05-17', '2017-11-30', 24048.80, NULL, 24048.80, 0.00, 31078.53, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.140297+00', 13367500.00, 0.00, 17912450.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (173, '2500233143', '0400053209', '2017-08-10', 'Programme Document Against PCA', 'XAF', 'APPUI À LA PROMOTION DES DROITS DE ENFTS CHARI B.', '2017-08-10', '2017-12-31', 65425.60, NULL, 65425.60, 0.00, 65100.34, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.357238+00', 36309000.00, 0.00, 36309000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (148, '2500228510', '0400053336', '2017-08-16', 'Programme Document Against PCA', 'XAF', 'REMB PRISE EN CHARGE MEDICO-NUT ENFTS MOINS 5 ANS', '2017-06-01', '2017-08-31', 391048.10, NULL, 391048.10, 0.00, 391048.10, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.440491+00', 217363693.00, 0.00, 217363693.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (12, '2500219696', '0400003676', '2012-06-04', 'SSFA', 'USD', 'FR-FINANCEMENT APE/EEMET NDJAM EN FAVEUR DE PTME', '2012-06-01', '2012-12-31', 8418.35, NULL, 8418.35, 0.00, 8133.16, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.725403+00', 0.00, 0.00, 8540.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (768, '2500219693', '0400003683', '2012-06-04', 'SSFA', 'USD', 'FR-FINANCEMENT APE/EEMET SARH EN FAVEUR DE PTME', '2012-06-01', '2012-12-31', 8151.77, NULL, 8151.77, 0.00, 8151.77, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.763227+00', 0.00, 0.00, 8151.77, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (108, '2500221169', '0400057002', '2017-12-27', 'Programme Document Against PCA', 'XAF', 'IMPROVING ROUTINE EPI IN LAKE CHAD BASIN', '2017-12-27', '2018-03-27', 448616.84, NULL, 448616.84, 0.00, 433509.06, '2018-03-15 16:10:06.407235+00', '2018-12-31 00:02:00.625728+00', 239949000.00, 0.00, 239949000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1038, '2500213920', '0400069369', '2019-06-28', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 1ERE TRANCHE PCA WASH- ACF', '2019-06-28', '2019-12-31', 89589.69, NULL, 89589.69, 89589.69, 87692.56, '2019-07-01 00:22:32.343775+00', '2019-07-19 00:04:52.310658+00', 51714931.00, 51714931.00, 51714931.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1019, '2500233143', '0400068105', '2019-05-02', 'Programme Document Against PCA', 'XAF', 'FR SECONDE TRANCHE PCA AVEC CELIAF', '2018-08-01', '2019-05-30', 94821.97, NULL, 94821.97, 0.00, 94821.97, '2019-05-04 00:22:15.950962+00', '2019-12-01 00:19:13.567714+00', 55774000.00, 0.00, 55774000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (995, '2500234927', '0400066945', '2019-03-05', 'Programme Document Against PCA', 'XAF', 'APPUI TECHNIQUE DU SIEGE 7%', '2019-03-05', '2019-06-05', 0.00, NULL, 0.00, 0.00, 8139.34, '2019-03-07 16:43:13.224797+00', '2019-04-18 00:04:27.284677+00', 0.00, 0.00, 4693675.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (952, '2500237900', '0400063161', '2018-09-17', 'Programme Document Against PCA', 'XAF', 'PRODUCT ET DISSEMINATION DES OUTILS COMMUNICATION', '2018-09-17', '2018-10-31', 21266.11, NULL, 21266.11, 0.00, 21691.34, '2018-09-19 00:02:12.603023+00', '2019-09-22 00:08:06.261226+00', 12205000.00, 0.00, 12205000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (143, '2500219704', '0400014283', '2013-07-25', 'SSFA', 'XAF', 'REMBOURSEMENT APE Nº006/PRO/POLIO/CHORA/2013', '2013-07-25', '2013-09-30', 0.00, NULL, 0.00, 0.00, 3025.13, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:13.680628+00', 0.00, 0.00, 1522000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (954, '2500234927', '0400063378', '2018-09-24', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 3ÈME TRANCHE PCA AVEC VOIX DES JEUNES', '2018-03-01', '2018-11-30', 46134.67, NULL, 46134.67, 0.00, 46443.99, '2018-09-26 11:12:49.96224+00', '2019-09-22 00:08:06.277422+00', 26132500.00, 0.00, 26132500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (768, '2500219693', '0400003683', '2012-06-04', 'SSFA', 'USD', 'FR-FINANCEMENT APE/EEMET SARH EN FAVEUR DE PTME', '2012-06-01', '2012-12-31', 8151.77, NULL, 8151.77, 0.00, 8151.77, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.348186+00', 0.00, 0.00, 8151.77, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (788, '2500226117', '0400018450', '2014-02-12', 'Programme Document Against PCA', 'XAF', '3 ET 4 TRANCHE PCA/2013/04/CHD/PROT/IBCR', '2014-02-12', '2014-12-31', 50211.55, NULL, 50211.55, 0.00, 50211.55, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.383576+00', 24264479.00, 0.00, 24264479.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (575, '2500214088', '0400018518', '2014-02-14', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 1ERE TRANCHE PCA CHD001/IRC- UNICEF 2014', '2014-02-10', '2014-05-10', 302067.24, NULL, 302067.24, 0.00, 0.21, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.392878+00', 144820400.00, 0.00, 219511960.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (543, '2500219696', '0400018641', '2014-02-19', 'SSFA', 'XAF', 'FINANCEMENT APE Nº24/PR/POLIO/EEMET-TCHAD/2013.', '2014-02-19', '2014-12-31', 12643.07, NULL, 12643.07, 0.00, 12643.07, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.427904+00', 6109700.00, 0.00, 6109700.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (156, '2500231570', '0400030771', '2015-05-26', 'SSFA', 'XAF', 'RENFORCER ENGAGEMENT MEDIAS NATIONAUX AU TCHAD', '2015-05-26', '2015-05-31', 9958.78, NULL, 9958.78, 0.00, 10112.37, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.009324+00', 5997000.00, 0.00, 5997000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (150, '2500232212', '0400031315', '2015-06-16', 'SSFA', 'XAF', 'FINANCEMENT APE/CELIAF/BOL', '2015-05-15', '2015-06-30', 49237.61, NULL, 49237.61, 0.00, 49237.61, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.046312+00', 29650000.00, 0.00, 29650000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (155, '2500228112', '0400041350', '2016-06-20', 'Programme Document Against PCA', 'XAF', 'FR : 3ÈME TRANCHE PCA/2015/CHD/PROT/IHDL', '2016-03-07', '2016-06-24', 137776.87, NULL, 137776.87, 0.00, 137776.87, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.64062+00', 80184345.00, 0.00, 80184345.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (130, '2500214010', '0400041502', '2016-06-23', 'SSFA', 'XAF', 'FR ACCORD PETITE ECHELLE AVEC UFCCT/ UNICEF', '2016-05-25', '2016-12-31', 8013.47, NULL, 8013.47, 0.00, 8137.64, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.69719+00', 4736000.00, 0.00, 4736000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (135, '2500235282', '0400043322', '2016-09-07', 'SSFA', 'XAF', 'FIN PROMOTION ALLAITEMENT MATERNEL EXCLUSIF/PFE', '2016-09-07', '2016-12-07', 7942.05, NULL, 7942.05, 0.00, 15545.96, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.959489+00', 4674000.00, 0.00, 9149000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (141, '2500228587', '0400043551', '2016-09-19', 'Programme Document Against PCA', 'XAF', 'FINANCEMEN 2EME TRANCHE PROJET CONSTRUCTION 21 SDC', '2016-09-19', '2016-12-19', 80674.51, NULL, 80674.51, 0.00, 80674.51, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.985899+00', 47478000.00, 0.00, 47478000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (158, '2500228112', '0400044250', '2016-10-13', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 4EME TRANCHE PCA IHDL', '2016-10-13', '2017-01-13', 57795.17, NULL, 57795.17, 0.00, 58759.18, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.10087+00', 34364721.00, 0.00, 34364721.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (148, '2500228510', '0400053336', '2017-08-16', 'Programme Document Against PCA', 'XAF', 'REMB PRISE EN CHARGE MEDICO-NUT ENFTS MOINS 5 ANS', '2017-06-01', '2017-08-31', 391048.10, NULL, 391048.10, 0.00, 391048.10, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.800976+00', 217363693.00, 0.00, 217363693.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (184, '2500213939', '0400016089', '2013-10-22', 'Programme Document Against PCA', 'XAF', 'RENFORCEMENT DES CAPACITÉS DE L''AILS ET APPUI À LA', '2013-10-01', '2014-12-31', 0.00, NULL, 0.00, 0.00, 16520.53, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:14.461933+00', 0.00, 0.00, 7986684.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (987, '2500214088', '0400066060', '2019-01-16', 'Programme Document Against PCA', 'XAF', 'COUT DE SUPPORT DE PROGRAMME', '2019-01-01', '2019-03-31', 24048.64, NULL, 24048.64, 0.00, 24048.64, '2019-01-18 00:02:00.49426+00', '2019-02-01 00:02:05.509855+00', 13743580.00, 0.00, 13743580.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (500, '2500227539', '0400018647', '2014-02-19', 'SSFA', 'XAF', 'FINANCEMENT APE Nº05/PRO/POLIO/APSELPA/2013', '2014-02-19', '2014-12-31', 13120.67, NULL, 13120.67, 0.00, 13120.67, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.365903+00', 6340500.00, 0.00, 6340500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (480, '2500218272', '0400018649', '2014-02-19', 'SSFA', 'XAF', 'FINANCEMENT APE Nº25/PRO/POLIO/CELIAF- N''DJAMENA', '2014-02-19', '2014-12-31', 13666.03, NULL, 13666.03, 0.00, 13666.03, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.386389+00', 6604040.00, 0.00, 6604040.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (781, '2500227536', '0400018675', '2014-02-20', 'SSFA', 'XAF', 'FINANCEMENT APE/ANNASSOUR-AMTIMAN', '2014-02-01', '2014-03-30', 16312.64, NULL, 16312.64, 0.00, 16312.64, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.414341+00', 7883000.00, 0.00, 7883000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (798, '2500224943', '0400018690', '2014-02-21', 'SSFA', 'XAF', 'A À PETITE ECHELLE: ACTIVITÉS SANTÉ AU SITE GORÉ', '2014-02-21', '2014-04-20', 18210.22, NULL, 18210.22, 0.00, 18210.22, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.437538+00', 8800000.00, 0.00, 8800000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (796, '2500228055', '0400018755', '2014-02-25', 'Programme Document Against PCA', 'XAF', 'PAIEMENT APE Nº20/PRO/POLIO/TTLC/2013', '2014-02-25', '2014-12-31', 6230.79, NULL, 6230.79, 0.00, 6230.79, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.460081+00', 3011000.00, 0.00, 3011000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (795, '2500228056', '0400018756', '2014-02-25', 'Programme Document Against PCA', 'XAF', 'PAIEMENT APE Nº22/PRO/POLIO/UNION NEREMADJI - BEDJ', '2014-02-25', '2014-12-31', 9249.97, NULL, 9249.97, 0.00, 9249.97, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.4781+00', 4470000.00, 0.00, 4470000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (480, '2500218272', '0400018649', '2014-02-19', 'SSFA', 'XAF', 'FINANCEMENT APE Nº25/PRO/POLIO/CELIAF- N''DJAMENA', '2014-02-19', '2014-12-31', 13666.03, NULL, 13666.03, 0.00, 13666.03, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.446714+00', 6604040.00, 0.00, 6604040.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (798, '2500224943', '0400018690', '2014-02-21', 'SSFA', 'XAF', 'A À PETITE ECHELLE: ACTIVITÉS SANTÉ AU SITE GORÉ', '2014-02-21', '2014-04-20', 18210.22, NULL, 18210.22, 0.00, 18210.22, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.468647+00', 8800000.00, 0.00, 8800000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (196, '2500221252', '0400030493', '2015-05-15', 'Programme Document Against PCA', 'XAF', 'MOBILISATION SOCIALE JLV DU 29 AU 31 MAI 2015', '2015-05-15', '2015-08-17', 0.00, NULL, 0.00, 0.00, 98216.63, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:19.495274+00', 0.00, 0.00, 58246000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (193, '2500214062', '0400056710', '2017-12-13', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 3ÈME TRANCHE DU PCA ESMS- WASH', '2017-12-13', '2017-12-31', 0.00, NULL, 0.00, 0.00, 58503.82, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:29.77124+00', 0.00, 0.00, 32382101.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1037, '2500240242', '0400069044', '2019-06-13', 'Programme Document Against PCA', 'XAF', 'MISE EN OEUVRE DE L''ATPC ET ATPE', '2019-06-13', '2019-09-13', 23754.68, NULL, 23754.68, 23754.68, 23754.68, '2019-06-15 00:06:05.741717+00', '2019-06-20 00:08:40.378197+00', 14008850.00, 14008850.00, 14008850.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (994, '2500213923', '0400066882', '2019-03-01', 'Programme Document Against PCA', 'XAF', 'FR 3EME TRANCHE PCA AVEC ADRA', '2018-12-31', '2019-03-31', 69570.99, NULL, 69570.99, 0.00, 69657.77, '2019-03-03 00:17:00.739688+00', '2019-12-04 00:12:50.039973+00', 40169197.00, 0.00, 40169197.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (206, '2500215474', '0400013149', '2013-06-06', 'Programme Document Against PCA', 'USD', 'REMBOURSEMENT APE BASE', '2013-06-06', '2013-06-30', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (214, '1900001710', '0400000051', '2012-01-19', 'Programme Document Against PCA', 'USD', 'PCA POUR PROJET PRÉVENTION/LUTTE CONTRE LE CHOLÉRA', '2011-11-01', '2012-01-31', 0.00, NULL, 0.00, 0.00, 388850.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1009, '2500228587', '0400067388', '2019-03-25', 'Programme Document Against PCA', 'XAF', 'CFS PCA N#023/ADES/DG/AFP/2018', '2019-03-25', '2019-03-31', 0.00, NULL, 0.00, 0.00, 16571.70, '2019-03-27 00:05:10.439029+00', '2019-03-29 00:04:55.710089+00', 0.00, 0.00, 9556320.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (900, '2500212819', '0400059094', '2018-03-29', 'Programme Document Against PCA', 'XAF', 'FR PCA AVEC SECADEV 1ERE TRANCHE', '2018-04-01', '2018-05-31', 199595.85, NULL, 199595.85, 0.00, 198237.88, '2018-03-31 00:04:24.685712+00', '2018-08-30 00:05:23.333741+00', 106030305.00, 0.00, 106030305.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (940, '2500228112', '0400062675', '2018-08-27', 'Programme Document Against PCA', 'XAF', 'PAIEMENT RELIQUAT 1ERE TRANCHE PCA IHDL', '2018-08-27', '2018-08-30', 68878.08, NULL, 68878.08, 0.00, 68878.08, '2018-08-28 13:22:20.0951+00', '2018-10-11 00:01:41.693044+00', 39545800.00, 0.00, 39545800.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (171, '2500228271', '0400019553', '2014-03-26', 'SSFA', 'XAF', 'FINANCEMENT APE/FETAAR', '2014-03-26', '2014-05-26', 4067.32, NULL, 4067.32, 0.00, 4067.32, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.169707+00', 1950000.00, 0.00, 1950000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (182, '2500224943', '0400020675', '2014-05-14', 'Programme Document Against PCA', 'XAF', 'VERSEMENT 1ÈRE TRANCHE PCA 2014/ CSSI', '2014-04-07', '2014-07-09', 123021.05, NULL, 123021.05, 0.00, 217689.47, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:18.056336+00', 58378410.00, 0.00, 58378410.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (176, '2500213920', '0400024995', '2014-10-28', 'Programme Document Against PCA', 'XAF', '1ÈRE TRANCHE PCA ACF 2014', '2014-10-28', '2014-12-28', 60646.89, NULL, 60646.89, 0.00, 63921.53, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:19.658755+00', 32095000.00, 0.00, 33000000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (169, '2500225658', '0400031951', '2015-07-09', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA 04/2015/PROG/WASH/ADERBA', '2015-06-29', '2015-12-31', 27942.91, NULL, 27942.91, 0.00, 28269.08, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.607959+00', 16584650.00, 0.00, 16584650.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (190, '2500214085', '0400037134', '2016-01-27', 'Programme Document Against PCA', 'XAF', 'FR POUR PCA ONG IAS', '2016-01-27', '2016-05-31', 273673.54, NULL, 273673.54, 0.00, 266000.03, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.299548+00', 160000000.00, 0.00, 160830000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (183, '2500232403', '0400040170', '2016-05-09', 'SSFA', 'XAF', 'FINANCEMENT SSFA ENCADREMENT CLUB JEUNES REPORTERS', '2016-05-09', '2016-08-09', 3707.24, NULL, 3707.24, 0.00, 3707.24, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.549707+00', 2145000.00, 0.00, 2145000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (199, '2500215493', '0400040174', '2016-05-09', 'SSFA', 'XAF', 'FNCT SSFA ENCAD CLUB JEUNES REPORTERS RADIO COMMUN', '2016-05-09', '2016-08-09', 4294.52, NULL, 4294.52, 0.00, 4294.52, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.570137+00', 2484800.00, 0.00, 2484800.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (198, '2500213917', '0400041772', '2016-07-05', 'SSFA', 'XAF', 'FR PCA ASSOCIATION POUR RECUPERATION ET ENCADREMT', '2016-04-01', '2016-12-31', 5568.48, NULL, 5568.48, 0.00, 11097.66, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.55028+00', 3291000.00, 0.00, 6582500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (178, '2500223261', '0400042258', '2016-07-25', 'Programme Document Against PCA', 'XAF', 'FIN PCA 001/2016/PROG WASH/AFDI, 1ERE TRANCHE', '2016-07-31', '2016-10-31', 43031.78, NULL, 43031.78, 0.00, 43031.78, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.666261+00', 25432000.00, 0.00, 25432000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (194, '2500229712', '0400044929', '2016-11-03', 'SSFA', 'XAF', 'FINANCEMENT 2EME TRANCHE APE JOURNAL COCORICO', '2016-11-03', '2017-02-03', 2950.22, NULL, 2950.22, 0.00, 2964.06, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.01248+00', 1780000.00, 0.00, 1780000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1014, '2500214062', '0400067661', '2019-04-08', 'Programme Document Against PCA', 'XAF', '08/PCA/2019/WASH/ESMS', '2019-04-08', '2019-12-31', 69624.35, NULL, 69624.35, 0.00, 73216.00, '2019-04-12 17:41:31.98834+00', '2020-04-18 01:10:53.263677+00', 40985800.00, 0.00, 42785305.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (163, '2500228112', '0400047139', '2017-01-25', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE PCA IHDL. PAQUET PRISE EN CHARGE ENFT', '2017-01-25', '2017-04-25', 75996.13, NULL, 75996.13, 0.00, 75000.00, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.769874+00', 47010750.00, 0.00, 47010750.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (175, '2500223094', '0400048708', '2017-03-13', 'Programme Document Against PCA', 'XAF', 'FIN. PCA 0014/2016/PROG WASH/EAA', '2017-03-01', '2017-05-31', 63310.65, NULL, 63310.65, 0.00, 62924.90, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.124352+00', 38924968.00, 0.00, 38924968.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (177, '2500230634', '0400049795', '2017-04-21', 'Programme Document Against PCA', 'XAF', '3E T PCA AVEC ATURAD CONSTRUCTION SDC AU GUERA', '2017-04-21', '2017-06-30', 38515.87, NULL, 38515.87, 0.00, 39039.83, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.281586+00', 23276910.00, 0.00, 24131610.00, false, false, false); @@ -10720,35 +11408,34 @@ INSERT INTO [[schema]].funds_fundsreservationheader VALUES (195, '2500213985', ' INSERT INTO [[schema]].funds_fundsreservationheader VALUES (239, '2500214088', '0400025167', '2014-11-04', 'Programme Document Against PCA', 'XAF', 'REPONSE EDUCATIVE ENFANTS RETOURNÉS RCA/PCA 14 IRC', '2014-11-04', '2015-07-31', 0.00, NULL, 0.00, 0.00, 397432.93, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (218, '2500214090', '0400000059', '2012-01-20', 'Programme Document Against PCA', 'USD', 'DCT COMPLEMENT 2ÈME TRANCHE PCA CHOLÉRA IRW', '2011-11-01', '2012-02-28', 0.00, NULL, 0.00, 0.00, 396000.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:08.520078+00', 0.00, 0.00, 79200.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (240, '2500214062', '0400000376', '2012-02-15', 'Programme Document Against PCA', 'USD', 'DCT 2EM TRANCHE PCA CHOLÉRA ESMS', '2011-12-01', '2012-02-29', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:08.673811+00', 0.00, 0.00, 33636.76, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (269, '2500228112', '0400018970', '2014-03-05', 'SSFA', 'XAF', 'SMALL SCALE FUNDING AGREEMENT IDHL - TCHAD', '2014-03-05', '2014-08-31', 36659.67, NULL, 36659.67, 0.00, 36774.74, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.618772+00', 17630950.00, 0.00, 17630950.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (989, '2500228510', '0400066433', '2019-02-06', 'Programme Document Against PCA', 'XAF', 'FR REMBOURSMENT 7% COUTS ADMINISTRATIFS ALIMA', '2018-06-01', '2019-01-31', 115.13, NULL, 115.13, 0.00, 115.13, '2019-02-07 15:42:14.077194+00', '2019-03-07 16:43:13.346444+00', 66150.00, 0.00, 66150.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (894, '2500213951', '0400058647', '2018-03-14', 'Programme Document Against PCA', 'XAF', 'APPUI AUX COMMUNAUTES AFFECTEES PAR LA CRISE SOUDA', '2018-01-01', '2018-03-22', 341794.53, NULL, 341794.53, 0.00, 341794.53, '2018-03-16 00:05:05.497952+00', '2018-12-31 00:02:00.645559+00', 182813587.00, 0.00, 182813587.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (210, '2500219694', '0400004372', '2012-06-23', 'SSFA', 'USD', 'FR-FINANCEMENT APE/EEMET PALA EN FAVEUR DE LA PTME', '2012-06-23', '2012-12-31', 0.00, NULL, 0.00, 0.00, 8758.00, '2018-03-15 16:10:06.407235+00', '2018-07-03 00:02:38.674429+00', 0.00, 0.00, 8758.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (796, '2500228055', '0400018755', '2014-02-25', 'Programme Document Against PCA', 'XAF', 'PAIEMENT APE Nº20/PRO/POLIO/TTLC/2013', '2014-02-25', '2014-12-31', 6230.79, NULL, 6230.79, 0.00, 6230.79, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.478192+00', 3011000.00, 0.00, 3011000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (795, '2500228056', '0400018756', '2014-02-25', 'Programme Document Against PCA', 'XAF', 'PAIEMENT APE Nº22/PRO/POLIO/UNION NEREMADJI - BEDJ', '2014-02-25', '2014-12-31', 9249.97, NULL, 9249.97, 0.00, 9249.97, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.487275+00', 4470000.00, 0.00, 4470000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (269, '2500228112', '0400018970', '2014-03-05', 'SSFA', 'XAF', 'SMALL SCALE FUNDING AGREEMENT IDHL - TCHAD', '2014-03-05', '2014-08-31', 36659.67, NULL, 36659.67, 0.00, 36774.74, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.528261+00', 17630950.00, 0.00, 17630950.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (171, '2500228271', '0400019553', '2014-03-26', 'SSFA', 'XAF', 'FINANCEMENT APE/FETAAR', '2014-03-26', '2014-05-26', 4067.32, NULL, 4067.32, 0.00, 4067.32, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.676785+00', 1950000.00, 0.00, 1950000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (182, '2500224943', '0400020675', '2014-05-14', 'Programme Document Against PCA', 'XAF', 'VERSEMENT 1ÈRE TRANCHE PCA 2014/ CSSI', '2014-04-07', '2014-07-09', 123021.05, NULL, 123021.05, 0.00, 217689.47, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.796513+00', 58378410.00, 0.00, 58378410.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (504, '2500226117', '0400020820', '2014-05-19', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT DE LA 2EME TRANCHE PCA IBCR', '2014-05-19', '2014-05-30', 42288.70, NULL, 42288.70, 0.00, 42985.31, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.845442+00', 20398249.00, 0.00, 20398249.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (176, '2500213920', '0400024995', '2014-10-28', 'Programme Document Against PCA', 'XAF', '1ÈRE TRANCHE PCA ACF 2014', '2014-10-28', '2014-12-28', 60646.89, NULL, 60646.89, 0.00, 63921.53, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.514187+00', 32095000.00, 0.00, 33000000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (169, '2500225658', '0400031951', '2015-07-09', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA 04/2015/PROG/WASH/ADERBA', '2015-06-29', '2015-12-31', 27942.91, NULL, 27942.91, 0.00, 28269.08, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.16753+00', 16584650.00, 0.00, 16584650.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (190, '2500214085', '0400037134', '2016-01-27', 'Programme Document Against PCA', 'XAF', 'FR POUR PCA ONG IAS', '2016-01-27', '2016-05-31', 273673.54, NULL, 273673.54, 0.00, 266000.03, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.91298+00', 160000000.00, 0.00, 160830000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (183, '2500232403', '0400040170', '2016-05-09', 'SSFA', 'XAF', 'FINANCEMENT SSFA ENCADREMENT CLUB JEUNES REPORTERS', '2016-05-09', '2016-08-09', 3707.24, NULL, 3707.24, 0.00, 3707.24, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.399155+00', 2145000.00, 0.00, 2145000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (199, '2500215493', '0400040174', '2016-05-09', 'SSFA', 'XAF', 'FNCT SSFA ENCAD CLUB JEUNES REPORTERS RADIO COMMUN', '2016-05-09', '2016-08-09', 4294.52, NULL, 4294.52, 0.00, 4294.52, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.412023+00', 2484800.00, 0.00, 2484800.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (198, '2500213917', '0400041772', '2016-07-05', 'SSFA', 'XAF', 'FR PCA ASSOCIATION POUR RECUPERATION ET ENCADREMT', '2016-04-01', '2016-12-31', 5568.48, NULL, 5568.48, 0.00, 11097.66, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.802149+00', 3291000.00, 0.00, 6582500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (194, '2500229712', '0400044929', '2016-11-03', 'SSFA', 'XAF', 'FINANCEMENT 2EME TRANCHE APE JOURNAL COCORICO', '2016-11-03', '2017-02-03', 2950.22, NULL, 2950.22, 0.00, 2964.06, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.361203+00', 1780000.00, 0.00, 1780000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (212, '2500219692', '0400004374', '2012-06-23', 'SSFA', 'USD', 'FR-FINANCEMENT APE/DIOCESE PALA EN FAVEUR DE PTME', '2012-06-23', '2012-12-31', 0.00, NULL, 0.00, 0.00, 9592.00, '2018-03-15 16:10:06.407235+00', '2018-07-03 00:02:38.712679+00', 0.00, 0.00, 9592.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (223, '2300006135', '0400004875', '2012-07-12', 'Programme Document Against PCA', 'USD', 'FINANCEMENT 1RE TRANCHE PCA AVEC PREMIERE URGENCE', '2012-07-12', '2012-12-31', 0.00, NULL, 0.00, 0.00, 201641.00, '2018-03-15 16:10:06.407235+00', '2018-07-03 00:02:38.802837+00', 0.00, 0.00, 201641.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1036, '2500237522', '0400068977', '2019-06-11', 'Programme Document Against PCA', 'XAF', 'COUT SUPPORT INDIRECT DE PROGRAMME', '2019-06-11', '2019-09-11', 48366.80, NULL, 48366.80, 0.00, 48366.80, '2019-06-13 00:04:47.348129+00', '2019-06-26 00:07:47.807051+00', 28523353.00, 0.00, 28523353.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (211, '2500214085', '0400000801', '2012-03-03', 'Programme Document Against PCA', 'USD', 'DCT 3EM TRANCHE PCA IAS PROMOTION HYGIENE', '2011-04-27', '2012-03-31', 39066.90, NULL, 39066.90, 0.00, 383000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.013168+00', 0.00, 0.00, 39000.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (232, '2500213985', '0400050831', '2017-05-22', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 4EME TRANCHE DU PCA COOPI', '2017-03-01', '2017-05-31', 0.00, NULL, 0.00, 0.00, 82466.32, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:27.844078+00', 0.00, 0.00, 49838193.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (959, '2500212780', '0400064106', '2018-10-22', 'Programme Document Against PCA', 'XAF', '4E T SUP FORM,ELAB DES REQUETES, REUNION DE COORD', '2018-10-22', '2018-12-31', 17417.32, NULL, 17417.32, 0.00, 17417.32, '2018-10-24 00:02:03.531099+00', '2019-03-02 00:15:29.312909+00', 9887500.00, 0.00, 9887500.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (242, '2500221193', '0400009484', '2012-12-30', 'Programme Document Against PCA', 'USD', 'FC POUR TRANSFERT DE CHARGE DU FC 100032501-1', '2012-09-01', '2012-12-31', 0.00, NULL, 0.00, 0.00, 91815.72, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1002, '2500213955', '0400067008', '2019-03-07', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 9 PCA 2018 PRO CRS', '2019-03-07', '2019-06-07', 72313.86, NULL, 72313.86, 0.00, 72313.86, '2019-03-15 13:52:32.639703+00', '2019-10-26 00:15:20.712547+00', 41700874.00, 0.00, 41700874.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (235, '2500228063', '0400018800', '2014-02-26', 'Programme Document Against PCA', 'XAF', 'PAIEMENT APE Nº21/PRO/POLIO/UGROFEM - MOISSALA', '2014-02-26', '2014-12-31', 10905.44, NULL, 10905.44, 0.00, 10905.44, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.546101+00', 5270000.00, 0.00, 5270000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (745, '2500228141', '0400018973', '2014-03-05', 'SSFA', 'XAF', 'FINANCEMENT APE Nº25/PRO/POLIO/CELIAF - MOYEN CHAR', '2014-03-05', '2014-12-31', 14006.19, NULL, 14006.19, 0.00, 14006.19, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.685952+00', 6715000.00, 0.00, 6715000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (904, '2500232213', '0400059239', '2018-04-05', 'Programme Document Against PCA', 'XAF', 'INTERV NUT AUX PERS AFFECTEES PAR LES CRISES', '2018-04-05', '2018-04-30', 30960.52, NULL, 30960.52, 0.00, 30960.52, '2018-04-09 17:11:47.912636+00', '2018-12-12 00:02:08.090599+00', 16447000.00, 0.00, 16447000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (132, '2500233727', '0400056992', '2017-12-27', 'SSFA', 'XAF', 'REPONSE EDUCATIVE D''URGENCE (ZAFAYA)', '2017-12-27', '2018-03-27', 20811.05, NULL, 20811.05, 0.00, 20811.05, '2018-03-15 16:10:06.407235+00', '2018-08-28 13:22:20.387106+00', 11519000.00, 0.00, 11519000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1063, '2500218808', '0400071898', '2019-10-30', 'Programme Document Against PCA', 'XAF', 'FR 05/ PCA/PRO/INTERSOS 2019', '2019-05-10', '2020-01-09', 157249.51, NULL, 157249.51, 157249.51, 157249.51, '2019-10-31 00:31:28.793275+00', '2019-11-02 00:32:53.682997+00', 94286021.00, 94286021.00, 94286021.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (769, '2500219699', '0400003685', '2012-06-04', 'SSFA', 'USD', 'FR-FINANCEMENT APE/EEMET MOUNDOU EN FAVEUR DE PTME', '2012-06-01', '2012-12-31', 8536.96, NULL, 8536.96, 0.00, 8367.32, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.786569+00', 0.00, 0.00, 8653.62, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (229, '2500221169', '0400007550', '2012-10-25', 'Programme Document Against PCA', 'USD', 'PAIEMENT 2ÈME TRANCHE PCA - CRT/UNICEF', '2012-10-25', '2012-10-31', 136216.85, NULL, 136216.85, 0.00, 136398.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.235739+00', 0.00, 0.00, 136076.67, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (217, '2500224422', '0400031652', '2015-06-29', 'Programme Document Against PCA', 'XAF', 'PCA N°16/SFCG/2014/PRO-PEACE BUILDING & EDUCATION', '2014-08-20', '2015-08-31', 81166.09, NULL, 81166.09, 0.00, 79075.42, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.565607+00', 47617793.00, 0.00, 47617793.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (222, '2500212819', '0400039907', '2016-04-27', 'Programme Document Against PCA', 'XAF', 'FR ACCORD À PETITE ECHELLE SECADEV', '2016-04-01', '2016-05-31', 45995.08, NULL, 45995.08, 0.00, 45995.08, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.440892+00', 26754280.00, 0.00, 26754280.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (201, '2500232779', '0400041670', '2016-06-29', 'SSFA', 'XAF', 'FR APE ASSOCIATION MALADES VIVANT AVEC SIDA KYABÉ', '2016-04-01', '2016-11-30', 11137.81, NULL, 11137.81, 0.00, 11310.39, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.415+00', 6582500.00, 0.00, 6582500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (202, '2500228063', '0400041671', '2016-06-29', 'SSFA', 'XAF', 'FR APE UNION DES GPMTS FEMININS DE MOISSALA', '2016-04-01', '2016-11-30', 11137.81, NULL, 11137.81, 0.00, 11310.39, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.453642+00', 6582500.00, 0.00, 6582500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (200, '2500233143', '0400041774', '2016-07-05', 'Programme Document Against PCA', 'XAF', 'FR APE CELIAF - N''DJAMENA 2', '2016-04-01', '2016-12-31', 16765.27, NULL, 16765.27, 0.00, 16530.58, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.596268+00', 9805000.00, 0.00, 9805000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (226, '2500227536', '0400042368', '2016-07-28', 'SSFA', 'XAF', 'FR APE ASSOCIATION ANNASSOUR', '2016-07-31', '2016-10-31', 15704.54, NULL, 15704.54, 0.00, 15817.13, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.731325+00', 9348000.00, 0.00, 9348000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (208, '2500212813', '0400044569', '2016-10-24', 'SSFA', 'XAF', 'FR APE RADIOTERRE NOUVELLE', '2016-10-24', '2017-01-24', 1715.45, NULL, 1715.45, 0.00, 1715.45, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.650186+00', 1020000.00, 0.00, 1020000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (224, '2500219686', '0400044850', '2016-11-02', 'SSFA', 'XAF', 'APPUI INTERVENTIONS COMMUNICAT POUR LE CHANGEMENT', '2016-11-02', '2017-02-02', 13122.41, NULL, 13122.41, 0.00, 13122.41, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.864089+00', 7880375.00, 0.00, 7880375.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (213, '2500223093', '0400046676', '2016-12-20', 'SSFA', 'XAF', 'FINANCMENT ACTIVITÉS ACPV POUR JEUNES DE BONGOR', '2016-06-30', '2016-12-31', 3776.26, NULL, 3776.26, 0.00, 3776.26, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.68257+00', 2333333.00, 0.00, 2333333.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1106, '2500214062', '0400074882', '2020-04-06', 'Programme Document Against PCA', 'XAF', '3E TRANCHE PCA/WASH/2019', '2020-04-06', '2020-12-31', 21620.01, NULL, 21620.01, 21620.01, 21620.01, '2020-04-08 00:04:17.96229+00', '2020-04-11 00:06:40.67248+00', 12847000.00, 12847000.00, 12847000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (236, '2500236169', '0400048525', '2017-03-07', 'SSFA', 'XAF', 'FORMATION ET SUIVI PEDAGOGIQUE ENSEIGNANTS', '2017-03-07', '2017-06-07', 7767.61, NULL, 7767.61, 0.00, 7767.61, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.020601+00', 4805000.00, 0.00, 4805000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (205, '2500213920', '0400049081', '2017-03-24', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT ACTIVITES PCA ACF SUR CHOLERA', '2017-03-24', '2017-06-24', 96745.65, NULL, 96745.65, 0.00, 97591.42, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.147703+00', 59481644.00, 0.00, 60001644.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1091, '2500240242', '0400073429', '2020-01-16', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT TRANCHE 3 PCA AVEC CROIX ROUGE MOYEN C', '2019-05-01', '2020-04-20', 50636.84, NULL, 50636.84, 25147.58, 50855.13, '2020-01-18 00:05:30.149484+00', '2020-04-10 00:08:14.870947+00', 29878000.00, 14902750.00, 29878000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (227, '2500228587', '0400052691', '2017-07-21', 'Programme Document Against PCA', 'XAF', 'PROJET ASSISTANCE MEDICALE ET NUTRITIONNELLE RETOU', '2017-07-21', '2017-10-21', 99997.15, NULL, 99997.15, 0.00, 99997.15, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.314069+00', 57634460.00, 0.00, 57634460.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (207, '2500237874', '0400055982', '2017-11-27', 'SSFA', 'XAF', '1ERE TRANCHE SSFA AVEC ASSOCIATION LABEL 109', '2017-11-27', '2017-12-31', 4514.87, NULL, 4514.87, 0.00, 4425.73, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.91945+00', 2499000.00, 0.00, 2499000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (980, '2500214085', '0400065354', '2018-12-07', 'Programme Document Against PCA', 'XAF', 'COUT SUPPORT INDIRECT DE PROGRAMME', '2018-10-01', '2018-12-31', 5054.88, NULL, 5054.88, 0.00, 5054.88, '2018-12-09 00:01:56.825515+00', '2018-12-14 00:02:12.712263+00', 2914461.00, 0.00, 2914461.00, false, false, false); @@ -10756,20 +11443,27 @@ INSERT INTO [[schema]].funds_fundsreservationheader VALUES (896, '2500234927', ' INSERT INTO [[schema]].funds_fundsreservationheader VALUES (253, '2500219698', '0400003668', '2012-06-04', 'SSFA', 'USD', 'FR-FINANCEMENT APE/CASI SARH EN FAVEUR DE LA PTME', '2012-06-04', '2012-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (256, '2500234334', '0400041520', '2016-06-24', 'SSFA', 'XAF', 'FR APE ASSOCIATION CHEFS TRADITIONNELS DU TCHAD', '2016-04-01', '2016-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (259, '2500215493', '0400041527', '2016-06-24', 'SSFA', 'XAF', 'FR APE RADIOTERRE NOUVELLE', '2016-04-01', '2016-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (228, '2500214062', '0400037861', '2016-02-17', 'Programme Document Against PCA', 'XAF', 'FR POUR FINANCMENT 3ÈME TRANCHE PCA ESMS', '2016-06-01', '2016-12-31', 101785.03, NULL, 101785.03, 0.00, 155332.44, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.52291+00', 59296350.00, 0.00, 89819585.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (254, '2500229637', '0400041522', '2016-06-24', 'SSFA', 'XAF', 'FR APE RESEAUX MAISONS DE QUARTIERS ET JEUNES', '2016-04-01', '2016-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.615624+00', 0.00, 0.00, 0.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1035, '2500213951', '0400068974', '2019-06-11', 'Programme Document Against PCA', 'XAF', 'COUT SUPPORT INDIRECT DE PROGRAMME', '2019-06-11', '2019-09-11', 45365.64, NULL, 45365.64, 0.00, 45365.64, '2019-06-13 00:04:47.348003+00', '2019-07-01 00:22:32.411464+00', 26753478.00, 0.00, 26753478.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (271, '2500225602', '0400018790', '2014-02-26', 'Programme Document Against PCA', 'XAF', 'PAIEMT DERNIERE TRANCHE A ATPCS AMTIMAN', '2014-02-26', '2014-05-30', 48622.12, NULL, 48622.12, 0.00, 48622.12, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.498828+00', 23496398.00, 0.00, 23496398.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (273, '2500236867', '0400051302', '2017-06-05', 'SSFA', 'XAF', 'FINANCEMENT 1ERE TRANCHE SSFA PTPC', '2017-06-05', '2017-09-05', 29850.96, NULL, 29850.96, 0.00, 29850.96, '2018-03-15 16:10:06.407235+00', '2018-10-27 00:02:01.60396+00', 17495500.00, 0.00, 17495500.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (967, '2500228510', '0400064628', '2018-11-12', 'Programme Document Against PCA', 'XAF', 'SENSIBILISATION ET MISE A DISPOSITION KITS WASH', '2018-11-12', '2019-02-12', 1637.29, NULL, 1637.29, 0.00, 1637.29, '2018-11-14 00:01:58.829647+00', '2019-02-07 00:02:03.090618+00', 945000.00, 0.00, 945000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (867, '2500215493', '0400020414', '2014-05-05', 'SSFA', 'XAF', 'MOBILISATION SOCIALE POLIO À TRAVERS LA RADIO', '2014-05-05', '2014-12-31', 12664.90, NULL, 12664.90, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.732662+00', 6010000.00, 0.00, 6010000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (229, '2500221169', '0400007550', '2012-10-25', 'Programme Document Against PCA', 'USD', 'PAIEMENT 2ÈME TRANCHE PCA - CRT/UNICEF', '2012-10-25', '2012-10-31', 136216.85, NULL, 136216.85, 0.00, 136398.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.755906+00', 0.00, 0.00, 136076.67, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (271, '2500225602', '0400018790', '2014-02-26', 'Programme Document Against PCA', 'XAF', 'PAIEMT DERNIERE TRANCHE A ATPCS AMTIMAN', '2014-02-26', '2014-05-30', 48622.12, NULL, 48622.12, 0.00, 48622.12, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.501108+00', 23496398.00, 0.00, 23496398.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (235, '2500228063', '0400018800', '2014-02-26', 'Programme Document Against PCA', 'XAF', 'PAIEMENT APE Nº21/PRO/POLIO/UGROFEM - MOISSALA', '2014-02-26', '2014-12-31', 10905.44, NULL, 10905.44, 0.00, 10905.44, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.510039+00', 5270000.00, 0.00, 5270000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (745, '2500228141', '0400018973', '2014-03-05', 'SSFA', 'XAF', 'FINANCEMENT APE Nº25/PRO/POLIO/CELIAF - MOYEN CHAR', '2014-03-05', '2014-12-31', 14006.19, NULL, 14006.19, 0.00, 14006.19, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.544864+00', 6715000.00, 0.00, 6715000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (217, '2500224422', '0400031652', '2015-06-29', 'Programme Document Against PCA', 'XAF', 'PCA N°16/SFCG/2014/PRO-PEACE BUILDING & EDUCATION', '2014-08-20', '2015-08-31', 81166.09, NULL, 81166.09, 0.00, 79075.42, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.148379+00', 47617793.00, 0.00, 47617793.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (228, '2500214062', '0400037861', '2016-02-17', 'Programme Document Against PCA', 'XAF', 'FR POUR FINANCMENT 3ÈME TRANCHE PCA ESMS', '2016-06-01', '2016-12-31', 101785.03, NULL, 101785.03, 0.00, 155332.44, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.949683+00', 59296350.00, 0.00, 89819585.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (222, '2500212819', '0400039907', '2016-04-27', 'Programme Document Against PCA', 'XAF', 'FR ACCORD À PETITE ECHELLE SECADEV', '2016-04-01', '2016-05-31', 45995.08, NULL, 45995.08, 0.00, 45995.08, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.354852+00', 26754280.00, 0.00, 26754280.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (201, '2500232779', '0400041670', '2016-06-29', 'SSFA', 'XAF', 'FR APE ASSOCIATION MALADES VIVANT AVEC SIDA KYABÉ', '2016-04-01', '2016-11-30', 11137.81, NULL, 11137.81, 0.00, 11310.39, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.762175+00', 6582500.00, 0.00, 6582500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (202, '2500228063', '0400041671', '2016-06-29', 'SSFA', 'XAF', 'FR APE UNION DES GPMTS FEMININS DE MOISSALA', '2016-04-01', '2016-11-30', 11137.81, NULL, 11137.81, 0.00, 11310.39, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.771821+00', 6582500.00, 0.00, 6582500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (200, '2500233143', '0400041774', '2016-07-05', 'Programme Document Against PCA', 'XAF', 'FR APE CELIAF - N''DJAMENA 2', '2016-04-01', '2016-12-31', 16765.27, NULL, 16765.27, 0.00, 16530.58, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.821254+00', 9805000.00, 0.00, 9805000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (226, '2500227536', '0400042368', '2016-07-28', 'SSFA', 'XAF', 'FR APE ASSOCIATION ANNASSOUR', '2016-07-31', '2016-10-31', 15704.54, NULL, 15704.54, 0.00, 15817.13, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.884401+00', 9348000.00, 0.00, 9348000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (208, '2500212813', '0400044569', '2016-10-24', 'SSFA', 'XAF', 'FR APE RADIOTERRE NOUVELLE', '2016-10-24', '2017-01-24', 1715.45, NULL, 1715.45, 0.00, 1715.45, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.206829+00', 1020000.00, 0.00, 1020000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (224, '2500219686', '0400044850', '2016-11-02', 'SSFA', 'XAF', 'APPUI INTERVENTIONS COMMUNICAT POUR LE CHANGEMENT', '2016-11-02', '2017-02-02', 13122.41, NULL, 13122.41, 0.00, 13122.41, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.314027+00', 7880375.00, 0.00, 7880375.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (213, '2500223093', '0400046676', '2016-12-20', 'SSFA', 'XAF', 'FINANCMENT ACTIVITÉS ACPV POUR JEUNES DE BONGOR', '2016-06-30', '2016-12-31', 3776.26, NULL, 3776.26, 0.00, 3776.26, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.614528+00', 2333333.00, 0.00, 2333333.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (979, '2500213923', '0400065191', '2018-12-04', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 3EME TRANCHE CHOLERA', '2018-10-01', '2018-12-31', 81628.23, NULL, 81628.23, 0.00, 81628.23, '2018-12-06 00:02:01.728628+00', '2019-02-07 00:02:03.140511+00', 47063896.00, 0.00, 47063896.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (267, '2500221415', '0400014550', '2013-08-09', 'SSFA', 'XAF', 'SSFA PROTECTION DE L''ENFANCE A TRAVERS DES EAE', '2013-08-01', '2013-12-31', 0.00, NULL, 0.00, 0.00, 1010.93, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:13.807122+00', 0.00, 0.00, 500000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (576, '2500213945', '0400019025', '2014-03-07', 'SSFA', 'XAF', 'PAIEMT SSA APPROCHE ATPC/ ATVP-MELFI', '2014-03-07', '2014-06-12', 20746.68, NULL, 20746.68, 0.00, 20746.68, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.897576+00', 9946600.00, 0.00, 19893200.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (553, '2500228119', '0400019119', '2014-03-11', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PROJET CDLS/SARH', '2014-03-11', '2014-12-31', 9772.61, NULL, 9772.61, 0.00, 9772.62, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:19.070112+00', 4685299.00, 0.00, 4824000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (32, '2500228049', '0400019178', '2014-03-13', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PROJET CDLS/GUERA', '2014-03-13', '2014-12-31', 1042.44, NULL, 1042.44, 0.00, 1042.43, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:19.119009+00', 499773.00, 0.00, 530000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (167, '2500228222', '0400019412', '2014-03-21', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PROJET CDLS/LAI', '2014-03-21', '2014-12-31', 8171.54, NULL, 8171.54, 0.00, 8171.55, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:19.306788+00', 3917692.00, 0.00, 4144000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (730, '2500215473', '0400001709', '2012-03-30', 'SSFA', 'USD', 'FR SMALL SCALE FUNDING AGREE BAMBINI NEL DESSERTO', '2012-04-01', '2012-04-20', 19340.98, NULL, 19340.98, 0.00, 19466.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.268162+00', 0.00, 0.00, 19466.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (797, '2500213943', '0400003734', '2012-06-05', 'Programme Document Against PCA', 'USD', 'FR - PROGRAMME COOPERATION AGREEMNT - APLFT', '2012-06-05', '2012-12-31', 130914.25, NULL, 130914.25, 0.00, 111770.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.374937+00', 0.00, 0.00, 132800.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (274, '2500231569', '0400030697', '2015-05-22', 'SSFA', 'XAF', 'FINANCEMENT APE RESEAU JOURNALISTES/RJAE', '2015-05-12', '2016-01-31', 0.00, NULL, 0.00, 0.00, 10093.82, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:19.538691+00', 0.00, 0.00, 5986000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (919, '2500212819', '0400060744', '2018-06-04', 'Programme Document Against PCA', 'XAF', 'APPUI A LA REPONSE POUR L''ACCES A L''EAU POTABLE', '2018-06-04', '2018-09-04', 49537.87, NULL, 49537.87, 0.00, 49537.87, '2018-06-06 00:03:09.628474+00', '2018-09-16 00:01:42.05353+00', 27969281.00, 0.00, 27969281.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (283, '2500221193', '0400012225', '2013-05-02', 'Programme Document Against PCA', 'USD', 'DECAISSEMENT 3EME TRANCHE ONG BASE', '2013-05-02', '2013-08-02', 0.00, NULL, 0.00, 0.00, 110112.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); @@ -10777,86 +11471,79 @@ INSERT INTO [[schema]].funds_fundsreservationheader VALUES (321, '2500219704', ' INSERT INTO [[schema]].funds_fundsreservationheader VALUES (323, '2500213953', '0400000154', '2012-02-01', 'Programme Document Against PCA', 'USD', 'DCT POUR PCA PROTECTION UNICEF/CARE', '2011-01-30', '2012-02-28', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1000, '2500213985', '0400067045', '2019-03-08', 'Programme Document Against PCA', 'XAF', 'COUT SUPPORT INDIRECT DE PROGRAMME', '2019-03-08', '2019-06-07', 0.00, NULL, 0.00, 0.00, 0.00, '2019-03-15 13:52:32.639416+00', '2019-03-15 13:52:32.640763+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (3, '2500213923', '0400054056', '2017-09-18', 'Programme Document Against PCA', 'XAF', 'SENSIB HYGIENNE,PROMO ACTIVITES ASSAIN & COUT OPÉR', '2017-09-18', '2018-03-31', 31971.20, NULL, 31971.20, 0.00, 32074.07, '2018-03-15 16:10:06.407235+00', '2018-08-04 00:01:33.420952+00', 17502050.00, 0.00, 17502050.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (260, '2500220423', '0400011234', '2013-03-22', 'Programme Document Against PCA', 'USD', 'PCA 2010/CHD/WASH/OGB', '2013-03-22', '2013-02-28', 24260.95, NULL, 24260.95, 0.00, 24885.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.315112+00', 0.00, 0.00, 24895.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (595, '2500228104', '0400019420', '2014-03-21', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PROJET CDLS/DOBA', '2014-03-24', '2014-12-31', 9559.75, NULL, 9559.75, 0.00, 9446.29, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:19.634291+00', 4536485.00, 0.00, 12036328.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (738, '2500228048', '0400019465', '2014-03-24', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PCA/ AILS/COORDINATION', '2014-03-24', '2014-12-31', 15783.65, NULL, 15783.65, 0.00, 15783.65, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:19.818047+00', 7567172.00, 0.00, 7800000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (326, '2500221714', '0400003972', '2012-06-12', 'Programme Document Against PCA', 'USD', 'FC 1ÈRE TRANCHE EXTENSION PCA AVRIL-MARS 2012', '2012-06-12', '2012-07-03', 27563.96, NULL, 27563.96, 0.00, 27564.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.385617+00', 0.00, 0.00, 27564.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (260, '2500220423', '0400011234', '2013-03-22', 'Programme Document Against PCA', 'USD', 'PCA 2010/CHD/WASH/OGB', '2013-03-22', '2013-02-28', 24260.95, NULL, 24260.95, 0.00, 24885.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.276179+00', 0.00, 0.00, 24895.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (929, '2500215479', '0400061569', '2018-07-06', 'Programme Document Against PCA', 'XAF', '2E TRANCHE REPONSE URG CHOLERA À KOUKOU-ANGARANA', '2018-07-06', '2018-12-31', 44658.26, NULL, 44658.26, 0.00, 44658.26, '2018-07-08 00:01:41.829+00', '2019-01-26 00:02:06.604525+00', 25301363.00, 0.00, 25301363.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (797, '2500213943', '0400003734', '2012-06-05', 'Programme Document Against PCA', 'USD', 'FR - PROGRAMME COOPERATION AGREEMNT - APLFT', '2012-06-05', '2012-12-31', 130914.25, NULL, 130914.25, 0.00, 111770.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.803012+00', 0.00, 0.00, 132800.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (276, '2500212820', '0400028593', '2015-03-05', 'Programme Document Against PCA', 'XAF', 'PCA SIF/URGCE/RETOURNES CENTRAF/POP HÔTES (1ERE T)', '2015-03-05', '2015-09-30', 329106.21, NULL, 329106.21, 0.00, 329106.21, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:20.691826+00', 192303014.00, 0.00, 192303014.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (265, '2500223261', '0400037135', '2016-01-27', 'Programme Document Against PCA', 'XAF', 'FR POUR PCA ONG AFDI', '2016-01-27', '2016-05-31', 103514.80, NULL, 103514.80, 0.00, 100459.13, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.320849+00', 60740000.00, 0.00, 60740000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (257, '2500233086', '0400039878', '2016-04-27', 'Programme Document Against PCA', 'XAF', 'FR SNDE TRANCHE PCA/2014/N...CHD/PROT/IBCR', '2016-04-15', '2016-04-30', 85921.00, NULL, 85921.00, 0.00, 85921.00, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.418961+00', 49978269.00, 0.00, 49978269.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (251, '2500230634', '0400040305', '2016-05-12', 'Programme Document Against PCA', 'XAF', 'FR PCA AVEC ATURAD CONSTRUCTION SDC DANS LE GUERA', '2016-04-10', '2016-12-31', 96860.04, NULL, 96860.04, 0.00, 97686.29, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.593143+00', 56521090.00, 0.00, 56521090.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (280, '2500212820', '0400042359', '2016-07-28', 'Programme Document Against PCA', 'XAF', 'FR PCA 0015/2016/PROGWASH/SIF 1ERE TRANCHE', '2016-07-31', '2016-10-31', 153519.45, NULL, 153519.45, 0.00, 153505.68, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.708802+00', 90722625.00, 0.00, 90722625.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (261, '2500224893', '0400042608', '2016-08-09', 'SSFA', 'XAF', 'FINANCEMENT REQUETE EHA SITE GAOUI', '2016-08-15', '2016-11-15', 33843.70, NULL, 33843.70, 0.00, 33843.70, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.796685+00', 20000000.00, 0.00, 20000000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (279, '2500232850', '0400044346', '2016-10-17', 'SSFA', 'XAF', 'FIN MISE EN OEUVRE ACTIVITÉS ACPV - CELIAF - SARH', '2016-10-01', '2016-12-31', 3347.05, NULL, 3347.05, 0.00, 3380.45, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.525348+00', 2010000.00, 0.00, 2010000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (92, '2500228587', '0400056697', '2017-12-13', 'Programme Document Against PCA', 'XAF', 'ASSISTANCE MEDICALE ET NUTRITIONNELLE AUX REFUGIES', '2017-12-13', '2018-03-13', 52116.99, NULL, 52116.99, 0.00, 52116.99, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:30.1855+00', 28846960.00, 0.00, 28846960.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (326, '2500221714', '0400003972', '2012-06-12', 'Programme Document Against PCA', 'USD', 'FC 1ÈRE TRANCHE EXTENSION PCA AVRIL-MARS 2012', '2012-06-12', '2012-07-03', 27563.96, NULL, 27563.96, 0.00, 27564.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.829152+00', 0.00, 0.00, 27564.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (976, '2500234968', '0400065056', '2018-11-29', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE DU 20/PCA/2018/COMMUNICATION/UAFAT', '2018-11-29', '2018-12-31', 32299.97, NULL, 32299.97, 0.00, 32265.89, '2018-12-01 00:01:58.556269+00', '2019-07-18 00:05:44.445636+00', 18623000.00, 0.00, 18623000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (982, '2500238464', '0400065603', '2018-12-13', 'Programme Document Against PCA', 'XAF', 'ACTIVITES MOBILISATION SOCIALE AU NIVEAU COMMUNAUT', '2018-10-01', '2018-12-31', 47181.23, NULL, 47181.23, 0.00, 47181.23, '2018-12-15 00:02:11.589517+00', '2019-04-06 00:03:51.590407+00', 27203000.00, 0.00, 27203000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (924, '2500228510', '0400061135', '2018-06-20', 'Programme Document Against PCA', 'XAF', 'APPUI A LA PREVENTION MALNUTRITION AIGUE SEVERE', '2018-06-20', '2018-09-20', 12717.35, NULL, 12717.35, 0.00, 12717.35, '2018-06-22 00:03:22.703978+00', '2018-11-15 00:02:03.307984+00', 7074320.00, 0.00, 7074320.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (170, '2500228221', '0400019415', '2014-03-21', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PROJET CDLS/GORÉ', '2014-03-21', '2014-12-31', 8760.95, NULL, 8760.95, 0.00, 8760.94, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.289219+00', 4200267.00, 0.00, 4225046.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (258, '2500215493', '0400041526', '2016-06-24', 'SSFA', 'XAF', 'FR APE RADIO COMMUNAUTAIRE DE MONGO', '2016-04-01', '2016-12-31', 4222.17, NULL, 4222.17, 0.00, 4270.89, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.626938+00', 2484800.00, 0.00, 2485600.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (250, '2500233321', '0400041529', '2016-06-24', 'SSFA', 'XAF', 'FR APE RADIO EFFATA', '2016-04-01', '2016-12-31', 0.00, NULL, 0.00, 0.00, 3742.35, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.650765+00', 0.00, 0.00, 2178000.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (930, '2500214085', '0400061701', '2018-07-12', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE 13/PCA/2018/WASH/IAS', '2018-07-12', '2018-10-12', 783488.87, NULL, 783488.87, 0.00, 787270.43, '2018-07-14 00:02:20.380065+00', '2019-03-19 14:20:23.568224+00', 446032000.00, 0.00, 446032000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (270, '2500226636', '0400019701', '2014-04-01', 'SSFA', 'XAF', 'DECAISEMENT 2E TRANCHE APE/APSCOFIS', '2014-04-01', '2014-07-01', 8073.54, NULL, 8073.54, 0.00, 8073.54, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.338362+00', 3849600.00, 0.00, 3849600.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (576, '2500213945', '0400019025', '2014-03-07', 'SSFA', 'XAF', 'PAIEMT SSA APPROCHE ATPC/ ATVP-MELFI', '2014-03-07', '2014-06-12', 20746.68, NULL, 20746.68, 0.00, 20746.68, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.558126+00', 9946600.00, 0.00, 19893200.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (298, '2500223632', '0400014091', '2013-07-18', 'Programme Document Against PCA', 'USD', 'FR POUR FINANCEMENT 2ÈME TRANCHE PCA ASSAR TISSI', '2013-07-18', '2013-10-18', 0.00, NULL, 0.00, 0.00, 40220.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:13.55034+00', 0.00, 0.00, 40220.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1047, '2500237473', '0400070239', '2019-08-08', 'Programme Document Against PCA', 'XAF', 'REMBOURSMENT 7% ONG RET', '2019-06-21', '2019-09-15', 18962.72, NULL, 18962.72, 0.00, 18962.73, '2019-08-10 00:05:10.738237+00', '2019-08-10 00:05:11.407331+00', 11162827.00, 0.00, 11162827.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (516, '2500213923', '0400019761', '2014-04-03', 'Programme Document Against PCA', 'XAF', 'DECAISSMT 1E TRANCH WASH-ADRA/14', '2014-04-03', '2014-07-08', 377848.16, NULL, 377848.16, 0.00, 377848.16, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.503436+00', 180164428.00, 0.00, 180164428.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (519, '2500215470', '0400019766', '2014-04-03', 'SSFA', 'XAF', 'REMBURSMT PREFINANCMT ACTIVITES/ACORD', '2014-04-03', '2014-04-03', 4783.39, NULL, 4783.39, 0.00, 4783.39, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.575848+00', 2280800.00, 0.00, 2280800.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (588, '2500224593', '0400019939', '2014-04-10', 'SSFA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE APE/SCOUTS/VIH/SIDA', '2014-04-10', '2014-09-15', 9135.83, NULL, 9135.83, 0.00, 9185.91, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.592578+00', 4380000.00, 0.00, 4380000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (140, '2500213937', '0400020060', '2014-04-16', 'SSFA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE APE/GUIDES/VIH/SIDA', '2014-04-16', '2014-09-15', 6448.35, NULL, 6448.35, 0.00, 6417.56, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.614976+00', 3060000.00, 0.00, 3060000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (553, '2500228119', '0400019119', '2014-03-11', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PROJET CDLS/SARH', '2014-03-11', '2014-12-31', 9772.61, NULL, 9772.61, 0.00, 9772.62, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.590499+00', 4685299.00, 0.00, 4824000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (32, '2500228049', '0400019178', '2014-03-13', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PROJET CDLS/GUERA', '2014-03-13', '2014-12-31', 1042.44, NULL, 1042.44, 0.00, 1042.43, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.611411+00', 499773.00, 0.00, 530000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (167, '2500228222', '0400019412', '2014-03-21', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PROJET CDLS/LAI', '2014-03-21', '2014-12-31', 8171.54, NULL, 8171.54, 0.00, 8171.55, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.620635+00', 3917692.00, 0.00, 4144000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (170, '2500228221', '0400019415', '2014-03-21', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PROJET CDLS/GORÉ', '2014-03-21', '2014-12-31', 8760.95, NULL, 8760.95, 0.00, 8760.94, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.635923+00', 4200267.00, 0.00, 4225046.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (100, '2500228871', '0400021533', '2014-06-12', 'SSFA', 'XAF', 'FIN DEUX COURTS METRAGES SUR LES FILLES BONNES ET', '2014-06-12', '2014-08-30', 7075.67, NULL, 7075.67, 0.00, 7075.67, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.907944+00', 3413000.00, 0.00, 3413000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (276, '2500212820', '0400028593', '2015-03-05', 'Programme Document Against PCA', 'XAF', 'PCA SIF/URGCE/RETOURNES CENTRAF/POP HÔTES (1ERE T)', '2015-03-05', '2015-09-30', 329106.21, NULL, 329106.21, 0.00, 329106.21, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.825735+00', 192303014.00, 0.00, 192303014.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (265, '2500223261', '0400037135', '2016-01-27', 'Programme Document Against PCA', 'XAF', 'FR POUR PCA ONG AFDI', '2016-01-27', '2016-05-31', 103514.80, NULL, 103514.80, 0.00, 100459.13, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.921725+00', 60740000.00, 0.00, 60740000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (257, '2500233086', '0400039878', '2016-04-27', 'Programme Document Against PCA', 'XAF', 'FR SNDE TRANCHE PCA/2014/N...CHD/PROT/IBCR', '2016-04-15', '2016-04-30', 85921.00, NULL, 85921.00, 0.00, 85921.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.345908+00', 49978269.00, 0.00, 49978269.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (251, '2500230634', '0400040305', '2016-05-12', 'Programme Document Against PCA', 'XAF', 'FR PCA AVEC ATURAD CONSTRUCTION SDC DANS LE GUERA', '2016-04-10', '2016-12-31', 96860.04, NULL, 96860.04, 0.00, 97686.29, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.422107+00', 56521090.00, 0.00, 56521090.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (17, '2500213923', '0400041141', '2016-06-13', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA N#10/CHD/PROG/WASH/ADRA/2016', '2016-06-13', '2016-09-20', 277568.78, NULL, 277568.78, 0.00, 274564.54, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.575395+00', 161541419.00, 0.00, 161541419.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (116, '2500233810', '0400041451', '2016-06-22', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA N#14/2016/PROG/WASH/HELP PROJET', '2016-06-27', '2016-09-27', 11200.25, NULL, 11200.25, 0.00, 11200.25, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.658494+00', 6518400.00, 0.00, 6518400.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (258, '2500215493', '0400041526', '2016-06-24', 'SSFA', 'XAF', 'FR APE RADIO COMMUNAUTAIRE DE MONGO', '2016-04-01', '2016-12-31', 4222.17, NULL, 4222.17, 0.00, 4270.89, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.725684+00', 2484800.00, 0.00, 2485600.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (280, '2500212820', '0400042359', '2016-07-28', 'Programme Document Against PCA', 'XAF', 'FR PCA 0015/2016/PROGWASH/SIF 1ERE TRANCHE', '2016-07-31', '2016-10-31', 153519.45, NULL, 153519.45, 0.00, 153505.68, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.874966+00', 90722625.00, 0.00, 90722625.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (261, '2500224893', '0400042608', '2016-08-09', 'SSFA', 'XAF', 'FINANCEMENT REQUETE EHA SITE GAOUI', '2016-08-15', '2016-11-15', 33843.70, NULL, 33843.70, 0.00, 33843.70, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.913816+00', 20000000.00, 0.00, 20000000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (279, '2500232850', '0400044346', '2016-10-17', 'SSFA', 'XAF', 'FIN MISE EN OEUVRE ACTIVITÉS ACPV - CELIAF - SARH', '2016-10-01', '2016-12-31', 3347.05, NULL, 3347.05, 0.00, 3380.45, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.161013+00', 2010000.00, 0.00, 2010000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (901, '2500233086', '0400059125', '2018-03-30', 'Programme Document Against PCA', 'XAF', 'CONSUL IBCR PR EVAL PRISE EN CHARG PSYCHO AU LAC', '2018-01-01', '2018-04-30', 0.00, NULL, 0.00, 0.00, 63821.00, '2018-04-01 00:04:59.956915+00', '2018-07-08 00:01:42.125385+00', 0.00, 0.00, 34135555.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (350, '2500223261', '0400013004', '2013-06-03', 'Programme Document Against PCA', 'USD', 'REMBOURSEMENT APE AFDI', '2013-06-03', '2013-09-03', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (916, '2500213985', '0400060606', '2018-05-29', 'Programme Document Against PCA', 'XAF', 'APPUI A LA PROTECTION DES ENFANTS AFFECTES LAC', '2018-05-29', '2018-08-29', 0.00, NULL, 0.00, 0.00, 8669.97, '2018-05-31 00:03:19.86611+00', '2018-06-01 00:02:24.406884+00', 0.00, 0.00, 4707500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (159, '2500223298', '0400020097', '2014-04-18', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT FRAIS AGENTS APPUI PSYCHOSOCIALE/JOU', '2014-04-18', '2014-04-30', 7407.13, NULL, 7407.13, 0.00, 7407.13, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.636103+00', 3531844.00, 0.00, 3531844.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (248, '2500223886', '0400020294', '2014-04-29', 'SSFA', 'XAF', 'SENSIBILISATION COMMUNAUTÉ KANEM SUR L''ANJE/AFEDD', '2014-04-29', '2014-07-29', 17763.63, NULL, 17763.63, 0.00, 17826.55, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.661551+00', 8470000.00, 0.00, 8500000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (911, '2500212780', '0400060116', '2018-05-09', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT SNDE TRANCHE PCA AVEC NDA', '2018-01-01', '2018-12-31', 32073.92, NULL, 32073.92, 0.00, 32587.22, '2018-05-17 16:21:55.670708+00', '2018-10-21 00:02:23.51491+00', 17693750.00, 0.00, 17693750.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (988, '2500213923', '0400066422', '2019-02-05', 'Programme Document Against PCA', 'XAF', 'COUT DE SUPPORT INDIRECT 7 %', '2019-02-05', '2019-03-31', 26783.65, NULL, 26783.65, 0.00, 26783.65, '2019-02-07 00:02:02.904389+00', '2019-02-09 00:03:01.840266+00', 15388386.00, 0.00, 15388386.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (314, '2500222842', '0400005023', '2012-07-18', 'SSFA', 'USD', 'FR-FINANCEMENT APE/EEMET DOBA EN FAVEUR DE LA PTME', '2012-07-18', '2012-12-31', 8256.52, NULL, 8256.52, 0.00, 8514.12, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.972313+00', 0.00, 0.00, 8514.12, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (310, '2500232531', '0400032882', '2015-08-19', 'SSFA', 'XAF', 'FR 1ERE TRANCHE PCA ADRB-BATHA', '2015-07-01', '2015-12-31', 5196.86, NULL, 5196.86, 0.00, 12958.83, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.874611+00', 3120000.00, 0.00, 7780000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (300, '2500228056', '0400033049', '2015-08-25', 'SSFA', 'XAF', 'FINANCEMENT APE PROJET COMM ET MOBSOC POLIO BEDJON', '2015-07-01', '2015-09-30', 4888.71, NULL, 4888.71, 0.00, 4888.71, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.972226+00', 2935000.00, 0.00, 2935000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (296, '2500229515', '0400039524', '2016-04-14', 'SSFA', 'XAF', 'FR AEHPT FARCHA MISE EN OEUVRE ACTIVITES ACPV', '2016-04-04', '2016-06-30', 3068.71, NULL, 3068.71, 0.00, 3080.42, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.876193+00', 1785000.00, 0.00, 1785000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (297, '2500234497', '0400039527', '2016-04-14', 'SSFA', 'XAF', 'FR ASDI POUR LA MISE EN OEUVRE DES ACTIVITÉS ACPV', '2016-04-04', '2016-06-30', 3627.44, NULL, 3627.44, 0.00, 3641.28, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.948363+00', 2110000.00, 0.00, 2110000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (359, '2500213954', '0400018609', '2014-02-18', 'Programme Document Against PCA', 'XAF', 'PAIEMT PCA NO1/13/PROT-WASH/CARE', '2014-02-18', '2014-05-30', 40623.29, NULL, 40623.29, 0.00, 40623.29, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.40686+00', 19631000.00, 0.00, 19631000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (962, '2500237522', '0400064539', '2018-11-07', 'Programme Document Against PCA', 'XAF', 'APPUI AUX COMMUNAUTES AFFECTEES PAR CRISE CENTRAFR', '2018-10-01', '2018-12-31', 705986.71, NULL, 705986.71, 0.00, 705986.71, '2018-11-09 00:02:24.968326+00', '2019-06-28 00:09:31.871+00', 407476469.00, 0.00, 407476469.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (285, '2500232850', '0400039529', '2016-04-14', 'SSFA', 'XAF', 'FR CELIA SARH LA MISE EN OEUVRE ACTIVITÉS ACPV', '2016-04-04', '2016-06-30', 3500.22, NULL, 3500.22, 0.00, 3513.57, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.987163+00', 2036000.00, 0.00, 2036000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (312, '2500228056', '0400039530', '2016-04-14', 'SSFA', 'XAF', 'FR ASSOCIATION NEREMADJI DE BEDIONDO - ACT ACPV', '2016-04-04', '2016-06-30', 3699.65, NULL, 3699.65, 0.00, 3713.76, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.037669+00', 2152000.00, 0.00, 2152000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (315, '2500232204', '0400039531', '2016-04-14', 'SSFA', 'XAF', 'FR CELIF MONGO - ACTIVITES ACPV', '2016-04-04', '2016-06-30', 4588.46, NULL, 4588.46, 0.00, 4605.96, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.0622+00', 2669000.00, 0.00, 2669000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (284, '2500219691', '0400039538', '2016-04-14', 'SSFA', 'XAF', 'FR RADIO FM LOTIKO MISE EN OEUVRE ACPV', '2016-04-04', '2016-06-30', 2183.34, NULL, 2183.34, 0.00, 2191.67, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.142196+00', 1270000.00, 0.00, 1270000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (282, '2500234767', '0400041076', '2016-06-10', 'SSFA', 'XAF', 'FINANCEMENT 1ERE TRANCHE SSFA ASSOCIATION WENAKLAB', '2016-06-10', '2016-06-13', 12374.50, NULL, 12374.50, 0.00, 12240.57, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.912285+00', 7201800.00, 0.00, 7201800.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (306, '2500232394', '0400041776', '2016-07-05', 'Programme Document Against PCA', 'XAF', 'FR APE UNION DES FEMMES POUR LA PAIX 2', '2016-04-01', '2016-12-31', 24264.72, NULL, 24264.72, 0.00, 24682.07, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.618675+00', 14640000.00, 0.00, 14640000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (287, '2500227181', '0400042820', '2016-08-18', 'SSFA', 'XAF', 'RENFORC DE CAPACITÉ EN MISE EN SCENE & ECRITURE', '2016-08-18', '2016-11-30', 10076.60, NULL, 10076.60, 0.00, 10076.60, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.86605+00', 5918000.00, 0.00, 5918000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (319, '2500234517', '0400044317', '2016-10-17', 'SSFA', 'XAF', 'FIN. APE PROJET COMMUNAUTAIRE PR ''INFORMATION/EDUC', '2016-10-17', '2017-01-17', 3694.39, NULL, 3694.39, 0.00, 3694.39, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.366894+00', 2196667.00, 0.00, 2196667.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (311, '2500219691', '0400044922', '2016-11-03', 'SSFA', 'XAF', 'FIN. MISE EN OEUVRE DE L''ACPV FM LOTIKO', '2016-11-03', '2017-02-03', 1470.14, NULL, 1470.14, 0.00, 1477.03, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.990428+00', 887000.00, 0.00, 887000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (303, '2500234557', '0400045250', '2016-11-14', 'SSFA', 'XAF', 'FINANCEMENT 2EME TRANCHE GROUPEMENT ALINGUE', '2016-11-14', '2017-02-14', 3430.87, NULL, 3430.87, 0.00, 3446.97, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.249391+00', 2070000.00, 0.00, 2070000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (301, '2500228510', '0400046510', '2016-12-13', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ERE TRANCHE PCA ALIMA', '2016-12-13', '2017-03-13', 203386.21, NULL, 203386.21, 0.00, 203386.21, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.488201+00', 125671320.00, 0.00, 125671320.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1032, '2500228854', '0400068702', '2019-05-28', 'SSFA', 'XAF', 'APPUI ACTIVITE CONTINUE DE COMMUNICATION', '2019-05-28', '2019-08-25', 8071.49, NULL, 8071.49, 0.00, 8092.53, '2019-05-30 00:03:38.36762+00', '2020-02-18 00:09:36.002314+00', 4760000.00, 0.00, 4760000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (329, '2500229637', '0400055474', '2017-11-11', 'SSFA', 'XAF', 'DEVELOPPEMENT ET REALISATION CAMPAGNES/SEANCES', '2017-11-11', '2018-02-11', 15754.18, NULL, 15754.18, 0.00, 15443.11, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.83176+00', 8720000.00, 0.00, 8720000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (134, '2500221790', '0400056990', '2017-12-27', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PROJET AMELIORATION ACCES AUX SOINS', '2017-12-27', '2018-03-27', 30012.43, NULL, 30012.43, 0.00, 30012.43, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:30.274494+00', 16612000.00, 0.00, 16612000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (359, '2500213954', '0400018609', '2014-02-18', 'Programme Document Against PCA', 'XAF', 'PAIEMT PCA NO1/13/PROT-WASH/CARE', '2014-02-18', '2014-05-30', 40623.29, NULL, 40623.29, 0.00, 40623.29, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.294849+00', 19631000.00, 0.00, 19631000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (656, '2500213920', '0400005286', '2012-07-27', 'Programme Document Against PCA', 'USD', 'RÈGLEMENT IMPAYÉS UNICEF PCA2010/CHD/11/WASH/ACF', '2012-07-13', '2012-12-31', 0.00, NULL, 0.00, 0.00, 11200.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.99402+00', 0.00, 0.00, 11200.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (516, '2500213923', '0400019761', '2014-04-03', 'Programme Document Against PCA', 'XAF', 'DECAISSMT 1E TRANCH WASH-ADRA/14', '2014-04-03', '2014-07-08', 377848.16, NULL, 377848.16, 0.00, 377848.16, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.697896+00', 180164428.00, 0.00, 180164428.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (902, '2500213985', '0400059178', '2018-04-03', 'Programme Document Against PCA', 'XAF', 'FR PCA AVEC COOPI - APPUI EDUCATION DES ENFTS', '2018-01-30', '2018-08-12', 120501.00, NULL, 120501.00, 0.00, 260599.10, '2018-04-05 10:06:01.577817+00', '2018-10-27 00:02:01.728495+00', 64013143.00, 0.00, 138436758.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (992, '2500214062', '0400066633', '2019-02-18', 'Programme Document Against PCA', 'XAF', 'FR 4ÈME TRANCHE PCA ESMS', '2018-05-01', '2019-01-31', 8216.95, NULL, 8216.95, 0.00, 8216.95, '2019-02-20 00:02:19.239089+00', '2019-05-09 00:18:22.124095+00', 4721000.00, 0.00, 4721000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (918, '2500213943', '0400060676', '2018-05-31', 'SSFA', 'XAF', 'FINANCEMENT PRODUCTION RAPPORTSPERIODIQUES,CONVENT', '2018-05-31', '2018-08-30', 11685.18, NULL, 11685.18, 0.00, 12150.85, '2018-06-02 00:02:29.363639+00', '2019-01-01 00:02:04.315032+00', 6597500.00, 0.00, 6597500.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (965, '2500224593', '0400064638', '2018-11-12', 'SSFA', 'XAF', 'PROJET DE PROMOTION DES DROITS ET DE LA PARTICIPAT', '2018-11-12', '2019-02-12', 14013.13, NULL, 14013.13, 0.00, 14013.13, '2018-11-14 00:01:58.829485+00', '2019-03-19 14:20:23.608137+00', 8088000.00, 0.00, 8088000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (381, '2500228510', '0400020322', '2014-04-30', 'Programme Document Against PCA', 'XAF', 'VERSEMENT 1ÈRE TRANCHE PCA/ONG ALIMA/2014', '2014-04-30', '2014-07-30', 45645.86, NULL, 45645.86, 0.00, 46139.29, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.679133+00', 21764721.00, 0.00, 22000000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (793, '2500212813', '0400020407', '2014-05-05', 'SSFA', 'XAF', 'MOBILISATION SOCIALE POLIO À TRAVERS LA RADIO', '2014-05-05', '2014-12-31', 19492.56, NULL, 19492.56, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.698993+00', 9250000.00, 0.00, 9252000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (519, '2500215470', '0400019766', '2014-04-03', 'SSFA', 'XAF', 'REMBURSMT PREFINANCMT ACTIVITES/ACORD', '2014-04-03', '2014-04-03', 4783.39, NULL, 4783.39, 0.00, 4783.39, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.706891+00', 2280800.00, 0.00, 2280800.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (324, '2500220423', '0400023857', '2014-09-11', 'Programme Document Against PCA', 'XAF', 'ACTIVITÉ CHOLERA/CORRECTION LIQUIDATION', '2014-09-11', '2014-12-31', 0.00, NULL, 0.00, 0.00, 200.76, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:18.036515+00', 0.00, 0.00, 100000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (410, '2500224893', '0400020495', '2014-05-07', 'Programme Document Against PCA', 'XAF', 'DECSIMT 1E TRANCH PCA SID/CHD/2014/WASH', '2014-05-07', '2014-08-12', 36832.40, NULL, 36832.40, 0.00, 18416.20, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.756105+00', 17478450.00, 0.00, 17570450.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (588, '2500224593', '0400019939', '2014-04-10', 'SSFA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE APE/SCOUTS/VIH/SIDA', '2014-04-10', '2014-09-15', 9135.83, NULL, 9135.83, 0.00, 9185.91, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.719245+00', 4380000.00, 0.00, 4380000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (140, '2500213937', '0400020060', '2014-04-16', 'SSFA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE APE/GUIDES/VIH/SIDA', '2014-04-16', '2014-09-15', 6448.35, NULL, 6448.35, 0.00, 6417.56, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.728169+00', 3060000.00, 0.00, 3060000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (159, '2500223298', '0400020097', '2014-04-18', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT FRAIS AGENTS APPUI PSYCHOSOCIALE/JOU', '2014-04-18', '2014-04-30', 7407.13, NULL, 7407.13, 0.00, 7407.13, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.736471+00', 3531844.00, 0.00, 3531844.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (248, '2500223886', '0400020294', '2014-04-29', 'SSFA', 'XAF', 'SENSIBILISATION COMMUNAUTÉ KANEM SUR L''ANJE/AFEDD', '2014-04-29', '2014-07-29', 17763.63, NULL, 17763.63, 0.00, 17826.55, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.745547+00', 8470000.00, 0.00, 8500000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (793, '2500212813', '0400020407', '2014-05-05', 'SSFA', 'XAF', 'MOBILISATION SOCIALE POLIO À TRAVERS LA RADIO', '2014-05-05', '2014-12-31', 19492.56, NULL, 19492.56, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.766238+00', 9250000.00, 0.00, 9252000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (310, '2500232531', '0400032882', '2015-08-19', 'SSFA', 'XAF', 'FR 1ERE TRANCHE PCA ADRB-BATHA', '2015-07-01', '2015-12-31', 5196.86, NULL, 5196.86, 0.00, 12958.83, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.273344+00', 3120000.00, 0.00, 7780000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (300, '2500228056', '0400033049', '2015-08-25', 'SSFA', 'XAF', 'FINANCEMENT APE PROJET COMM ET MOBSOC POLIO BEDJON', '2015-07-01', '2015-09-30', 4888.71, NULL, 4888.71, 0.00, 4888.71, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.320177+00', 2935000.00, 0.00, 2935000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (296, '2500229515', '0400039524', '2016-04-14', 'SSFA', 'XAF', 'FR AEHPT FARCHA MISE EN OEUVRE ACTIVITES ACPV', '2016-04-04', '2016-06-30', 3068.71, NULL, 3068.71, 0.00, 3080.42, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.131242+00', 1785000.00, 0.00, 1785000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (297, '2500234497', '0400039527', '2016-04-14', 'SSFA', 'XAF', 'FR ASDI POUR LA MISE EN OEUVRE DES ACTIVITÉS ACPV', '2016-04-04', '2016-06-30', 3627.44, NULL, 3627.44, 0.00, 3641.28, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.15081+00', 2110000.00, 0.00, 2110000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (285, '2500232850', '0400039529', '2016-04-14', 'SSFA', 'XAF', 'FR CELIA SARH LA MISE EN OEUVRE ACTIVITÉS ACPV', '2016-04-04', '2016-06-30', 3500.22, NULL, 3500.22, 0.00, 3513.57, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.176733+00', 2036000.00, 0.00, 2036000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (312, '2500228056', '0400039530', '2016-04-14', 'SSFA', 'XAF', 'FR ASSOCIATION NEREMADJI DE BEDIONDO - ACT ACPV', '2016-04-04', '2016-06-30', 3699.65, NULL, 3699.65, 0.00, 3713.76, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.18662+00', 2152000.00, 0.00, 2152000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (315, '2500232204', '0400039531', '2016-04-14', 'SSFA', 'XAF', 'FR CELIF MONGO - ACTIVITES ACPV', '2016-04-04', '2016-06-30', 4588.46, NULL, 4588.46, 0.00, 4605.96, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.20797+00', 2669000.00, 0.00, 2669000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (284, '2500219691', '0400039538', '2016-04-14', 'SSFA', 'XAF', 'FR RADIO FM LOTIKO MISE EN OEUVRE ACPV', '2016-04-04', '2016-06-30', 2183.34, NULL, 2183.34, 0.00, 2191.67, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.238895+00', 1270000.00, 0.00, 1270000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (282, '2500234767', '0400041076', '2016-06-10', 'SSFA', 'XAF', 'FINANCEMENT 1ERE TRANCHE SSFA ASSOCIATION WENAKLAB', '2016-06-10', '2016-06-13', 12374.50, NULL, 12374.50, 0.00, 12240.57, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.566951+00', 7201800.00, 0.00, 7201800.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (306, '2500232394', '0400041776', '2016-07-05', 'Programme Document Against PCA', 'XAF', 'FR APE UNION DES FEMMES POUR LA PAIX 2', '2016-04-01', '2016-12-31', 24264.72, NULL, 24264.72, 0.00, 24682.07, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.83662+00', 14640000.00, 0.00, 14640000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (178, '2500223261', '0400042258', '2016-07-25', 'Programme Document Against PCA', 'XAF', 'FIN PCA 001/2016/PROG WASH/AFDI, 1ERE TRANCHE', '2016-07-31', '2016-10-31', 43031.78, NULL, 43031.78, 0.00, 43031.78, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.85623+00', 25432000.00, 0.00, 25432000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (153, '2500233810', '0400042819', '2016-08-18', 'Programme Document Against PCA', 'XAF', 'FR 1ERE TRANCHE PCA 14/2016/PROG/WASH/HELP', '2016-08-18', '2016-12-07', 177241.20, NULL, 177241.20, 0.00, 177606.97, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.922621+00', 104308750.00, 0.00, 104308750.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (287, '2500227181', '0400042820', '2016-08-18', 'SSFA', 'XAF', 'RENFORC DE CAPACITÉ EN MISE EN SCENE & ECRITURE', '2016-08-18', '2016-11-30', 10076.60, NULL, 10076.60, 0.00, 10076.60, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.931721+00', 5918000.00, 0.00, 5918000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (319, '2500234517', '0400044317', '2016-10-17', 'SSFA', 'XAF', 'FIN. APE PROJET COMMUNAUTAIRE PR ''INFORMATION/EDUC', '2016-10-17', '2017-01-17', 3694.39, NULL, 3694.39, 0.00, 3694.39, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.111637+00', 2196667.00, 0.00, 2196667.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (311, '2500219691', '0400044922', '2016-11-03', 'SSFA', 'XAF', 'FIN. MISE EN OEUVRE DE L''ACPV FM LOTIKO', '2016-11-03', '2017-02-03', 1470.14, NULL, 1470.14, 0.00, 1477.03, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.350191+00', 887000.00, 0.00, 887000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (303, '2500234557', '0400045250', '2016-11-14', 'SSFA', 'XAF', 'FINANCEMENT 2EME TRANCHE GROUPEMENT ALINGUE', '2016-11-14', '2017-02-14', 3430.87, NULL, 3430.87, 0.00, 3446.97, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.436236+00', 2070000.00, 0.00, 2070000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1094, '2500212820', '0400073882', '2020-02-11', 'Programme Document Against PCA', 'XAF', 'TRANCHE 4 PCA AVEC SIF', '2018-06-01', '2020-02-20', 97822.67, NULL, 97822.67, 97822.67, 97822.67, '2020-02-13 00:09:17.595995+00', '2020-02-21 00:49:28.566841+00', 58191183.00, 58191183.00, 58191183.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (331, '2500214088', '0400025770', '2014-11-21', 'Programme Document Against PCA', 'XAF', 'DECSIMT 2E TRANCH/PCA IRC/2014/WASH', '2014-11-21', '2015-03-19', 0.00, NULL, 0.00, 0.00, 22125.20, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:18.855543+00', 0.00, 0.00, 11652500.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (403, '2500212785', '0400004211', '2012-06-19', 'Programme Document Against PCA', 'USD', 'SSFA AVEC OPAD PR L''APPUI AUX AME/APE', '2012-07-01', '2012-09-30', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1010, '2500214085', '0400067456', '2019-03-27', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE APPUI A LA PREVENTION DE LA MALNUTRIT', '2019-01-01', '2019-03-31', 271824.93, NULL, 271824.93, 193540.60, 275695.30, '2019-03-29 00:04:55.61577+00', '2019-11-08 17:11:54.208745+00', 158983833.00, 113840000.00, 158983833.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1003, '2500213985', '0400067027', '2019-03-07', 'Programme Document Against PCA', 'XAF', '2EME TRANCHE APPUI A L''EDUCATION ET A LA PROTECTIO', '2019-03-07', '2019-06-07', 15823.74, NULL, 15823.74, 0.00, 15823.75, '2019-03-15 13:52:32.639783+00', '2019-03-15 13:52:33.47522+00', 9125000.00, 0.00, 9125000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (907, '2500221790', '0400059539', '2018-04-16', 'Programme Document Against PCA', 'XAF', 'RENF CAP EN FAV FEMMES ENCEINTE & PERS VIVANTS HIV', '2018-04-16', '2018-06-30', 30518.14, NULL, 30518.14, 0.00, 30518.14, '2018-04-18 00:06:06.009462+00', '2018-08-18 00:02:17.216053+00', 16212000.00, 0.00, 16212000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (358, '2500212780', '0400057404', '2018-01-25', 'Programme Document Against PCA', 'XAF', 'APPUI PREVENTION PRISE EN CHARGE MALNUTRITION', '2017-12-20', '2018-03-20', 45481.87, NULL, 45481.87, 0.00, 45481.87, '2018-03-15 16:10:06.407235+00', '2018-08-02 00:01:50.591171+00', 24970000.00, 0.00, 24970000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (385, '2500213965', '0400005299', '2012-07-27', 'SSFA', 'USD', 'FR-FINANCEMENT APE/CENTREYALNA PREVENTION VIH/SIDA', '2012-07-27', '2012-12-31', 6405.33, NULL, 6405.33, 0.00, 6575.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:13.013503+00', 0.00, 0.00, 6600.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (340, '2500231377', '0400028762', '2015-03-11', 'SSFA', 'XAF', 'PAIEMENT SSA 001/HDS/15 APPUI PIQURES SCORPIONS/BE', '2015-03-11', '2015-05-30', 15775.12, NULL, 15775.12, 0.00, 16708.34, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:20.716416+00', 9763000.00, 0.00, 9763000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (356, '2500224893', '0400029963', '2015-04-29', 'SSFA', 'XAF', 'PROMOTION ASSAINISSEMENT/HYGIENE SITUATION URGENCE', '2015-04-21', '2015-07-21', 17233.36, NULL, 17233.36, 0.00, 16887.48, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.034931+00', 10220000.00, 0.00, 10220000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (352, '2500213943', '0400031162', '2015-06-10', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 1ERE TRANCHE PCA/2015/APLFT/PROTECTION', '2015-01-26', '2015-12-31', 158801.34, NULL, 158801.34, 0.00, 158801.34, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.302634+00', 95627311.00, 0.00, 95627311.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (325, '2500225658', '0400033796', '2015-09-21', 'Programme Document Against PCA', 'XAF', 'ACTIVITE SENSIB HYGIENE,LATRINE A BAGASSOLA/ADERBA', '2015-09-01', '2015-11-30', 9643.74, NULL, 9643.74, 0.00, 9643.74, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.506995+00', 5625000.00, 0.00, 5625000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (357, '2500230253', '0400036690', '2015-12-18', 'SSFA', 'XAF', 'APPUI SCOLAIRE &PSYCHOSOCIAL AUX OEV', '2015-12-01', '2016-03-31', 13113.73, NULL, 13113.73, 0.00, 13113.73, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.243412+00', 7830000.00, 0.00, 7830000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (342, '2500225658', '0400038695', '2016-03-15', 'Programme Document Against PCA', 'XAF', 'FR PCA WASH/ADERBA', '2016-03-07', '2016-12-31', 50037.28, NULL, 50037.28, 0.00, 50037.28, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.693731+00', 29360675.00, 0.00, 29360675.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (339, '2500234540', '0400039743', '2016-04-21', 'SSFA', 'XAF', 'FR SSFA GROUP COMM SOLIDARITE MOUNDOU ACT ACPV', '2016-04-01', '2016-12-31', 4154.65, NULL, 4154.65, 0.00, 4154.65, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.228176+00', 2416667.00, 0.00, 2416667.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (330, '2500233646', '0400040514', '2016-05-19', 'SSFA', 'XAF', 'FR POUR ENCADREMENT DU CLUB DE REPORTERS DE JEUNES', '2016-04-08', '2016-12-31', 1882.14, NULL, 1882.14, 0.00, 1882.14, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.774021+00', 1089000.00, 0.00, 1089000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (328, '2500214085', '0400046675', '2016-12-20', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE PCA003/2016/PROG/WASH/IAS', '2016-12-14', '2017-05-01', 105499.32, NULL, 105499.32, 0.00, 105499.32, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.662679+00', 65187500.00, 0.00, 65187500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1034, '2500218808', '0400068859', '2019-06-03', 'Programme Document Against PCA', 'XAF', 'FR PCA D''URGENCE 05 PCA PRO INTERSOS', '2019-06-03', '2019-09-03', 132127.75, 18, 132127.75, 0.00, 132127.75, '2019-06-05 00:03:35.134019+00', '2020-03-11 00:08:16.870551+00', 77919696.00, 0.00, 77919696.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (674, '2500223093', '0400005346', '2012-07-31', 'SSFA', 'USD', 'FONDS POUR SSFA CHOLÉRA/ACPJ (BONGOR)', '2012-07-15', '2012-12-31', 18746.41, NULL, 18746.41, 0.00, 20000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.486242+00', 0.00, 0.00, 20577.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (347, '2500212780', '0400048173', '2017-02-27', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2E TRANCHE PCA/CSNDA/2016', '2017-02-27', '2017-05-31', 27352.35, NULL, 27352.35, 0.00, 27520.02, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.834813+00', 16919998.00, 0.00, 16919998.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (355, '2500228112', '0400048631', '2017-03-09', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE PCA IHDL. PAQUET PRISE EN CHARGE ENFT', '2017-03-09', '2017-06-09', 91668.93, NULL, 91668.93, 0.00, 91668.93, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.080188+00', 56705850.00, 0.00, 56705850.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (354, '2500214085', '0400049675', '2017-04-18', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME TRANCHE PCA IAS', '2017-04-18', '2017-07-18', 72408.14, NULL, 72408.14, 0.00, 72408.14, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.256589+00', 44757500.00, 0.00, 44757500.00, false, false, false); @@ -10866,52 +11553,64 @@ INSERT INTO [[schema]].funds_fundsreservationheader VALUES (923, '2500213923', ' INSERT INTO [[schema]].funds_fundsreservationheader VALUES (933, '2500225653', '0400062000', '2018-07-25', 'Programme Document Against PCA', 'XAF', 'SENSIB COMMU & ACCES SOINS DES ENFTS MOINS DE 5ANS', '2018-07-25', '2018-10-25', 73040.41, NULL, 73040.41, 0.00, 72254.00, '2018-07-27 00:01:29.697088+00', '2019-04-06 00:03:51.562506+00', 40935864.00, 0.00, 40935864.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (364, '2500213939', '0400016417', '2013-11-05', 'Programme Document Against PCA', 'XAF', 'PRISE EN CHARGE OEVS', '2013-11-05', '2013-11-30', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:14.648188+00', 0.00, 0.00, 6605300.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (905, '2500233143', '0400059361', '2018-04-10', 'Programme Document Against PCA', 'XAF', 'FR PCA AVEC CELIAF DU LAC', '2018-01-30', '2018-07-31', 31064.05, NULL, 31064.05, 0.00, 31064.05, '2018-04-12 00:05:37.509422+00', '2018-11-21 00:01:57.539613+00', 16502000.00, 0.00, 16502000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (338, '2500223261', '0400020816', '2014-05-19', 'Programme Document Against PCA', 'XAF', 'DECSIMT PCANO8 AFDI/CHD/2014/WASH', '2014-05-19', '2014-07-25', 144738.21, NULL, 144738.21, 0.00, 75416.24, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.820883+00', 71576046.00, 0.00, 71576046.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1032, '2500228854', '0400068702', '2019-05-28', 'SSFA', 'XAF', 'APPUI ACTIVITE CONTINUE DE COMMUNICATION', '2019-05-28', '2019-08-25', 8071.49, NULL, 8071.49, 8071.49, 8092.53, '2019-05-30 00:03:38.36762+00', '2019-09-11 00:05:33.081371+00', 4760000.00, 4760000.00, 4760000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1034, '2500218808', '0400068859', '2019-06-03', 'Programme Document Against PCA', 'XAF', 'FR PCA D''URGENCE 05 PCA PRO INTERSOS', '2019-06-03', '2019-09-03', 132127.75, NULL, 132127.75, 95611.90, 132127.75, '2019-06-05 00:03:35.134019+00', '2019-09-22 00:08:06.300718+00', 77919696.00, 56385204.00, 77919696.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1007, '2500238464', '0400067214', '2019-03-18', 'Programme Document Against PCA', 'XAF', '1ERE T PCA N 04/2019/NUTRITION/ASRADD', '2019-03-18', '2019-03-31', 239353.86, NULL, 239353.86, 11901.42, 239471.79, '2019-03-19 14:20:23.485614+00', '2019-10-13 00:15:40.791876+00', 138095000.00, 6870000.00, 138095000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (504, '2500226117', '0400020820', '2014-05-19', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT DE LA 2EME TRANCHE PCA IBCR', '2014-05-19', '2014-05-30', 42288.70, NULL, 42288.70, 0.00, 42985.31, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.868669+00', 20398249.00, 0.00, 20398249.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1063, '2500218808', '0400071898', '2019-10-30', 'Programme Document Against PCA', 'XAF', 'FR 05/ PCA/PRO/INTERSOS 2019', '2019-05-10', '2020-01-09', 157249.51, 18, 157249.51, 157249.51, 157249.51, '2019-10-31 00:31:28.793275+00', '2019-11-02 00:32:53.682997+00', 94286021.00, 94286021.00, 94286021.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1087, '2500237165', '0400073255', '2019-12-26', 'Programme Document Against PCA', 'XAF', 'REMBTRANCHE DE NOVEMBRE -DECEMBRE 2019 - WVISION', '2019-10-01', '2019-12-31', 7016.00, NULL, 7016.00, 0.00, 7016.00, '2019-12-28 00:20:52.864406+00', '2020-01-02 00:22:12.969298+00', 4183432.00, 0.00, 4183432.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1010, '2500214085', '0400067456', '2019-03-27', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE APPUI A LA PREVENTION DE LA MALNUTRIT', '2019-01-01', '2019-03-31', 271824.93, NULL, 271824.93, 0.00, 275695.30, '2019-03-29 00:04:55.61577+00', '2019-12-18 00:12:21.366737+00', 158983833.00, 0.00, 158983833.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (867, '2500215493', '0400020414', '2014-05-05', 'SSFA', 'XAF', 'MOBILISATION SOCIALE POLIO À TRAVERS LA RADIO', '2014-05-05', '2014-12-31', 12664.90, NULL, 12664.90, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.775369+00', 6010000.00, 0.00, 6010000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (909, '2500213985', '0400059885', '2018-04-30', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA AVEC COOPI EDUCATION', '2018-04-30', '2018-07-30', 140098.10, NULL, 140098.10, 0.00, 140098.10, '2018-05-02 00:01:38.434856+00', '2018-12-16 00:02:05.283645+00', 74423615.00, 0.00, 74423615.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (914, '2500214085', '0400060495', '2018-05-24', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME TRANCHE', '2018-05-24', '2018-08-24', 32163.77, NULL, 32163.77, 0.00, 32163.77, '2018-05-26 00:03:15.828705+00', '2018-09-06 00:05:27.66783+00', 17463833.00, 0.00, 17463833.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (921, '2500213985', '0400060880', '2018-06-08', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE POUR LA REPONSES URGENCE PROTECTION', '2018-06-08', '2018-09-08', 126056.83, NULL, 126056.83, 0.00, 118604.44, '2018-06-10 00:04:09.783062+00', '2019-02-07 00:02:03.039585+00', 66964543.00, 0.00, 66964543.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (674, '2500223093', '0400005346', '2012-07-31', 'SSFA', 'USD', 'FONDS POUR SSFA CHOLÉRA/ACPJ (BONGOR)', '2012-07-15', '2012-12-31', 18746.41, NULL, 18746.41, 0.00, 20000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:13.033048+00', 0.00, 0.00, 20577.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1001, '2500213937', '0400067004', '2019-03-07', 'Programme Document Against PCA', 'XAF', '21/PCA/2018/COMMUNICATION/AGT', '2019-03-07', '2019-03-31', 11373.75, NULL, 11373.75, 0.00, 11271.71, '2019-03-15 13:52:32.63958+00', '2019-08-09 00:05:26.672683+00', 6500000.00, 0.00, 6500000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (410, '2500224893', '0400020495', '2014-05-07', 'Programme Document Against PCA', 'XAF', 'DECSIMT 1E TRANCH PCA SID/CHD/2014/WASH', '2014-05-07', '2014-08-12', 36832.40, NULL, 36832.40, 0.00, 18416.20, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.785599+00', 17478450.00, 0.00, 17570450.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (338, '2500223261', '0400020816', '2014-05-19', 'Programme Document Against PCA', 'XAF', 'DECSIMT PCANO8 AFDI/CHD/2014/WASH', '2014-05-19', '2014-07-25', 144738.21, NULL, 144738.21, 0.00, 75416.24, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.820687+00', 71576046.00, 0.00, 71576046.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (340, '2500231377', '0400028762', '2015-03-11', 'SSFA', 'XAF', 'PAIEMENT SSA 001/HDS/15 APPUI PIQURES SCORPIONS/BE', '2015-03-11', '2015-05-30', 15775.12, NULL, 15775.12, 0.00, 16708.34, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.835486+00', 9763000.00, 0.00, 9763000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (356, '2500224893', '0400029963', '2015-04-29', 'SSFA', 'XAF', 'PROMOTION ASSAINISSEMENT/HYGIENE SITUATION URGENCE', '2015-04-21', '2015-07-21', 17233.36, NULL, 17233.36, 0.00, 16887.48, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.952001+00', 10220000.00, 0.00, 10220000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (352, '2500213943', '0400031162', '2015-06-10', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 1ERE TRANCHE PCA/2015/APLFT/PROTECTION', '2015-01-26', '2015-12-31', 158801.34, NULL, 158801.34, 0.00, 158801.34, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.037009+00', 95627311.00, 0.00, 95627311.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (325, '2500225658', '0400033796', '2015-09-21', 'Programme Document Against PCA', 'XAF', 'ACTIVITE SENSIB HYGIENE,LATRINE A BAGASSOLA/ADERBA', '2015-09-01', '2015-11-30', 9643.74, NULL, 9643.74, 0.00, 9643.74, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.535626+00', 5625000.00, 0.00, 5625000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (357, '2500230253', '0400036690', '2015-12-18', 'SSFA', 'XAF', 'APPUI SCOLAIRE &PSYCHOSOCIAL AUX OEV', '2015-12-01', '2016-03-31', 13113.73, NULL, 13113.73, 0.00, 13113.73, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.885853+00', 7830000.00, 0.00, 7830000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (342, '2500225658', '0400038695', '2016-03-15', 'Programme Document Against PCA', 'XAF', 'FR PCA WASH/ADERBA', '2016-03-07', '2016-12-31', 50037.28, NULL, 50037.28, 0.00, 50037.28, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.062192+00', 29360675.00, 0.00, 29360675.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (339, '2500234540', '0400039743', '2016-04-21', 'SSFA', 'XAF', 'FR SSFA GROUP COMM SOLIDARITE MOUNDOU ACT ACPV', '2016-04-01', '2016-12-31', 4154.65, NULL, 4154.65, 0.00, 4154.65, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.274816+00', 2416667.00, 0.00, 2416667.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (330, '2500233646', '0400040514', '2016-05-19', 'SSFA', 'XAF', 'FR POUR ENCADREMENT DU CLUB DE REPORTERS DE JEUNES', '2016-04-08', '2016-12-31', 1882.14, NULL, 1882.14, 0.00, 1882.14, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.528807+00', 1089000.00, 0.00, 1089000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (54, '2500213943', '0400043261', '2016-09-06', 'Programme Document Against PCA', 'XAF', 'FINANCMENT SNDE TRANCHE PCA/APLFT ( ADECIV BATHA)', '2016-09-01', '2016-12-26', 200213.55, NULL, 200213.55, 0.00, 200213.55, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.950026+00', 117828278.00, 0.00, 117828278.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (328, '2500214085', '0400046675', '2016-12-20', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE PCA003/2016/PROG/WASH/IAS', '2016-12-14', '2017-05-01', 105499.32, NULL, 105499.32, 0.00, 105499.32, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.604996+00', 65187500.00, 0.00, 65187500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1100, '2500240134', '0400074359', '2020-03-05', 'Programme Document Against PCA', 'XAF', 'FR 3EME TRANCHE ONG APDI', '2020-05-01', '2020-06-30', 31480.85, NULL, 31480.85, 31480.85, 31480.85, '2020-03-07 00:04:58.981551+00', '2020-03-12 00:20:29.515713+00', 18784750.00, 18784750.00, 18784750.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (414, '2500213991', '0400014209', '2013-07-23', 'SSFA', 'XAF', 'REMBOURSEMENT APE/Nº007/PRO/POLIO/CRT/2013', '2013-07-23', '2013-09-30', 0.00, NULL, 0.00, 0.00, 3025.13, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (446, '2500221790', '0400009465', '2012-12-27', 'Programme Document Against PCA', 'USD', 'FC-FINANCEMENT 3ÈME TRANCHE PCA RNTAP+', '2012-12-27', '2013-06-30', 0.00, NULL, 0.00, 0.00, 23515.90, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (950, '2500228112', '0400063104', '2018-09-13', 'Programme Document Against PCA', 'XAF', '2E TRANCHE PCA 001/2017/PROG/PROTECTION/IHDL', '2018-09-13', '2018-09-20', 35591.39, NULL, 35591.39, 0.00, 35591.39, '2018-09-15 00:01:57.072454+00', '2019-03-07 16:43:13.30281+00', 20026100.00, 0.00, 20026100.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (397, '2500215479', '0400053996', '2017-09-14', 'Programme Document Against PCA', 'XAF', 'REPONSE URG CHOLERA À KOUKOU-ANGARANA', '2017-09-14', '2017-12-31', 129272.69, NULL, 129272.69, 0.00, 258545.39, '2018-03-15 16:10:06.407235+00', '2018-05-17 16:21:55.754049+00', 70541006.00, 0.00, 141082012.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (970, '2500221790', '0400064738', '2018-11-15', 'Programme Document Against PCA', 'XAF', 'FR FINANCEMENT DE LA 4ÈME TRANCHE DU PCA RNTAP', '2017-12-15', '2018-12-14', 32246.84, NULL, 32246.84, 0.00, 32246.83, '2018-11-17 00:02:07.558636+00', '2019-03-15 13:52:32.728027+00', 18612000.00, 0.00, 18612000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (392, '2500224893', '0400009266', '2012-12-18', 'SSFA', 'USD', 'FONDS POUR MISE EN OEUV APE/UNICEF/SID NDJAMENA', '2012-12-20', '2013-03-20', 19040.28, NULL, 19040.28, 0.00, 19050.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.834136+00', 0.00, 0.00, 19050.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1017, '2500213943', '0400068011', '2019-04-25', 'Programme Document Against PCA', 'XAF', 'RENFORCEMENT SYSTEME PROTECTION EN FAVEUR DES ENFA', '2019-04-25', '2019-07-25', 38942.74, NULL, 38942.74, 0.00, 39354.82, '2019-04-27 00:05:11.934777+00', '2019-05-19 00:05:23.903561+00', 22906000.00, 0.00, 22906000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (374, '2500232403', '0400032063', '2015-07-15', 'SSFA', 'XAF', 'FORMATION/PRODUCTION MAGAZINES JRC/RADIO FM LIBERT', '2015-07-15', '2015-12-31', 5728.54, NULL, 5728.54, 0.00, 5728.54, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.698883+00', 3400000.00, 0.00, 3400000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (376, '2500232402', '0400032064', '2015-07-15', 'SSFA', 'XAF', 'FINANCEMENT APE RADIO KAR UBA- SOLEIL/COMMUNICATIO', '2015-04-16', '2015-12-31', 5155.69, NULL, 5155.69, 0.00, 5155.69, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.72728+00', 3060000.00, 0.00, 3060000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (375, '2500232394', '0400032065', '2015-07-15', 'SSFA', 'XAF', 'FINANCEMENT APE UNION DES FEMMES POUR LA PAIX/COM', '2015-07-03', '2016-12-31', 17690.08, NULL, 17690.08, 0.00, 17690.08, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.756976+00', 10499400.00, 0.00, 10499400.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (393, '2500228063', '0400033048', '2015-08-25', 'SSFA', 'XAF', 'FINANCEMENT APE FEMININ DE MOISSALA', '2015-07-01', '2015-12-31', 4847.07, NULL, 4847.07, 0.00, 4635.53, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.95011+00', 2910000.00, 0.00, 2783000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (366, '2500213923', '0400033822', '2015-09-22', 'Programme Document Against PCA', 'XAF', 'FR POUR PAIEMENT 5ÈME TRANCHE PCA ADRA', '2015-07-01', '2015-12-31', 140813.71, NULL, 140813.71, 0.00, 140813.71, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.524714+00', 82133821.00, 0.00, 82133821.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (405, '2500233321', '0400034908', '2015-11-03', 'SSFA', 'XAF', 'FIN ACCORD A PETITE ECHELLE RADIO EFFATA & UNICEF', '2015-08-07', '2015-12-31', 3876.71, NULL, 3876.71, 0.00, 3876.71, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.747988+00', 2320000.00, 0.00, 2320000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (373, '2500213943', '0400036110', '2015-12-07', 'Programme Document Against PCA', 'XAF', 'FIN ACTIVITE 5.1.2,ENREGISTREMENT DES NAISSANCES', '2015-01-01', '2015-12-31', 219208.30, NULL, 219208.30, 0.00, 219208.30, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.943628+00', 135921421.00, 0.00, 135921421.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (396, '2500233727', '0400039842', '2016-04-26', 'SSFA', 'XAF', 'FINANCEMENT SSFA CDVT', '2016-04-26', '2016-07-26', 9828.48, NULL, 9828.48, 0.00, 9828.48, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.315564+00', 5717001.00, 0.00, 5717001.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (399, '2500229712', '0400039844', '2016-04-26', 'SSFA', 'XAF', 'FINANCEMENT SSFA JOURNAL COCORICO', '2016-04-26', '2016-07-26', 6876.67, NULL, 6876.67, 0.00, 6876.67, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.337703+00', 4000000.00, 0.00, 4000000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (388, '2500232845', '0400039847', '2016-04-26', 'SSFA', 'XAF', 'FR MISE EN OEUVRE ACT ACPV -AVLCM', '2016-04-11', '2016-12-31', 3850.93, NULL, 3850.93, 0.00, 3850.93, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.37594+00', 2240000.00, 0.00, 2240000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (377, '2500225602', '0400040867', '2016-06-02', 'Programme Document Against PCA', 'XAF', 'FR 4EME TRANCHE PCA 05/WASH/ATPCS-2015', '2015-07-23', '2016-12-31', 26662.05, NULL, 26662.05, 0.00, 26662.05, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.824231+00', 15686750.00, 0.00, 15686750.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (394, '2500214085', '0400041177', '2016-06-14', 'Programme Document Against PCA', 'XAF', 'FR PAIEMENT SECONDE TRANCHE PCA WASH/IAS 3', '2016-03-10', '2016-06-30', 5223.48, NULL, 5223.48, 0.00, 6586.60, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.975629+00', 3040000.00, 0.00, 3875260.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (402, '2500218272', '0400041206', '2016-06-15', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT DSA ET TRANSPORT PART MISSION CELIAF', '2015-07-23', '2016-12-31', 1845.95, NULL, 1845.95, 0.00, 1845.95, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.012475+00', 1074319.00, 0.00, 1074319.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (367, '2500212828', '0400041299', '2016-06-17', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA N#11/CHD/PROG/WASH/ATV/2016', '2016-06-20', '2016-09-20', 133668.53, NULL, 133668.53, 0.00, 133698.79, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.062896+00', 77810955.00, 0.00, 77810955.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (368, '2500233143', '0400041659', '2016-06-29', 'SSFA', 'XAF', 'FR APE CELIAF - N''DJAMENA', '2016-04-01', '2016-11-30', 24378.61, NULL, 24378.61, 0.00, 24845.92, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.376214+00', 14460000.00, 0.00, 14460000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (392, '2500224893', '0400009266', '2012-12-18', 'SSFA', 'USD', 'FONDS POUR MISE EN OEUV APE/UNICEF/SID NDJAMENA', '2012-12-20', '2013-03-20', 19040.28, NULL, 19040.28, 0.00, 19050.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.047376+00', 0.00, 0.00, 19050.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (400, '2500228510', '0400055205', '2017-11-02', 'Programme Document Against PCA', 'XAF', 'APPUI AUTONOMISATION DU FONCTIONNEMENT UNT HME', '2017-10-19', '2018-01-18', 71389.39, NULL, 71389.39, 0.00, 71389.39, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.721086+00', 40310233.00, 0.00, 40310233.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (417, '2500228048', '0400019466', '2014-03-24', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PCA/ AILS/COORD(COMPLEMEN', '2014-03-24', '2014-12-31', 13232.60, NULL, 13232.60, 0.00, 13232.60, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.017292+00', 6344120.00, 0.00, 6344120.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (293, '2500223261', '0400005879', '2012-08-22', 'Programme Document Against PCA', 'USD', 'FR POUR PAIEMENTS PCA2012/13/CHD/WASH/AFDI', '2012-08-01', '2013-01-31', 37301.80, NULL, 37301.80, 0.00, 84000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:13.164162+00', 0.00, 0.00, 44000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (417, '2500228048', '0400019466', '2014-03-24', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PCA/ AILS/COORD(COMPLEMEN', '2014-03-24', '2014-12-31', 13232.60, NULL, 13232.60, 0.00, 13232.60, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.665273+00', 6344120.00, 0.00, 6344120.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (925, '2500213985', '0400061143', '2018-06-20', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 2NDE TRANCHE PCA COOPI - AVENANT 04', '2018-02-26', '2018-06-30', 68816.19, NULL, 68816.19, 0.00, 68816.19, '2018-06-22 00:03:22.704289+00', '2018-10-30 14:00:53.5556+00', 38280590.00, 0.00, 38280590.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (864, '2500219686', '0400055672', '2017-11-17', 'SSFA', 'XAF', '1ERE TRANCHE SSFA AVEC CSJEFOD', '2017-11-17', '2017-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-11-06 16:46:32.925289+00', 0.00, 0.00, 5425129.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (939, '2500221790', '0400062426', '2018-08-14', 'Programme Document Against PCA', 'XAF', 'PROJET AMELIORATION ACCES AUX SOINS RNTAP +', '2018-08-14', '2018-11-14', 24579.29, NULL, 24579.29, 0.00, 25179.54, '2018-08-16 00:01:48.226186+00', '2018-11-28 00:01:56.139598+00', 14112000.00, 0.00, 14112000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (379, '2500234300', '0400049998', '2017-04-27', 'Programme Document Against PCA', 'XAF', 'RÉPONSES ÉDUCATIVES D’URGENCE /PCA AHA', '2017-04-01', '2017-06-30', 35323.47, NULL, 35323.47, 0.00, 44065.79, '2018-03-15 16:10:06.407235+00', '2019-01-10 00:02:01.146395+00', 21347600.00, 0.00, 27238296.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (370, '2500213923', '0400027525', '2015-01-27', 'Programme Document Against PCA', 'XAF', 'DECSIMT 3E TRANCHPCA 2014/06/CHD/WASH/ADRA', '2015-01-27', '2015-03-30', 312376.71, NULL, 312376.71, 0.00, 324117.71, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.470385+00', 180788646.00, 0.00, 180788646.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (28, '2500237165', '0400052738', '2017-07-24', 'SSFA', 'XAF', 'DVPT MISE EN OEUVRE ACTIV RENFORCEMENT CONNAISSANC', '2017-05-15', '2017-08-15', 34218.14, NULL, 34218.14, 0.00, 34218.14, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.769984+00', 19722000.00, 0.00, 19722000.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1060, '2500238464', '0400071491', '2019-10-14', 'Programme Document Against PCA', 'XAF', 'PAIEMENT TRANCHE 3 DU PCA AVEC ASRADD', '2019-03-01', '2020-02-29', 80112.41, NULL, 80112.41, 80112.41, 80112.41, '2019-10-16 00:15:08.28184+00', '2019-10-20 00:31:09.66754+00', 48035000.00, 48035000.00, 48035000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1098, '2500225653', '0400074171', '2020-02-25', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT PREFINANCEMENT ACTIVITES ICCM MENTHO', '2020-02-25', '2020-02-29', 135934.20, NULL, 135934.20, 0.00, 136354.66, '2020-02-27 00:53:07.538591+00', '2020-03-14 00:06:06.502245+00', 81112479.00, 0.00, 81112479.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (953, '2500219686', '0400063252', '2018-09-19', 'SSFA', 'XAF', 'FINANCEMENT SSFA PREVENTION VIH SIDA ET DEPISTAGE', '2018-09-19', '2018-12-19', 33718.43, NULL, 33718.43, 0.00, 33718.43, '2018-09-21 00:01:34.158449+00', '2019-03-02 00:15:29.258559+00', 18972250.00, 0.00, 18972250.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1011, '2500227539', '0400067461', '2019-03-28', 'SSFA', 'XAF', 'RENF SYST PROTEC EN FAV DES ENFTS AFFEC PAR CRISE', '2019-03-28', '2019-06-30', 39132.67, NULL, 39132.67, 0.00, 39655.61, '2019-03-30 00:05:51.58231+00', '2019-11-16 00:08:41.418317+00', 22868000.00, 0.00, 22868000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (996, '2500213985', '0400066990', '2019-03-06', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT COUT SUPPORT INDIRECT', '2019-03-06', '2019-06-06', 26647.16, NULL, 26647.16, 0.00, 26647.16, '2019-03-07 18:04:16.048378+00', '2019-03-15 13:52:32.809023+00', 15366484.00, 0.00, 15366484.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (444, '2500221790', '0400016712', '2013-11-19', 'Programme Document Against PCA', 'XAF', 'RNTAP+/SOUTIEN PSYCHO-S DES PVVIH/APPUI PSYCHOLOGI', '2013-11-19', '2013-12-31', 0.00, NULL, 0.00, 0.00, 35911.34, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:14.73315+00', 0.00, 0.00, 17573000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1021, '2500237473', '0400068169', '2019-05-06', 'Programme Document Against PCA', 'XAF', '7% DU 2E TRANCHE DES COUTS SUPPORT INDIRECT', '2019-05-06', '2019-06-30', 22138.29, NULL, 22138.29, 0.00, 22151.50, '2019-05-08 00:22:03.977594+00', '2019-11-12 15:01:57.535834+00', 13029448.00, 0.00, 13029448.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1025, '2500237473', '0400068296', '2019-05-10', 'Programme Document Against PCA', 'XAF', 'APPUI AUX COMMUNAUTES AFFECTEES PAR LA CRISE CENTR', '2019-05-10', '2019-08-10', 279203.59, NULL, 279203.59, 0.00, 279203.59, '2019-05-12 00:03:23.02666+00', '2019-12-07 00:08:35.592918+00', 164226714.00, 0.00, 164226714.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (370, '2500213923', '0400027525', '2015-01-27', 'Programme Document Against PCA', 'XAF', 'DECSIMT 3E TRANCHPCA 2014/06/CHD/WASH/ADRA', '2015-01-27', '2015-03-30', 312376.71, NULL, 312376.71, 0.00, 324117.71, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.775823+00', 180788646.00, 0.00, 180788646.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (374, '2500232403', '0400032063', '2015-07-15', 'SSFA', 'XAF', 'FORMATION/PRODUCTION MAGAZINES JRC/RADIO FM LIBERT', '2015-07-15', '2015-12-31', 5728.54, NULL, 5728.54, 0.00, 5728.54, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.196003+00', 3400000.00, 0.00, 3400000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (376, '2500232402', '0400032064', '2015-07-15', 'SSFA', 'XAF', 'FINANCEMENT APE RADIO KAR UBA- SOLEIL/COMMUNICATIO', '2015-04-16', '2015-12-31', 5155.69, NULL, 5155.69, 0.00, 5155.69, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.206635+00', 3060000.00, 0.00, 3060000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (393, '2500228063', '0400033048', '2015-08-25', 'SSFA', 'XAF', 'FINANCEMENT APE FEMININ DE MOISSALA', '2015-07-01', '2015-12-31', 4847.07, NULL, 4847.07, 0.00, 4635.53, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.310024+00', 2910000.00, 0.00, 2783000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (366, '2500213923', '0400033822', '2015-09-22', 'Programme Document Against PCA', 'XAF', 'FR POUR PAIEMENT 5ÈME TRANCHE PCA ADRA', '2015-07-01', '2015-12-31', 140813.71, NULL, 140813.71, 0.00, 140813.71, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.544885+00', 82133821.00, 0.00, 82133821.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (405, '2500233321', '0400034908', '2015-11-03', 'SSFA', 'XAF', 'FIN ACCORD A PETITE ECHELLE RADIO EFFATA & UNICEF', '2015-08-07', '2015-12-31', 3876.71, NULL, 3876.71, 0.00, 3876.71, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.677119+00', 2320000.00, 0.00, 2320000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (373, '2500213943', '0400036110', '2015-12-07', 'Programme Document Against PCA', 'XAF', 'FIN ACTIVITE 5.1.2,ENREGISTREMENT DES NAISSANCES', '2015-01-01', '2015-12-31', 219208.30, NULL, 219208.30, 0.00, 219208.30, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.758938+00', 135921421.00, 0.00, 135921421.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (396, '2500233727', '0400039842', '2016-04-26', 'SSFA', 'XAF', 'FINANCEMENT SSFA CDVT', '2016-04-26', '2016-07-26', 9828.48, NULL, 9828.48, 0.00, 9828.48, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.310273+00', 5717001.00, 0.00, 5717001.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (399, '2500229712', '0400039844', '2016-04-26', 'SSFA', 'XAF', 'FINANCEMENT SSFA JOURNAL COCORICO', '2016-04-26', '2016-07-26', 6876.67, NULL, 6876.67, 0.00, 6876.67, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.318492+00', 4000000.00, 0.00, 4000000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (388, '2500232845', '0400039847', '2016-04-26', 'SSFA', 'XAF', 'FR MISE EN OEUVRE ACT ACPV -AVLCM', '2016-04-11', '2016-12-31', 3850.93, NULL, 3850.93, 0.00, 3850.93, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.328302+00', 2240000.00, 0.00, 2240000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (377, '2500225602', '0400040867', '2016-06-02', 'Programme Document Against PCA', 'XAF', 'FR 4EME TRANCHE PCA 05/WASH/ATPCS-2015', '2015-07-23', '2016-12-31', 26662.05, NULL, 26662.05, 0.00, 26662.05, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.547905+00', 15686750.00, 0.00, 15686750.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (394, '2500214085', '0400041177', '2016-06-14', 'Programme Document Against PCA', 'XAF', 'FR PAIEMENT SECONDE TRANCHE PCA WASH/IAS 3', '2016-03-10', '2016-06-30', 5223.48, NULL, 5223.48, 0.00, 6586.60, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.594716+00', 3040000.00, 0.00, 3875260.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (402, '2500218272', '0400041206', '2016-06-15', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT DSA ET TRANSPORT PART MISSION CELIAF', '2015-07-23', '2016-12-31', 1845.95, NULL, 1845.95, 0.00, 1845.95, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.604433+00', 1074319.00, 0.00, 1074319.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (367, '2500212828', '0400041299', '2016-06-17', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA N#11/CHD/PROG/WASH/ATV/2016', '2016-06-20', '2016-09-20', 133668.53, NULL, 133668.53, 0.00, 133698.79, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.622537+00', 77810955.00, 0.00, 77810955.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (368, '2500233143', '0400041659', '2016-06-29', 'SSFA', 'XAF', 'FR APE CELIAF - N''DJAMENA', '2016-04-01', '2016-11-30', 24378.61, NULL, 24378.61, 0.00, 24845.92, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.743489+00', 14460000.00, 0.00, 14460000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (301, '2500228510', '0400046510', '2016-12-13', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ERE TRANCHE PCA ALIMA', '2016-12-13', '2017-03-13', 203386.21, NULL, 203386.21, 0.00, 203386.21, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.537326+00', 125671320.00, 0.00, 125671320.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (428, '2500237165', '0400053213', '2017-08-10', 'Programme Document Against PCA', 'XAF', '7% COUTS SUP INDIRECT DES ACTIV EDUCATIVES DE WVT', '2017-08-10', '2017-08-15', 0.00, NULL, 0.00, 0.00, 2475.24, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:28.66043+00', 0.00, 0.00, 1380540.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (938, '2500215479', '0400062416', '2018-08-14', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT 7% COUTS INDIRECTS PROGRAMME', '2018-08-14', '2018-10-30', 8810.47, NULL, 8810.47, 0.00, 8810.47, '2018-08-16 00:01:48.225779+00', '2018-08-19 00:01:38.832593+00', 4937870.00, 0.00, 4937870.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (473, '2500213964', '0400013131', '2013-06-06', 'Programme Document Against PCA', 'USD', 'PAIEMENT INTEGRALE APE CELIAF ABÉCHÉ', '2013-06-06', '2013-09-03', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); @@ -10921,26 +11620,11 @@ INSERT INTO [[schema]].funds_fundsreservationheader VALUES (484, '2500215472', ' INSERT INTO [[schema]].funds_fundsreservationheader VALUES (977, '2500237165', '0400065147', '2018-12-03', 'Programme Document Against PCA', 'XAF', 'FR 3EME TRANCHE PCA AVEC WORLD VISION', '2018-10-01', '2018-10-31', 23505.59, NULL, 23505.59, 0.00, 23505.59, '2018-12-05 00:02:01.5167+00', '2019-03-20 16:42:44.2952+00', 13552475.00, 0.00, 13552475.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1049, '2500221790', '0400070590', '2019-08-29', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT PERDIEM PERSONNES RESSOURCES C4D', '2019-08-29', '2019-08-31', 3036.60, NULL, 3036.60, 0.00, 3070.35, '2019-08-31 00:26:49.763824+00', '2019-10-30 00:29:44.713+00', 1800000.00, 0.00, 1800000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1008, '2500237165', '0400067389', '2019-03-25', 'Programme Document Against PCA', 'XAF', 'CFS 1ERE TRANCHE 2/PCA/2018/NUTRITION/WORLDVISION', '2019-03-25', '2019-03-31', 0.00, NULL, 0.00, 0.00, 13912.69, '2019-03-27 00:05:10.438888+00', '2019-03-31 00:04:52.106331+00', 0.00, 0.00, 8022960.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1020, '2500224554', '0400068145', '2019-05-03', 'SSFA', 'XAF', 'APPUI ACT COMM ET MOB SOC SUR VACC ENTRE LES CAMP', '2019-05-03', '2019-12-01', 5062.93, NULL, 5062.93, 5062.93, 5062.93, '2019-05-05 00:22:25.834114+00', '2019-05-12 00:03:23.118991+00', 2978000.00, 2978000.00, 2978000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (172, '2500223336', '0400005907', '2012-08-22', 'SSFA', 'USD', 'FR POUR PAIEMENTS N°SSFA/03/WASH-NDJ/UP', '2012-08-20', '2012-10-20', 5742.99, NULL, 5742.99, 0.00, 20000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:13.207769+00', 0.00, 0.00, 20000.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (420, '2500221193', '0400027919', '2015-02-11', 'Programme Document Against PCA', 'XAF', 'FACE PAYMENT 3ÈME TRANCHE/PCA 2014/10/ONG BASE', '2015-02-11', '2015-05-31', 107458.64, NULL, 107458.64, 0.00, 114910.45, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:20.586828+00', 66504650.00, 0.00, 62197650.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (433, '2500232402', '0400032969', '2015-08-21', 'SSFA', 'XAF', 'PAIEMENT ACCORD RADIO KAR UBA MOUNDOU ET UNICEF', '2015-08-21', '2015-11-21', 8461.55, NULL, 8461.55, 0.00, 8461.55, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.927429+00', 5080000.00, 0.00, 5080000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (436, '2500232849', '0400033526', '2015-09-10', 'SSFA', 'XAF', 'FR FIN APE APPUI MOBSOC ENTRE CTLCEF / UNICEF', '2015-07-01', '2015-09-30', 15729.15, NULL, 15729.15, 0.00, 15729.15, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.443219+00', 9174500.00, 0.00, 9174500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (449, '2500212828', '0400034991', '2015-11-05', 'Programme Document Against PCA', 'XAF', 'FR PCA/11/2014/PRO/WASH/CELIAF 6ÈME TRANCHE', '2015-11-05', '2015-12-31', 17226.44, NULL, 17226.44, 0.00, 17226.44, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.768385+00', 10309097.00, 0.00, 10309097.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (416, '2500214062', '0400037886', '2016-02-17', 'Programme Document Against PCA', 'XAF', 'FR POUR REMBOURSEMENT DES 7% COUTS INDIRECT PCA/06', '2016-06-01', '2016-12-31', 15311.02, NULL, 15311.02, 0.00, 15311.02, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.428738+00', 8853460.00, 0.00, 8853460.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (442, '2500227181', '0400038830', '2016-03-18', 'SSFA', 'XAF', 'FR ACCORD PETITE ECHELLE AVEC CIE HADRE DOUNIA', '2016-03-01', '2016-03-31', 10532.13, NULL, 10532.13, 0.00, 10532.13, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.72009+00', 6180000.00, 0.00, 6180000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (409, '2500234517', '0400039745', '2016-04-21', 'SSFA', 'XAF', 'FR DE SSFA UNION DE GROUP FEM DE BÉRÉ ACT ACPV', '2016-04-07', '2016-09-30', 4291.33, NULL, 4291.33, 0.00, 4154.65, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.24926+00', 2496167.00, 0.00, 2416667.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (439, '2500233645', '0400040168', '2016-05-09', 'SSFA', 'XAF', 'FINANCEMENT SSFA ENCADREMENT CLUB JEUNES REPORTERS', '2016-05-09', '2016-08-09', 1825.10, NULL, 1825.10, 0.00, 1825.10, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.505356+00', 1056000.00, 0.00, 1056000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (438, '2500212813', '0400040169', '2016-05-09', 'SSFA', 'XAF', 'FINANCEMENT SSFA ENCADREMENT CLUB JEUNES REPORTERS', '2016-05-09', '2016-08-09', 1762.88, NULL, 1762.88, 0.00, 1762.88, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.530028+00', 1020000.00, 0.00, 1020000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (425, '2500225602', '0400042260', '2016-07-25', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA EXTENTION ATPC ET PF DS SALAMAT', '2016-07-31', '2016-10-31', 18658.42, NULL, 18658.42, 0.00, 18579.75, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.686806+00', 10980725.00, 0.00, 10980725.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (445, '2500234736', '0400045535', '2016-11-22', 'SSFA', 'XAF', 'FINANCEMENT ACPV RADIO KADAYE DE BOL', '2016-04-15', '2016-12-31', 1688.92, NULL, 1688.92, 0.00, 1688.92, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.271361+00', 1019000.00, 0.00, 1019000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (720, '2500214090', '0400000071', '2012-01-23', 'Programme Document Against PCA', 'USD', 'DCT COMPLEMENT 2ÈRE TRANCHE PCA CHOLÉRA IRW', '2011-09-01', '2012-02-28', 77475.22, NULL, 77475.22, 0.00, 395775.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:51.793944+00', 0.00, 0.00, 79156.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (408, '2500236867', '0400052139', '2017-07-03', 'SSFA', 'XAF', 'FR PROJET TRANSFORMATION PACIFIQUE DES CONFLITS', '2017-04-25', '2017-10-31', 15416.55, NULL, 15416.55, 0.00, 15103.38, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.162409+00', 8705000.00, 0.00, 8705000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (423, '2500214085', '0400053533', '2017-08-24', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA IAS', '2017-08-24', '2017-11-24', 13048.04, NULL, 13048.04, 0.00, 12809.23, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.469101+00', 7120000.00, 0.00, 7120000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (447, '2500228112', '0400054170', '2017-09-21', 'Programme Document Against PCA', 'XAF', 'APPUI À LA CRÉATION D’UN ENVIRONNEMENT PROTECTEUR', '2017-09-21', '2017-12-21', 248683.29, NULL, 248683.29, 0.00, 253426.58, '2018-03-15 16:10:06.407235+00', '2018-07-20 00:01:40.308896+00', 138288800.00, 0.00, 138288800.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (472, '2500221169', '0400006419', '2012-09-12', 'Programme Document Against PCA', 'USD', 'FINANCEMENT ACCORD A PETITE ECHELLE CRT', '2012-09-12', '2012-12-05', 15302.28, NULL, 15302.28, 0.00, 15330.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:13.944913+00', 0.00, 0.00, 15330.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (503, '2500224402', '0400020823', '2014-05-19', 'SSFA', 'XAF', 'APE POUR LA SENSIBILISATION DE WASH DARASALAM', '2014-06-01', '2014-11-30', 16967.72, NULL, 16967.72, 0.00, 17269.36, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.8947+00', 8184500.00, 0.00, 8195000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (129, '2500220441', '0400020890', '2014-05-21', 'SSFA', 'XAF', 'MOBILISATION SOCIALE À TRAVERS LES RADIOS, N''DJIMI', '2014-05-21', '2014-12-30', 12459.65, NULL, 12459.65, 0.00, 12664.90, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.916425+00', 6010000.00, 0.00, 6010000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (620, '2500214088', '0400021029', '2014-05-26', 'Programme Document Against PCA', 'XAF', '2EME VERSEMENT PCA AVEC IRC POUR RETOURNÉS RCA', '2014-05-26', '2014-08-26', 106043.63, NULL, 106043.63, 0.00, 65853.25, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.938706+00', 51150886.00, 0.00, 52373697.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (503, '2500224402', '0400020823', '2014-05-19', 'SSFA', 'XAF', 'APE POUR LA SENSIBILISATION DE WASH DARASALAM', '2014-06-01', '2014-11-30', 16967.72, NULL, 16967.72, 0.00, 17269.36, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.85751+00', 8184500.00, 0.00, 8195000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (971, '2500228587', '0400064751', '2018-11-15', 'Programme Document Against PCA', 'XAF', 'AMELIORATION ACCES AUX INTRANTS NUTRIONNELS', '2018-11-15', '2018-12-31', 39611.00, NULL, 39611.00, 0.00, 39611.00, '2018-11-17 00:02:07.559415+00', '2019-04-27 00:05:12.073975+00', 22862398.00, 0.00, 22862398.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1004, '2500228510', '0400067011', '2019-03-07', 'Programme Document Against PCA', 'XAF', 'APPUI PREVENTION ET TRAITEMENT DE LA MALNUTRITION', '2019-01-01', '2019-03-31', 39463.15, NULL, 39463.15, 0.00, 39496.91, '2019-03-15 13:52:32.639862+00', '2019-07-22 00:05:34.263722+00', 22776486.00, 0.00, 22776486.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (460, '2500224422', '0400030936', '2015-06-02', 'Programme Document Against PCA', 'XAF', 'PCA N°16/SFCG/2014/PRO-PEACE BUILDING & EDUCATION', '2014-08-21', '2015-08-31', 0.00, NULL, 0.00, 0.00, 79075.42, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:19.718883+00', 0.00, 0.00, 47617793.00, false, false, false); @@ -10949,77 +11633,73 @@ INSERT INTO [[schema]].funds_fundsreservationheader VALUES (481, '2500230977', ' INSERT INTO [[schema]].funds_fundsreservationheader VALUES (485, '2500221169', '0400036087', '2015-12-07', 'Programme Document Against PCA', 'XAF', 'ACTIVITE CONSTRUCTION SDC &SFC/PCA N 22/CRT', '2015-12-07', '2015-12-31', 0.00, NULL, 0.00, 0.00, 3185.81, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:21.851747+00', 0.00, 0.00, 1975381.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (465, '2500213917', '0400037658', '2016-02-11', 'SSFA', 'XAF', 'FINANCEMENT SSFA ARED 2EME TRANCHE', '2016-02-11', '2016-05-11', 0.00, NULL, 0.00, 0.00, 14536.85, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:22.405451+00', 0.00, 0.00, 8725000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (469, '2500214090', '0400049975', '2017-04-26', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT CONTROLE EPIDEMIE HEPATITE E, SALAMAT', '2017-04-26', '2017-04-26', 0.00, NULL, 0.00, 0.00, 144542.88, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:27.633749+00', 0.00, 0.00, 89346000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1059, '2500237165', '0400071402', '2019-10-09', 'Programme Document Against PCA', 'XAF', 'PRISE EN CHARGE NUT DES ENFTS 06 A 59 MOIS', '2019-10-09', '2019-12-31', 99672.81, NULL, 99672.81, 99672.81, 99672.81, '2019-10-11 00:15:21.121246+00', '2019-10-15 00:15:19.674339+00', 59763319.00, 59763319.00, 59763319.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1086, '2500212787', '0400073240', '2019-12-24', 'Programme Document Against PCA', 'XAF', '7% COUT SUPPORT INDIRECT DU PROGRAMME', '2019-12-24', '2019-12-31', 4838.02, NULL, 4838.02, 0.00, 4838.02, '2019-12-26 01:46:35.506023+00', '2019-12-26 01:46:36.025985+00', 2884767.00, 0.00, 2884767.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (129, '2500220441', '0400020890', '2014-05-21', 'SSFA', 'XAF', 'MOBILISATION SOCIALE À TRAVERS LES RADIOS, N''DJIMI', '2014-05-21', '2014-12-30', 12459.65, NULL, 12459.65, 0.00, 12664.90, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.866541+00', 6010000.00, 0.00, 6010000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (620, '2500214088', '0400021029', '2014-05-26', 'Programme Document Against PCA', 'XAF', '2EME VERSEMENT PCA AVEC IRC POUR RETOURNÉS RCA', '2014-05-26', '2014-08-26', 106043.63, NULL, 106043.63, 0.00, 65853.25, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.876517+00', 51150886.00, 0.00, 52373697.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (420, '2500221193', '0400027919', '2015-02-11', 'Programme Document Against PCA', 'XAF', 'FACE PAYMENT 3ÈME TRANCHE/PCA 2014/10/ONG BASE', '2015-02-11', '2015-05-31', 107458.64, NULL, 107458.64, 0.00, 114910.45, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.797624+00', 66504650.00, 0.00, 62197650.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (433, '2500232402', '0400032969', '2015-08-21', 'SSFA', 'XAF', 'PAIEMENT ACCORD RADIO KAR UBA MOUNDOU ET UNICEF', '2015-08-21', '2015-11-21', 8461.55, NULL, 8461.55, 0.00, 8461.55, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.300524+00', 5080000.00, 0.00, 5080000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (436, '2500232849', '0400033526', '2015-09-10', 'SSFA', 'XAF', 'FR FIN APE APPUI MOBSOC ENTRE CTLCEF / UNICEF', '2015-07-01', '2015-09-30', 15729.15, NULL, 15729.15, 0.00, 15729.15, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.517129+00', 9174500.00, 0.00, 9174500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (449, '2500212828', '0400034991', '2015-11-05', 'Programme Document Against PCA', 'XAF', 'FR PCA/11/2014/PRO/WASH/CELIAF 6ÈME TRANCHE', '2015-11-05', '2015-12-31', 17226.44, NULL, 17226.44, 0.00, 17226.44, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.686193+00', 10309097.00, 0.00, 10309097.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (416, '2500214062', '0400037886', '2016-02-17', 'Programme Document Against PCA', 'XAF', 'FR POUR REMBOURSEMENT DES 7% COUTS INDIRECT PCA/06', '2016-06-01', '2016-12-31', 15311.02, NULL, 15311.02, 0.00, 15311.02, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.958092+00', 8853460.00, 0.00, 8853460.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (442, '2500227181', '0400038830', '2016-03-18', 'SSFA', 'XAF', 'FR ACCORD PETITE ECHELLE AVEC CIE HADRE DOUNIA', '2016-03-01', '2016-03-31', 10532.13, NULL, 10532.13, 0.00, 10532.13, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.073158+00', 6180000.00, 0.00, 6180000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (409, '2500234517', '0400039745', '2016-04-21', 'SSFA', 'XAF', 'FR DE SSFA UNION DE GROUP FEM DE BÉRÉ ACT ACPV', '2016-04-07', '2016-09-30', 4291.33, NULL, 4291.33, 0.00, 4154.65, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.283961+00', 2496167.00, 0.00, 2416667.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (439, '2500233645', '0400040168', '2016-05-09', 'SSFA', 'XAF', 'FINANCEMENT SSFA ENCADREMENT CLUB JEUNES REPORTERS', '2016-05-09', '2016-08-09', 1825.10, NULL, 1825.10, 0.00, 1825.10, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.381429+00', 1056000.00, 0.00, 1056000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (438, '2500212813', '0400040169', '2016-05-09', 'SSFA', 'XAF', 'FINANCEMENT SSFA ENCADREMENT CLUB JEUNES REPORTERS', '2016-05-09', '2016-08-09', 1762.88, NULL, 1762.88, 0.00, 1762.88, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.389818+00', 1020000.00, 0.00, 1020000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (425, '2500225602', '0400042260', '2016-07-25', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA EXTENTION ATPC ET PF DS SALAMAT', '2016-07-31', '2016-10-31', 18658.42, NULL, 18658.42, 0.00, 18579.75, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.865962+00', 10980725.00, 0.00, 10980725.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (445, '2500234736', '0400045535', '2016-11-22', 'SSFA', 'XAF', 'FINANCEMENT ACPV RADIO KADAYE DE BOL', '2016-04-15', '2016-12-31', 1688.92, NULL, 1688.92, 0.00, 1688.92, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.447476+00', 1019000.00, 0.00, 1019000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (205, '2500213920', '0400049081', '2017-03-24', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT ACTIVITES PCA ACF SUR CHOLERA', '2017-03-24', '2017-06-24', 96745.65, NULL, 96745.65, 0.00, 97591.42, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.673134+00', 59481644.00, 0.00, 60001644.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (495, '2500221790', '0400051795', '2017-06-19', 'Programme Document Against PCA', 'XAF', 'PROJET AMELIORATION ACCES AUX SOINS/UTILISATION', '2017-06-19', '2017-09-19', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (510, '2500221169', '0400017340', '2013-12-10', 'Programme Document Against PCA', 'XAF', 'CFS GRANT SM 130125 REMBOURSEMENT 3E T. PCA/CRT/12', '2013-12-10', '2013-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (512, '2500223261', '0400038828', '2016-03-18', 'Programme Document Against PCA', 'XAF', 'FINANCMENT 1ERE TRANCHE PCA AVEC AFDI 2', '2016-03-01', '2016-06-30', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (219, '2500214062', '0400057948', '2018-02-19', 'Programme Document Against PCA', 'XAF', '1ERE T VULGARISAT@ APPRO ASSAINI PAR ATPC À MANDAL', '2018-02-19', '2018-05-31', 37597.59, NULL, 37597.59, 0.00, 33808.62, '2018-03-15 16:10:06.407235+00', '2018-10-14 00:01:56.742453+00', 19845813.00, 0.00, 17845813.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (497, '2500213957', '0400004960', '2012-07-16', 'Programme Document Against PCA', 'USD', 'REVUE CONJOINTE SEMESTRIELLE ET REMBOURSEMENT', '2012-07-16', '2012-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:10.45445+00', 0.00, 0.00, 5200.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1052, '2500240664', '0400071091', '2019-09-23', 'Programme Document Against PCA', 'XAF', '18/PCA/2019/WASH/ASD', '2019-09-23', '2020-01-31', 96909.53, NULL, 96909.63, 96909.53, 96909.63, '2019-09-25 00:10:29.68795+00', '2019-10-03 00:08:22.917067+00', 57842100.00, 57842100.00, 57842160.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1020, '2500224554', '0400068145', '2019-05-03', 'SSFA', 'XAF', 'APPUI ACT COMM ET MOB SOC SUR VACC ENTRE LES CAMP', '2019-05-03', '2019-12-01', 5062.93, NULL, 5062.93, 0.00, 5062.93, '2019-05-05 00:22:25.834114+00', '2019-12-28 00:20:52.91169+00', 2978000.00, 0.00, 2978000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (944, '2500228112', '0400062567', '2018-08-20', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT APPUI AUX ENFANTS AFFECTES CRISE RCA', '2018-08-20', '2018-08-21', 49400.67, NULL, 49400.67, 0.00, 49400.67, '2018-08-28 13:22:20.10213+00', '2018-08-28 13:22:21.820835+00', 28363000.00, 0.00, 28363000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (478, '2500213923', '0400031123', '2015-06-09', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT TRIMESTRE 4 PCA 2014/ADRA/WASH', '2015-06-09', '2015-08-30', 431878.89, NULL, 431878.89, 0.00, 431879.22, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.276617+00', 260069694.00, 0.00, 260069894.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (448, '2500214062', '0400032334', '2015-07-27', 'Programme Document Against PCA', 'XAF', 'PCA Nº06/CHD/PROG/WASH/ESME/2015', '2015-07-27', '2015-12-31', 55128.40, NULL, 55128.40, 0.00, 55128.40, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.801739+00', 32719750.00, 0.00, 32719750.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (459, '2500226920', '0400033258', '2015-09-02', 'Programme Document Against PCA', 'XAF', 'PAIEMENT SECONDE TRANCHE PCA UNICEF-ACCRA', '2014-10-01', '2015-10-31', 152066.59, NULL, 152066.59, 0.00, 152066.59, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.060666+00', 88697399.00, 0.00, 88697399.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (456, '2500232774', '0400033314', '2015-09-03', 'SSFA', 'XAF', 'FINANCEMENT APE ASBCS', '2015-07-01', '2015-09-30', 7991.02, NULL, 7991.02, 0.00, 7991.02, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.106403+00', 4661000.00, 0.00, 4661000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (457, '2500232786', '0400033316', '2015-09-03', 'SSFA', 'XAF', 'FINANCEMENT APE - ARIADA', '2015-07-01', '2015-09-30', 4713.69, NULL, 4713.69, 0.00, 4713.69, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.128112+00', 2749400.00, 0.00, 2749400.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (458, '2500232773', '0400033317', '2015-09-03', 'SSFA', 'XAF', 'FINANCEMENT APE - AFMD - DANAMADJI', '2015-07-01', '2015-09-30', 4890.45, NULL, 4890.45, 0.00, 4890.45, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.153018+00', 2852500.00, 0.00, 2852500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (452, '2500221791', '0400033491', '2015-09-09', 'SSFA', 'XAF', 'FR 1ERE TRANCHE PCA ENTRE A.D.N/UNICEF', '2015-08-01', '2015-10-31', 1239.03, NULL, 1239.03, 0.00, 1239.03, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.370015+00', 722700.00, 0.00, 722700.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (453, '2500000156', '0400034899', '2015-11-03', 'Programme Document Against PCA', 'XAF', 'FR POUR PAIEMENT SECONDE TRANCHE PCA CORD', '2015-09-01', '2015-12-31', 98941.85, NULL, 98941.85, 0.00, 98941.85, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.714182+00', 59211352.00, 0.00, 59211352.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (466, '2500234565', '0400040019', '2016-05-03', 'SSFA', 'XAF', 'MISE EN OEUVRE ACTIVITES ACPV APE CJRC DE BAGASSOL', '2016-04-11', '2016-09-30', 3871.43, NULL, 3871.43, 0.00, 3871.43, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.46177+00', 2240000.00, 0.00, 2240000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (468, '2500213985', '0400043805', '2016-09-27', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ERE TRANCHE PCA COOPI', '2016-09-27', '2016-12-27', 133093.04, NULL, 133093.04, 0.00, 132262.39, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.105442+00', 77838135.00, 0.00, 77838135.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (483, '2500213923', '0400044169', '2016-10-11', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT DU PCA ADRA', '2016-08-01', '2016-11-30', 242523.62, NULL, 242523.62, 0.00, 246568.86, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.321285+00', 144203333.00, 0.00, 144203333.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (477, '2500234494', '0400044344', '2016-10-17', 'SSFA', 'XAF', 'FIN MISE EN OEUVRE ACTIVITÉS ACPV T3 DS DE KELO', '2016-10-01', '2016-12-31', 3593.48, NULL, 3593.48, 0.00, 3593.48, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.473671+00', 2136666.00, 0.00, 2136666.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (451, '2500219686', '0400044663', '2016-10-26', 'SSFA', 'XAF', 'FIN. MISE A JOUR MICRO-PLANS E-TME DES DISTRICTS', '2016-10-26', '2017-01-26', 2910.77, NULL, 2910.77, 0.00, 2939.82, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.69108+00', 1748000.00, 0.00, 1748000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (455, '2500214010', '0400044664', '2016-10-26', 'SSFA', 'XAF', 'FIN. CAMPAGNE SENSIB. FEMMES CATHOLIQUES/JEUNES', '2016-10-26', '2017-01-26', 2759.62, NULL, 2759.62, 0.00, 2800.23, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.711062+00', 1665000.00, 0.00, 1665000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (450, '2500233727', '0400046549', '2016-12-14', 'Programme Document Against PCA', 'XAF', 'REPONSE EDUCATION URGENCES AU SUD', '2016-12-14', '2017-03-14', 19646.62, NULL, 19646.62, 0.00, 19646.62, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.561224+00', 12139550.00, 0.00, 12139550.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (467, '2500221193', '0400049593', '2017-04-13', 'Programme Document Against PCA', 'XAF', 'PRISE EN CHARGE DE LA MALNUTRITION DANS 4 DS DE WF', '2017-04-01', '2017-06-30', 87380.99, NULL, 87380.99, 0.00, 87380.99, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.189333+00', 54012639.00, 0.00, 54012639.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (499, '2500227536', '0400052688', '2017-07-21', 'SSFA', 'XAF', 'FR ASSOCIATION DES FEMMES ANNASSOUR', '2017-05-17', '2018-08-31', 15616.53, NULL, 15616.53, 0.00, 15146.76, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.270096+00', 8730000.00, 0.00, 8730000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (922, '2500228510', '0400060884', '2018-06-08', 'Programme Document Against PCA', 'XAF', 'APPUI AUTONOMISATION FONCTIONNEMENT UNT HME', '2018-06-08', '2018-09-08', 0.00, NULL, 0.00, 0.00, 71395.59, '2018-06-10 00:04:09.78326+00', '2019-01-01 00:02:04.35552+00', 0.00, 0.00, 40310233.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (524, '2500236830', '0400057598', '2018-02-06', 'Programme Document Against PCA', 'XAF', 'RENF CAP DES JEUNES SUR LES TECH DE PLAIDOYER', '2018-02-06', '2018-05-31', 16150.48, NULL, 16150.48, 0.00, 16150.48, '2018-03-15 16:10:06.407235+00', '2018-05-21 00:04:11.180219+00', 8525000.00, 0.00, 8525000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (237, '2500223298', '0400021507', '2014-06-11', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT MERLIN', '2014-06-11', '2014-07-31', 15218.59, NULL, 15218.59, 0.00, 15229.79, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.967282+00', 7346196.00, 0.00, 7346196.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (752, '2500225723', '0400021679', '2014-06-17', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 3E TRANCHE DU PCA/2013/02/CHD/EDUFOI', '2014-06-17', '2014-08-31', 15598.51, NULL, 15598.51, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.201143+00', 7529590.00, 0.00, 7529590.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (521, '2500228048', '0400019110', '2014-03-11', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PCA/ AILS/COORDINATION', '2014-03-11', '2014-12-31', 0.00, NULL, 0.00, 0.00, 29016.25, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:16.001075+00', 0.00, 0.00, 13911292.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (547, '2500223298', '0400005810', '2012-08-17', 'Programme Document Against PCA', 'USD', 'PAIEMENT 1E TRANCHE PCA2012/11/CHD/WASH/MERLIN', '2012-08-08', '2014-03-31', 54475.06, NULL, 54475.06, 0.00, 200000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:13.143573+00', 0.00, 0.00, 100000.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (404, '2500223632', '0400006557', '2012-09-18', 'SSFA', 'USD', 'FINANCEMENT PROJET COMMUNICATION STRATÉGIQUE-ASSAR', '2012-09-18', '2012-12-19', 21287.84, NULL, 21287.84, 0.00, 18452.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.060748+00', 0.00, 0.00, 27000.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (677, '2500223633', '0400006558', '2012-09-18', 'SSFA', 'USD', 'FINANCEMENT PROJET COMMUNICATION STRATÉGIQUE-SOS', '2012-09-20', '2012-12-19', 19551.71, NULL, 19551.71, 0.00, 18948.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.084544+00', 0.00, 0.00, 19620.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (390, '2500221193', '0400006801', '2012-09-25', 'Programme Document Against PCA', 'USD', '2EME TRANCHE PCA/118/ADM/BASE/2012', '2012-09-25', '2012-12-25', 116316.54, NULL, 116316.54, 0.00, 117000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.101774+00', 0.00, 0.00, 117000.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (391, '2500221883', '0400006802', '2012-09-25', 'Programme Document Against PCA', 'USD', '2EME TRANCHE PCA/06/CHD/NUT/ACTED/ALIMA/2012', '2012-09-25', '2012-12-25', 90130.41, NULL, 90130.41, 0.00, 90200.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.124689+00', 0.00, 0.00, 90000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (237, '2500223298', '0400021507', '2014-06-11', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT MERLIN', '2014-06-11', '2014-07-31', 15218.59, NULL, 15218.59, 0.00, 15229.79, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.885659+00', 7346196.00, 0.00, 7346196.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (752, '2500225723', '0400021679', '2014-06-17', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 3E TRANCHE DU PCA/2013/02/CHD/EDUFOI', '2014-06-17', '2014-08-31', 15598.51, NULL, 15598.51, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.966465+00', 7529590.00, 0.00, 7529590.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (478, '2500213923', '0400031123', '2015-06-09', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT TRIMESTRE 4 PCA 2014/ADRA/WASH', '2015-06-09', '2015-08-30', 431878.89, NULL, 431878.89, 0.00, 431879.22, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.028244+00', 260069694.00, 0.00, 260069894.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (448, '2500214062', '0400032334', '2015-07-27', 'Programme Document Against PCA', 'XAF', 'PCA Nº06/CHD/PROG/WASH/ESME/2015', '2015-07-27', '2015-12-31', 55128.40, NULL, 55128.40, 0.00, 55128.40, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.239121+00', 32719750.00, 0.00, 32719750.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (459, '2500226920', '0400033258', '2015-09-02', 'Programme Document Against PCA', 'XAF', 'PAIEMENT SECONDE TRANCHE PCA UNICEF-ACCRA', '2014-10-01', '2015-10-31', 152066.59, NULL, 152066.59, 0.00, 152066.59, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.356871+00', 88697399.00, 0.00, 88697399.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (537, '2500225905', '0400013265', '2013-06-12', 'Programme Document Against PCA', 'USD', 'PAIEMENT INTEGRALE ZOUKLAZOC', '2013-06-12', '2013-09-03', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (538, '2500219704', '0400006202', '2012-09-04', 'Programme Document Against PCA', 'USD', 'FR POUR PAIEMENT 2E TRANCHE PCA/CHORA', '2012-09-04', '2012-03-31', 0.00, NULL, 0.00, 0.00, 80000.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (551, '2500221193', '0400002844', '2012-05-09', 'Programme Document Against PCA', 'USD', 'FINANCEMENT DE LA 2EME TRANCHE PCA ONG BASE', '2012-05-01', '2013-04-30', 0.00, NULL, 0.00, 0.00, 122849.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (554, '2500214090', '0400050587', '2017-05-16', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT CONTROLE EPIDEMIE HEPATITE E, SALAMAT', '2017-05-16', '2017-08-16', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (561, '2500213951', '0400008541', '2012-11-30', 'SSFA', 'USD', 'FONDS POUR PARTICIPATION REAT A ATELIER EAA DAKAR', '2012-11-30', '2012-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (249, '2500221193', '0400021867', '2014-06-24', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT PRÉFINANCEMENT ACTIVITÉS BASE 2014', '2014-06-24', '2014-09-24', 58011.17, NULL, 58011.17, 0.00, 58069.02, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.227427+00', 28002687.00, 0.00, 28010000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (309, '2500223336', '0400007345', '2012-10-17', 'Programme Document Against PCA', 'USD', 'FR - DECAISSEMENT DEUXIEME TRANCHE PCA UP', '2012-10-17', '2013-01-18', 12227.30, NULL, 12227.30, 0.00, 12230.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.180272+00', 0.00, 0.00, 12230.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (493, '2500223261', '0400014011', '2013-07-16', 'Programme Document Against PCA', 'XAF', 'PAIEMT 1ER TRANCHE A AFDI', '2013-07-16', '2013-10-16', 48122.87, NULL, 48122.87, 0.00, 48122.87, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:15.605706+00', 24211532.00, 0.00, 50400218.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1011, '2500227539', '0400067461', '2019-03-28', 'SSFA', 'XAF', 'RENF SYST PROTEC EN FAV DES ENFTS AFFEC PAR CRISE', '2019-03-28', '2019-06-30', 39132.67, NULL, 39655.61, 0.00, 39655.61, '2019-03-30 00:05:51.58231+00', '2019-08-08 00:05:28.858246+00', 22868000.00, 0.00, 22868000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (456, '2500232774', '0400033314', '2015-09-03', 'SSFA', 'XAF', 'FINANCEMENT APE ASBCS', '2015-07-01', '2015-09-30', 7991.02, NULL, 7991.02, 0.00, 7991.02, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.377384+00', 4661000.00, 0.00, 4661000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (457, '2500232786', '0400033316', '2015-09-03', 'SSFA', 'XAF', 'FINANCEMENT APE - ARIADA', '2015-07-01', '2015-09-30', 4713.69, NULL, 4713.69, 0.00, 4713.69, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.386157+00', 2749400.00, 0.00, 2749400.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (458, '2500232773', '0400033317', '2015-09-03', 'SSFA', 'XAF', 'FINANCEMENT APE - AFMD - DANAMADJI', '2015-07-01', '2015-09-30', 4890.45, NULL, 4890.45, 0.00, 4890.45, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.396505+00', 2852500.00, 0.00, 2852500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (452, '2500221791', '0400033491', '2015-09-09', 'SSFA', 'XAF', 'FR 1ERE TRANCHE PCA ENTRE A.D.N/UNICEF', '2015-08-01', '2015-10-31', 1239.03, NULL, 1239.03, 0.00, 1239.03, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.499227+00', 722700.00, 0.00, 722700.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (453, '2500000156', '0400034899', '2015-11-03', 'Programme Document Against PCA', 'XAF', 'FR POUR PAIEMENT SECONDE TRANCHE PCA CORD', '2015-09-01', '2015-12-31', 98941.85, NULL, 98941.85, 0.00, 98941.85, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.66771+00', 59211352.00, 0.00, 59211352.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (466, '2500234565', '0400040019', '2016-05-03', 'SSFA', 'XAF', 'MISE EN OEUVRE ACTIVITES ACPV APE CJRC DE BAGASSOL', '2016-04-11', '2016-09-30', 3871.43, NULL, 3871.43, 0.00, 3871.43, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.364225+00', 2240000.00, 0.00, 2240000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (468, '2500213985', '0400043805', '2016-09-27', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ERE TRANCHE PCA COOPI', '2016-09-27', '2016-12-27', 133093.04, NULL, 133093.04, 0.00, 132262.39, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.024269+00', 77838135.00, 0.00, 77838135.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (483, '2500213923', '0400044169', '2016-10-11', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT DU PCA ADRA', '2016-08-01', '2016-11-30', 242523.62, NULL, 242523.62, 0.00, 246568.86, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.091245+00', 144203333.00, 0.00, 144203333.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (477, '2500234494', '0400044344', '2016-10-17', 'SSFA', 'XAF', 'FIN MISE EN OEUVRE ACTIVITÉS ACPV T3 DS DE KELO', '2016-10-01', '2016-12-31', 3593.48, NULL, 3593.48, 0.00, 3593.48, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.151089+00', 2136666.00, 0.00, 2136666.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (451, '2500219686', '0400044663', '2016-10-26', 'SSFA', 'XAF', 'FIN. MISE A JOUR MICRO-PLANS E-TME DES DISTRICTS', '2016-10-26', '2017-01-26', 2910.77, NULL, 2910.77, 0.00, 2939.82, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.226236+00', 1748000.00, 0.00, 1748000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (455, '2500214010', '0400044664', '2016-10-26', 'SSFA', 'XAF', 'FIN. CAMPAGNE SENSIB. FEMMES CATHOLIQUES/JEUNES', '2016-10-26', '2017-01-26', 2759.62, NULL, 2759.62, 0.00, 2800.23, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.243388+00', 1665000.00, 0.00, 1665000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (450, '2500233727', '0400046549', '2016-12-14', 'Programme Document Against PCA', 'XAF', 'REPONSE EDUCATION URGENCES AU SUD', '2016-12-14', '2017-03-14', 19646.62, NULL, 19646.62, 0.00, 19646.62, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.565131+00', 12139550.00, 0.00, 12139550.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1088, '2500240733', '0400073377', '2020-01-14', 'Programme Document Against PCA', 'XAF', 'FORM DE 100 JRC EN TECH DE PRODUCTION RADIOPHONIQ', '2020-01-14', '2020-03-31', 26317.76, 11, 26317.76, 26317.76, 26317.76, '2020-01-16 00:04:36.223861+00', '2020-01-19 00:05:48.988798+00', 15462000.00, 15462000.00, 15462000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1095, '2500240664', '0400073906', '2020-02-12', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT FINANCEMENT ACTIVITES ET FINANCEMENT', '2019-09-19', '2020-02-29', 30175.43, NULL, 30175.43, 17862.91, 30175.43, '2020-02-14 00:24:10.33855+00', '2020-02-26 00:09:11.766768+00', 17950275.00, 10626000.00, 17950275.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1096, '2500235282', '0400073949', '2020-02-14', 'SSFA', 'XAF', '2E TRANCHE 13/SSFA/2019/COM/AFA', '2020-02-14', '2020-04-30', 10237.63, NULL, 10237.63, 10237.63, 10237.63, '2020-02-18 00:09:35.894912+00', '2020-02-26 00:09:11.777266+00', 6090000.00, 6090000.00, 6090000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1090, '2500235397', '0400073418', '2020-01-15', 'SSFA', 'EUR', 'RENOUVELLEMENT CONVENTION DE NUTRIPASS AVEC UNICEF', '2018-11-12', '2019-11-30', 27036.03, NULL, 27235.17, 0.00, 41294.64, '2020-01-17 00:06:25.3628+00', '2020-03-22 00:06:43.314297+00', 24521.66, 0.00, 7500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (493, '2500223261', '0400014011', '2013-07-16', 'Programme Document Against PCA', 'XAF', 'PAIEMT 1ER TRANCHE A AFDI', '2013-07-16', '2013-10-16', 48122.87, NULL, 48122.87, 0.00, 48122.87, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.688625+00', 24211532.00, 0.00, 50400218.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (999, '2500213985', '0400067058', '2019-03-11', 'Programme Document Against PCA', 'XAF', 'PLANIFICATION SUIVI EVALUATION ET COMMUNICATION', '2019-03-11', '2019-06-11', 2592.53, NULL, 2592.53, 0.00, 2627.18, '2019-03-15 13:52:32.639334+00', '2019-04-12 17:41:32.16713+00', 1515000.00, 0.00, 1515000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1006, '2500212787', '0400067171', '2019-03-15', 'Programme Document Against PCA', 'XAF', 'APPUI POUR LA REHABILITATION DES INFRASTRUCTURES', '2019-01-01', '2019-03-31', 0.00, NULL, 0.00, 0.00, 46569.65, '2019-03-19 14:20:23.485524+00', '2019-04-12 17:41:32.184966+00', 0.00, 0.00, 26855090.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (511, '2500232382', '0400031750', '2015-07-01', 'SSFA', 'XAF', 'PAIEMENT 1ERE TRANCHE APE/APR/COMMUNICATION', '2015-05-28', '2015-12-31', 57206.41, NULL, 57206.41, 0.00, 57774.80, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.586798+00', 33894800.00, 0.00, 33894800.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (489, '2500229339', '0400034375', '2015-10-15', 'Programme Document Against PCA', 'XAF', 'FR PCANº10*2015/PROG/WASH/IDRISS', '2015-10-15', '2016-06-30', 84850.29, NULL, 84850.29, 0.00, 85768.74, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.628294+00', 50143150.00, 0.00, 50143150.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (507, '2500225602', '0400035370', '2015-11-17', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 2NDE TRANCHE 05/CHD/PROG/WASH/ATPCS', '2015-09-01', '2015-11-30', 78637.42, NULL, 78637.42, 0.00, 78637.42, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.835953+00', 47060250.00, 0.00, 47060250.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (506, '2500232204', '0400036153', '2015-12-08', 'SSFA', 'XAF', 'FINANCMENT SECONDE TRANCHE APE AVEC CELIAF- MONGO', '2015-09-01', '2015-12-31', 3064.24, NULL, 3064.24, 0.00, 3064.24, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.050581+00', 1900000.00, 0.00, 1900000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (513, '2500233032', '0400038481', '2016-03-08', 'Programme Document Against PCA', 'XAF', 'FR PCA N*09/2015/PROG/WASH/IDO', '2016-03-08', '2016-06-08', 57066.82, NULL, 57066.82, 0.00, 57066.82, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.625726+00', 34154550.00, 0.00, 34154550.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (522, '2500232848', '0400039806', '2016-04-25', 'SSFA', 'XAF', 'FR MISE EN OEUVRE ACT ACPV -ASSOCIAT NADJA MASSENY', '2016-04-07', '2016-09-30', 3524.29, NULL, 3524.29, 0.00, 3524.29, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.293442+00', 2050000.00, 0.00, 2050000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (523, '2500232213', '0400040336', '2016-05-12', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA AL-NADJA', '2016-05-12', '2016-08-12', 50397.69, NULL, 50397.69, 0.00, 50397.69, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.660543+00', 29160000.00, 0.00, 29160000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (517, '2500232204', '0400043441', '2016-09-14', 'SSFA', 'XAF', 'FINANCEMENT SSFA ACTIVITES ACPV CELIAF', '2016-09-14', '2016-12-14', 4108.66, NULL, 4108.66, 0.00, 4108.66, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.985173+00', 2418000.00, 0.00, 2418000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (492, '2500213923', '0400044167', '2016-10-11', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT DU PCA ADRA', '2016-08-01', '2016-11-30', 74778.77, NULL, 74778.77, 0.00, 76026.07, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.293207+00', 44463084.00, 0.00, 44463084.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (498, '2500214062', '0400044862', '2016-11-02', 'Programme Document Against PCA', 'XAF', 'FIN. PCA#6/CHD/PROG/WASH/ESME/2016', '2016-11-02', '2017-02-02', 35916.02, NULL, 35916.02, 0.00, 36084.50, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.891097+00', 21669750.00, 0.00, 21669750.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (491, '2500212819', '0400046264', '2016-12-08', 'Programme Document Against PCA', 'XAF', 'SURVEILLANCE PFA DANS LE DS DE BOL, BAGASSOLA, RIG', '2016-10-01', '2016-12-31', 37524.37, NULL, 37524.37, 0.00, 37524.37, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.45303+00', 23186120.00, 0.00, 23186120.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (508, '2500212828', '0400048289', '2017-03-01', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 3E TRANCHE PCA ASSOCIATION TERRE VERTE', '2017-03-01', '2017-05-31', 143864.18, NULL, 143864.18, 0.00, 143864.18, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.855246+00', 88993521.00, 0.00, 88993521.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (515, '2500233143', '0400049274', '2017-03-31', 'SSFA', 'XAF', 'APPUI ORGANISATION BI-ANNUELLE NATIONALE DE SANTE', '2017-03-31', '2017-06-30', 13366.10, NULL, 13366.10, 0.00, 13280.20, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.170331+00', 8165000.00, 0.00, 8165000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (557, '2500237165', '0400053314', '2017-08-15', 'Programme Document Against PCA', 'XAF', '7% COUTS SUP INDIRECT DES ACTIV EDUCATIVES DE WVT', '2017-05-15', '2017-08-15', 2483.66, NULL, 2483.66, 0.00, 2487.26, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.383381+00', 1380540.00, 0.00, 1382540.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (494, '2500228112', '0400055035', '2017-10-23', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT COUT DIRECT/SUPPORT DIRECT AU PROGRAMM', '2017-10-01', '2017-12-31', 8074.32, NULL, 8074.32, 0.00, 8074.32, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.655911+00', 4490000.00, 0.00, 4490000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (532, '2500228126', '0400019114', '2014-03-11', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PROJET CDLS/MOUNDOU', '2014-03-11', '2014-12-31', 6679.23, NULL, 6679.23, 0.00, 6642.81, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:19.002059+00', 3184771.00, 0.00, 5227230.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (346, '2500219704', '0400007437', '2012-10-22', 'Programme Document Against PCA', 'USD', 'PROGRAMME SANTE COMMUNAUTAIRE/SANTE/WASH/PROTECTIO', '2012-04-01', '2013-03-31', 20047.99, NULL, 20047.99, 0.00, 20000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.202287+00', 0.00, 0.00, 20000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (532, '2500228126', '0400019114', '2014-03-11', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PROJET CDLS/MOUNDOU', '2014-03-11', '2014-12-31', 6679.23, NULL, 6679.23, 0.00, 6642.81, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.566882+00', 3184771.00, 0.00, 5227230.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (936, '2500214062', '0400062395', '2018-08-13', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT DEUXIEME TRANCHE MISE EN OEUVRE ATPC', '2018-08-13', '2018-11-13', 6959.84, NULL, 6959.84, 0.00, 7129.81, '2018-08-15 00:02:05.262384+00', '2018-11-28 00:01:56.102836+00', 3995938.00, 0.00, 3995938.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (533, '2500224985', '0400011326', '2013-03-27', 'SSFA', 'USD', 'REMBOURSEMENT DE LA DERNIERE TRANCHE APE FDB', '2013-03-27', '2013-04-30', 0.00, NULL, 0.00, 0.00, 7632.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:12.540848+00', 0.00, 0.00, 7632.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (249, '2500221193', '0400021867', '2014-06-24', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT PRÉFINANCEMENT ACTIVITÉS BASE 2014', '2014-06-24', '2014-09-24', 58011.17, NULL, 58011.17, 0.00, 58069.02, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.976645+00', 28002687.00, 0.00, 28010000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (548, '2500221790', '0400016713', '2013-11-19', 'Programme Document Against PCA', 'XAF', 'RNTAP+/RECYCLAGE CPS/FORMATION MÉDIATEURS DE SANTÉ', '2013-11-19', '2013-12-31', 0.00, NULL, 0.00, 0.00, 29475.17, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:14.752918+00', 0.00, 0.00, 14423500.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (518, '2500228063', '0400018934', '2014-03-04', 'SSFA', 'XAF', 'FINANCEMENT APE Nº19/PRO/POLIO/CROIX-ROUGE - MANDO', '2014-03-04', '2014-12-31', 0.00, NULL, 0.00, 0.00, 12635.81, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:15.82689+00', 0.00, 0.00, 6058000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (539, '2500213966', '0400018648', '2014-02-19', 'SSFA', 'XAF', 'FINANCEMENT APE /CSSI', '2014-02-20', '2014-04-20', 0.00, NULL, 0.00, 0.00, 18210.22, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.262295+00', 0.00, 0.00, 8800000.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (525, '2500232403', '0400041531', '2016-06-24', 'SSFA', 'XAF', 'FR APE RADIO FM LIBERTÉ', '2016-04-01', '2016-12-31', 2096.64, NULL, 2096.64, 0.00, 4348.89, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.681888+00', 1265000.00, 0.00, 2531000.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (344, '2500223261', '0400007439', '2012-10-22', 'Programme Document Against PCA', 'USD', 'PCA 2012/13/CHD/WASH/AFDI WASH IN NUT. DS LES CNA', '2012-08-09', '2013-02-09', 39427.80, NULL, 39427.80, 0.00, 39345.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.218641+00', 0.00, 0.00, 39345.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (10, '2500221193', '0400021871', '2014-06-24', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE PCA ONG BASE DANS LE WADI FIRA 2014', '2014-06-24', '2014-09-24', 138239.83, NULL, 138239.83, 0.00, 138341.57, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.27683+00', 66730026.00, 0.00, 66730026.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (10, '2500221193', '0400021871', '2014-06-24', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE PCA ONG BASE DANS LE WADI FIRA 2014', '2014-06-24', '2014-09-24', 138239.83, NULL, 138239.83, 0.00, 138341.57, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.986804+00', 66730026.00, 0.00, 66730026.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (531, '2500229339', '0400033873', '2015-09-23', 'Programme Document Against PCA', 'XAF', 'FR DECAISSEMENT 1ERE T MIS EN OEUVRE PCA IDRISS', '2012-01-01', '2016-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:21.441617+00', 0.00, 0.00, 29440300.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (578, '2500213985', '0400051367', '2017-06-06', 'Programme Document Against PCA', 'XAF', 'APPUI A LA PROTECTION DES ENFANTS DANS 4 ILES LAC', '2017-06-06', '2017-09-06', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (598, '2500223261', '0400038820', '2016-03-17', 'Programme Document Against PCA', 'XAF', 'FINANCMENT 1ERE TRANCHE PCA AVEC AFDI 2', '2016-03-07', '2016-06-30', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); @@ -11027,26 +11707,28 @@ INSERT INTO [[schema]].funds_fundsreservationheader VALUES (591, '2500212785', ' INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1016, '2500234927', '0400067851', '2019-04-16', 'Programme Document Against PCA', 'XAF', 'APPUI TECHNIQUE DU SIEGE 7%', '2019-04-16', '2019-07-16', 7952.01, NULL, 7952.01, 0.00, 8036.16, '2019-04-18 00:04:27.131501+00', '2019-05-15 00:03:25.421422+00', 4677348.00, 0.00, 4677348.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (956, '2500235282', '0400063590', '2018-10-02', 'SSFA', 'XAF', 'PROMOTION DE VL''ALLAITEMENT MATERNEL EXCLUSIF', '2018-10-02', '2019-01-02', 19629.27, NULL, 19629.27, 0.00, 19857.36, '2018-10-05 00:01:44.349784+00', '2019-08-31 00:26:49.824874+00', 11142500.00, 0.00, 11142500.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1015, '2500212787', '0400067693', '2019-04-09', 'Programme Document Against PCA', 'XAF', 'APPUI POUR LA REHABILITATION DES INFRASTRUCTURES', '2019-04-09', '2019-07-09', 46139.75, NULL, 46139.75, 0.00, 47059.15, '2019-04-12 17:41:31.988447+00', '2019-09-08 00:04:42.484806+00', 26855090.00, 0.00, 27500000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (577, '2500224382', '0400012927', '2013-05-30', 'SSFA', 'USD', 'DECAISSEMENT 2E TRANCHE DE CAIDEL', '2013-05-30', '2013-07-31', 8919.36, NULL, 8919.36, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.758779+00', 0.00, 0.00, 9150.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (511, '2500232382', '0400031750', '2015-07-01', 'SSFA', 'XAF', 'PAIEMENT 1ERE TRANCHE APE/APR/COMMUNICATION', '2015-05-28', '2015-12-31', 57206.41, NULL, 57206.41, 0.00, 57774.80, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.158525+00', 33894800.00, 0.00, 33894800.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (489, '2500229339', '0400034375', '2015-10-15', 'Programme Document Against PCA', 'XAF', 'FR PCANº10*2015/PROG/WASH/IDRISS', '2015-10-15', '2016-06-30', 84850.29, NULL, 84850.29, 0.00, 85768.74, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.597516+00', 50143150.00, 0.00, 50143150.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (507, '2500225602', '0400035370', '2015-11-17', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 2NDE TRANCHE 05/CHD/PROG/WASH/ATPCS', '2015-09-01', '2015-11-30', 78637.42, NULL, 78637.42, 0.00, 78637.42, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.713921+00', 47060250.00, 0.00, 47060250.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (506, '2500232204', '0400036153', '2015-12-08', 'SSFA', 'XAF', 'FINANCMENT SECONDE TRANCHE APE AVEC CELIAF- MONGO', '2015-09-01', '2015-12-31', 3064.24, NULL, 3064.24, 0.00, 3064.24, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.793744+00', 1900000.00, 0.00, 1900000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (513, '2500233032', '0400038481', '2016-03-08', 'Programme Document Against PCA', 'XAF', 'FR PCA N*09/2015/PROG/WASH/IDO', '2016-03-08', '2016-06-08', 57066.82, NULL, 57066.82, 0.00, 57066.82, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.03366+00', 34154550.00, 0.00, 34154550.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (522, '2500232848', '0400039806', '2016-04-25', 'SSFA', 'XAF', 'FR MISE EN OEUVRE ACT ACPV -ASSOCIAT NADJA MASSENY', '2016-04-07', '2016-09-30', 3524.29, NULL, 3524.29, 0.00, 3524.29, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.301321+00', 2050000.00, 0.00, 2050000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (523, '2500232213', '0400040336', '2016-05-12', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA AL-NADJA', '2016-05-12', '2016-08-12', 50397.69, NULL, 50397.69, 0.00, 50397.69, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.482468+00', 29160000.00, 0.00, 29160000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (525, '2500232403', '0400041531', '2016-06-24', 'SSFA', 'XAF', 'FR APE RADIO FM LIBERTÉ', '2016-04-01', '2016-12-31', 2096.64, NULL, 2096.64, 0.00, 4348.89, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.734621+00', 1265000.00, 0.00, 2531000.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (517, '2500232204', '0400043441', '2016-09-14', 'SSFA', 'XAF', 'FINANCEMENT SSFA ACTIVITES ACPV CELIAF', '2016-09-14', '2016-12-14', 4108.66, NULL, 4108.66, 0.00, 4108.66, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.969321+00', 2418000.00, 0.00, 2418000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (492, '2500213923', '0400044167', '2016-10-11', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT DU PCA ADRA', '2016-08-01', '2016-11-30', 74778.77, NULL, 74778.77, 0.00, 76026.07, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.081567+00', 44463084.00, 0.00, 44463084.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (498, '2500214062', '0400044862', '2016-11-02', 'Programme Document Against PCA', 'XAF', 'FIN. PCA#6/CHD/PROG/WASH/ESME/2016', '2016-11-02', '2017-02-02', 35916.02, NULL, 35916.02, 0.00, 36084.50, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.323157+00', 21669750.00, 0.00, 21669750.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (491, '2500212819', '0400046264', '2016-12-08', 'Programme Document Against PCA', 'XAF', 'SURVEILLANCE PFA DANS LE DS DE BOL, BAGASSOLA, RIG', '2016-10-01', '2016-12-31', 37524.37, NULL, 37524.37, 0.00, 37524.37, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.527325+00', 23186120.00, 0.00, 23186120.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (557, '2500237165', '0400053314', '2017-08-15', 'Programme Document Against PCA', 'XAF', '7% COUTS SUP INDIRECT DES ACTIV EDUCATIVES DE WVT', '2017-05-15', '2017-08-15', 2483.66, NULL, 2483.66, 0.00, 2487.26, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.792416+00', 1380540.00, 0.00, 1382540.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1037, '2500240242', '0400069044', '2019-06-13', 'Programme Document Against PCA', 'XAF', 'MISE EN OEUVRE DE L''ATPC ET ATPE', '2019-06-13', '2019-09-13', 23754.68, NULL, 24945.90, 0.00, 23754.68, '2019-06-15 00:06:05.741717+00', '2020-01-15 00:01:36.048289+00', 14008850.00, 0.00, 14008850.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1093, '2500233143', '0400073713', '2020-01-30', 'Programme Document Against PCA', 'XAF', 'FR POUR LE PCA CELIAF 2020', '2020-04-01', '2021-06-30', 0.00, 22, 285359.53, 0.00, 289824.17, '2020-02-03 17:14:12.480354+00', '2020-04-09 00:04:15.862751+00', 0.00, 0.00, 170275175.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1099, '2500214088', '0400074269', '2020-03-02', 'Programme Document Against PCA', 'XAF', 'REMB 1ERE ET 2E TRANCHE 16/PCA/2019/IRC/NUT', '2020-03-02', '2020-06-30', 235390.93, NULL, 235390.93, 0.00, 235390.93, '2020-03-04 00:04:15.210791+00', '2020-03-12 00:20:29.506155+00', 140458707.00, 0.00, 140458707.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (889, '2500233143', '0400058455', '2018-03-07', 'Programme Document Against PCA', 'XAF', '2E TRANCHE APPUI À LA SCOLARISATION DES ENFANTS', '2018-03-07', '2018-03-22', 100615.89, NULL, 100615.89, 0.00, 100615.89, '2018-03-15 16:10:06.407235+00', '2018-08-28 13:22:20.476495+00', 53815820.00, 0.00, 53815820.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (559, '2500221169', '0400028220', '2015-02-19', 'Programme Document Against PCA', 'XAF', 'FIN.PCA Nº22/2014 WASH-EDUCATION/CRT DERN.TRANCCHE', '2015-02-03', '2015-07-31', 155613.74, NULL, 155613.74, 0.00, 166404.90, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:20.616706+00', 96307169.00, 0.00, 96307169.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (562, '2500228112', '0400029193', '2015-03-26', 'Programme Document Against PCA', 'XAF', 'DECSIMT 2E TRANCHPCA 2014/CHD/WASH/IHDL', '2015-03-26', '2015-04-30', 62262.34, NULL, 62262.34, 0.00, 60883.67, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:20.832255+00', 37680050.00, 0.00, 37680050.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (558, '2500232211', '0400032068', '2015-07-15', 'SSFA', 'XAF', 'FINANCEMENT APE ASSOCIATION TOCKODINE/MELFI/COMMUN', '2015-07-15', '2015-12-31', 5391.57, NULL, 5391.57, 0.00, 5391.57, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.778463+00', 3200000.00, 0.00, 3200000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (550, '2500228112', '0400033681', '2015-09-16', 'Programme Document Against PCA', 'XAF', 'FR PCA/2015/CHAD/PROT/IHDL', '2015-08-31', '2016-09-30', 114353.31, NULL, 114353.31, 0.00, 114353.31, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.484261+00', 66700000.00, 0.00, 66700021.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (530, '2500233645', '0400036111', '2015-12-07', 'SSFA', 'XAF', 'FR ACTIVITE 6.2.1,CAMPAGNE FIN MARIAGE DES ENFANTS', '2015-12-07', '2015-12-31', 3741.60, NULL, 3741.60, 0.00, 3741.60, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.966195+00', 2320000.00, 0.00, 2320000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (535, '2500226593', '0400036113', '2015-12-07', 'SSFA', 'XAF', 'FR ACTIVITE 6.2.6,SANTE MATER NEONATALE INFANTILE', '2015-07-03', '2015-12-31', 19957.39, NULL, 19957.39, 0.00, 19957.39, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.985724+00', 12374700.00, 0.00, 12374700.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (527, '2500232212', '0400040338', '2016-05-12', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA CELIAF DISTRICT SANITAIRE BOL/LIWA', '2016-05-12', '2016-08-12', 51624.79, NULL, 51624.79, 0.00, 51624.79, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.681979+00', 29870000.00, 0.00, 29870000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (528, '2500224655', '0400040339', '2016-05-12', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ERE TRANCHE DU PCA CEVANUTRI', '2016-05-12', '2016-08-12', 73751.12, NULL, 73751.12, 0.00, 73751.12, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.707826+00', 42672250.00, 0.00, 42672250.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (564, '2500214085', '0400044410', '2016-10-19', 'Programme Document Against PCA', 'XAF', 'FINANCMENT PCA WASH/IAS CONSTRUCT 100 POINTS D''EAU', '2016-10-19', '2017-01-19', 22784.92, NULL, 22784.92, 0.00, 22784.92, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.597424+00', 13547800.00, 0.00, 13547800.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (546, '2500234735', '0400045545', '2016-11-22', 'SSFA', 'XAF', 'DEMANDE DE FINANCEMENT', '2016-04-15', '2016-12-31', 2834.20, NULL, 2834.20, 0.00, 2834.20, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.2897+00', 1710000.00, 0.00, 1710000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (545, '2500213943', '0400048463', '2017-03-06', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT AVENANT PCA DE APLFT', '2016-12-26', '2017-03-26', 40366.65, NULL, 40366.65, 0.00, 40366.65, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.938293+00', 24970565.00, 0.00, 24970565.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (556, '2500214090', '0400051929', '2017-06-22', 'Programme Document Against PCA', 'XAF', 'COUTS SUPPORT INDIRECT DE PROGRAMME (7%)', '2017-04-01', '2017-06-30', 10671.00, NULL, 10671.00, 0.00, 10671.00, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.037212+00', 6254220.00, 0.00, 6254220.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (567, '2500232403', '0400052142', '2017-07-03', 'SSFA', 'XAF', 'FR FM LIBERTÉ', '2017-05-24', '2017-12-31', 19413.69, NULL, 19413.69, 0.00, 19019.33, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.205227+00', 10962000.00, 0.00, 10962000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (560, '2500236169', '0400056991', '2017-12-27', 'SSFA', 'XAF', 'FORMATION SPECIALISEE DES ENSEIGNANTS', '2017-12-27', '2018-03-27', 13474.16, NULL, 13474.16, 0.00, 13474.16, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:30.300728+00', 7458000.00, 0.00, 7458000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (587, '2500213939', '0400016063', '2013-10-21', 'Programme Document Against PCA', 'XAF', 'PCA 1ERE TRANCHE AILS/IR2', '2013-10-21', '2014-12-31', 0.00, NULL, 0.00, 0.00, 66543.54, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:14.370394+00', 0.00, 0.00, 32556012.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (794, '2500224893', '0400021932', '2014-06-26', 'Programme Document Against PCA', 'XAF', 'FINANCMT ACTIVITES CINE-CLUB RETOURNES RCA/ZAFAYE', '2014-06-26', '2014-07-28', 1682.16, NULL, 1682.16, 0.00, 1683.40, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.299846+00', 812000.00, 0.00, 812000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (281, '2500228510', '0400021938', '2014-06-26', 'Programme Document Against PCA', 'XAF', '2ÈME VERSEMENT PCA ALIMA 2014', '2014-06-26', '2014-09-26', 30984.87, NULL, 30984.87, 0.00, 31926.56, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.325411+00', 14956768.00, 0.00, 15400000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (247, '2500219704', '0400022033', '2014-07-01', 'Programme Document Against PCA', 'XAF', 'FINACEMENT 1ST TRANHE PCA CHORA CONSORTIUM TISSI', '2014-07-01', '2014-10-20', 27999.82, NULL, 27999.82, 0.00, 29209.96, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.351804+00', 14100000.00, 0.00, 14100000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (577, '2500224382', '0400012927', '2013-05-30', 'SSFA', 'USD', 'DECAISSEMENT 2E TRANCHE DE CAIDEL', '2013-05-30', '2013-07-31', 8919.36, NULL, 8919.36, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.497097+00', 0.00, 0.00, 9150.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1018, '2500233143', '0400068023', '2019-04-26', 'Programme Document Against PCA', 'XAF', 'FR SECONDE TRANCHE PCA AVEC CELIAF', '2018-10-01', '2019-05-30', 0.00, NULL, 0.00, 0.00, 0.00, '2019-04-28 00:04:38.377183+00', '2019-05-10 00:19:07.454562+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (569, '2500223261', '0400032037', '2015-07-14', 'Programme Document Against PCA', 'XAF', 'REGUL. DCT AFDI 1ERE TRANCHE PCA/2013', '2015-07-14', '2015-12-31', 0.00, NULL, 0.00, 0.00, 1363.63, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:20.235164+00', 0.00, 0.00, 100000000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (596, '2500232213', '0400045435', '2016-11-17', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME TRANCHE PCA ASSOCIAT. ALNADJA', '2016-08-19', '2016-11-19', 0.00, NULL, 0.00, 0.00, 12084.30, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:26.209294+00', 0.00, 0.00, 7291000.00, false, false, false); @@ -11055,39 +11737,39 @@ INSERT INTO [[schema]].funds_fundsreservationheader VALUES (594, '2500229339', ' INSERT INTO [[schema]].funds_fundsreservationheader VALUES (617, '2500233646', '0400044543', '2016-10-24', 'SSFA', 'XAF', 'FR POUR ENCADREMENT DU CLUB DE REPORTERS DE JEUNES', '2016-10-24', '2017-01-24', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1050, '2500215479', '0400070746', '2019-09-06', 'Programme Document Against PCA', 'XAF', '7% COUTS SUPPORT INDIRECT DE PROGRAMME', '2019-09-06', '2019-12-31', 18578.24, NULL, 18578.24, 0.00, 18578.24, '2019-09-08 00:04:42.422116+00', '2019-09-13 00:04:39.951422+00', 11012585.00, 0.00, 11012585.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (618, '2500212813', '0400044542', '2016-10-24', 'SSFA', 'XAF', 'FINANCEMENT SSFA ENCADREMENT CLUB JEUNES REPORTERS', '2016-10-24', '2017-01-24', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1023, '2500237522', '0400068250', '2019-05-08', 'Programme Document Against PCA', 'XAF', '4E T APPUI AUX COMMUNAUTES AFFECTEES PAR CRISE RCA', '2019-05-08', '2019-12-01', 481185.29, NULL, 481185.29, 125925.11, 481185.29, '2019-05-10 00:19:07.346854+00', '2019-09-14 00:04:26.683254+00', 283031745.00, 74068782.00, 283031745.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (994, '2500213923', '0400066882', '2019-03-01', 'Programme Document Against PCA', 'XAF', 'FR 3EME TRANCHE PCA AVEC ADRA', '2018-12-31', '2019-03-31', 65932.90, NULL, 69657.77, 0.00, 69657.77, '2019-03-03 00:17:00.739688+00', '2019-11-14 00:06:36.555035+00', 38021196.00, 0.00, 40169197.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1019, '2500233143', '0400068105', '2019-05-02', 'Programme Document Against PCA', 'XAF', 'FR SECONDE TRANCHE PCA AVEC CELIAF', '2018-08-01', '2019-05-30', 94821.97, NULL, 94821.97, 33691.93, 94821.97, '2019-05-04 00:22:15.950962+00', '2019-06-07 00:04:56.298529+00', 55774000.00, 19817500.00, 55774000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1023, '2500237522', '0400068250', '2019-05-08', 'Programme Document Against PCA', 'XAF', '4E T APPUI AUX COMMUNAUTES AFFECTEES PAR CRISE RCA', '2019-05-08', '2019-12-01', 481185.29, NULL, 481185.29, 0.00, 481185.29, '2019-05-10 00:19:07.346854+00', '2019-12-20 00:15:27.893997+00', 283031745.00, 0.00, 283031745.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1069, '2500213951', '0400072474', '2019-11-26', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT COUTS INDIRECTS T4 ET T5 PCA JRS', '2019-11-26', '2019-12-31', 18785.65, NULL, 18785.65, 0.00, 18786.69, '2019-11-28 00:08:30.542041+00', '2019-12-21 00:13:16.756629+00', 11092039.00, 0.00, 11092039.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1024, '2500237473', '0400068275', '2019-05-09', 'Programme Document Against PCA', 'XAF', 'APPUI AUX COMMUNAUTES AFFECTEES PAR LA CRISE CENTR', '2019-05-09', '2019-08-09', 0.00, NULL, 0.00, 0.00, 0.00, '2019-05-11 00:03:19.837937+00', '2019-05-12 00:03:23.626236+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (570, '2500213923', '0400056562', '2017-12-11', 'Programme Document Against PCA', 'XAF', 'RENFORCEMENT COMMUNAUTAIRE ACCES DURABLE EAU', '2017-10-01', '2017-12-31', 97545.27, NULL, 97545.27, 0.00, 97545.27, '2018-03-15 16:10:06.407235+00', '2018-07-06 00:02:39.284907+00', 53991696.00, 0.00, 53991696.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (973, '2500233143', '0400064887', '2018-11-22', 'Programme Document Against PCA', 'XAF', 'FR 1ERE TRANCHE PCA AVEC CELIAF', '2018-11-01', '2018-11-30', 40143.08, NULL, 40143.08, 0.00, 40143.08, '2018-11-24 00:01:56.857085+00', '2019-05-31 00:03:41.649885+00', 23169500.00, 0.00, 23169500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (278, '2500221314', '0400002187', '2012-04-19', 'SSFA', 'USD', 'FR - SMALL SCALE FUNDING - ASER', '2012-05-02', '2012-12-31', 8075.75, NULL, 8075.75, 0.00, 8078.99, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.312394+00', 0.00, 0.00, 8078.99, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (794, '2500224893', '0400021932', '2014-06-26', 'Programme Document Against PCA', 'XAF', 'FINANCMT ACTIVITES CINE-CLUB RETOURNES RCA/ZAFAYE', '2014-06-26', '2014-07-28', 1682.16, NULL, 1682.16, 0.00, 1683.40, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.996134+00', 812000.00, 0.00, 812000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (361, '2500228112', '0400057018', '2017-12-28', 'Programme Document Against PCA', 'XAF', 'APPUI D''URGENCE AMELIORATION CONDITIONS ACCES EAU', '2017-10-01', '2017-12-31', 136422.68, NULL, 136422.68, 0.00, 136422.68, '2018-03-15 16:10:06.407235+00', '2019-09-19 00:07:37.177581+00', 75510500.00, 0.00, 75510500.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1042, '2500237165', '0400069899', '2019-07-24', 'Programme Document Against PCA', 'XAF', 'PREVENTION ET PRISE EN CHARGE MALNUTRITION AIGUE', '2019-07-24', '2019-10-24', 88679.95, NULL, 88679.96, 0.00, 88679.95, '2019-07-26 00:10:45.588039+00', '2019-09-19 00:07:37.200854+00', 51189794.00, 0.00, 51189794.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1061, '2500227539', '0400071521', '2019-10-15', 'Programme Document Against PCA', 'XAF', 'FR PCA/2019/PRO/APSELPA', '2019-09-17', '2020-01-16', 78269.50, NULL, 78269.50, 78269.50, 78269.50, '2019-10-17 00:29:27.904648+00', '2019-10-20 00:31:09.684296+00', 46930000.00, 46930000.00, 46930000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (165, '2500219704', '0400007656', '2012-10-31', 'Programme Document Against PCA', 'USD', 'FINANCEMENT COMPL PCA CHORA AMENDE', '2012-10-31', '2013-03-31', 88468.11, NULL, 88468.11, 0.00, 87844.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.254438+00', 0.00, 0.00, 88260.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (603, '2500219704', '0400007836', '2012-11-08', 'Programme Document Against PCA', 'USD', 'COMPLÉMENT 3È TRANCHE DU PCA 12-04/PRO/CHORA', '2012-10-01', '2012-12-31', 1253.80, NULL, 1253.80, 0.00, 1270.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.273647+00', 0.00, 0.00, 1270.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (335, '2500224289', '0400007946', '2012-11-13', 'Programme Document Against PCA', 'USD', 'PCA "ACTION COMMUNAUTAIRE AU LOG OCCID & N''DJAMEN"', '2012-11-13', '2013-05-31', 36693.57, NULL, 36693.57, 0.00, 135000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.307915+00', 0.00, 0.00, 135000.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (572, '2500223886', '0400033050', '2015-08-25', 'SSFA', 'XAF', 'FINANCEMENT APE PROJET COMM ET VACC DS DE MAO', '2015-07-01', '2015-12-31', 4647.19, NULL, 4647.19, 0.00, 4647.19, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.991183+00', 2790000.00, 0.00, 2790000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (593, '2500219688', '0400033519', '2015-09-10', 'SSFA', 'XAF', 'FR ACTIVITE DE SENSIBILISATION ENTRE ACORD/UNICEF', '2015-08-10', '2015-11-10', 12661.16, NULL, 12661.16, 0.00, 12661.16, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.416596+00', 7385000.00, 0.00, 7385000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (573, '2500233810', '0400036871', '2016-01-12', 'Programme Document Against PCA', 'XAF', 'FR POUR FINANCMENT PCA HELP-TCHAD', '2015-01-01', '2016-02-29', 154013.07, NULL, 154013.07, 0.00, 155305.66, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.280311+00', 93120000.00, 0.00, 93120500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (600, '2500232394', '0400041750', '2016-07-04', 'SSFA', 'XAF', 'FINANCT SSFA UNION DES FEMMES POUR LA PAIX/UFEP', '2016-07-11', '2016-10-11', 14499.03, NULL, 14499.03, 0.00, 14499.03, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.533566+00', 8600000.00, 0.00, 8600000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (606, '2500213955', '0400042157', '2016-07-20', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT SNDE TRANCHE PCA CRS/POT', '2015-10-27', '2016-12-31', 86913.69, NULL, 86913.69, 0.00, 43365.03, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.641007+00', 51257900.00, 0.00, 25628950.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (592, '2500232848', '0400044319', '2016-10-17', 'SSFA', 'XAF', 'FINANCEMENT APE MISE EN OEUVRE DES ACTIVITES ACPV', '2016-10-03', '2017-01-03', 3178.63, NULL, 3178.63, 0.00, 3178.63, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.409318+00', 1890000.00, 0.00, 1890000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (584, '2500235282', '0400046598', '2016-12-15', 'SSFA', 'XAF', 'FINANCEMENT 3EME TRANCHE APE AFA', '2016-12-15', '2017-03-15', 7242.33, NULL, 7242.33, 0.00, 7242.33, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.643451+00', 4475000.00, 0.00, 4475000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (580, '2500212819', '0400046698', '2016-12-22', 'Programme Document Against PCA', 'XAF', 'REPONSE EDUCATION URGENCES LAC', '2016-11-28', '2017-02-28', 76505.51, NULL, 76505.51, 0.00, 76505.51, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.705458+00', 47272370.00, 0.00, 47272370.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1061, '2500227539', '0400071521', '2019-10-15', 'Programme Document Against PCA', 'XAF', 'FR PCA/2019/PRO/APSELPA', '2019-09-17', '2020-03-16', 78269.50, 16, 78269.50, 78269.50, 78269.50, '2019-10-17 00:29:27.904648+00', '2020-03-06 00:04:52.505361+00', 46930000.00, 46930000.00, 46930000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1026, '2500213920', '0400068339', '2019-05-13', 'Programme Document Against PCA', 'XAF', 'APPUI REPONSE URGENCES REFUGIES ET IDPS AU LAC', '2019-05-13', '2019-08-13', 379532.77, NULL, 379532.77, 0.00, 379532.77, '2019-05-15 00:03:25.341397+00', '2019-12-09 15:34:17.774764+00', 223240034.00, 0.00, 223240034.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (247, '2500219704', '0400022033', '2014-07-01', 'Programme Document Against PCA', 'XAF', 'FINACEMENT 1ST TRANHE PCA CHORA CONSORTIUM TISSI', '2014-07-01', '2014-10-20', 27999.82, NULL, 27999.82, 0.00, 29209.96, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.014124+00', 14100000.00, 0.00, 14100000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (559, '2500221169', '0400028220', '2015-02-19', 'Programme Document Against PCA', 'XAF', 'FIN.PCA Nº22/2014 WASH-EDUCATION/CRT DERN.TRANCCHE', '2015-02-03', '2015-07-31', 155613.74, NULL, 155613.74, 0.00, 166404.90, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.806572+00', 96307169.00, 0.00, 96307169.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (562, '2500228112', '0400029193', '2015-03-26', 'Programme Document Against PCA', 'XAF', 'DECSIMT 2E TRANCHPCA 2014/CHD/WASH/IHDL', '2015-03-26', '2015-04-30', 62262.34, NULL, 62262.34, 0.00, 60883.67, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.887194+00', 37680050.00, 0.00, 37680050.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (558, '2500232211', '0400032068', '2015-07-15', 'SSFA', 'XAF', 'FINANCEMENT APE ASSOCIATION TOCKODINE/MELFI/COMMUN', '2015-07-15', '2015-12-31', 5391.57, NULL, 5391.57, 0.00, 5391.57, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.225221+00', 3200000.00, 0.00, 3200000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (550, '2500228112', '0400033681', '2015-09-16', 'Programme Document Against PCA', 'XAF', 'FR PCA/2015/CHAD/PROT/IHDL', '2015-08-31', '2016-09-30', 114353.31, NULL, 114353.31, 0.00, 114353.31, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.525844+00', 66700000.00, 0.00, 66700021.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (530, '2500233645', '0400036111', '2015-12-07', 'SSFA', 'XAF', 'FR ACTIVITE 6.2.1,CAMPAGNE FIN MARIAGE DES ENFANTS', '2015-12-07', '2015-12-31', 3741.60, NULL, 3741.60, 0.00, 3741.60, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.767655+00', 2320000.00, 0.00, 2320000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (535, '2500226593', '0400036113', '2015-12-07', 'SSFA', 'XAF', 'FR ACTIVITE 6.2.6,SANTE MATER NEONATALE INFANTILE', '2015-07-03', '2015-12-31', 19957.39, NULL, 19957.39, 0.00, 19957.39, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.777474+00', 12374700.00, 0.00, 12374700.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (527, '2500232212', '0400040338', '2016-05-12', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA CELIAF DISTRICT SANITAIRE BOL/LIWA', '2016-05-12', '2016-08-12', 51624.79, NULL, 51624.79, 0.00, 51624.79, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.492665+00', 29870000.00, 0.00, 29870000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (528, '2500224655', '0400040339', '2016-05-12', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ERE TRANCHE DU PCA CEVANUTRI', '2016-05-12', '2016-08-12', 73751.12, NULL, 73751.12, 0.00, 73751.12, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.501942+00', 42672250.00, 0.00, 42672250.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (564, '2500214085', '0400044410', '2016-10-19', 'Programme Document Against PCA', 'XAF', 'FINANCMENT PCA WASH/IAS CONSTRUCT 100 POINTS D''EAU', '2016-10-19', '2017-01-19', 22784.92, NULL, 22784.92, 0.00, 22784.92, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.188386+00', 13547800.00, 0.00, 13547800.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (546, '2500234735', '0400045545', '2016-11-22', 'SSFA', 'XAF', 'DEMANDE DE FINANCEMENT', '2016-04-15', '2016-12-31', 2834.20, NULL, 2834.20, 0.00, 2834.20, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.457374+00', 1710000.00, 0.00, 1710000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (556, '2500214090', '0400051929', '2017-06-22', 'Programme Document Against PCA', 'XAF', 'COUTS SUPPORT INDIRECT DE PROGRAMME (7%)', '2017-04-01', '2017-06-30', 10671.00, NULL, 10671.00, 0.00, 10671.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.774232+00', 6254220.00, 0.00, 6254220.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1102, '2500214062', '0400074612', '2020-03-19', 'Programme Document Against PCA', 'XAF', 'FR POUR TRANCHE 4 PCA AVEC ESMS', '2020-03-19', '2020-03-31', 3281.62, NULL, 3363.97, 3281.62, 3363.97, '2020-03-22 00:06:43.269129+00', '2020-04-09 00:04:15.874163+00', 1950000.00, 1950000.00, 1950000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (165, '2500219704', '0400007656', '2012-10-31', 'Programme Document Against PCA', 'USD', 'FINANCEMENT COMPL PCA CHORA AMENDE', '2012-10-31', '2013-03-31', 88468.11, NULL, 88468.11, 0.00, 87844.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.765421+00', 0.00, 0.00, 88260.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (766, '2500213931', '0400022055', '2014-07-01', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME TRANCHE PCA 2013/15/ASTBEF/VIH', '2013-12-02', '2014-12-31', 19971.85, NULL, 19971.85, 0.00, 26055.92, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.023629+00', 9948120.00, 0.00, 12577504.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (599, '2500214069', '0400050129', '2017-05-02', 'SSFA', 'XAF', 'FINANCEMENT APE FENAPET', '2017-04-01', '2017-06-30', 12242.99, NULL, 12242.99, 0.00, 12242.99, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.439269+00', 7399000.00, 0.00, 7399000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (601, '2500227181', '0400050984', '2017-05-25', 'SSFA', 'XAF', 'FINANCEMENT 1ERE TRANCHE SSFA HADRE DOUNIA', '2017-05-25', '2017-08-25', 12259.10, NULL, 12259.10, 0.00, 11888.88, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.654344+00', 7185000.00, 0.00, 7185000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (605, '2500221169', '0400051137', '2017-05-30', 'Programme Document Against PCA', 'XAF', 'TRANCHE 1 PCA MISE EN OEUVRE ACPV ET CERF CRT', '2017-05-30', '2017-08-31', 419442.67, NULL, 419442.67, 0.00, 419442.67, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.786353+00', 253488500.00, 0.00, 253488500.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (579, '2500213985', '0400051368', '2017-06-06', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT APPUI A LA PROTECTION ENFANTS LAC', '2017-06-06', '2017-09-06', 103424.19, NULL, 103424.19, 0.00, 103424.19, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.858058+00', 60616400.00, 0.00, 60616400.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (565, '2500213937', '0400052140', '2017-07-03', 'SSFA', 'XAF', 'FR ASSOCIATION DES GUIDES DU TCHAD', '2017-05-25', '2017-12-31', 16525.99, NULL, 16525.99, 0.00, 15920.58, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.18118+00', 9176000.00, 0.00, 9176000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (629, '2500213985', '0400055286', '2017-11-06', 'Programme Document Against PCA', 'XAF', 'RENFORCEMENT CAPACITES COMMUNAUTES PREVENTION RISQ', '2017-08-10', '2017-11-10', 7514.61, NULL, 7514.61, 0.00, 7514.61, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.763039+00', 4243148.00, 0.00, 4243148.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (941, '2500237522', '0400062597', '2018-08-23', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 17/PCA/2017/EDU/ACRA', '2018-08-23', '2018-11-23', 615941.00, NULL, 615941.00, 0.00, 615941.00, '2018-08-28 13:22:20.095333+00', '2019-05-09 00:18:22.07703+00', 353637597.00, 0.00, 353637597.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (766, '2500213931', '0400022055', '2014-07-01', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME TRANCHE PCA 2013/15/ASTBEF/VIH', '2013-12-02', '2014-12-31', 19971.85, NULL, 19971.85, 0.00, 26055.92, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.379353+00', 9948120.00, 0.00, 12577504.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (622, '2500221408', '0400033352', '2015-09-05', 'SSFA', 'XAF', 'FINANCEMENT APE - CROIX ROUGE LAC', '2015-07-01', '2015-09-30', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:20.979842+00', 0.00, 0.00, 3042000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (275, '2500214088', '0400053651', '2017-08-29', 'Programme Document Against PCA', 'XAF', '2E T CONTR DES SOINS MEDICO-NUT AIGUE DANS DS LIWA', '2017-08-29', '2017-08-31', 50741.39, NULL, 50741.39, 0.00, 50741.39, '2018-03-15 16:10:06.407235+00', '2018-09-15 00:01:57.165173+00', 28204552.00, 0.00, 28204552.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (771, '2500229124', '0400022114', '2014-07-03', 'Programme Document Against PCA', 'XAF', 'DECSIMT 1RE TRANCH PCA 13 ACTED-WASH/14', '2014-07-03', '2014-10-01', 146424.29, NULL, 146424.29, 0.00, 146424.29, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.404856+00', 70680761.00, 0.00, 70680761.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1033, '2500233143', '0400068748', '2019-05-29', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT MECANISME DE CONSOLIDATION DE LA PAIX', '2019-03-01', '2019-05-30', 12427.80, NULL, 12427.80, 12427.80, 12427.81, '2019-05-31 00:03:40.974144+00', '2019-06-01 00:03:32.143567+00', 7310000.00, 7310000.00, 7310000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (669, '2300006133', '0400015226', '2013-09-13', 'Programme Document Against PCA', 'XAF', 'FINANCMT PCA AVEC ACRA ( ENFTS BOUVIERS)', '2013-09-13', '2014-07-31', 0.00, NULL, 0.00, 0.00, 376607.15, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:13.989039+00', 0.00, 0.00, 186513937.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (665, '2500215480', '0400016245', '2013-10-29', 'Programme Document Against PCA', 'XAF', 'FR- FINANCEMENT APE/CSAI MISSION DE PLAIDOYER LEAD', '2013-10-29', '2013-12-31', 0.00, NULL, 0.00, 0.00, 9376.55, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:14.590759+00', 0.00, 0.00, 4533000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (668, '2500233645', '0400041528', '2016-06-24', 'SSFA', 'XAF', 'FR APE RADIOTOB FM', '2016-04-01', '2016-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.637802+00', 0.00, 0.00, 0.00, false, true, false); @@ -11096,31 +11778,32 @@ INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1030, '2500237900', INSERT INTO [[schema]].funds_fundsreservationheader VALUES (688, '2500221790', '0400016714', '2013-11-19', 'Programme Document Against PCA', 'XAF', 'RNTAP+/RENFORC/CAPACITÉS RNTAP/APPUI COORD/SUIVI/E', '2013-11-19', '2013-12-31', 0.00, NULL, 0.00, 0.00, 26252.44, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:14.776506+00', 0.00, 0.00, 12846474.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (660, '2500214085', '0400017933', '2014-01-20', 'Programme Document Against PCA', 'XAF', 'PAIEMT 2ME TRCH IAS PCA/8/2012/CHD/WASH/IAS AMEND', '2014-01-20', '2014-04-30', 0.00, NULL, 0.00, 0.00, 45688.58, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:15.30678+00', 0.00, 0.00, 21714046.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (676, '2500221883', '0400020541', '2014-05-09', 'Programme Document Against PCA', 'XAF', 'DECSIMT PCA ACTED/CHD/2014/WASH', '2014-05-09', '2014-07-30', 0.00, NULL, 0.00, 0.00, 448526.67, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:16.657635+00', 0.00, 0.00, 212843846.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (689, '2500220423', '0400004482', '2012-06-27', 'Programme Document Against PCA', 'USD', 'REBOUSEMENT DEPENSES ACTIVITES WASH/CHOLERA OGB', '2011-11-01', '2012-02-28', 983.37, NULL, 983.37, 0.00, 398000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.929824+00', 0.00, 0.00, 1120.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (633, '2500212828', '0400028989', '2015-03-19', 'Programme Document Against PCA', 'XAF', 'PAIEMENT PCA11/2014/TERRE VERTE/3È & 4È TRANCHES', '2015-03-19', '2015-06-30', 49972.52, NULL, 49972.52, 0.00, 49972.52, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:20.764101+00', 30927291.00, 0.00, 30927291.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (640, '2500212819', '0400029543', '2015-04-14', 'Programme Document Against PCA', 'XAF', 'DECAISSEMENT 2È TRANCHE PCA 17/PRO/WASH/SECADEV', '2015-04-14', '2015-07-31', 88959.45, NULL, 88959.45, 0.00, 88959.45, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:20.956043+00', 53836656.00, 0.00, 53836656.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (628, '2500213920', '0400032892', '2015-08-19', 'SSFA', 'XAF', 'FINANCEMENT ACCORD A PETITE ECHELLE ACF', '2015-04-10', '2015-09-30', 39161.31, NULL, 39161.31, 0.00, 39161.31, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.896251+00', 23511000.00, 0.00, 23511000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (621, '2500232785', '0400033351', '2015-09-05', 'SSFA', 'XAF', 'FINANCEMENT APE - CSAI - OUADDAI', '2015-07-01', '2015-09-30', 8487.52, NULL, 8487.52, 0.00, 8487.52, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.175281+00', 4950600.00, 0.00, 4950600.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (623, '2500213992', '0400033353', '2015-09-05', 'SSFA', 'XAF', 'FINANCEMENT APE - CROIX ROUGE OUADDAI', '2015-07-01', '2015-09-30', 12992.04, NULL, 12992.04, 0.00, 12992.04, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.195023+00', 7578000.00, 0.00, 7578000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (625, '2500232847', '0400033355', '2015-09-05', 'SSFA', 'XAF', 'FINANCEMENT APE - AL WASSIA MASSAKORY', '2015-07-01', '2015-09-30', 5100.47, NULL, 5100.47, 0.00, 5100.47, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.238057+00', 2975000.00, 0.00, 2975000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (626, '2500232845', '0400033356', '2015-09-05', 'SSFA', 'XAF', 'FINANCEMENT APE - AULCM - NGOURI', '2015-07-01', '2015-09-30', 4869.02, NULL, 4869.02, 0.00, 4869.02, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.257206+00', 2840000.00, 0.00, 2840000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (627, '2500232848', '0400033357', '2015-09-05', 'SSFA', 'XAF', 'FINANCEMENT APE NADJA MASSENYA', '2015-07-01', '2015-09-30', 9584.59, NULL, 9584.59, 0.00, 9584.59, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.27895+00', 5590500.00, 0.00, 5590500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (615, '2500232846', '0400033358', '2015-09-05', 'SSFA', 'XAF', 'FINANCEMENT APE EEMET - ABÉCHÉ', '2015-07-01', '2015-09-30', 8520.44, NULL, 8520.44, 0.00, 8520.44, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.299628+00', 4969800.00, 0.00, 4969800.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (624, '2500221314', '0400036689', '2015-12-18', 'SSFA', 'XAF', 'APPUI SCOLAIRE &PSYCHOSOCIAL AUX OEV', '2015-12-01', '2016-03-31', 10022.04, NULL, 10022.04, 0.00, 10022.04, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.223786+00', 5984000.00, 0.00, 5984000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (607, '2500234256', '0400038685', '2016-03-15', 'SSFA', 'XAF', 'FR SSFA ODYSSEE', '2016-03-15', '2016-06-15', 46602.41, NULL, 46602.41, 0.00, 46021.92, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.673156+00', 27004560.00, 0.00, 27004560.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (609, '2500224554', '0400039170', '2016-04-01', 'SSFA', 'XAF', 'FC FINANCEMENT PAIEMENT 2EME ET 3EME TRANCHE ASVDO', '2016-04-01', '2016-06-30', 3451.45, NULL, 3451.45, 0.00, 3451.45, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.811166+00', 2000000.00, 0.00, 2000000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (636, '2500234735', '0400041475', '2016-06-23', 'SSFA', 'XAF', 'FR ACCORD PETITE ECHELLE AVEC ASSOCIATION HANANA', '2016-04-01', '2016-12-31', 3178.77, NULL, 3178.77, 0.00, 3178.77, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.236348+00', 1850000.00, 0.00, 1850000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (644, '2500234334', '0400043711', '2016-09-22', 'SSFA', 'XAF', 'FR FINANCEMENT ACCORD PETITE ECHELLE AVEC ACTT', '2016-08-22', '2016-11-22', 16283.08, NULL, 16283.08, 0.00, 16181.46, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.078095+00', 9523000.00, 0.00, 9523000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (634, '2500223261', '0400046235', '2016-12-07', 'Programme Document Against PCA', 'XAF', 'FR POUR PCA WASH/AFDI : PROMO ASSAINISSEMENT ET HY', '2016-03-10', '2017-03-31', 66147.47, NULL, 66147.47, 0.00, 66147.47, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.424631+00', 40872188.00, 0.00, 40872188.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (771, '2500229124', '0400022114', '2014-07-03', 'Programme Document Against PCA', 'XAF', 'DECSIMT 1RE TRANCH PCA 13 ACTED-WASH/14', '2014-07-03', '2014-10-01', 146424.29, NULL, 146424.29, 0.00, 146424.29, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.032468+00', 70680761.00, 0.00, 70680761.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1033, '2500233143', '0400068748', '2019-05-29', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT MECANISME DE CONSOLIDATION DE LA PAIX', '2019-03-01', '2019-05-30', 12427.80, NULL, 12427.80, 0.00, 12427.81, '2019-05-31 00:03:40.974144+00', '2019-12-01 00:19:13.592412+00', 7310000.00, 0.00, 7310000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (633, '2500212828', '0400028989', '2015-03-19', 'Programme Document Against PCA', 'XAF', 'PAIEMENT PCA11/2014/TERRE VERTE/3È & 4È TRANCHES', '2015-03-19', '2015-06-30', 49972.52, NULL, 49972.52, 0.00, 49972.52, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.854182+00', 30927291.00, 0.00, 30927291.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (640, '2500212819', '0400029543', '2015-04-14', 'Programme Document Against PCA', 'XAF', 'DECAISSEMENT 2È TRANCHE PCA 17/PRO/WASH/SECADEV', '2015-04-14', '2015-07-31', 88959.45, NULL, 88959.45, 0.00, 88959.45, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.933348+00', 53836656.00, 0.00, 53836656.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (628, '2500213920', '0400032892', '2015-08-19', 'SSFA', 'XAF', 'FINANCEMENT ACCORD A PETITE ECHELLE ACF', '2015-04-10', '2015-09-30', 39161.31, NULL, 39161.31, 0.00, 39161.31, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.282584+00', 23511000.00, 0.00, 23511000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (572, '2500223886', '0400033050', '2015-08-25', 'SSFA', 'XAF', 'FINANCEMENT APE PROJET COMM ET VACC DS DE MAO', '2015-07-01', '2015-12-31', 4647.19, NULL, 4647.19, 0.00, 4647.19, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.329612+00', 2790000.00, 0.00, 2790000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (621, '2500232785', '0400033351', '2015-09-05', 'SSFA', 'XAF', 'FINANCEMENT APE - CSAI - OUADDAI', '2015-07-01', '2015-09-30', 8487.52, NULL, 8487.52, 0.00, 8487.52, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.407122+00', 4950600.00, 0.00, 4950600.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (623, '2500213992', '0400033353', '2015-09-05', 'SSFA', 'XAF', 'FINANCEMENT APE - CROIX ROUGE OUADDAI', '2015-07-01', '2015-09-30', 12992.04, NULL, 12992.04, 0.00, 12992.04, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.417968+00', 7578000.00, 0.00, 7578000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (593, '2500219688', '0400033519', '2015-09-10', 'SSFA', 'XAF', 'FR ACTIVITE DE SENSIBILISATION ENTRE ACORD/UNICEF', '2015-08-10', '2015-11-10', 12661.16, NULL, 12661.16, 0.00, 12661.16, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.508174+00', 7385000.00, 0.00, 7385000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (573, '2500233810', '0400036871', '2016-01-12', 'Programme Document Against PCA', 'XAF', 'FR POUR FINANCMENT PCA HELP-TCHAD', '2015-01-01', '2016-02-29', 154013.07, NULL, 154013.07, 0.00, 155305.66, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.904012+00', 93120000.00, 0.00, 93120500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (600, '2500232394', '0400041750', '2016-07-04', 'SSFA', 'XAF', 'FINANCT SSFA UNION DES FEMMES POUR LA PAIX/UFEP', '2016-07-11', '2016-10-11', 14499.03, NULL, 14499.03, 0.00, 14499.03, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.79216+00', 8600000.00, 0.00, 8600000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (606, '2500213955', '0400042157', '2016-07-20', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT SNDE TRANCHE PCA CRS/POT', '2015-10-27', '2016-12-31', 86913.69, NULL, 86913.69, 0.00, 43365.03, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.84662+00', 51257900.00, 0.00, 25628950.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (592, '2500232848', '0400044319', '2016-10-17', 'SSFA', 'XAF', 'FINANCEMENT APE MISE EN OEUVRE DES ACTIVITES ACPV', '2016-10-03', '2017-01-03', 3178.63, NULL, 3178.63, 0.00, 3178.63, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.123249+00', 1890000.00, 0.00, 1890000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (584, '2500235282', '0400046598', '2016-12-15', 'SSFA', 'XAF', 'FINANCEMENT 3EME TRANCHE APE AFA', '2016-12-15', '2017-03-15', 7242.33, NULL, 7242.33, 0.00, 7242.33, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.594112+00', 4475000.00, 0.00, 4475000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (580, '2500212819', '0400046698', '2016-12-22', 'Programme Document Against PCA', 'XAF', 'REPONSE EDUCATION URGENCES LAC', '2016-11-28', '2017-02-28', 76505.51, NULL, 76505.51, 0.00, 76505.51, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.644558+00', 47272370.00, 0.00, 47272370.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (629, '2500213985', '0400055286', '2017-11-06', 'Programme Document Against PCA', 'XAF', 'RENFORCEMENT CAPACITES COMMUNAUTES PREVENTION RISQ', '2017-08-10', '2017-11-10', 7514.61, NULL, 7514.61, 0.00, 7514.61, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.811464+00', 4243148.00, 0.00, 4243148.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1109, '2500233810', '0400075095', '2020-04-16', 'Programme Document Against PCA', 'XAF', 'FR PCA AVEC ASSO HELP - TCHAD', '2020-04-14', '2020-08-18', 0.00, NULL, 49906.18, 0.00, 49906.18, '2020-04-18 01:10:53.225447+00', '2020-04-18 01:10:53.562462+00', 0.00, 0.00, 30000300.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1104, '2500213985', '0400074691', '2020-03-24', 'Programme Document Against PCA', 'XAF', 'CFS FINANCEMENT TRANCHE 1 PCA AVEC COOPI', '2020-03-24', '2020-04-30', 83561.00, NULL, 85953.64, 83561.00, 85953.64, '2020-03-26 00:04:31.111273+00', '2020-04-01 00:04:28.224594+00', 49824917.00, 49824917.00, 49824917.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1105, '2500213920', '0400074774', '2020-03-30', 'Programme Document Against PCA', 'XAF', '3E TRANCHE 07/PCA/2019/WASH/ACF', '2020-03-30', '2020-04-30', 0.00, NULL, 133511.89, 0.00, 133511.89, '2020-04-01 00:04:28.093585+00', '2020-04-01 00:04:28.619336+00', 0.00, 0.00, 77393104.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1077, '2500238161', '0400073043', '2019-12-13', 'Programme Document Against PCA', 'XAF', '7% COUT INDIRECT DU PROGRAMME 3E ET 4E TRANCHES', '2019-12-13', '2020-03-31', 0.00, NULL, 2226.65, 0.00, 2218.99, '2019-12-15 00:07:17.936203+00', '2020-04-04 00:05:01.418704+00', 0.00, 0.00, 1323118.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (637, '2500231570', '0400049947', '2017-04-26', 'SSFA', 'XAF', 'RENFORCER TRAITEMENT MEDIATIQUE DES THEMES', '2017-04-26', '2017-06-26', 7838.18, NULL, 7838.18, 0.00, 7838.18, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.349634+00', 4845000.00, 0.00, 4845000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (608, '2500213923', '0400050864', '2017-05-23', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT 7% COUT SUPPORT INDIRECT PROGRAMME', '2017-03-01', '2017-05-31', 16237.53, NULL, 16237.53, 0.00, 16237.53, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.548904+00', 9813084.00, 0.00, 9813084.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (610, '2500230634', '0400051296', '2017-06-05', 'Programme Document Against PCA', 'XAF', 'AVENANT FINANCEMENT CONSTRUCT SALLES DE CLASSE - G', '2017-03-20', '2017-03-23', 12040.71, NULL, 12040.71, 0.00, 12040.71, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.808757+00', 7057000.00, 0.00, 7057000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (770, '2500213954', '0400022119', '2014-07-03', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT PCA01/2013/CHD/PRO/PROT/CARE', '2014-07-03', '2014-08-31', 88235.22, NULL, 88235.22, 0.00, 88235.22, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.428981+00', 42592198.00, 0.00, 42592198.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (84, '2500229055', '0400022190', '2014-07-07', 'SSFA', 'XAF', 'MOB. SOCIALE A TRAVERS LES RADIOS - RADIO DOUMCHI', '2014-07-07', '2014-12-30', 12450.49, NULL, 12450.49, 0.00, 12450.49, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.496471+00', 6010000.00, 0.00, 6010000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (85, '2500213954', '0400022192', '2014-07-07', 'Programme Document Against PCA', 'XAF', 'DECAISSEMENT PREMIERE TRANCHE PCA CARE', '2014-07-07', '2014-12-31', 88477.89, NULL, 88477.89, 0.00, 88477.89, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.559125+00', 42709340.00, 0.00, 42709340.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (362, '2500226920', '0400022278', '2014-07-10', 'Programme Document Against PCA', 'XAF', 'PCA NO 08/CHDA/2013 AVEC ACRA (ENFANTS BOUVIERS)', '2014-07-10', '2014-09-10', 183983.28, NULL, 183983.28, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.575033+00', 88810939.00, 0.00, 88810939.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (168, '2500214085', '0400022565', '2014-07-23', 'Programme Document Against PCA', 'XAF', 'REMBURSMT PREFINANCMT ACTIVITES TISSI/IAS', '2014-07-23', '2014-07-23', 45004.16, NULL, 45004.16, 0.00, 45004.16, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.594044+00', 21724046.00, 0.00, 21724046.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (715, '2500222378', '0400004391', '2012-06-25', 'SSFA', 'USD', 'FR - CELEBRATION JOURNÉE ENFANT AFRICAIN', '2012-06-25', '2012-07-30', 4232.59, NULL, 4232.59, 0.00, 4233.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.91285+00', 0.00, 0.00, 4435.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (299, '2500224382', '0400008068', '2012-11-16', 'Programme Document Against PCA', 'USD', 'FONDS POUR MISE EN OEUV APE/UNICEF/CAIDEL TANDJILÉ', '2012-11-01', '2012-12-31', 8861.59, NULL, 8861.59, 0.00, 17161.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.828106+00', 0.00, 0.00, 17161.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (770, '2500213954', '0400022119', '2014-07-03', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT PCA01/2013/CHD/PRO/PROT/CARE', '2014-07-03', '2014-08-31', 88235.22, NULL, 88235.22, 0.00, 88235.22, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.041356+00', 42592198.00, 0.00, 42592198.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (84, '2500229055', '0400022190', '2014-07-07', 'SSFA', 'XAF', 'MOB. SOCIALE A TRAVERS LES RADIOS - RADIO DOUMCHI', '2014-07-07', '2014-12-30', 12450.49, NULL, 12450.49, 0.00, 12450.49, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.060477+00', 6010000.00, 0.00, 6010000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (702, '2500224655', '0400029365', '2015-04-03', 'SSFA', 'XAF', 'FINANCEMENT 2ND TRANCHE SSA/CEVANUTRI', '2015-04-03', '2015-03-31', 5576.83, NULL, 5576.83, 0.00, 5576.83, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.905853+00', 3375000.00, 0.00, 3375000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (708, '2500221193', '0400020490', '2014-05-07', 'Programme Document Against PCA', 'XAF', 'VERSEMENT 1ERE TRANCHE PCA BASE DANS LE WADI-FIRA', '2014-06-24', '2014-09-24', 0.00, NULL, 0.00, 0.00, 140620.45, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (714, '2500212820', '0400028418', '2015-02-26', 'Programme Document Against PCA', 'XAF', 'AVANCE 1ER TRANCHE PCA 01/PRO/WASH/SIF/2015', '2015-02-26', '2015-05-29', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (716, '2500234518', '0400044278', '2016-10-14', 'SSFA', 'XAF', 'FIN. MISE EN OEUVRE APPROCHE COMM PROMOTION (ACPV)', '2016-10-14', '2017-01-14', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); @@ -11128,475 +11811,539 @@ INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1053, '2500212787', INSERT INTO [[schema]].funds_fundsreservationheader VALUES (721, '2500213931', '0400011309', '2013-03-26', 'Programme Document Against PCA', 'USD', 'DECAISSEMENT 1ERE TRANCHE PCA AVEC ASTBEF', '2013-04-15', '2014-12-15', 0.00, NULL, 0.00, 0.00, 50000.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:12.520509+00', 0.00, 0.00, 50000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (692, '2500214085', '0400017205', '2013-12-06', 'Programme Document Against PCA', 'XAF', 'PAIEMT DERNIERE TRANCHE A IAS', '2013-12-06', '2014-03-06', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:15.008002+00', 0.00, 0.00, 27601700.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (4, '2500237473', '0400057043', '2018-01-04', 'Programme Document Against PCA', 'XAF', 'AMELIO EQUITE ET QUALITE DE L''EDUC ENFANTS REFUGIE', '2018-01-04', '2018-04-04', 157527.19, NULL, 157527.19, 0.00, 157527.19, '2018-03-15 16:10:06.407235+00', '2018-09-15 00:01:57.277022+00', 86484003.00, 0.00, 86484003.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (299, '2500224382', '0400008068', '2012-11-16', 'Programme Document Against PCA', 'USD', 'FONDS POUR MISE EN OEUV APE/UNICEF/CAIDEL TANDJILÉ', '2012-11-01', '2012-12-31', 8861.59, NULL, 8861.59, 0.00, 17161.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.417147+00', 0.00, 0.00, 17161.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (645, '2500234968', '0400041365', '2016-06-20', 'SSFA', 'XAF', 'FINANCEMENT SSFA ASSOCIATION UAFAT', '2016-06-27', '2016-09-27', 18109.25, NULL, 18109.25, 0.00, 18390.45, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.582682+00', 10703000.00, 0.00, 10703000.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (702, '2500224655', '0400029365', '2015-04-03', 'SSFA', 'XAF', 'FINANCEMENT 2ND TRANCHE SSA/CEVANUTRI', '2015-04-03', '2015-03-31', 5576.83, NULL, 5576.83, 0.00, 5576.83, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:20.894861+00', 3375000.00, 0.00, 3375000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (691, '2500228587', '0400029616', '2015-04-16', 'Programme Document Against PCA', 'XAF', 'DECAISSEMENT SOLDE PCA ADES', '2015-03-16', '2015-05-31', 65490.70, NULL, 65490.70, 0.00, 68061.50, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:20.976213+00', 39437322.00, 0.00, 41189599.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (699, '2500214084', '0400030231', '2015-05-08', 'Programme Document Against PCA', 'XAF', 'DECAISSEMENT 2È TRANCHE PCA 19/2014/WASH/OXFAM INT', '2015-05-08', '2015-05-15', 61704.32, NULL, 61704.32, 0.00, 61704.32, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.056807+00', 36592881.00, 0.00, 36592881.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (649, '2500214085', '0400032052', '2015-07-14', 'Programme Document Against PCA', 'XAF', 'VERSEMENT DE LA 3È TRANCHE PCA 18/2014/WASH/IAS', '2014-09-12', '2015-12-31', 148109.58, NULL, 148109.58, 0.00, 149838.41, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.6508+00', 87905850.00, 0.00, 87905850.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (680, '2500225602', '0400032508', '2015-08-03', 'Programme Document Against PCA', 'XAF', 'PAIEMENT DE LA 1ERE TRANCHE/PCA 05/ATPCS/WASH', '2015-08-03', '2016-07-04', 78386.33, NULL, 78386.33, 0.00, 78386.33, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.826725+00', 47060250.00, 0.00, 47060250.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (686, '2500234228', '0400038314', '2016-03-02', 'SSFA', 'XAF', 'ENQUETE EAU-HYGIENE DANS LES ECOLES PAR ATRENVIRO', '2016-03-02', '2016-06-30', 14239.74, NULL, 14239.74, 0.00, 14239.74, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.540177+00', 8522500.00, 0.00, 8522500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (684, '2500233978', '0400038319', '2016-03-02', 'SSFA', 'XAF', 'FINANCEMENT SSFA HANDICAP INTERNATIONAL', '2016-03-02', '2016-06-02', 49223.45, NULL, 49223.45, 0.00, 49223.45, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.56134+00', 29460284.00, 0.00, 29460284.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (663, '2500229637', '0400039855', '2016-04-26', 'SSFA', 'XAF', 'FR RESEAU DES MAISONS DE QUARTIERS', '2016-04-15', '2016-12-31', 13902.05, NULL, 13902.05, 0.00, 13902.05, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.394718+00', 8086500.00, 0.00, 8086500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (670, '2500214085', '0400041176', '2016-06-14', 'Programme Document Against PCA', 'XAF', 'FR PAIEMENT SECONDE TRANCHE PCA WASH/IAS 2', '2016-03-10', '2016-06-30', 6873.01, NULL, 6873.01, 0.00, 6798.62, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.952397+00', 4000000.00, 0.00, 4000000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (685, '2500234767', '0400041523', '2016-06-24', 'SSFA', 'XAF', 'FR APE ASSOCIATION WENAKLABS', '2016-04-01', '2016-12-31', 10835.46, NULL, 10835.46, 0.00, 11180.66, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.298797+00', 6507000.00, 0.00, 6507000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (655, '2500228056', '0400043577', '2016-09-19', 'SSFA', 'XAF', 'FINANCEMENT APE MISE EN OEUVRE ACTIVITES ACPV', '2016-09-19', '2016-12-19', 3517.34, NULL, 3517.34, 0.00, 3517.34, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.030001+00', 2070000.00, 0.00, 2070000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (650, '2500234518', '0400044433', '2016-10-20', 'SSFA', 'XAF', 'FINANCMENT APE 2EME TRANCHE AHEAS', '2016-10-20', '2017-01-20', 3985.91, NULL, 3985.91, 0.00, 3985.91, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.624059+00', 2370000.00, 0.00, 2370000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (679, '2500229515', '0400045594', '2016-11-23', 'SSFA', 'XAF', 'FR ASSOCIATION ENTRAIDE HAND PHYSIQUES DU TCHAD', '2016-04-15', '2016-12-31', 2734.75, NULL, 2734.75, 0.00, 2734.75, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.309137+00', 1650000.00, 0.00, 1650000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (726, '2500212817', '0400056138', '2017-11-30', 'SSFA', 'XAF', 'INSERTION PAGE DES ACT VACCINATION CONTRE LA POLIO', '2017-11-30', '2018-01-31', 1328.25, NULL, 1328.25, 0.00, 1328.25, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.967976+00', 750000.00, 0.00, 750000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (691, '2500228587', '0400029616', '2015-04-16', 'Programme Document Against PCA', 'XAF', 'DECAISSEMENT SOLDE PCA ADES', '2015-03-16', '2015-05-31', 65490.70, NULL, 65490.70, 0.00, 68061.50, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.942258+00', 39437322.00, 0.00, 41189599.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (699, '2500214084', '0400030231', '2015-05-08', 'Programme Document Against PCA', 'XAF', 'DECAISSEMENT 2È TRANCHE PCA 19/2014/WASH/OXFAM INT', '2015-05-08', '2015-05-15', 61704.32, NULL, 61704.32, 0.00, 61704.32, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.963456+00', 36592881.00, 0.00, 36592881.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (649, '2500214085', '0400032052', '2015-07-14', 'Programme Document Against PCA', 'XAF', 'VERSEMENT DE LA 3È TRANCHE PCA 18/2014/WASH/IAS', '2014-09-12', '2015-12-31', 148109.58, NULL, 148109.58, 0.00, 149838.41, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.185339+00', 87905850.00, 0.00, 87905850.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (680, '2500225602', '0400032508', '2015-08-03', 'Programme Document Against PCA', 'XAF', 'PAIEMENT DE LA 1ERE TRANCHE/PCA 05/ATPCS/WASH', '2015-08-03', '2016-07-04', 78386.33, NULL, 78386.33, 0.00, 78386.33, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.253721+00', 47060250.00, 0.00, 47060250.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (625, '2500232847', '0400033355', '2015-09-05', 'SSFA', 'XAF', 'FINANCEMENT APE - AL WASSIA MASSAKORY', '2015-07-01', '2015-09-30', 5100.47, NULL, 5100.47, 0.00, 5100.47, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.43555+00', 2975000.00, 0.00, 2975000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (626, '2500232845', '0400033356', '2015-09-05', 'SSFA', 'XAF', 'FINANCEMENT APE - AULCM - NGOURI', '2015-07-01', '2015-09-30', 4869.02, NULL, 4869.02, 0.00, 4869.02, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.444509+00', 2840000.00, 0.00, 2840000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (627, '2500232848', '0400033357', '2015-09-05', 'SSFA', 'XAF', 'FINANCEMENT APE NADJA MASSENYA', '2015-07-01', '2015-09-30', 9584.59, NULL, 9584.59, 0.00, 9584.59, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.459325+00', 5590500.00, 0.00, 5590500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (615, '2500232846', '0400033358', '2015-09-05', 'SSFA', 'XAF', 'FINANCEMENT APE EEMET - ABÉCHÉ', '2015-07-01', '2015-09-30', 8520.44, NULL, 8520.44, 0.00, 8520.44, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.469149+00', 4969800.00, 0.00, 4969800.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (624, '2500221314', '0400036689', '2015-12-18', 'SSFA', 'XAF', 'APPUI SCOLAIRE &PSYCHOSOCIAL AUX OEV', '2015-12-01', '2016-03-31', 10022.04, NULL, 10022.04, 0.00, 10022.04, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.877394+00', 5984000.00, 0.00, 5984000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (686, '2500234228', '0400038314', '2016-03-02', 'SSFA', 'XAF', 'ENQUETE EAU-HYGIENE DANS LES ECOLES PAR ATRENVIRO', '2016-03-02', '2016-06-30', 14239.74, NULL, 14239.74, 0.00, 14239.74, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.99422+00', 8522500.00, 0.00, 8522500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (684, '2500233978', '0400038319', '2016-03-02', 'SSFA', 'XAF', 'FINANCEMENT SSFA HANDICAP INTERNATIONAL', '2016-03-02', '2016-06-02', 49223.45, NULL, 49223.45, 0.00, 49223.45, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.006282+00', 29460284.00, 0.00, 29460284.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (607, '2500234256', '0400038685', '2016-03-15', 'SSFA', 'XAF', 'FR SSFA ODYSSEE', '2016-03-15', '2016-06-15', 46602.41, NULL, 46602.41, 0.00, 46021.92, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.052365+00', 27004560.00, 0.00, 27004560.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (609, '2500224554', '0400039170', '2016-04-01', 'SSFA', 'XAF', 'FC FINANCEMENT PAIEMENT 2EME ET 3EME TRANCHE ASVDO', '2016-04-01', '2016-06-30', 3451.45, NULL, 3451.45, 0.00, 3451.45, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.103168+00', 2000000.00, 0.00, 2000000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (663, '2500229637', '0400039855', '2016-04-26', 'SSFA', 'XAF', 'FR RESEAU DES MAISONS DE QUARTIERS', '2016-04-15', '2016-12-31', 13902.05, NULL, 13902.05, 0.00, 13902.05, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.33705+00', 8086500.00, 0.00, 8086500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (670, '2500214085', '0400041176', '2016-06-14', 'Programme Document Against PCA', 'XAF', 'FR PAIEMENT SECONDE TRANCHE PCA WASH/IAS 2', '2016-03-10', '2016-06-30', 6873.01, NULL, 6873.01, 0.00, 6798.62, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.585589+00', 4000000.00, 0.00, 4000000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (645, '2500234968', '0400041365', '2016-06-20', 'SSFA', 'XAF', 'FINANCEMENT SSFA ASSOCIATION UAFAT', '2016-06-27', '2016-09-27', 18109.25, NULL, 18109.25, 0.00, 18390.45, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.649463+00', 10703000.00, 0.00, 10703000.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (636, '2500234735', '0400041475', '2016-06-23', 'SSFA', 'XAF', 'FR ACCORD PETITE ECHELLE AVEC ASSOCIATION HANANA', '2016-04-01', '2016-12-31', 3178.77, NULL, 3178.77, 0.00, 3178.77, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.687641+00', 1850000.00, 0.00, 1850000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (685, '2500234767', '0400041523', '2016-06-24', 'SSFA', 'XAF', 'FR APE ASSOCIATION WENAKLABS', '2016-04-01', '2016-12-31', 10835.46, NULL, 10835.46, 0.00, 11180.66, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.71643+00', 6507000.00, 0.00, 6507000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (655, '2500228056', '0400043577', '2016-09-19', 'SSFA', 'XAF', 'FINANCEMENT APE MISE EN OEUVRE ACTIVITES ACPV', '2016-09-19', '2016-12-19', 3517.34, NULL, 3517.34, 0.00, 3517.34, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.995159+00', 2070000.00, 0.00, 2070000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (644, '2500234334', '0400043711', '2016-09-22', 'SSFA', 'XAF', 'FR FINANCEMENT ACCORD PETITE ECHELLE AVEC ACTT', '2016-08-22', '2016-11-22', 16283.08, NULL, 16283.08, 0.00, 16181.46, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.015303+00', 9523000.00, 0.00, 9523000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (634, '2500223261', '0400046235', '2016-12-07', 'Programme Document Against PCA', 'XAF', 'FR POUR PCA WASH/AFDI : PROMO ASSAINISSEMENT ET HY', '2016-03-10', '2017-03-31', 66147.47, NULL, 66147.47, 0.00, 66147.47, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.518174+00', 40872188.00, 0.00, 40872188.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (608, '2500213923', '0400050864', '2017-05-23', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT 7% COUT SUPPORT INDIRECT PROGRAMME', '2017-03-01', '2017-05-31', 16237.53, NULL, 16237.53, 0.00, 16237.53, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.69561+00', 9813084.00, 0.00, 9813084.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1103, '2500225653', '0400074626', '2020-03-20', 'Programme Document Against PCA', 'XAF', '02/PCA/2020/SANTE/MENTOR', '2020-04-02', '2021-03-01', 0.00, 21, 288659.25, 0.00, 295902.73, '2020-03-22 00:06:43.269195+00', '2020-04-17 00:53:53.210031+00', 0.00, 0.00, 171526525.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1107, '2500214062', '0400074873', '2020-04-06', 'Programme Document Against PCA', 'XAF', 'FR 4 TRANCHES PCA 24/PCA/2019/WASH/ESMS', '2019-12-09', '2021-01-31', 0.00, NULL, 212386.63, 0.00, 212386.63, '2020-04-08 00:04:17.962423+00', '2020-04-08 00:04:18.398301+00', 0.00, 0.00, 126203958.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (662, '2500224422', '0400030903', '2015-06-01', 'Programme Document Against PCA', 'XAF', 'PCA N°16/SFCG/2014/PRO-PEACE BUILDING & EDUCATION', '2014-08-20', '2015-08-31', 0.00, NULL, 0.00, 0.00, 79075.42, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:19.697431+00', 0.00, 0.00, 47617793.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (718, '2500218272', '0400031449', '2015-06-22', 'SSFA', 'XAF', 'FINANCEMENT 1ERE TRANCHE PCA CELIAF NDJAMENA/COMM', '2015-06-22', '2015-12-31', 0.00, NULL, 0.00, 0.00, 36057.16, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:19.938337+00', 0.00, 0.00, 21712975.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (693, '2500227181', '0400022940', '2014-08-08', 'SSFA', 'XAF', 'CAMPAGNE DE PREVENTION DE DETOURNEMENT DES INTRANT', '2014-08-08', '2014-09-30', 12788.42, NULL, 12788.42, 0.00, 12989.45, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.717529+00', 6370000.00, 0.00, 6370000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (706, '2500213985', '0400054330', '2017-09-29', 'Programme Document Against PCA', 'XAF', 'APPUI A LA PROTECTION DES ENFTS AFFECTES AU LAC', '2017-09-29', '2017-12-29', 0.00, NULL, 0.00, 0.00, 216755.73, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:28.91424+00', 0.00, 0.00, 118278400.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (238, '2500212828', '0400008069', '2012-11-16', 'Programme Document Against PCA', 'USD', 'FONDS POUR MISE EN OEUV APE/UNICEF/TERRE VERTE SAR', '2012-11-01', '2012-12-31', 7820.59, NULL, 7820.59, 0.00, 16621.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.439532+00', 0.00, 0.00, 16621.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (920, '2500238464', '0400060748', '2018-06-04', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE PCA N 04/2018/NUTRITION/ASRADD', '2018-06-04', '2018-07-31', 38714.57, NULL, 38714.57, 0.00, 38714.57, '2018-06-06 00:03:09.628621+00', '2018-11-24 00:01:57.022343+00', 21858400.00, 0.00, 21858400.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (926, '2500213955', '0400061301', '2018-06-26', 'Programme Document Against PCA', 'XAF', 'MISE EN PLACE SYST COMMUNAUTAIRE DE PROTEC ENFANT', '2018-06-26', '2018-06-30', 122579.84, NULL, 122579.84, 0.00, 122579.84, '2018-06-28 00:02:10.486411+00', '2019-03-15 13:52:32.69378+00', 68187854.00, 0.00, 68187854.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (166, '2500224593', '0400008379', '2012-11-27', 'SSFA', 'USD', 'PAIEMENT 1ER TRANCH A L''ASSOCIATION SCOUTS TCHAD', '2012-11-01', '2012-11-30', 3089.46, NULL, 3089.46, 0.00, 3130.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.554372+00', 0.00, 0.00, 3082.07, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (47, '2500224473', '0400008542', '2012-11-30', 'SSFA', 'USD', 'FONDS POUR PARTICIPATION REAT A ATELIER EAA DAKAR', '2012-11-30', '2012-12-31', 3676.30, NULL, 3676.30, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.614707+00', 0.00, 0.00, 4000.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (751, '2500214085', '0400029468', '2015-04-09', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2E TRANCHE PCA 18/2014/IAS/WASH', '2015-04-09', '2016-12-31', 145255.22, NULL, 145255.22, 0.00, 145255.23, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:20.937373+00', 87905850.00, 0.00, 87905850.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (723, '2500230977', '0400031446', '2015-06-22', 'SSFA', 'XAF', 'FINANCEMENT APE ADESOL/WASH', '2015-06-22', '2015-12-15', 45281.99, NULL, 45281.99, 0.00, 45281.99, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.411673+00', 27268000.00, 0.00, 27268000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (710, '2500232531', '0400037667', '2016-02-11', 'SSFA', 'XAF', 'FINANCEMENT 2EME TRANCHE SSFA ADRB-ATI/BATHA', '2016-02-11', '2016-05-11', 8058.92, NULL, 8058.92, 0.00, 7764.09, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.366042+00', 4660000.00, 0.00, 4660000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (711, '2500234334', '0400039031', '2016-03-25', 'SSFA', 'XAF', 'FR ACCORD PETITE ECHELLE AVEC ACTT', '2016-03-15', '2016-03-31', 16229.36, NULL, 16229.36, 0.00, 16229.36, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.789168+00', 9523000.00, 0.00, 9523000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (697, '2500229339', '0400040395', '2016-05-16', 'Programme Document Against PCA', 'XAF', 'FINANCMENT SNDE TRANCHE PCA/CN/BG/IDRISS/024/16', '2015-09-01', '2016-05-31', 26759.25, NULL, 26759.25, 0.00, 26759.25, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.728904+00', 15482850.00, 0.00, 15482850.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (690, '2500224655', '0400040624', '2016-05-25', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ERE TRANCHE DU PCA CEVANUTRI', '2016-05-25', '2016-08-25', 13785.19, NULL, 13785.19, 0.00, 13785.19, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.797313+00', 7976083.00, 0.00, 7976083.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (713, '2500232845', '0400043972', '2016-10-04', 'SSFA', 'XAF', 'FINANCEMENT MISE EN OEUVRE ACTIVITES ACPV', '2016-10-04', '2017-01-04', 3539.43, NULL, 3539.43, 0.00, 3539.43, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.128196+00', 2070000.00, 0.00, 2070000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (712, '2500232774', '0400043974', '2016-10-04', 'SSFA', 'XAF', 'FINANCEMENT MISE EN OEUVRE ACTIVITES ACPV', '2016-10-04', '2017-01-04', 2923.88, NULL, 2923.88, 0.00, 2923.88, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.150283+00', 1710000.00, 0.00, 1710000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (696, '2500219686', '0400044849', '2016-11-02', 'SSFA', 'XAF', 'APPUI TECHNIQ LOGISTIQUE/APPROVISINNEMENT/MATERIEL', '2016-11-02', '2017-02-02', 4289.56, NULL, 4289.56, 0.00, 4289.56, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.844144+00', 2576000.00, 0.00, 2576000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (698, '2500234499', '0400045053', '2016-11-08', 'SSFA', 'XAF', 'FIN. MISE EN OEUVRE DE L''ACPV', '2016-11-08', '2017-02-08', 2743.04, NULL, 2743.04, 0.00, 2755.91, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.1305+00', 1655000.00, 0.00, 1655000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (707, '2500223094', '0400046576', '2016-12-15', 'Programme Document Against PCA', 'XAF', 'APPUI RENFORCEMENT CAPACITES DES COMMUNAUTES', '2016-12-15', '2017-03-15', 84829.88, NULL, 84829.88, 0.00, 84829.88, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.59637+00', 52415957.00, 0.00, 52415957.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (701, '2500213920', '0400046727', '2016-12-30', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT ACTIVITES PCA ACF SUR CHOLERA', '2016-12-30', '2017-03-31', 45750.87, NULL, 45750.87, 0.00, 45847.24, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.748903+00', 28128780.00, 0.00, 28328780.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (709, '2500214090', '0400049617', '2017-04-13', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT CONTROLE EPIDEMIE HEPATITE E, SALAMAT', '2017-04-13', '2017-07-13', 147839.15, NULL, 147839.15, 0.00, 144542.88, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.232347+00', 89346000.00, 0.00, 89346000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (671, '2500231570', '0400039653', '2016-04-19', 'SSFA', 'XAF', 'FR TOUTES LES 3 TRANCHES FIN MAISON DES MEDIAS', '2016-03-17', '2016-12-31', 6189.00, NULL, 6189.00, 0.00, 6190.21, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.570138+00', 3600000.00, 0.00, 3600700.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (703, '2500229637', '0400044907', '2016-11-03', 'SSFA', 'XAF', 'FR RESEAU DES MAISONS DE QUARTIERS 2NDE TRANCHE', '2016-07-01', '2016-12-31', 12090.93, NULL, 12090.93, 0.00, 12222.58, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.707039+00', 7295000.00, 0.00, 7340000.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (724, '2500224593', '0400056133', '2017-11-30', 'SSFA', 'XAF', 'PROMO DES DROITS DES ENFANTS ET ADO DES REFUGIEES', '2017-11-30', '2018-01-31', 5665.72, NULL, 5665.72, 0.00, 5553.85, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.946383+00', 3136000.00, 0.00, 3136000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (740, '2500228112', '0400057819', '2018-02-13', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT PCA AVEC IHDL/DN/18', '2018-02-13', '2018-03-31', 65496.51, NULL, 65496.51, 0.00, 65496.51, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:30.553002+00', 34572200.00, 0.00, 34572200.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (767, '2500233646', '0400044498', '2016-10-21', 'SSFA', 'XAF', 'FR POUR ENCADREMENT DU CLUB DE REPORTERS DE JEUNES', '2016-10-21', '2017-01-21', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (774, '2500212813', '0400044497', '2016-10-21', 'SSFA', 'XAF', 'FINANCEMENT SSFA ENCADREMENT CLUB JEUNES REPORTERS', '2016-10-21', '2017-01-21', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (804, '2500212820', '0400045018', '2016-11-07', 'Programme Document Against PCA', 'XAF', 'FIN. PCA#0015/2016/PROG WASH/SIF 1ERE TRANCHE', '2016-11-07', '2017-02-07', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (733, '2500212751', '0400049902', '2017-04-25', 'Programme Document Against PCA', 'XAF', 'PRISE EN CHARGE PARTICIPATION À 29ÈME SESSION - LE', '2017-04-18', '2017-07-25', 3850.38, NULL, 3850.38, 0.00, 3850.38, '2018-03-15 16:10:06.407235+00', '2018-07-28 00:01:36.61925+00', 2380025.00, 0.00, 2380025.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (722, '2500215479', '0400000074', '2012-01-23', 'Programme Document Against PCA', 'USD', 'REMBOURSEMENT MONTANT DÉPENSE POUR ACTIVITÉS WASH', '2011-04-15', '2012-12-31', 40012.20, NULL, 40012.20, 0.00, 204300.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:11.814788+00', 0.00, 0.00, 24425.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (725, '2500213951', '0400008580', '2012-12-03', 'Programme Document Against PCA', 'USD', 'FR - DECAISSEMENT DEUXIEME TRANCHE PCA JRS', '2012-12-03', '2012-12-31', 143.88, NULL, 143.88, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.641868+00', 0.00, 0.00, 143.90, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (238, '2500212828', '0400008069', '2012-11-16', 'Programme Document Against PCA', 'USD', 'FONDS POUR MISE EN OEUV APE/UNICEF/TERRE VERTE SAR', '2012-11-01', '2012-12-31', 7820.59, NULL, 7820.59, 0.00, 16621.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.83781+00', 0.00, 0.00, 16621.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (948, '2500237473', '0400062961', '2018-09-07', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME TRANCHE PCA RET', '2018-09-07', '2018-12-07', 278406.55, NULL, 278406.55, 0.00, 278406.55, '2018-09-09 00:01:39.903814+00', '2019-04-27 00:05:12.036565+00', 156650178.00, 0.00, 156650178.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (735, '2500224593', '0400056989', '2017-12-27', 'SSFA', 'XAF', 'SSFA ASSOCIATION SCOUTS DU TCHAD', '2017-12-27', '2018-03-27', 3966.55, NULL, 3966.55, 0.00, 3966.55, '2018-03-15 16:10:06.407235+00', '2018-12-21 00:01:53.970153+00', 2195500.00, 0.00, 2195500.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (14, '2500213931', '0400002884', '2012-05-10', 'Programme Document Against PCA', 'USD', 'FR- PAIEMENT 3È TRANCHE PCA 11/045/ASTBEF/VIH', '2012-05-10', '2012-07-26', 0.00, NULL, 0.00, 0.00, 27040.47, '2018-03-15 16:10:06.407235+00', '2018-07-03 00:02:38.395573+00', 0.00, 0.00, 27100.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (799, '2500223261', '0400016785', '2013-11-22', 'Programme Document Against PCA', 'XAF', 'PAIEMT 1ER TRANCHE A AFDI', '2013-11-22', '2014-01-01', 0.00, NULL, 0.00, 0.00, 51497.74, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:14.834938+00', 0.00, 0.00, 25200109.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (289, '2500229794', '0400023724', '2014-09-08', 'SSFA', 'XAF', 'DECAISSEMENT FONDS SELON PROTOC ACC AVEC AFPAT', '2014-09-08', '2014-12-30', 20065.97, NULL, 20065.97, 0.00, 20065.97, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.166152+00', 9995000.00, 0.00, 9995000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (291, '2500214069', '0400023727', '2014-09-08', 'SSFA', 'XAF', 'ACCORD A PETITE ECHELLE CHD/APE 03/14 AVEC FENAPET', '2014-09-08', '2014-11-30', 7352.56, NULL, 7352.56, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.19298+00', 3662360.00, 0.00, 3662360.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (789, '2500214085', '0400023758', '2014-09-09', 'Programme Document Against PCA', 'XAF', 'DECAISSMT 1ER TRANCH PCA Nº /IAS/2014', '2014-09-09', '2014-12-30', 529439.56, NULL, 529439.56, 0.00, 398167.88, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.227569+00', 263717550.00, 0.00, 263717550.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (139, '2500214084', '0400023761', '2014-09-09', 'Programme Document Against PCA', 'XAF', 'DECAISSMT 1ER TRANCH PCA Nº /OXFAM INTERMON/2014', '2014-09-09', '2014-12-30', 233633.93, NULL, 233633.93, 0.00, 233633.93, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.25128+00', 116374695.00, 0.00, 116374695.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (166, '2500224593', '0400008379', '2012-11-27', 'SSFA', 'USD', 'PAIEMENT 1ER TRANCH A L''ASSOCIATION SCOUTS TCHAD', '2012-11-01', '2012-11-30', 3089.46, NULL, 3089.46, 0.00, 3130.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.9341+00', 0.00, 0.00, 3082.07, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (47, '2500224473', '0400008542', '2012-11-30', 'SSFA', 'USD', 'FONDS POUR PARTICIPATION REAT A ATELIER EAA DAKAR', '2012-11-30', '2012-12-31', 3676.30, NULL, 3676.30, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.963222+00', 0.00, 0.00, 4000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (725, '2500213951', '0400008580', '2012-12-03', 'Programme Document Against PCA', 'USD', 'FR - DECAISSEMENT DEUXIEME TRANCHE PCA JRS', '2012-12-03', '2012-12-31', 143.88, NULL, 143.88, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.975615+00', 0.00, 0.00, 143.90, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (693, '2500227181', '0400022940', '2014-08-08', 'SSFA', 'XAF', 'CAMPAGNE DE PREVENTION DE DETOURNEMENT DES INTRANT', '2014-08-08', '2014-09-30', 12788.42, NULL, 12788.42, 0.00, 12989.45, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.148873+00', 6370000.00, 0.00, 6370000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (751, '2500214085', '0400029468', '2015-04-09', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2E TRANCHE PCA 18/2014/IAS/WASH', '2015-04-09', '2016-12-31', 145255.22, NULL, 145255.22, 0.00, 145255.23, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.924163+00', 87905850.00, 0.00, 87905850.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (723, '2500230977', '0400031446', '2015-06-22', 'SSFA', 'XAF', 'FINANCEMENT APE ADESOL/WASH', '2015-06-22', '2015-12-15', 45281.99, NULL, 45281.99, 0.00, 45281.99, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.08726+00', 27268000.00, 0.00, 27268000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (710, '2500232531', '0400037667', '2016-02-11', 'SSFA', 'XAF', 'FINANCEMENT 2EME TRANCHE SSFA ADRB-ATI/BATHA', '2016-02-11', '2016-05-11', 8058.92, NULL, 8058.92, 0.00, 7764.09, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.931179+00', 4660000.00, 0.00, 4660000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (711, '2500234334', '0400039031', '2016-03-25', 'SSFA', 'XAF', 'FR ACCORD PETITE ECHELLE AVEC ACTT', '2016-03-15', '2016-03-31', 16229.36, NULL, 16229.36, 0.00, 16229.36, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.093197+00', 9523000.00, 0.00, 9523000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (671, '2500231570', '0400039653', '2016-04-19', 'SSFA', 'XAF', 'FR TOUTES LES 3 TRANCHES FIN MAISON DES MEDIAS', '2016-03-17', '2016-12-31', 6189.00, NULL, 6189.00, 0.00, 6190.21, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.265967+00', 3600000.00, 0.00, 3600700.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (697, '2500229339', '0400040395', '2016-05-16', 'Programme Document Against PCA', 'XAF', 'FINANCMENT SNDE TRANCHE PCA/CN/BG/IDRISS/024/16', '2015-09-01', '2016-05-31', 26759.25, NULL, 26759.25, 0.00, 26759.25, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.510616+00', 15482850.00, 0.00, 15482850.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (690, '2500224655', '0400040624', '2016-05-25', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ERE TRANCHE DU PCA CEVANUTRI', '2016-05-25', '2016-08-25', 13785.19, NULL, 13785.19, 0.00, 13785.19, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.538752+00', 7976083.00, 0.00, 7976083.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (713, '2500232845', '0400043972', '2016-10-04', 'SSFA', 'XAF', 'FINANCEMENT MISE EN OEUVRE ACTIVITES ACPV', '2016-10-04', '2017-01-04', 3539.43, NULL, 3539.43, 0.00, 3539.43, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.034661+00', 2070000.00, 0.00, 2070000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (712, '2500232774', '0400043974', '2016-10-04', 'SSFA', 'XAF', 'FINANCEMENT MISE EN OEUVRE ACTIVITES ACPV', '2016-10-04', '2017-01-04', 2923.88, NULL, 2923.88, 0.00, 2923.88, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.04412+00', 1710000.00, 0.00, 1710000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (650, '2500234518', '0400044433', '2016-10-20', 'SSFA', 'XAF', 'FINANCMENT APE 2EME TRANCHE AHEAS', '2016-10-20', '2017-01-20', 3985.91, NULL, 3985.91, 0.00, 3985.91, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.197595+00', 2370000.00, 0.00, 2370000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (696, '2500219686', '0400044849', '2016-11-02', 'SSFA', 'XAF', 'APPUI TECHNIQ LOGISTIQUE/APPROVISINNEMENT/MATERIEL', '2016-11-02', '2017-02-02', 4289.56, NULL, 4289.56, 0.00, 4289.56, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.304634+00', 2576000.00, 0.00, 2576000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (703, '2500229637', '0400044907', '2016-11-03', 'SSFA', 'XAF', 'FR RESEAU DES MAISONS DE QUARTIERS 2NDE TRANCHE', '2016-07-01', '2016-12-31', 12090.93, NULL, 12090.93, 0.00, 12222.58, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.341111+00', 7295000.00, 0.00, 7340000.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (698, '2500234499', '0400045053', '2016-11-08', 'SSFA', 'XAF', 'FIN. MISE EN OEUVRE DE L''ACPV', '2016-11-08', '2017-02-08', 2743.04, NULL, 2743.04, 0.00, 2755.91, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.387233+00', 1655000.00, 0.00, 1655000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (679, '2500229515', '0400045594', '2016-11-23', 'SSFA', 'XAF', 'FR ASSOCIATION ENTRAIDE HAND PHYSIQUES DU TCHAD', '2016-04-15', '2016-12-31', 2734.75, NULL, 2734.75, 0.00, 2734.75, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.466625+00', 1650000.00, 0.00, 1650000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (707, '2500223094', '0400046576', '2016-12-15', 'Programme Document Against PCA', 'XAF', 'APPUI RENFORCEMENT CAPACITES DES COMMUNAUTES', '2016-12-15', '2017-03-15', 84829.88, NULL, 84829.88, 0.00, 84829.88, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.574333+00', 52415957.00, 0.00, 52415957.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (701, '2500213920', '0400046727', '2016-12-30', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT ACTIVITES PCA ACF SUR CHOLERA', '2016-12-30', '2017-03-31', 45750.87, NULL, 45750.87, 0.00, 45847.24, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.662898+00', 28128780.00, 0.00, 28328780.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (726, '2500212817', '0400056138', '2017-11-30', 'SSFA', 'XAF', 'INSERTION PAGE DES ACT VACCINATION CONTRE LA POLIO', '2017-11-30', '2018-01-31', 1328.25, NULL, 1328.25, 0.00, 1328.25, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.85444+00', 750000.00, 0.00, 750000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1101, '2500218808', '0400074627', '2020-03-20', 'Programme Document Against PCA', 'XAF', '03/PCA/2020/WASH/INTERSOS', '2020-04-01', '2020-04-30', 146075.00, 19, 146075.00, 146075.00, 149740.53, '2020-03-22 00:06:43.269032+00', '2020-04-09 00:04:15.902396+00', 86800393.00, 86800393.00, 86800393.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (305, '2500223478', '0400008062', '2012-11-16', 'Programme Document Against PCA', 'USD', 'MISE EN ŒUVRE APE/UNICEF/CAIDEL MAYO BENEYE ET MAY', '2012-11-01', '2012-12-31', 8415.04, NULL, 8415.04, 0.00, 17120.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.808+00', 0.00, 0.00, 25535.64, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (728, '2500237165', '0400056359', '2017-12-06', 'Programme Document Against PCA', 'XAF', 'APPUI AMELIORATION CONDITION WASH DANS 3 UNA', '2017-10-01', '2017-12-31', 116973.25, NULL, 116973.25, 0.00, 116973.25, '2018-03-15 16:10:06.407235+00', '2018-09-15 00:01:57.228543+00', 64745160.00, 0.00, 64745160.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (951, '2500237165', '0400063102', '2018-09-13', 'Programme Document Against PCA', 'XAF', 'COUT SUPPORT INDIRECT DE PROGRAMME 7%', '2018-09-13', '2018-12-13', 91.94, NULL, 91.94, 0.00, 91.94, '2018-09-15 00:01:57.072699+00', '2018-09-21 00:01:34.247638+00', 51730.00, 0.00, 51730.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (888, '2500233978', '0400058165', '2018-02-26', 'Programme Document Against PCA', 'XAF', '2E T EDUC RISQ DE MINES,REG EEI ET MARQ ZONES DANG', '2018-02-26', '2018-05-31', 63694.00, NULL, 63694.00, 0.00, 63694.00, '2018-03-15 16:10:06.407235+00', '2018-10-10 00:01:35.965582+00', 33620752.00, 0.00, 33620752.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (757, '2500214062', '0400035362', '2015-11-17', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2NDE TRANCHE PCA ESMS- UNICEF 006/2015', '2015-09-01', '2015-11-30', 21408.99, NULL, 21408.99, 0.00, 21408.99, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.811527+00', 12812125.00, 0.00, 12812125.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (760, '2500232211', '0400035405', '2015-11-18', 'SSFA', 'XAF', 'FIN 2E T. PROJET PFE & SMNI ASSOS. TOCKODINE MELFI', '2015-07-15', '2015-12-31', 3341.99, NULL, 3341.99, 0.00, 3341.99, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.859641+00', 2000000.00, 0.00, 2000000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (737, '2500213923', '0400035497', '2015-11-19', 'Programme Document Against PCA', 'XAF', 'FR 6E TRANCHE PCA 2014/06/CHD/WASH/ADRA', '2015-11-19', '2015-12-31', 44579.07, NULL, 44579.07, 0.00, 44579.07, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.899002+00', 26678167.00, 0.00, 26678167.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (754, '2500213920', '0400036613', '2015-12-16', 'Programme Document Against PCA', 'XAF', 'REDUCTION DES RISQUES DE PROPAGATION DU CHOLERA', '2012-01-01', '2016-12-31', 162432.72, NULL, 162432.72, 0.00, 162432.72, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.153015+00', 96985981.00, 0.00, 96985981.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (763, '2500212751', '0400040328', '2016-05-12', 'SSFA', 'XAF', 'FR LTDH POUR ACTVITÉS LIEES SOUMISSION RAPPORT ALT', '2016-04-30', '2016-07-29', 18353.36, NULL, 18353.36, 0.00, 18353.36, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.636633+00', 10619215.00, 0.00, 10619215.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (749, '2500221790', '0400044088', '2016-10-07', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT DU PCA#019/2016/PROG-VIH/RNTAP+', '2016-10-07', '2017-01-07', 9128.06, NULL, 9128.06, 0.00, 9280.32, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.174739+00', 5427500.00, 0.00, 5427500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (731, '2500224655', '0400044158', '2016-10-11', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME TRANCHE DU PCA CEVANUTRI', '2016-10-11', '2017-01-11', 51024.35, NULL, 51024.35, 0.00, 51024.35, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.2376+00', 29841083.00, 0.00, 29841083.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (748, '2500234565', '0400044743', '2016-10-28', 'SSFA', 'XAF', 'FINANCEMENT SURVEILLANCE COMMUNAUTAIRE PFA', '2016-09-01', '2016-12-31', 3430.87, NULL, 3430.87, 0.00, 3481.36, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.821551+00', 2070000.00, 0.00, 2070000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (753, '2500232212', '0400046095', '2016-12-05', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME TRANCHE PCA CELIAF BOL', '2016-12-01', '2017-02-28', 10454.85, NULL, 10454.85, 0.00, 10454.85, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.40449+00', 6460000.00, 0.00, 6460000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (787, '2500213951', '0400008916', '2012-12-11', 'Programme Document Against PCA', 'USD', 'FR POUR COMPLEMENT DE PAYEMENT PCA JRS', '2012-12-11', '2012-12-31', 226.22, NULL, 226.22, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.694128+00', 0.00, 0.00, 300.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (746, '2500221790', '0400052019', '2017-06-28', 'Programme Document Against PCA', 'XAF', 'PROJET AMELIORATION ACCES AUX SOINS/UTILISATION', '2017-04-01', '2017-06-30', 70691.61, NULL, 70691.61, 0.00, 70691.61, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.060164+00', 41432000.00, 0.00, 41432000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (729, '2500213985', '0400052072', '2017-06-29', 'Programme Document Against PCA', 'XAF', 'FR REMBOURSEMENT 7% DU PCA AVEC COOPI/FORMAT APE', '2017-06-29', '2017-06-30', 9654.67, NULL, 9654.67, 0.00, 9737.32, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.082661+00', 5564578.00, 0.00, 5706992.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (736, '2500237892', '0400056356', '2017-12-06', 'Programme Document Against PCA', 'XAF', 'MISE EN OEUVRE INTERVENTIONS NUTRITION AU PROFIT P', '2017-12-06', '2018-03-06', 35136.60, NULL, 35136.60, 0.00, 35136.60, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:30.037138+00', 19448250.00, 0.00, 19448250.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (773, '2500219688', '0400014026', '2013-07-16', 'SSFA', 'XAF', 'FONDS POUR MISE EN OEUVRE APE ATPC/ACORD MONGO', '2013-08-01', '2013-01-31', 9781.38, NULL, 9781.38, 0.00, 16302.31, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:16.215433+00', 4921200.00, 0.00, 5031190.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (695, '2500213939', '0400023973', '2014-09-17', 'Programme Document Against PCA', 'XAF', 'FACE 2È TRANCHE PCA/AILS/VIH (REVISÉ)', '2014-09-17', '2014-12-31', 57166.67, NULL, 57166.67, 0.00, 57166.67, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.295902+00', 28475119.00, 0.00, 28475119.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (189, '2500213923', '0400024016', '2014-09-18', 'Programme Document Against PCA', 'XAF', 'DECSIMT 2E TRANCH/PCA06 ADRA/2014/WASH', '2014-09-18', '2014-12-31', 202415.00, NULL, 202415.00, 0.00, 202415.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.326733+00', 100824327.00, 0.00, 100824327.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (188, '2500223094', '0400024018', '2014-09-18', 'SSFA', 'XAF', 'FINANCEMT ATELIER VULGARISATION COMACT WASH', '2014-09-18', '2014-10-30', 13477.50, NULL, 13477.50, 0.00, 10168.50, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.351973+00', 6713236.00, 0.00, 6713236.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (308, '2500221408', '0400024132', '2014-09-23', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT DES FONDS PREFINANCE PAR LA CRT LAC', '2014-09-23', '2014-12-31', 5495.81, NULL, 5495.81, 0.00, 5495.81, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.372447+00', 2737500.00, 0.00, 2737500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (255, '2500225658', '0400024597', '2014-10-14', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT APE Nº30/PRO/POLIO/ADERBA', '2014-10-14', '2015-12-31', 10876.34, NULL, 10876.34, 0.00, 10876.34, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.391215+00', 5615000.00, 0.00, 5615000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (64, '2500213955', '0400000397', '2012-02-16', 'Programme Document Against PCA', 'USD', 'DECAISSEMENT TROISIEME TRANCHE PROJET OEV MOUNDOU', '2012-02-16', '2012-01-31', 39429.20, NULL, 39429.20, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:11.850077+00', 0.00, 0.00, 39470.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (787, '2500213951', '0400008916', '2012-12-11', 'Programme Document Against PCA', 'USD', 'FR POUR COMPLEMENT DE PAYEMENT PCA JRS', '2012-12-11', '2012-12-31', 226.22, NULL, 226.22, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.993713+00', 0.00, 0.00, 300.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (779, '2500224655', '0400048471', '2017-03-06', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 4EME TRANCHE DU PCA CEVANUTRI', '2017-03-01', '2017-05-31', 40853.54, NULL, 40853.54, 0.00, 40853.53, '2018-03-15 16:10:06.407235+00', '2018-12-22 00:01:57.719583+00', 25271751.00, 0.00, 25271751.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (813, '2500234497', '0400039526', '2016-04-14', 'SSFA', 'XAF', 'FR ASDI POUR LA MISE EN OEUVRE DES ACTIVITÉS ACPV', '2016-04-04', '2016-06-30', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (908, '2500214062', '0400059557', '2018-04-17', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA ESMS', '2018-04-17', '2018-07-17', 117214.94, NULL, 117214.94, 0.00, 124635.51, '2018-04-19 00:06:17.326362+00', '2019-04-27 00:05:12.006373+00', 66269500.00, 0.00, 66209500.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (834, '2500221790', '0400016711', '2013-11-19', 'Programme Document Against PCA', 'XAF', 'RNTAP/SUIVI MEDICAL OEV/SUIVI NUTRITIONNEL', '2013-11-19', '2013-12-31', 0.00, NULL, 0.00, 0.00, 10461.97, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:14.714889+00', 0.00, 0.00, 5119500.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (822, '2500213920', '0400031390', '2015-06-18', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT APE ACF/PROJET MEDICO-NUT/ZAFAI', '2015-06-18', '2015-12-31', 0.00, NULL, 0.00, 0.00, 20329.74, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:19.867705+00', 0.00, 0.00, 12242204.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1055, '2500240733', '0400071189', '2019-09-27', 'Programme Document Against PCA', 'XAF', 'ATELIER ELAB DES PLANS ACT DES RADIOS COMMU', '2019-09-27', '2020-01-31', 30358.52, NULL, 30358.52, 30358.52, 30358.52, '2019-10-01 14:41:45.508046+00', '2019-10-01 14:41:46.016259+00', 18120000.00, 18120000.00, 18120000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (811, '2500229712', '0400028962', '2015-03-18', 'SSFA', 'XAF', 'PAIEMENT SSA/COCORICO/ESPRESSION&PARTICIPATION ADO', '2015-03-18', '2015-08-31', 6502.01, NULL, 6502.01, 0.00, 6502.01, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:20.740369+00', 4024000.00, 0.00, 4024000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (809, '2500218808', '0400030605', '2015-05-19', 'SSFA', 'XAF', 'DECAISSMENT APE/INTERSOS/PROTECTION OEV/MIANGAMA', '2015-04-01', '2015-07-30', 52164.94, NULL, 52164.94, 0.00, 52164.94, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.087284+00', 30935687.00, 0.00, 30935687.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (801, '2500212813', '0400030699', '2015-05-22', 'SSFA', 'XAF', 'FINANCEMENT APE RADIO TERRE NOUVELLE', '2015-04-16', '2016-01-31', 5159.89, NULL, 5159.89, 0.00, 5159.89, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.121293+00', 3060000.00, 0.00, 3060000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (305, '2500223478', '0400008062', '2012-11-16', 'Programme Document Against PCA', 'USD', 'MISE EN ŒUVRE APE/UNICEF/CAIDEL MAYO BENEYE ET MAY', '2012-11-01', '2012-12-31', 8415.04, NULL, 8415.04, 0.00, 17120.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.372728+00', 0.00, 0.00, 25535.64, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (837, '2500231559', '0400031391', '2015-06-18', 'SSFA', 'XAF', 'FINANCEMENT APE RESEAU JOURNALISTES/RJAE', '2015-05-01', '2016-01-31', 9940.52, NULL, 9940.52, 0.00, 9940.52, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.387673+00', 5986000.00, 0.00, 5986000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (792, '2500218272', '0400031453', '2015-06-22', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ERE TRANCHE PCA CELIAF NDJAMENA/COMM', '2015-06-22', '2015-12-31', 36057.16, NULL, 36057.16, 0.00, 45281.99, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:21.438448+00', 21712975.00, 0.00, 27268000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (838, '2500227536', '0400033118', '2015-08-27', 'SSFA', 'XAF', 'FINANCEMENT APE PROJET COMM POUR RENFORCEMNT PEV R', '2015-07-01', '2015-09-30', 4781.27, NULL, 4781.27, 0.00, 4781.27, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.016636+00', 2870500.00, 0.00, 2870000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (839, '2500225658', '0400033119', '2015-08-27', 'SSFA', 'XAF', 'FINANCEMENT APE PROJET COMM APPUI À VACC POLIO', '2015-07-01', '2015-09-30', 4622.20, NULL, 4622.20, 0.00, 4622.20, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.037371+00', 2775000.00, 0.00, 2775000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (549, '2500213951', '0400008699', '2012-12-05', 'Programme Document Against PCA', 'USD', 'SUPPLEMENT (70%) PROJET/JRS EDUCATION', '2012-09-01', '2012-12-31', 1541.89, NULL, 1541.89, 0.00, 1542.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.675127+00', 0.00, 0.00, 1542.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (844, '2500232214', '0400035455', '2015-11-19', 'SSFA', 'XAF', 'FR PROMO DES PRATIQUES FAMILIALES ESSENT UHS MANGA', '2015-09-01', '2015-11-30', 3198.28, NULL, 3198.28, 0.00, 3198.28, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.87812+00', 1914000.00, 0.00, 1914000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (835, '2500213955', '0400036452', '2015-12-14', 'Programme Document Against PCA', 'XAF', 'APPUI RENFORCEMENT PROTECTION SOCIALE DES OEV', '2015-06-01', '2016-05-31', 88191.78, NULL, 88191.78, 0.00, 84924.43, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.130583+00', 52657900.00, 0.00, 52657900.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (784, '2500233727', '0400037998', '2016-02-19', 'SSFA', 'XAF', 'FINANCEMENT SSFA CDVT', '2016-02-22', '2016-05-22', 29052.84, NULL, 29052.84, 0.00, 38939.72, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.452007+00', 16799544.00, 0.00, 22516545.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (776, '2500219704', '0400038172', '2016-02-25', 'Programme Document Against PCA', 'XAF', 'FR POUR FINANCMENT 3ÈME TRANCHE PCA CHORA', '2015-11-25', '2016-02-25', 4699.89, NULL, 4699.89, 0.00, 4864.56, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.521327+00', 2812886.00, 0.00, 2812886.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (802, '2500225658', '0400041345', '2016-06-20', 'Programme Document Against PCA', 'XAF', 'FR SNDE TRANCHE PCA ADERBA', '2016-03-07', '2016-12-31', 44737.81, NULL, 44737.81, 0.00, 44737.81, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.08724+00', 26036825.00, 0.00, 26036825.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (805, '2500235790', '0400045019', '2016-11-07', 'Programme Document Against PCA', 'XAF', 'FIN. ACTIVITE SURVEILLANCE A BASE COMMUNAUTAIRE PF', '2016-10-01', '2016-12-31', 63024.54, NULL, 63024.54, 0.00, 63320.18, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.112955+00', 38025540.00, 0.00, 38025540.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (772, '2500212820', '0400045120', '2016-11-09', 'Programme Document Against PCA', 'XAF', 'FIN. PCA#0015/2016/PROG WASH/SIF 1ERE TRANCHE', '2016-11-09', '2017-02-09', 50808.41, NULL, 50808.41, 0.00, 51046.75, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.153396+00', 30655000.00, 0.00, 30655000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (782, '2500234967', '0400046597', '2016-12-15', 'SSFA', 'XAF', 'SEMINAIRE SUR LA LUTTE CONTRE LE MARIAGE DES ENFAN', '2016-12-15', '2017-03-15', 1456.56, NULL, 1456.56, 0.00, 1456.56, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.621255+00', 900000.00, 0.00, 900000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (773, '2500219688', '0400014026', '2013-07-16', 'SSFA', 'XAF', 'FONDS POUR MISE EN OEUVRE APE ATPC/ACORD MONGO', '2013-08-01', '2013-01-31', 9781.38, NULL, 9781.38, 0.00, 16302.31, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.713306+00', 4921200.00, 0.00, 5031190.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (289, '2500229794', '0400023724', '2014-09-08', 'SSFA', 'XAF', 'DECAISSEMENT FONDS SELON PROTOC ACC AVEC AFPAT', '2014-09-08', '2014-12-30', 20065.97, NULL, 20065.97, 0.00, 20065.97, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.311378+00', 9995000.00, 0.00, 9995000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (291, '2500214069', '0400023727', '2014-09-08', 'SSFA', 'XAF', 'ACCORD A PETITE ECHELLE CHD/APE 03/14 AVEC FENAPET', '2014-09-08', '2014-11-30', 7352.56, NULL, 7352.56, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.321639+00', 3662360.00, 0.00, 3662360.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (789, '2500214085', '0400023758', '2014-09-09', 'Programme Document Against PCA', 'XAF', 'DECAISSMT 1ER TRANCH PCA Nº /IAS/2014', '2014-09-09', '2014-12-30', 529439.56, NULL, 529439.56, 0.00, 398167.88, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.330788+00', 263717550.00, 0.00, 263717550.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (695, '2500213939', '0400023973', '2014-09-17', 'Programme Document Against PCA', 'XAF', 'FACE 2È TRANCHE PCA/AILS/VIH (REVISÉ)', '2014-09-17', '2014-12-31', 57166.67, NULL, 57166.67, 0.00, 57166.67, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.360461+00', 28475119.00, 0.00, 28475119.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (189, '2500213923', '0400024016', '2014-09-18', 'Programme Document Against PCA', 'XAF', 'DECSIMT 2E TRANCH/PCA06 ADRA/2014/WASH', '2014-09-18', '2014-12-31', 202415.00, NULL, 202415.00, 0.00, 202415.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.380449+00', 100824327.00, 0.00, 100824327.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (188, '2500223094', '0400024018', '2014-09-18', 'SSFA', 'XAF', 'FINANCEMT ATELIER VULGARISATION COMACT WASH', '2014-09-18', '2014-10-30', 13477.50, NULL, 13477.50, 0.00, 10168.50, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.40166+00', 6713236.00, 0.00, 6713236.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (308, '2500221408', '0400024132', '2014-09-23', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT DES FONDS PREFINANCE PAR LA CRT LAC', '2014-09-23', '2014-12-31', 5495.81, NULL, 5495.81, 0.00, 5495.81, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.41112+00', 2737500.00, 0.00, 2737500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (255, '2500225658', '0400024597', '2014-10-14', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT APE Nº30/PRO/POLIO/ADERBA', '2014-10-14', '2015-12-31', 10876.34, NULL, 10876.34, 0.00, 10876.34, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.425761+00', 5615000.00, 0.00, 5615000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (811, '2500229712', '0400028962', '2015-03-18', 'SSFA', 'XAF', 'PAIEMENT SSA/COCORICO/ESPRESSION&PARTICIPATION ADO', '2015-03-18', '2015-08-31', 6502.01, NULL, 6502.01, 0.00, 6502.01, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.844683+00', 4024000.00, 0.00, 4024000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (809, '2500218808', '0400030605', '2015-05-19', 'SSFA', 'XAF', 'DECAISSMENT APE/INTERSOS/PROTECTION OEV/MIANGAMA', '2015-04-01', '2015-07-30', 52164.94, NULL, 52164.94, 0.00, 52164.94, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.9748+00', 30935687.00, 0.00, 30935687.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (801, '2500212813', '0400030699', '2015-05-22', 'SSFA', 'XAF', 'FINANCEMENT APE RADIO TERRE NOUVELLE', '2015-04-16', '2016-01-31', 5159.89, NULL, 5159.89, 0.00, 5159.89, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.984854+00', 3060000.00, 0.00, 3060000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (757, '2500214062', '0400035362', '2015-11-17', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2NDE TRANCHE PCA ESMS- UNICEF 006/2015', '2015-09-01', '2015-11-30', 21408.99, NULL, 21408.99, 0.00, 21408.99, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.704715+00', 12812125.00, 0.00, 12812125.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (760, '2500232211', '0400035405', '2015-11-18', 'SSFA', 'XAF', 'FIN 2E T. PROJET PFE & SMNI ASSOS. TOCKODINE MELFI', '2015-07-15', '2015-12-31', 3341.99, NULL, 3341.99, 0.00, 3341.99, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.72274+00', 2000000.00, 0.00, 2000000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (737, '2500213923', '0400035497', '2015-11-19', 'Programme Document Against PCA', 'XAF', 'FR 6E TRANCHE PCA 2014/06/CHD/WASH/ADRA', '2015-11-19', '2015-12-31', 44579.07, NULL, 44579.07, 0.00, 44579.07, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.741098+00', 26678167.00, 0.00, 26678167.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (754, '2500213920', '0400036613', '2015-12-16', 'Programme Document Against PCA', 'XAF', 'REDUCTION DES RISQUES DE PROPAGATION DU CHOLERA', '2012-01-01', '2016-12-31', 162432.72, NULL, 162432.72, 0.00, 162432.72, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.839122+00', 96985981.00, 0.00, 96985981.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (763, '2500212751', '0400040328', '2016-05-12', 'SSFA', 'XAF', 'FR LTDH POUR ACTVITÉS LIEES SOUMISSION RAPPORT ALT', '2016-04-30', '2016-07-29', 18353.36, NULL, 18353.36, 0.00, 18353.36, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.46898+00', 10619215.00, 0.00, 10619215.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (749, '2500221790', '0400044088', '2016-10-07', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT DU PCA#019/2016/PROG-VIH/RNTAP+', '2016-10-07', '2017-01-07', 9128.06, NULL, 9128.06, 0.00, 9280.32, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.052938+00', 5427500.00, 0.00, 5427500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (731, '2500224655', '0400044158', '2016-10-11', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME TRANCHE DU PCA CEVANUTRI', '2016-10-11', '2017-01-11', 51024.35, NULL, 51024.35, 0.00, 51024.35, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.072219+00', 29841083.00, 0.00, 29841083.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (748, '2500234565', '0400044743', '2016-10-28', 'SSFA', 'XAF', 'FINANCEMENT SURVEILLANCE COMMUNAUTAIRE PFA', '2016-09-01', '2016-12-31', 3430.87, NULL, 3430.87, 0.00, 3481.36, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.296036+00', 2070000.00, 0.00, 2070000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (753, '2500232212', '0400046095', '2016-12-05', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME TRANCHE PCA CELIAF BOL', '2016-12-01', '2017-02-28', 10454.85, NULL, 10454.85, 0.00, 10454.85, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.505624+00', 6460000.00, 0.00, 6460000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (729, '2500213985', '0400052072', '2017-06-29', 'Programme Document Against PCA', 'XAF', 'FR REMBOURSEMENT 7% DU PCA AVEC COOPI/FORMAT APE', '2017-06-29', '2017-06-30', 9654.67, NULL, 9654.67, 0.00, 9737.32, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.783138+00', 5564578.00, 0.00, 5706992.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1055, '2500240733', '0400071189', '2019-09-27', 'Programme Document Against PCA', 'XAF', 'ATELIER ELAB DES PLANS ACT DES RADIOS COMMU', '2019-09-27', '2020-01-31', 30358.52, 11, 30358.52, 834.36, 30358.52, '2019-10-01 14:41:45.508046+00', '2020-01-17 00:06:25.632398+00', 18120000.00, 498000.00, 18120000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (821, '2500214085', '0400057013', '2017-12-28', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA IAS', '2017-12-28', '2017-12-31', 0.00, NULL, 0.00, 0.00, 12863.50, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:30.008319+00', 0.00, 0.00, 7120000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (853, '2500213951', '0400008481', '2012-11-29', 'Programme Document Against PCA', 'USD', 'FC - DECAISSEMENT DEUXIEME TRANCHE PCA JRS', '2012-11-29', '2012-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (862, '2500225906', '0400013153', '2013-06-06', 'Programme Document Against PCA', 'USD', 'PAIEMENT INTEGRALE APE TCHAD - SOS', '2013-06-06', '2013-09-06', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-03-15 16:10:06.795671+00', 0.00, 0.00, 0.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (333, '2500226920', '0400024802', '2014-10-21', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 1ERE TRANCHE ACRA', '2014-10-21', '2015-10-31', 251629.18, NULL, 251629.18, 0.00, 256704.98, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.525828+00', 132523529.00, 0.00, 132526000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (856, '2300006133', '0400006438', '2012-09-12', 'SSFA', 'USD', 'CAMPAGNE DE SENSIBILISATION PAR ACRA (ACCORD)', '2012-09-01', '2012-10-31', 10438.07, NULL, 10438.07, 0.00, 10500.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.038009+00', 0.00, 0.00, 10500.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (855, '2500213951', '0400008484', '2012-11-29', 'Programme Document Against PCA', 'USD', 'FR - DECAISSEMENT DEUXIEME TRANCHE PCA JRS', '2012-11-29', '2012-12-31', 24164.72, NULL, 24164.72, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.574839+00', 0.00, 0.00, 24166.46, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (855, '2500213951', '0400008484', '2012-11-29', 'Programme Document Against PCA', 'USD', 'FR - DECAISSEMENT DEUXIEME TRANCHE PCA JRS', '2012-11-29', '2012-12-31', 24164.72, NULL, 24164.72, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.943484+00', 0.00, 0.00, 24166.46, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (949, '2500213923', '0400063031', '2018-09-11', 'Programme Document Against PCA', 'XAF', 'COUT SUPPORT INDIRECT DE PROGRAMME 7%', '2018-09-11', '2018-12-11', 2510.16, NULL, 2510.16, 0.00, 2574.88, '2018-09-13 00:01:58.980383+00', '2018-11-29 00:01:59.438824+00', 1448799.00, 0.00, 1448799.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (945, '2500214085', '0400062859', '2018-09-03', 'Programme Document Against PCA', 'XAF', 'COUT SUPPORT INDIRECT DE PROGRAMME 7%', '2018-09-03', '2018-12-03', 0.00, NULL, 0.00, 0.00, 6099.10, '2018-09-06 00:05:22.796752+00', '2018-11-14 00:01:58.949801+00', 0.00, 0.00, 3431762.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (882, '2500221169', '0400014536', '2013-08-07', 'Programme Document Against PCA', 'USD', 'CHANGEMENT SOURCE FINANCEMENT SM 130125 - SM130262', '2013-08-07', '2013-10-26', 0.00, NULL, 0.00, 0.00, 100105.49, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:13.766125+00', 0.00, 0.00, 102105.49, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (334, '2500212819', '0400024804', '2014-10-21', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 1ERE TRANCHE SECADEV', '2014-10-21', '2015-07-31', 72322.56, NULL, 72322.56, 0.00, 96854.67, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.54237+00', 37615327.00, 0.00, 50002000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (861, '2500223261', '0400013154', '2013-06-06', 'Programme Document Against PCA', 'USD', 'REMBOURSEMENT APE AFDI', '2013-06-06', '2013-06-30', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.204152+00', 0.00, 0.00, 0.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (234, '2500000156', '0400024849', '2014-10-22', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 1ERE TRANCHE CORD /PBE & A', '2014-10-22', '2015-07-31', 109362.41, NULL, 109362.41, 0.00, 373362.22, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.567662+00', 56459220.00, 0.00, 56461220.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (756, '2500221314', '0400025062', '2014-10-30', 'Programme Document Against PCA', 'XAF', 'PRISE EN CHARGE DE 50 OEV', '2014-10-30', '2014-12-31', 3987.38, NULL, 3987.38, 0.00, 4067.73, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.600633+00', 2100000.00, 0.00, 2100000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (876, '2500213931', '0400022057', '2014-07-01', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME T PCA 2013/15/ASTBEF/VIH (FM)', '2013-12-02', '2014-12-31', 0.00, NULL, 0.00, 0.00, 21446.45, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:17.21407+00', 0.00, 0.00, 10352458.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (841, '2500237900', '0400057385', '2018-01-24', 'SSFA', 'XAF', 'REALISATION SPOTS RADIO ET TELEVISION SUR L''ALIMEN', '2018-01-01', '2018-02-28', 14475.15, NULL, 14475.15, 0.00, 14475.15, '2018-03-15 16:10:06.407235+00', '2018-07-08 00:01:42.000964+00', 7947000.00, 0.00, 7947000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (812, '2500237522', '0400056998', '2017-12-27', 'Programme Document Against PCA', 'XAF', 'AMELIO EQUITE ET QUALITE DE L''EDUC ENFANTS REFUGIE', '2017-12-27', '2018-03-27', 132879.87, NULL, 132879.87, 0.00, 132879.87, '2018-03-15 16:10:06.407235+00', '2018-08-28 13:22:20.412778+00', 73549537.00, 0.00, 73549537.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (823, '2500213931', '0400008987', '2012-12-12', 'SSFA', 'USD', 'FC- PAIEMENT ACCORD À PETITE ECHELLE/ASTBEF/VIH', '2012-12-12', '2013-02-28', 20096.96, NULL, 20096.96, 0.00, 20099.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.737278+00', 0.00, 0.00, 20100.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (830, '2500225653', '0400037842', '2016-02-16', 'SSFA', 'XAF', 'FINANCEMENT SSFA ASSOCIATION MENTOR INITIATIVE', '2016-02-16', '2016-05-16', 35003.28, NULL, 35003.28, 0.00, 35003.28, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.383011+00', 20240334.00, 0.00, 20240334.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (824, '2500228112', '0400038441', '2016-03-07', 'Programme Document Against PCA', 'XAF', 'FR PCA/2015/CHAD/PROT/IHDL', '2016-03-07', '2016-06-07', 103226.94, NULL, 103226.94, 0.00, 103226.94, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.60768+00', 61781425.00, 0.00, 61781425.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (819, '2500223261', '0400038884', '2016-03-21', 'Programme Document Against PCA', 'XAF', 'FINANCMENT 1ERE TRANCHE PCA AVEC AFDI 2', '2016-03-01', '2016-12-31', 9281.57, NULL, 9281.57, 0.00, 9281.57, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.771355+00', 5446200.00, 0.00, 5446200.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (810, '2500234757', '0400041226', '2016-06-15', 'SSFA', 'XAF', 'FR UNION GROUPMENT FEMININ DE NYA BEBIDJIA', '2016-04-29', '2016-12-31', 3818.81, NULL, 3818.81, 0.00, 3818.81, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.038735+00', 2222500.00, 0.00, 2222500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (827, '2500234497', '0400044336', '2016-10-17', 'SSFA', 'XAF', 'FINANCEMENT 2EME TRANCHE ACTIVITES ACPV', '2016-10-03', '2017-01-03', 3279.54, NULL, 3279.54, 0.00, 3279.54, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.435871+00', 1950000.00, 0.00, 1950000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (828, '2500221790', '0400044339', '2016-10-17', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT DU PCA#019/2016/PROG-VIH/RNTAP+', '2016-10-17', '2017-01-17', 62812.08, NULL, 62812.08, 0.00, 62812.08, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.455074+00', 37347750.00, 0.00, 37347750.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (808, '2500234757', '0400045015', '2016-11-07', 'SSFA', 'XAF', 'FIN. MISE EN OEUVRE DE L''ACPV PAR FMDN', '2016-11-07', '2017-02-07', 3240.27, NULL, 3240.27, 0.00, 3255.47, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.092529+00', 1955000.00, 0.00, 1955000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (831, '2500212820', '0400045122', '2016-11-09', 'Programme Document Against PCA', 'XAF', 'FIN. PCA#0015/2016/PROG WASH/SIF 2EME TRANCHE', '2016-11-09', '2017-02-09', 95920.66, NULL, 95920.66, 0.00, 96370.61, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.173292+00', 57873250.00, 0.00, 57873250.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (836, '2500212820', '0400045124', '2016-11-09', 'Programme Document Against PCA', 'XAF', 'FIN. PCA#0015/2016/PROG WASH/SIF 2EME TRANCHE', '2016-11-09', '2017-02-09', 95920.66, NULL, 95920.66, 0.00, 96370.61, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.195304+00', 57873250.00, 0.00, 57873250.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (549, '2500213951', '0400008699', '2012-12-05', 'Programme Document Against PCA', 'USD', 'SUPPLEMENT (70%) PROJET/JRS EDUCATION', '2012-09-01', '2012-12-31', 1541.89, NULL, 1541.89, 0.00, 1542.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.984637+00', 0.00, 0.00, 1542.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (823, '2500213931', '0400008987', '2012-12-12', 'SSFA', 'USD', 'FC- PAIEMENT ACCORD À PETITE ECHELLE/ASTBEF/VIH', '2012-12-12', '2013-02-28', 20096.96, NULL, 20096.96, 0.00, 20099.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.012359+00', 0.00, 0.00, 20100.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (333, '2500226920', '0400024802', '2014-10-21', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 1ERE TRANCHE ACRA', '2014-10-21', '2015-10-31', 251629.18, NULL, 251629.18, 0.00, 256704.98, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.483812+00', 132523529.00, 0.00, 132526000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (334, '2500212819', '0400024804', '2014-10-21', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 1ERE TRANCHE SECADEV', '2014-10-21', '2015-07-31', 72322.56, NULL, 72322.56, 0.00, 96854.67, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.492458+00', 37615327.00, 0.00, 50002000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (234, '2500000156', '0400024849', '2014-10-22', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 1ERE TRANCHE CORD /PBE & A', '2014-10-22', '2015-07-31', 109362.41, NULL, 109362.41, 0.00, 373362.22, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.504856+00', 56459220.00, 0.00, 56461220.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (756, '2500221314', '0400025062', '2014-10-30', 'Programme Document Against PCA', 'XAF', 'PRISE EN CHARGE DE 50 OEV', '2014-10-30', '2014-12-31', 3987.38, NULL, 3987.38, 0.00, 4067.73, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.533561+00', 2100000.00, 0.00, 2100000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (837, '2500231559', '0400031391', '2015-06-18', 'SSFA', 'XAF', 'FINANCEMENT APE RESEAU JOURNALISTES/RJAE', '2015-05-01', '2016-01-31', 9940.52, NULL, 9940.52, 0.00, 9940.52, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.078169+00', 5986000.00, 0.00, 5986000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (792, '2500218272', '0400031453', '2015-06-22', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ERE TRANCHE PCA CELIAF NDJAMENA/COMM', '2015-06-22', '2015-12-31', 36057.16, NULL, 36057.16, 0.00, 45281.99, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.097498+00', 21712975.00, 0.00, 27268000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (838, '2500227536', '0400033118', '2015-08-27', 'SSFA', 'XAF', 'FINANCEMENT APE PROJET COMM POUR RENFORCEMNT PEV R', '2015-07-01', '2015-09-30', 4781.27, NULL, 4781.27, 0.00, 4781.27, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.338765+00', 2870500.00, 0.00, 2870000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (839, '2500225658', '0400033119', '2015-08-27', 'SSFA', 'XAF', 'FINANCEMENT APE PROJET COMM APPUI À VACC POLIO', '2015-07-01', '2015-09-30', 4622.20, NULL, 4622.20, 0.00, 4622.20, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.348045+00', 2775000.00, 0.00, 2775000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (844, '2500232214', '0400035455', '2015-11-19', 'SSFA', 'XAF', 'FR PROMO DES PRATIQUES FAMILIALES ESSENT UHS MANGA', '2015-09-01', '2015-11-30', 3198.28, NULL, 3198.28, 0.00, 3198.28, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.731835+00', 1914000.00, 0.00, 1914000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (835, '2500213955', '0400036452', '2015-12-14', 'Programme Document Against PCA', 'XAF', 'APPUI RENFORCEMENT PROTECTION SOCIALE DES OEV', '2015-06-01', '2016-05-31', 88191.78, NULL, 88191.78, 0.00, 84924.43, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.830242+00', 52657900.00, 0.00, 52657900.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (830, '2500225653', '0400037842', '2016-02-16', 'SSFA', 'XAF', 'FINANCEMENT SSFA ASSOCIATION MENTOR INITIATIVE', '2016-02-16', '2016-05-16', 35003.28, NULL, 35003.28, 0.00, 35003.28, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.941215+00', 20240334.00, 0.00, 20240334.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (784, '2500233727', '0400037998', '2016-02-19', 'SSFA', 'XAF', 'FINANCEMENT SSFA CDVT', '2016-02-22', '2016-05-22', 29052.84, NULL, 29052.84, 0.00, 38939.72, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.966377+00', 16799544.00, 0.00, 22516545.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (776, '2500219704', '0400038172', '2016-02-25', 'Programme Document Against PCA', 'XAF', 'FR POUR FINANCMENT 3ÈME TRANCHE PCA CHORA', '2015-11-25', '2016-02-25', 4699.89, NULL, 4699.89, 0.00, 4864.56, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.984862+00', 2812886.00, 0.00, 2812886.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (824, '2500228112', '0400038441', '2016-03-07', 'Programme Document Against PCA', 'XAF', 'FR PCA/2015/CHAD/PROT/IHDL', '2016-03-07', '2016-06-07', 103226.94, NULL, 103226.94, 0.00, 103226.94, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.024855+00', 61781425.00, 0.00, 61781425.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (819, '2500223261', '0400038884', '2016-03-21', 'Programme Document Against PCA', 'XAF', 'FINANCMENT 1ERE TRANCHE PCA AVEC AFDI 2', '2016-03-01', '2016-12-31', 9281.57, NULL, 9281.57, 0.00, 9281.57, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.083035+00', 5446200.00, 0.00, 5446200.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (810, '2500234757', '0400041226', '2016-06-15', 'SSFA', 'XAF', 'FR UNION GROUPMENT FEMININ DE NYA BEBIDJIA', '2016-04-29', '2016-12-31', 3818.81, NULL, 3818.81, 0.00, 3818.81, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.613389+00', 2222500.00, 0.00, 2222500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (802, '2500225658', '0400041345', '2016-06-20', 'Programme Document Against PCA', 'XAF', 'FR SNDE TRANCHE PCA ADERBA', '2016-03-07', '2016-12-31', 44737.81, NULL, 44737.81, 0.00, 44737.81, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.631977+00', 26036825.00, 0.00, 26036825.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (827, '2500234497', '0400044336', '2016-10-17', 'SSFA', 'XAF', 'FINANCEMENT 2EME TRANCHE ACTIVITES ACPV', '2016-10-03', '2017-01-03', 3279.54, NULL, 3279.54, 0.00, 3279.54, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.131832+00', 1950000.00, 0.00, 1950000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (828, '2500221790', '0400044339', '2016-10-17', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT DU PCA#019/2016/PROG-VIH/RNTAP+', '2016-10-17', '2017-01-17', 62812.08, NULL, 62812.08, 0.00, 62812.08, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.140626+00', 37347750.00, 0.00, 37347750.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (808, '2500234757', '0400045015', '2016-11-07', 'SSFA', 'XAF', 'FIN. MISE EN OEUVRE DE L''ACPV PAR FMDN', '2016-11-07', '2017-02-07', 3240.27, NULL, 3240.27, 0.00, 3255.47, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.369305+00', 1955000.00, 0.00, 1955000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (805, '2500235790', '0400045019', '2016-11-07', 'Programme Document Against PCA', 'XAF', 'FIN. ACTIVITE SURVEILLANCE A BASE COMMUNAUTAIRE PF', '2016-10-01', '2016-12-31', 63024.54, NULL, 63024.54, 0.00, 63320.18, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.378405+00', 38025540.00, 0.00, 38025540.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (772, '2500212820', '0400045120', '2016-11-09', 'Programme Document Against PCA', 'XAF', 'FIN. PCA#0015/2016/PROG WASH/SIF 1ERE TRANCHE', '2016-11-09', '2017-02-09', 50808.41, NULL, 50808.41, 0.00, 51046.75, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.395719+00', 30655000.00, 0.00, 30655000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (831, '2500212820', '0400045122', '2016-11-09', 'Programme Document Against PCA', 'XAF', 'FIN. PCA#0015/2016/PROG WASH/SIF 2EME TRANCHE', '2016-11-09', '2017-02-09', 95920.66, NULL, 95920.66, 0.00, 96370.61, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.405469+00', 57873250.00, 0.00, 57873250.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (782, '2500234967', '0400046597', '2016-12-15', 'SSFA', 'XAF', 'SEMINAIRE SUR LA LUTTE CONTRE LE MARIAGE DES ENFAN', '2016-12-15', '2017-03-15', 1456.56, NULL, 1456.56, 0.00, 1456.56, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.584224+00', 900000.00, 0.00, 900000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (820, '2500232213', '0400048655', '2017-03-10', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA/2016/009/PROG/SN/ASSOCIAT. AL-NA', '2017-03-10', '2017-06-10', 11590.80, NULL, 11590.80, 0.00, 11590.80, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.101323+00', 7170000.00, 0.00, 7170000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (843, '2500228510', '0400050927', '2017-05-24', 'Programme Document Against PCA', 'XAF', '4E T PCA,SUIVI ET DEVELOPPEMENT DE L''ENFANT', '2017-05-24', '2017-05-31', 222577.85, NULL, 222577.85, 0.00, 222577.85, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.590666+00', 134514032.00, 0.00, 134514032.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (847, '2500227181', '0400056251', '2017-12-04', 'SSFA', 'XAF', 'FR SSFA COMPAGNIE HADRE DOUNIA', '2017-12-04', '2018-03-12', 11138.14, NULL, 11138.14, 0.00, 11138.13, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:30.011485+00', 6165000.00, 0.00, 6165000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (631, '2500227554', '0400018638', '2014-02-19', 'SSFA', 'XAF', 'FINANCEMENT APE Nº06/PRO/POLIO/TTLMESSAGER PAIX', '2014-02-19', '2014-12-31', 9570.71, NULL, 9570.71, 0.00, 9570.71, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.320783+00', 4625000.00, 0.00, 4625000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (875, '2500224593', '0400055057', '2017-10-24', 'SSFA', 'XAF', 'PROJET PROMOTION DES DROITS ET DE LA PARTICIPATION', '2017-10-24', '2018-01-24', 0.00, NULL, 0.00, 0.00, 6178.92, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:29.055756+00', 0.00, 0.00, 3436000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (5, '2500212801', '0400009462', '2012-12-27', 'SSFA', 'USD', 'DÉCAISSEMENT 1° TRANCHE À LA RADIO BRAKOSS', '2012-12-27', '2013-04-30', 3642.94, NULL, 3642.94, 0.00, 4700.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.021444+00', 0.00, 0.00, 3644.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (874, '2500213920', '0400055050', '2017-10-24', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE PREVENTION,REPONSE CHOLERA, SALAMAT', '2017-10-24', '2018-01-24', 186930.93, NULL, 186930.93, 0.00, 373861.86, '2018-03-15 16:10:06.407235+00', '2018-06-30 00:02:46.074873+00', 103949299.00, 0.00, 207898598.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (94, '2500236830', '0400050967', '2017-05-25', 'SSFA', 'XAF', 'RENF CAP DES JEUNES SUR LES TECH DE PLAIDOYER', '2017-05-25', '2017-12-31', 20252.69, NULL, 20252.69, 0.00, 19641.07, '2018-03-15 16:10:06.407235+00', '2018-10-19 00:01:48.226614+00', 11870000.00, 0.00, 11870000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (63, '2500213955', '0400000396', '2012-02-16', 'Programme Document Against PCA', 'USD', 'DECAISSEMENT TROISIEME TRANCHE PROJET OEV KELO', '2012-02-16', '2012-01-31', 35976.88, NULL, 35976.88, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:11.833317+00', 0.00, 0.00, 34675.80, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (755, '2500230253', '0400025063', '2014-10-30', 'Programme Document Against PCA', 'XAF', 'PRISE EN CHARGE DE 47 OEV', '2014-10-30', '2014-12-31', 14343.17, NULL, 14343.17, 0.00, 14632.22, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.624981+00', 7554000.00, 0.00, 7554000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1, '2500213954', '0400018366', '2014-02-10', 'Programme Document Against PCA', 'XAF', 'EXTENSION AVEC COUT PCA Nº01/2013/CHD-/PROT/CARE', '2014-02-10', '2014-08-31', 0.00, NULL, 0.00, 0.00, 178813.57, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:15.419837+00', 0.00, 0.00, 86410763.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1039, '2500237473', '0400069370', '2019-06-28', 'Programme Document Against PCA', 'XAF', 'ORGANISATION MISE EN OEUVRE ACTIVITE PALIDOYER COM', '2019-06-28', '2019-09-28', 51078.75, NULL, 51078.75, 0.00, 49997.12, '2019-07-01 00:22:32.343901+00', '2019-10-10 00:11:25.878413+00', 29484800.00, 0.00, 29484800.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (720, '2500214090', '0400000071', '2012-01-23', 'Programme Document Against PCA', 'USD', 'DCT COMPLEMENT 2ÈRE TRANCHE PCA CHOLÉRA IRW', '2011-09-01', '2012-02-28', 77475.22, NULL, 77475.22, 0.00, 395775.00, '2018-03-15 16:10:06.407235+00', '2018-07-03 00:02:37.848913+00', 0.00, 0.00, 79156.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (63, '2500213955', '0400000396', '2012-02-16', 'Programme Document Against PCA', 'USD', 'DECAISSEMENT TROISIEME TRANCHE PROJET OEV KELO', '2012-02-16', '2012-01-31', 35976.88, NULL, 35976.88, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:51.832773+00', 0.00, 0.00, 34675.80, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (885, '2500223261', '0400024499', '2014-10-10', 'Programme Document Against PCA', 'XAF', 'DECAISSMT 2E TRANCH PCA Nº8/AFDI/2014', '2014-10-10', '2015-01-10', 0.00, NULL, 0.00, 0.00, 69321.97, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:18.200469+00', 0.00, 0.00, 35788023.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (646, '2500221169', '0400025127', '2014-11-03', 'Programme Document Against PCA', 'XAF', 'FINCMT PCA Nº22/2014 WASH-EDUCATION/CRT', '2014-11-03', '2015-07-31', 182863.33, NULL, 182863.33, 0.00, 217394.02, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.642794+00', 96307169.00, 0.00, 113067717.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (246, '2500213954', '0400000405', '2012-02-16', 'Programme Document Against PCA', 'USD', 'PAIEMENT DEUXIEME TRANCHE PROJET DDR CARE 2011', '2012-02-16', '2012-03-31', 204482.75, NULL, 204482.75, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:11.880019+00', 0.00, 0.00, 193781.51, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (407, '2500212820', '0400051627', '2017-06-14', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT 7% DU PCA AVEC SIF', '2016-10-19', '2017-06-30', 50833.72, NULL, 50833.72, 0.00, 50840.55, '2018-03-15 16:10:06.407235+00', '2018-10-13 00:02:13.699988+00', 29793390.00, 0.00, 29797390.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (815, '2500212801', '0400011871', '2013-04-19', 'SSFA', 'USD', 'DÉCAISSEMENT 2° TRANCHE À LA RADIO BRAKOSS', '2013-04-19', '2013-07-15', 3975.20, NULL, 3975.20, 0.00, 3902.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.450602+00', 0.00, 0.00, 4000.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (899, '2500212819', '0400059095', '2018-03-29', 'Programme Document Against PCA', 'XAF', 'FR PCA AVEC SECADEV SNDE TRANCHE', '2018-06-01', '2018-06-30', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-31 00:04:24.685605+00', '2018-10-05 00:01:45.811305+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (520, '2500201346', '0400000415', '2012-02-17', 'Programme Document Against PCA', 'USD', 'REMBOURSEMENT 1ÈRE TRANCHE PCA CHOLÉRA OGB', '2011-11-01', '2012-01-31', 0.00, NULL, 0.00, 0.00, 388900.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:34.835952+00', 0.00, 0.00, 190537.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (747, '2500224727', '0400009034', '2012-12-13', 'Programme Document Against PCA', 'USD', 'ACTION POUR REHABILITATION NUTRITIONNELLE DE MAO', '2012-12-13', '2013-03-13', 8430.23, NULL, 8430.23, 0.00, 16862.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.157742+00', 0.00, 0.00, 16862.00, true, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (846, '2500219704', '0400022281', '2014-07-10', 'SSFA', 'XAF', 'APPUYER ET COORDONNER LA REALISATION DES ETUDES', '2014-07-10', '2014-11-10', 0.00, NULL, 0.00, 0.00, 414.33, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.387502+00', 0.00, 0.00, 200000.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (886, '2500232779', '0400033354', '2015-09-05', 'SSFA', 'XAF', 'FINANCEMENT APE - AMVS KYABÉ', '2015-07-01', '2015-09-30', 4971.88, NULL, 4971.88, 0.00, 4971.88, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.21834+00', 2900000.00, 0.00, 2900000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (863, '2500233778', '0400036774', '2015-12-22', 'SSFA', 'XAF', 'FINANCEMENT REALISATION MAGAZINE,MICROP RADIO ET V', '2015-12-22', '2016-01-31', 15115.13, NULL, 15115.13, 0.00, 15115.13, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.261253+00', 9025000.00, 0.00, 9025000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (849, '2500234557', '0400039767', '2016-04-22', 'SSFA', 'XAF', 'FR SSFA GROUP ASSO FEMMES ALINGUE POUR ACT ACPV', '2016-04-07', '2016-09-30', 4022.85, NULL, 4022.85, 0.00, 4022.85, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.273381+00', 2340000.00, 0.00, 2340000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (879, '2500234736', '0400040508', '2016-05-19', 'SSFA', 'XAF', 'FR MISE EN OEUVRE ACPV PAR RADIO KADAYE BOL', '2016-04-15', '2016-12-31', 2133.07, NULL, 2133.07, 0.00, 2169.04, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.74923+00', 1255000.00, 0.00, 1255000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (851, '2500232382', '0400041688', '2016-06-30', 'Programme Document Against PCA', 'XAF', 'FR PCA ASSOCIATION POUR L''AUTOPROMOTION RURALE', '2016-04-01', '2016-11-30', 22557.80, NULL, 22557.80, 0.00, 22557.80, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.484715+00', 13380000.00, 0.00, 13380000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (880, '2500212828', '0400044590', '2016-10-25', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME TRANCHE PCA ASSOCIATION TERRE VER', '2016-09-01', '2016-11-30', 82640.95, NULL, 82640.95, 0.00, 82640.95, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.669596+00', 49137896.00, 0.00, 49137896.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (868, '2500232403', '0400044741', '2016-10-28', 'SSFA', 'XAF', 'FINANCEMENT MISE EN OEUVRE ACTIVITE ACPV', '2016-10-28', '2017-01-28', 2270.67, NULL, 2270.67, 0.00, 2304.09, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.77261+00', 1370000.00, 0.00, 1370000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (857, '2500213923', '0400048625', '2017-03-09', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT AVENANT PCA DE ADRA, APPROV EN EAU', '2017-03-01', '2017-05-31', 316900.88, NULL, 316900.88, 0.00, 314970.05, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.050454+00', 194838584.00, 0.00, 194838584.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (386, '2500224923', '0400009300', '2012-12-19', 'SSFA', 'USD', 'DÉCAISSEMENT 1° TRANCHE À LA RADIO ZAHSOO DE LÉRÉ', '2012-12-19', '2013-12-31', 2415.43, NULL, 2415.43, 0.00, 2417.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.854294+00', 0.00, 0.00, 2417.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (387, '2500215493', '0400009301', '2012-12-19', 'SSFA', 'USD', 'DÉCAISSEMENT 1° TRANCHE À LA RADIO COMM. DE MONGO', '2012-12-19', '2013-12-31', 3860.72, NULL, 3860.72, 0.00, 3865.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.875837+00', 0.00, 0.00, 3865.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (957, '2500238464', '0400063568', '2018-10-01', 'Programme Document Against PCA', 'XAF', 'ACTIVITES MOBILISATION COMMUNAUTAIRE AU NIVEAU', '2018-08-24', '2018-11-24', 80825.55, NULL, 80825.55, 0.00, 80825.55, '2018-10-05 00:01:44.349996+00', '2018-12-23 00:01:59.509493+00', 45353400.00, 0.00, 45353400.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (887, '2500214085', '0400057220', '2018-01-18', 'Programme Document Against PCA', 'XAF', 'AMELIORATION ACCES EAU POTABLE, ASSAINISSEMENT', '2018-01-18', '2018-04-18', 44027.13, NULL, 44027.13, 0.00, 44027.13, '2018-03-15 16:10:06.407235+00', '2018-06-02 00:02:29.543749+00', 24171333.00, 0.00, 24171333.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (245, '2500213951', '0400000406', '2012-02-16', 'Programme Document Against PCA', 'USD', 'PAIEMENT DEUXIEME TRANCHE PROJET DDR JRS 2011', '2012-02-16', '2012-03-31', 198734.57, NULL, 198734.57, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:11.907999+00', 0.00, 0.00, 186002.47, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (157, '2500213951', '0400004208', '2012-06-19', 'Programme Document Against PCA', 'USD', 'PCA AVEC JRS PR EDUCATION DANS LES SITES IDPS SILA', '2012-09-01', '2012-12-31', 79919.43, NULL, 79919.43, 0.00, 80000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.847516+00', 0.00, 0.00, 80000.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (401, '2500212785', '0400004215', '2012-06-19', 'SSFA', 'USD', 'PROJET D''APPUI AUX APE/AME A L''EST DU TCHAD', '2012-06-19', '2012-09-30', 20253.94, NULL, 20253.94, 0.00, 19800.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.891592+00', 0.00, 0.00, 20374.33, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (102, '2500223457', '0400006196', '2012-09-04', 'SSFA', 'USD', 'FR-FINANCEMENT APE/CSAI/BOL EN FAVEUR DE LA PTME', '2012-09-04', '2012-12-31', 6099.68, NULL, 6099.68, 0.00, 6099.68, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:13.257309+00', 0.00, 0.00, 6099.68, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (683, '2500224381', '0400008070', '2012-11-16', 'Programme Document Against PCA', 'USD', 'FONDS POUR MISE EN OEUV APE/UNICEF/AFASALESAMTIMAN', '2012-11-01', '2012-12-31', 8568.98, NULL, 8568.98, 0.00, 18000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.464255+00', 0.00, 0.00, 18000.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (571, '2500224402', '0400008071', '2012-11-16', 'Programme Document Against PCA', 'USD', 'FONDS POUR MISE EN OEUV APE/UNICEF/DARASALAAMTIMAN', '2012-12-01', '2013-05-30', 9094.26, NULL, 9094.26, 0.00, 18145.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.486438+00', 0.00, 0.00, 18145.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (382, '2500212813', '0400009304', '2012-12-19', 'SSFA', 'USD', 'DÉCAISSEMENT 1° TRANCHE À LA RADIO TERRE NOUVELLE', '2012-12-19', '2013-04-30', 3375.66, NULL, 3375.66, 0.00, 3377.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.917988+00', 0.00, 0.00, 3377.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (383, '2500215499', '0400009305', '2012-12-19', 'SSFA', 'USD', 'DÉCAISSEMENT 1° TRANCHE À LA RADIO KAR UBA SOLEIL', '2012-12-19', '2013-04-30', 3256.86, NULL, 3256.86, 0.00, 3260.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.935006+00', 0.00, 0.00, 3260.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (421, '2500224943', '0400009411', '2012-12-21', 'SSFA', 'USD', 'FR APE ONG CSSI', '2012-12-21', '2013-01-31', 14878.91, NULL, 14878.91, 0.00, 15000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.959922+00', 0.00, 0.00, 15000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (246, '2500213954', '0400000405', '2012-02-16', 'Programme Document Against PCA', 'USD', 'PAIEMENT DEUXIEME TRANCHE PROJET DDR CARE 2011', '2012-02-16', '2012-03-31', 204482.75, NULL, 204482.75, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:51.857537+00', 0.00, 0.00, 193781.51, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (245, '2500213951', '0400000406', '2012-02-16', 'Programme Document Against PCA', 'USD', 'PAIEMENT DEUXIEME TRANCHE PROJET DDR JRS 2011', '2012-02-16', '2012-03-31', 198734.57, NULL, 198734.57, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:51.867586+00', 0.00, 0.00, 186002.47, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (157, '2500213951', '0400004208', '2012-06-19', 'Programme Document Against PCA', 'USD', 'PCA AVEC JRS PR EDUCATION DANS LES SITES IDPS SILA', '2012-09-01', '2012-12-31', 79919.43, NULL, 79919.43, 0.00, 80000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.396355+00', 0.00, 0.00, 80000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (747, '2500224727', '0400009034', '2012-12-13', 'Programme Document Against PCA', 'USD', 'ACTION POUR REHABILITATION NUTRITIONNELLE DE MAO', '2012-12-13', '2013-03-13', 8430.23, NULL, 8430.23, 0.00, 16862.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.037557+00', 0.00, 0.00, 16862.00, true, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (386, '2500224923', '0400009300', '2012-12-19', 'SSFA', 'USD', 'DÉCAISSEMENT 1° TRANCHE À LA RADIO ZAHSOO DE LÉRÉ', '2012-12-19', '2013-12-31', 2415.43, NULL, 2415.43, 0.00, 2417.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.056988+00', 0.00, 0.00, 2417.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (387, '2500215493', '0400009301', '2012-12-19', 'SSFA', 'USD', 'DÉCAISSEMENT 1° TRANCHE À LA RADIO COMM. DE MONGO', '2012-12-19', '2013-12-31', 3860.72, NULL, 3860.72, 0.00, 3865.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.0705+00', 0.00, 0.00, 3865.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (5, '2500212801', '0400009462', '2012-12-27', 'SSFA', 'USD', 'DÉCAISSEMENT 1° TRANCHE À LA RADIO BRAKOSS', '2012-12-27', '2013-04-30', 3642.94, NULL, 3642.94, 0.00, 4700.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.150633+00', 0.00, 0.00, 3644.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (815, '2500212801', '0400011871', '2013-04-19', 'SSFA', 'USD', 'DÉCAISSEMENT 2° TRANCHE À LA RADIO BRAKOSS', '2013-04-19', '2013-07-15', 3975.20, NULL, 3975.20, 0.00, 3902.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.336697+00', 0.00, 0.00, 4000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (631, '2500227554', '0400018638', '2014-02-19', 'SSFA', 'XAF', 'FINANCEMENT APE Nº06/PRO/POLIO/TTLMESSAGER PAIX', '2014-02-19', '2014-12-31', 9570.71, NULL, 9570.71, 0.00, 9570.71, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.417523+00', 4625000.00, 0.00, 4625000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (755, '2500230253', '0400025063', '2014-10-30', 'Programme Document Against PCA', 'XAF', 'PRISE EN CHARGE DE 47 OEV', '2014-10-30', '2014-12-31', 14343.17, NULL, 14343.17, 0.00, 14632.22, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.544158+00', 7554000.00, 0.00, 7554000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (646, '2500221169', '0400025127', '2014-11-03', 'Programme Document Against PCA', 'XAF', 'FINCMT PCA Nº22/2014 WASH-EDUCATION/CRT', '2014-11-03', '2015-07-31', 182863.33, NULL, 182863.33, 0.00, 217394.02, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.554331+00', 96307169.00, 0.00, 113067717.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (886, '2500232779', '0400033354', '2015-09-05', 'SSFA', 'XAF', 'FINANCEMENT APE - AMVS KYABÉ', '2015-07-01', '2015-09-30', 4971.88, NULL, 4971.88, 0.00, 4971.88, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.426358+00', 2900000.00, 0.00, 2900000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (863, '2500233778', '0400036774', '2015-12-22', 'SSFA', 'XAF', 'FINANCEMENT REALISATION MAGAZINE,MICROP RADIO ET V', '2015-12-22', '2016-01-31', 15115.13, NULL, 15115.13, 0.00, 15115.13, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.894908+00', 9025000.00, 0.00, 9025000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (849, '2500234557', '0400039767', '2016-04-22', 'SSFA', 'XAF', 'FR SSFA GROUP ASSO FEMMES ALINGUE POUR ACT ACPV', '2016-04-07', '2016-09-30', 4022.85, NULL, 4022.85, 0.00, 4022.85, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.292357+00', 2340000.00, 0.00, 2340000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (879, '2500234736', '0400040508', '2016-05-19', 'SSFA', 'XAF', 'FR MISE EN OEUVRE ACPV PAR RADIO KADAYE BOL', '2016-04-15', '2016-12-31', 2133.07, NULL, 2133.07, 0.00, 2169.04, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.520032+00', 1255000.00, 0.00, 1255000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (851, '2500232382', '0400041688', '2016-06-30', 'Programme Document Against PCA', 'XAF', 'FR PCA ASSOCIATION POUR L''AUTOPROMOTION RURALE', '2016-04-01', '2016-11-30', 22557.80, NULL, 22557.80, 0.00, 22557.80, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.783291+00', 13380000.00, 0.00, 13380000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (880, '2500212828', '0400044590', '2016-10-25', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME TRANCHE PCA ASSOCIATION TERRE VER', '2016-09-01', '2016-11-30', 82640.95, NULL, 82640.95, 0.00, 82640.95, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.216407+00', 49137896.00, 0.00, 49137896.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (868, '2500232403', '0400044741', '2016-10-28', 'SSFA', 'XAF', 'FINANCEMENT MISE EN OEUVRE ACTIVITE ACPV', '2016-10-28', '2017-01-28', 2270.67, NULL, 2270.67, 0.00, 2304.09, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.279145+00', 1370000.00, 0.00, 1370000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (836, '2500212820', '0400045124', '2016-11-09', 'Programme Document Against PCA', 'XAF', 'FIN. PCA#0015/2016/PROG WASH/SIF 2EME TRANCHE', '2016-11-09', '2017-02-09', 95920.66, NULL, 95920.66, 0.00, 96370.61, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.415211+00', 57873250.00, 0.00, 57873250.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (407, '2500212820', '0400051627', '2017-06-14', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT 7% DU PCA AVEC SIF', '2016-10-19', '2017-06-30', 50833.72, NULL, 50833.72, 0.00, 50840.55, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.764608+00', 29793390.00, 0.00, 29797390.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (365, '2500237874', '0400057978', '2018-02-20', 'SSFA', 'XAF', 'ACQUIS ET DIST DES KITS EDUC AUX ELEVES ET ENSEIG', '2018-02-20', '2018-05-31', 3670.56, NULL, 3670.56, 0.00, 3670.56, '2018-03-15 16:10:06.407235+00', '2018-06-08 00:03:11.100487+00', 1937500.00, 0.00, 1937500.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (955, '2500221790', '0400063589', '2018-10-02', 'Programme Document Against PCA', 'XAF', '0810/662 - 883 CSD HIV 2018', '2018-10-01', '2018-10-01', 0.00, NULL, 0.00, 0.00, 0.00, '2018-10-05 00:01:44.349544+00', '2019-02-09 00:03:02.313986+00', 0.00, 0.00, 1.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (25, '2500224893', '0400025272', '2014-11-06', 'Programme Document Against PCA', 'XAF', 'DECAISSMT 3E TRANCH PCA Nº7/SID/2014', '2014-11-06', '2015-01-07', 11201.87, NULL, 11201.87, 0.00, 11201.87, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.667844+00', 5826150.00, 0.00, 5826150.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (613, '2500228112', '0400036357', '2015-12-11', 'Programme Document Against PCA', 'XAF', 'DSA PARTENAIRE IHDL _ ISSSA DOUBRAIGNE', '2015-01-01', '2015-12-31', 1074.80, NULL, 1074.80, 0.00, 1074.80, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:23.477217+00', 666436.00, 0.00, 666436.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (817, '2500233143', '0400055918', '2017-11-24', 'Programme Document Against PCA', 'XAF', 'APPUI À LA SCOLARISATION DES ENFANTS', '2017-11-24', '2018-03-22', 147875.93, NULL, 147875.93, 0.00, 144956.14, '2018-03-15 16:10:06.407235+00', '2018-08-19 00:01:38.487883+00', 81849920.00, 0.00, 81849920.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (877, '2500231570', '0400051005', '2017-05-26', 'SSFA', 'XAF', 'RENF MEDIA AUX DROITS DE L''ENFT & EXPRES DE JEUNES', '2017-05-26', '2017-12-31', 24275.21, NULL, 24275.21, 0.00, 22561.58, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.700584+00', 13635000.00, 0.00, 13635000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (496, '2500229637', '0400051065', '2017-05-29', 'SSFA', 'XAF', '07/SSFA/2017/CHD MAI À DEC 2017 RMQJ', '2017-05-29', '2017-12-31', 20617.33, NULL, 20617.33, 0.00, 20617.33, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.719854+00', 12460000.00, 0.00, 12460000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (243, '2500234334', '0400053803', '2017-09-06', 'SSFA', 'XAF', 'FINANCEMENT MOBILISATION LEADERS TRADATIONNELS/JEU', '2017-09-06', '2017-12-06', 21633.72, NULL, 21633.72, 0.00, 21633.72, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:29.571099+00', 11805000.00, 0.00, 11805000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1056, '2500237522', '0400071342', '2019-10-07', 'Programme Document Against PCA', 'XAF', '5E TRANCHE APPUI COMM AFFECT PAR LA CRISE CENTRAFR', '2019-10-07', '2019-12-31', 27872.95, NULL, 27872.96, 27872.95, 27872.95, '2019-10-09 00:11:10.234241+00', '2019-10-10 00:11:25.895023+00', 16712484.00, 16712484.00, 16712484.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1076, '2500237473', '0400073004', '2019-12-12', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT COUTS INDIRECTS T6 RET', '2019-12-12', '2019-12-31', 644.66, NULL, 644.66, 0.00, 644.66, '2019-12-13 00:39:43.751091+00', '2019-12-18 00:12:21.417851+00', 384394.00, 0.00, 384394.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (666, '2500221883', '0400003165', '2012-05-18', 'Programme Document Against PCA', 'USD', 'FINANCEMENT DE LA 1ERE TRANCHE PCA ONG ALIMA', '2012-05-15', '2012-10-15', 0.00, NULL, 0.00, 0.00, 29249.60, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.001869+00', 0.00, 0.00, 29249.60, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (816, '2500000912', '0400003589', '2012-05-31', 'SSFA', 'USD', 'EXTENSION SMALL SALE FUNDING AGREEMNT', '2012-05-31', '2012-06-30', 15633.23, NULL, 15633.23, 0.00, 16680.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.045742+00', 0.00, 0.00, 33360.00, true, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (568, '2500222407', '0400004221', '2012-06-19', 'Programme Document Against PCA', 'USD', 'FINANCEMENT POUR RENFORCEMENT PERSONNEL NDA', '2012-06-19', '2012-09-30', 0.00, NULL, 0.00, 0.00, 16500.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.05963+00', 0.00, 0.00, 16500.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (264, '2500000912', '0400004619', '2012-07-03', 'Programme Document Against PCA', 'USD', 'FINANCEMENT 2EME TRANCHE PCA/BAMBINI 2012', '2012-07-03', '2012-09-30', 25456.55, NULL, 25456.55, 0.00, 26000.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.076352+00', 0.00, 0.00, 26491.00, true, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (307, '2500223094', '0400042500', '2016-08-04', 'Programme Document Against PCA', 'XAF', 'PROJET MPR DANS LE MOYEN CHARI ET DANS LE BATHA', '2016-08-04', '2016-11-30', 121723.52, NULL, 121723.52, 0.00, 121723.61, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.694213+00', 71932756.00, 0.00, 71932813.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (216, '2500213923', '0400000054', '2012-01-19', 'Programme Document Against PCA', 'USD', 'PCA POUR PRÉVENTION ET LUTTE CONTRE LE CHOLÉRA', '2011-11-01', '2012-03-31', 87037.03, NULL, 87037.03, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:51.752921+00', 0.00, 0.00, 92000.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (566, '2500234767', '0400052268', '2017-07-06', 'SSFA', 'XAF', 'FR POUR FINANCEMENT ACTIVITÉS WENAKLABS', '2017-07-06', '2017-12-31', 13881.92, NULL, 13881.92, 0.00, 13881.92, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.745148+00', 8001000.00, 0.00, 8001000.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (104, '2500233978', '0400055128', '2017-10-31', 'Programme Document Against PCA', 'XAF', 'EDUCATION AUX RISQUES DES MINES, RESTES EXPLOSIFS', '2017-10-31', '2018-01-31', 59237.41, NULL, 59237.41, 0.00, 58962.58, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.781724+00', 32788145.00, 0.00, 32788145.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (597, '2500232212', '0400045436', '2016-11-17', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME TRANCHE PCA CELIAF BOL', '2016-08-19', '2016-11-19', 0.00, NULL, 0.00, 0.00, 10907.52, '2018-03-15 16:10:06.407235+00', '2018-03-15 19:03:26.228689+00', 0.00, 0.00, 6581000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (216, '2500213923', '0400000054', '2012-01-19', 'Programme Document Against PCA', 'USD', 'PCA POUR PRÉVENTION ET LUTTE CONTRE LE CHOLÉRA', '2011-11-01', '2012-03-31', 87037.03, NULL, 87037.03, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:11.718734+00', 0.00, 0.00, 92000.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (215, '2500212820', '0400000055', '2012-01-19', 'Programme Document Against PCA', 'USD', 'PCA POUR PRÉVENTION ET LUTTE CONTRE LE CHOLÉRA', '2011-08-12', '2012-02-12', 59792.72, NULL, 59792.72, 0.00, 124000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:11.741495+00', 0.00, 0.00, 62050.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (719, '2500212787', '0400000073', '2012-01-23', 'Programme Document Against PCA', 'USD', 'DCT 3ÈRE TRANCHE PCA UNICEF/PU', '2011-06-06', '2012-02-28', 70706.47, NULL, 70706.47, 0.00, 361200.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:11.778672+00', 0.00, 0.00, 72221.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (759, '2500218808', '0400004212', '2012-06-19', 'Programme Document Against PCA', 'USD', 'PCA AVEC INTERSOS PR EDUCATION DS LES ZONES DE SIL', '2012-08-01', '2012-12-31', 60047.63, NULL, 60047.63, 0.00, 60000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.870945+00', 0.00, 0.00, 60000.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (635, '2500223198', '0400005697', '2012-08-14', 'SSFA', 'USD', 'FR-FINANCEMENT APE/EET DE BOL EN FAVEUR DE LA PTME', '2012-08-14', '2012-12-31', 5483.31, NULL, 5483.31, 0.00, 5488.44, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:13.101345+00', 0.00, 0.00, 5989.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (191, '2500214062', '0400005754', '2012-08-16', 'Programme Document Against PCA', 'USD', 'FR POUR MISE EN OEUVRE PCA2012/12/CHD/WASH/ESMS', '2012-08-03', '2013-12-31', 142434.27, NULL, 142434.27, 0.00, 235000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:13.123978+00', 0.00, 0.00, 143436.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (336, '2500221408', '0400002483', '2012-04-27', 'Programme Document Against PCA', 'USD', 'FINANCEMENT 1ERE TRANCHE PCA CRT ABECHE', '2012-04-01', '2013-01-31', 186914.76, NULL, 186914.76, 0.00, 187387.00, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:12.064147+00', 0.00, 0.00, 187388.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (426, '2500213951', '0400008967', '2012-12-12', 'Programme Document Against PCA', 'USD', 'PAIEMENT RELIQUAT DE LA DEUXIEME TRANCHE PCA JRS', '2012-12-12', '2012-12-31', 13378.32, NULL, 13378.32, 0.00, 13380.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.714952+00', 0.00, 0.00, 13380.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (419, '2500221790', '0400009413', '2012-12-21', 'Programme Document Against PCA', 'USD', 'FR-FINANCEMENT 2ÈME TRANCHE PCA RNTAP+', '2012-12-21', '2013-06-30', 30374.85, NULL, 30374.85, 0.00, 30378.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.986087+00', 0.00, 0.00, 31120.43, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (372, '2500215495', '0400009517', '2013-01-08', 'SSFA', 'USD', 'DÉCAISSEMENT 1° TRANCHE À LA R. E.D.GLOBAL DE PALA', '2013-01-08', '2013-12-31', 5314.26, NULL, 5314.26, 0.00, 7531.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.045765+00', 0.00, 0.00, 7531.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (870, '2500215473', '0400009542', '2013-01-11', 'Programme Document Against PCA', 'USD', 'FR APE ONG BAMBINI NEL DESERTO', '2013-01-11', '2013-02-28', 11838.97, NULL, 11838.97, 0.00, 11562.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.067537+00', 0.00, 0.00, 11562.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (872, '2500224985', '0400009543', '2013-01-11', 'Programme Document Against PCA', 'USD', 'FR APE ONG FDB', '2013-01-11', '2013-04-30', 20297.93, NULL, 20297.93, 0.00, 12053.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.089061+00', 0.00, 0.00, 20009.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (582, '2500219704', '0400010718', '2013-03-04', 'Programme Document Against PCA', 'USD', 'PAIEMENT DERNIERE TRANCHE PCA CHORA AMENDER', '2013-03-04', '2013-03-05', 22358.61, NULL, 22358.61, 0.00, 25000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.113678+00', 0.00, 0.00, 25000.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (471, '2500219696', '0400010812', '2013-03-06', 'SSFA', 'USD', 'REMBURSEMT PREFINANCESMT EEMET', '2013-03-06', '2013-03-10', 10182.93, NULL, 10182.93, 0.00, 10340.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.132416+00', 0.00, 0.00, 10340.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (215, '2500212820', '0400000055', '2012-01-19', 'Programme Document Against PCA', 'USD', 'PCA POUR PRÉVENTION ET LUTTE CONTRE LE CHOLÉRA', '2011-08-12', '2012-02-12', 59792.72, NULL, 59792.72, 0.00, 124000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:51.782862+00', 0.00, 0.00, 62050.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (378, '2500214088', '0400056471', '2017-12-08', 'Programme Document Against PCA', 'XAF', 'ASSISTANCE MEDICALE ET NUTRITIONNELLE AUX REFUGIES', '2017-10-01', '2017-12-31', 103827.84, NULL, 103827.84, 0.00, 103827.84, '2018-03-15 16:10:06.407235+00', '2018-12-22 00:01:57.757296+00', 57469126.00, 0.00, 57469126.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (642, '2500223298', '0400011042', '2013-03-16', 'Programme Document Against PCA', 'USD', 'DECAISSEMENT 2ÈME TRANCHE PCA AVEC MERLIN', '2013-03-16', '2013-10-30', 95842.66, NULL, 95842.66, 0.00, 234573.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.19604+00', 0.00, 0.00, 97195.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (871, '2500234496', '0400044742', '2016-10-28', 'SSFA', 'XAF', 'FINANCEMENT MISE EN OEUVRE ACTIVITE ACPV', '2016-10-28', '2017-01-28', 3231.98, NULL, 3231.98, 0.00, 3279.54, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.797608+00', 1950000.00, 0.00, 1950000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (678, '2500233810', '0400045614', '2016-11-23', 'Programme Document Against PCA', 'XAF', 'FIN. PCA#14/2016/PROG/WASH/HELP', '2016-09-08', '2016-12-08', 78721.54, NULL, 78721.54, 0.00, 78721.54, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.328064+00', 47496250.00, 0.00, 47496250.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (590, '2500221408', '0400045667', '2016-11-24', 'SSFA', 'XAF', 'FIN. APE SURVEILLANCE A BASE COMMUNTAIRE DES PFA', '2016-10-01', '2016-12-31', 48086.50, NULL, 48086.50, 0.00, 49246.14, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.349557+00', 29712410.00, 0.00, 29712410.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (719, '2500212787', '0400000073', '2012-01-23', 'Programme Document Against PCA', 'USD', 'DCT 3ÈRE TRANCHE PCA UNICEF/PU', '2011-06-06', '2012-02-28', 70706.47, NULL, 70706.47, 0.00, 361200.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:51.808567+00', 0.00, 0.00, 72221.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (336, '2500221408', '0400002483', '2012-04-27', 'Programme Document Against PCA', 'USD', 'FINANCEMENT 1ERE TRANCHE PCA CRT ABECHE', '2012-04-01', '2013-01-31', 186914.76, NULL, 186914.76, 0.00, 187387.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.100733+00', 0.00, 0.00, 187388.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (816, '2500000912', '0400003589', '2012-05-31', 'SSFA', 'USD', 'EXTENSION SMALL SALE FUNDING AGREEMNT', '2012-05-31', '2012-06-30', 15633.23, NULL, 15633.23, 0.00, 16680.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.308822+00', 0.00, 0.00, 33360.00, true, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (759, '2500218808', '0400004212', '2012-06-19', 'Programme Document Against PCA', 'USD', 'PCA AVEC INTERSOS PR EDUCATION DS LES ZONES DE SIL', '2012-08-01', '2012-12-31', 60047.63, NULL, 60047.63, 0.00, 60000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.40577+00', 0.00, 0.00, 60000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (635, '2500223198', '0400005697', '2012-08-14', 'SSFA', 'USD', 'FR-FINANCEMENT APE/EET DE BOL EN FAVEUR DE LA PTME', '2012-08-14', '2012-12-31', 5483.31, NULL, 5483.31, 0.00, 5488.44, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.521718+00', 0.00, 0.00, 5989.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (191, '2500214062', '0400005754', '2012-08-16', 'Programme Document Against PCA', 'USD', 'FR POUR MISE EN OEUVRE PCA2012/12/CHD/WASH/ESMS', '2012-08-03', '2013-12-31', 142434.27, NULL, 142434.27, 0.00, 235000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.531415+00', 0.00, 0.00, 143436.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (102, '2500223457', '0400006196', '2012-09-04', 'SSFA', 'USD', 'FR-FINANCEMENT APE/CSAI/BOL EN FAVEUR DE LA PTME', '2012-09-04', '2012-12-31', 6099.68, NULL, 6099.68, 0.00, 6099.68, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.612835+00', 0.00, 0.00, 6099.68, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (683, '2500224381', '0400008070', '2012-11-16', 'Programme Document Against PCA', 'USD', 'FONDS POUR MISE EN OEUV APE/UNICEF/AFASALESAMTIMAN', '2012-11-01', '2012-12-31', 8568.98, NULL, 8568.98, 0.00, 18000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.848202+00', 0.00, 0.00, 18000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (571, '2500224402', '0400008071', '2012-11-16', 'Programme Document Against PCA', 'USD', 'FONDS POUR MISE EN OEUV APE/UNICEF/DARASALAAMTIMAN', '2012-12-01', '2013-05-30', 9094.26, NULL, 9094.26, 0.00, 18145.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.857465+00', 0.00, 0.00, 18145.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (426, '2500213951', '0400008967', '2012-12-12', 'Programme Document Against PCA', 'USD', 'PAIEMENT RELIQUAT DE LA DEUXIEME TRANCHE PCA JRS', '2012-12-12', '2012-12-31', 13378.32, NULL, 13378.32, 0.00, 13380.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.002742+00', 0.00, 0.00, 13380.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (382, '2500212813', '0400009304', '2012-12-19', 'SSFA', 'USD', 'DÉCAISSEMENT 1° TRANCHE À LA RADIO TERRE NOUVELLE', '2012-12-19', '2013-04-30', 3375.66, NULL, 3375.66, 0.00, 3377.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.090811+00', 0.00, 0.00, 3377.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (383, '2500215499', '0400009305', '2012-12-19', 'SSFA', 'USD', 'DÉCAISSEMENT 1° TRANCHE À LA RADIO KAR UBA SOLEIL', '2012-12-19', '2013-04-30', 3256.86, NULL, 3256.86, 0.00, 3260.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.122444+00', 0.00, 0.00, 3260.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (421, '2500224943', '0400009411', '2012-12-21', 'SSFA', 'USD', 'FR APE ONG CSSI', '2012-12-21', '2013-01-31', 14878.91, NULL, 14878.91, 0.00, 15000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.131806+00', 0.00, 0.00, 15000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (419, '2500221790', '0400009413', '2012-12-21', 'Programme Document Against PCA', 'USD', 'FR-FINANCEMENT 2ÈME TRANCHE PCA RNTAP+', '2012-12-21', '2013-06-30', 30374.85, NULL, 30374.85, 0.00, 30378.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.141486+00', 0.00, 0.00, 31120.43, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (372, '2500215495', '0400009517', '2013-01-08', 'SSFA', 'USD', 'DÉCAISSEMENT 1° TRANCHE À LA R. E.D.GLOBAL DE PALA', '2013-01-08', '2013-12-31', 5314.26, NULL, 5314.26, 0.00, 7531.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.160272+00', 0.00, 0.00, 7531.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (870, '2500215473', '0400009542', '2013-01-11', 'Programme Document Against PCA', 'USD', 'FR APE ONG BAMBINI NEL DESERTO', '2013-01-11', '2013-02-28', 11838.97, NULL, 11838.97, 0.00, 11562.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.170105+00', 0.00, 0.00, 11562.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (872, '2500224985', '0400009543', '2013-01-11', 'Programme Document Against PCA', 'USD', 'FR APE ONG FDB', '2013-01-11', '2013-04-30', 20297.93, NULL, 20297.93, 0.00, 12053.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.180648+00', 0.00, 0.00, 20009.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (471, '2500219696', '0400010812', '2013-03-06', 'SSFA', 'USD', 'REMBURSEMT PREFINANCESMT EEMET', '2013-03-06', '2013-03-10', 10182.93, NULL, 10182.93, 0.00, 10340.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.201462+00', 0.00, 0.00, 10340.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (25, '2500224893', '0400025272', '2014-11-06', 'Programme Document Against PCA', 'XAF', 'DECAISSMT 3E TRANCH PCA Nº7/SID/2014', '2014-11-06', '2015-01-07', 11201.87, NULL, 11201.87, 0.00, 11201.87, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.565813+00', 5826150.00, 0.00, 5826150.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (613, '2500228112', '0400036357', '2015-12-11', 'Programme Document Against PCA', 'XAF', 'DSA PARTENAIRE IHDL _ ISSSA DOUBRAIGNE', '2015-01-01', '2015-12-31', 1074.80, NULL, 1074.80, 0.00, 1074.80, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.820461+00', 666436.00, 0.00, 666436.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (307, '2500223094', '0400042500', '2016-08-04', 'Programme Document Against PCA', 'XAF', 'PROJET MPR DANS LE MOYEN CHARI ET DANS LE BATHA', '2016-08-04', '2016-11-30', 121723.52, NULL, 121723.52, 0.00, 121723.61, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.904884+00', 71932756.00, 0.00, 71932813.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (162, '2500213920', '0400047847', '2017-02-17', 'Programme Document Against PCA', 'XAF', 'FR PCA 002/2017- ACF- WASH', '2017-02-17', '2017-02-28', 257062.86, NULL, 257062.86, 0.00, 257062.86, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.791218+00', 158048670.00, 0.00, 158048670.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (154, '2500213923', '0400050599', '2017-05-16', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 4EME TRANCHE DU PCA DE ADRA', '2017-03-01', '2017-05-31', 231964.66, NULL, 231964.66, 0.00, 231964.66, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.509026+00', 140186916.00, 0.00, 140186916.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (611, '2500224593', '0400010819', '2013-03-06', 'SSFA', 'USD', 'REMBURSMT DES PREFINANCMTS SCOUT 2013', '2013-03-06', '2013-03-15', 3082.07, NULL, 3082.07, 0.00, 3130.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.153728+00', 0.00, 0.00, 3130.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (643, '2500224402', '0400011043', '2013-03-16', 'Programme Document Against PCA', 'USD', 'DECAISSEMENT 2ÈME TRANCHE APE GRPMT DARASSALAM', '2012-12-01', '2013-05-31', 9082.50, NULL, 9082.50, 0.00, 18145.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.212281+00', 0.00, 0.00, 18145.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (395, '2500215473', '0400011171', '2013-03-21', 'SSFA', 'USD', 'REMBOURSEMENT DE LA DERNIERE TRANCHE APE BAMBINI', '2013-03-21', '2013-03-30', 7413.15, NULL, 7413.15, 0.00, 7604.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.252379+00', 0.00, 0.00, 7604.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (65, '2500223886', '0400011174', '2013-03-21', 'SSFA', 'USD', '2EME DECAISSEMENT PROMOTION PFE AFEDD MAO KANEM', '2013-03-21', '2013-06-21', 3904.90, NULL, 3904.90, 0.00, 3970.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.289307+00', 0.00, 0.00, 3910.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (744, '2500226117', '0400025291', '2014-11-07', 'Programme Document Against PCA', 'XAF', 'PREMIERE TRANCHE PCA201424CHDPROTIBCR', '2014-11-07', '2014-12-31', 58264.32, NULL, 58264.32, 0.00, 58998.86, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.716593+00', 30685601.00, 0.00, 30685601.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (664, '2500219695', '0400004373', '2012-06-23', 'SSFA', 'USD', 'FR-FINANCEMENT APE/CSAI PALA EN FAVEUR DE LA PTME', '2012-06-23', '2012-12-31', 0.00, NULL, 0.00, 0.00, 9339.00, '2018-03-15 16:10:06.407235+00', '2018-07-03 00:02:38.691803+00', 0.00, 0.00, 9339.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (209, '2500215493', '0400025016', '2014-10-29', 'Programme Document Against PCA', 'XAF', 'MOB SOC A TRAVERS LES RADIOS - AVENANT RC MONGO', '2014-10-29', '2014-12-30', 4922.08, NULL, 4922.08, 0.00, 4958.76, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:19.680345+00', 2560000.00, 0.00, 2560000.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (72, '2500213939', '0400004423', '2012-06-25', 'Programme Document Against PCA', 'USD', 'FR-FINANCEMENT PCA AVEC AILS', '2012-06-25', '2012-12-31', 0.00, NULL, 0.00, 0.00, 92000.00, '2018-03-15 16:10:06.407235+00', '2018-07-03 00:02:38.762647+00', 0.00, 0.00, 92000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (778, '2500214091', '0400025613', '2014-11-18', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME TRANCHE PCA CSSI 1', '2014-11-18', '2014-12-31', 55310.40, NULL, 55310.40, 0.00, 55310.40, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:20.038941+00', 29129884.00, 0.00, 29129884.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (369, '2500225658', '0400027527', '2015-01-27', 'SSFA', 'XAF', 'SSA/ADERBA/2014/2015/WASH/DS LIWA/BAGASSOLA', '2015-01-27', '2015-07-27', 42802.27, NULL, 42802.27, 0.00, 45148.95, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:20.548364+00', 25183500.00, 0.00, 25183500.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (463, '2500221791', '0400005962', '2012-08-24', 'Programme Document Against PCA', 'USD', 'COMPLEMENT FINANCEMENT 1ERE TRANCHE PCA AVEC ADN', '2012-08-24', '2012-12-31', 0.00, NULL, 0.00, 0.00, 325.00, '2018-03-15 16:10:06.407235+00', '2018-07-03 00:02:38.969514+00', 0.00, 0.00, 325.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (479, '2500230977', '0400033414', '2015-09-08', 'Programme Document Against PCA', 'XAF', 'FR 1ERE TRANCHE PCA ENTRE ADERBA/UNICEF', '2012-01-01', '2016-12-31', 26331.01, NULL, 26331.01, 0.00, 28433.43, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:22.349553+00', 15358350.00, 0.00, 15358350.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (98, '2500224289', '0400010837', '2013-03-07', 'Programme Document Against PCA', 'USD', 'RESERVATION FONDS POUR PCA AVEC LEAD', '2013-03-07', '2013-05-31', 74214.40, NULL, 74214.40, 0.00, 125000.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.16834+00', 0.00, 0.00, 90000.00, true, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (860, '2500228112', '0400025293', '2014-11-07', 'Programme Document Against PCA', 'XAF', 'PREMIERE TRANCHE PCA201423HDPROTIHDL', '2014-11-07', '2014-12-31', 153638.46, NULL, 153638.46, 0.00, 155575.51, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.412236+00', 80915540.00, 0.00, 80915600.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (873, '2500219704', '0400028388', '2015-02-25', 'Programme Document Against PCA', 'XAF', 'FIN.PCA12/2014/PRO/URG/CHORA/AMEND/01 DERN TRANCHE', '2015-01-01', '2015-04-20', 15285.74, NULL, 15285.74, 0.00, 15432.78, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.487078+00', 8931750.00, 0.00, 8931750.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (534, '2500221169', '0400036274', '2015-12-10', 'Programme Document Against PCA', 'XAF', 'ACTIVITE CONSTRUCTION SDC &SFC/PCA N 22/CRT', '2015-12-10', '2015-12-31', 30199.49, NULL, 30199.49, 0.00, 30199.49, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.069128+00', 18725375.00, 0.00, 18725375.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (619, '2500219704', '0400036682', '2015-12-18', 'Programme Document Against PCA', 'XAF', 'FR PCA UNICEF- CHORA1', '2015-12-01', '2016-01-31', 3350.44, NULL, 3350.44, 0.00, 3350.44, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.203006+00', 2000494.00, 0.00, 2000494.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (878, '2500224422', '0400038032', '2016-02-22', 'Programme Document Against PCA', 'XAF', 'FR POUR PCA SEARCHFOR COMMON GROUND', '2015-12-01', '2016-02-29', 60638.95, NULL, 60638.95, 0.00, 62763.57, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.496216+00', 36292472.00, 0.00, 36292472.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (33, '2500225602', '0400038323', '2016-03-02', 'Programme Document Against PCA', 'XAF', 'APPUI RENFORCEMENT DE MECANISME DE PROTECTION', '2015-01-01', '2016-12-31', 78630.19, NULL, 78630.19, 0.00, 104840.26, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.581604+00', 47060250.00, 0.00, 62747000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (648, '2500221169', '0400038673', '2016-03-15', 'Programme Document Against PCA', 'XAF', 'FR REMBOURSMENT DU AMENDMT PCA22/14/WASH/EDU/CRT', '2016-03-07', '2016-12-31', 18985.10, NULL, 18985.10, 0.00, 18985.10, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.646246+00', 11140000.00, 0.00, 11140000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (295, '2500232403', '0400039525', '2016-04-14', 'SSFA', 'XAF', 'FR RADIO FM LIBERTÉ MISE EN OEUVRE ACTIVITES ACPV', '2016-04-04', '2016-06-30', 2604.54, NULL, 2604.54, 0.00, 2614.47, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:23.897002+00', 1515000.00, 0.00, 1515000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (443, '2500221169', '0400040132', '2016-05-06', 'Programme Document Against PCA', 'XAF', 'FR CRT CONSTRUCTION 40 LTS ET 36 LATRINES BAGASSOL', '2015-11-25', '2016-05-31', 13870.01, NULL, 13870.01, 0.00, 13870.01, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.484186+00', 8025160.00, 0.00, 8025160.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (88, '2500213985', '0400041035', '2016-06-09', 'Programme Document Against PCA', 'XAF', 'FR PAIEMENT 1ERE TRANCHE PCA COOPI - PCIMA- HLAMIS', '2016-04-29', '2017-04-28', 142023.34, NULL, 142023.34, 0.00, 140486.17, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:24.881202+00', 82655739.00, 0.00, 82655739.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (197, '2500232382', '0400041773', '2016-07-05', 'Programme Document Against PCA', 'XAF', 'FR PCA ASSOCIATION POUR L''AUTOPROMOTION RURALE 2', '2016-04-01', '2016-12-31', 17289.08, NULL, 17289.08, 0.00, 17331.40, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:25.573642+00', 10280000.00, 0.00, 10280000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (762, '2500233978', '0400043701', '2016-09-22', 'Programme Document Against PCA', 'XAF', 'FINANCEM APPUI A L''EDUCATION AUX RISQUES DES MINES', '2016-09-22', '2016-12-22', 218909.35, NULL, 218909.35, 0.00, 218909.35, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.056751+00', 128831000.00, 0.00, 128831000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (454, '2500233645', '0400044666', '2016-10-26', 'SSFA', 'XAF', 'FIN. APE RADIO TOB FM DE KOUMRA', '2016-10-26', '2017-01-26', 1776.00, NULL, 1776.00, 0.00, 1776.00, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.734389+00', 1056000.00, 0.00, 1056000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (705, '2500212819', '0400044900', '2016-11-03', 'Programme Document Against PCA', 'XAF', 'FIN. PCA#20/2016/PROG/WASH/SECADEV', '2016-11-03', '2017-02-03', 96044.55, NULL, 96044.55, 0.00, 96495.08, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:26.910602+00', 57948000.00, 0.00, 57948000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (501, '2500224655', '0400046065', '2016-12-05', 'Programme Document Against PCA', 'XAF', 'RENFORCT QUALITE PRISE EN CHARGE MALNUTRITION AIGU', '2016-12-05', '2017-03-05', 25710.01, NULL, 25710.01, 0.00, 25710.00, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.38146+00', 15886083.00, 0.00, 15886083.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (611, '2500224593', '0400010819', '2013-03-06', 'SSFA', 'USD', 'REMBURSMT DES PREFINANCMTS SCOUT 2013', '2013-03-06', '2013-03-15', 3082.07, NULL, 3082.07, 0.00, 3130.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.211486+00', 0.00, 0.00, 3130.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (542, '2500228510', '0400048466', '2017-03-06', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 3EME TRANCHE PCA ALIMA/ALERTE', '2017-03-06', '2017-06-06', 1175961.42, NULL, 1175961.42, 0.00, 1161285.52, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:27.960467+00', 718364258.00, 0.00, 718364258.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (604, '2500234968', '0400050988', '2017-05-25', 'SSFA', 'XAF', '1ERE TRANCHE FIN 09/SSA/2017/CHD DE UAFAT', '2017-05-25', '2017-12-31', 18976.45, NULL, 18976.45, 0.00, 18403.36, '2018-03-15 16:10:06.407235+00', '2018-05-03 15:32:28.679368+00', 11122000.00, 0.00, 11122000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (487, '2500220423', '0400000562', '2012-02-23', 'Programme Document Against PCA', 'USD', 'DCT 1ÈRE TRANCHE PCA CHOLÉRA OGB', '2011-11-01', '2012-01-31', 189012.87, NULL, 189012.87, 0.00, 388900.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:11.931098+00', 0.00, 0.00, 190000.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (658, '2500219686', '0400025408', '2014-11-11', 'SSFA', 'XAF', 'PAIEMENT T1 APE CSJEFOD', '2014-11-10', '2014-12-25', 13014.44, NULL, 13014.44, 0.00, 13178.51, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.786548+00', 6854210.00, 0.00, 6854210.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (642, '2500223298', '0400011042', '2013-03-16', 'Programme Document Against PCA', 'USD', 'DECAISSEMENT 2ÈME TRANCHE PCA AVEC MERLIN', '2013-03-16', '2013-10-30', 95842.66, NULL, 95842.66, 0.00, 234573.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.231982+00', 0.00, 0.00, 97195.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (643, '2500224402', '0400011043', '2013-03-16', 'Programme Document Against PCA', 'USD', 'DECAISSEMENT 2ÈME TRANCHE APE GRPMT DARASSALAM', '2012-12-01', '2013-05-31', 9082.50, NULL, 9082.50, 0.00, 18145.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.241827+00', 0.00, 0.00, 18145.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (395, '2500215473', '0400011171', '2013-03-21', 'SSFA', 'USD', 'REMBOURSEMENT DE LA DERNIERE TRANCHE APE BAMBINI', '2013-03-21', '2013-03-30', 7413.15, NULL, 7413.15, 0.00, 7604.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.251631+00', 0.00, 0.00, 7604.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (65, '2500223886', '0400011174', '2013-03-21', 'SSFA', 'USD', '2EME DECAISSEMENT PROMOTION PFE AFEDD MAO KANEM', '2013-03-21', '2013-06-21', 3904.90, NULL, 3904.90, 0.00, 3970.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.26159+00', 0.00, 0.00, 3910.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (209, '2500215493', '0400025016', '2014-10-29', 'Programme Document Against PCA', 'XAF', 'MOB SOC A TRAVERS LES RADIOS - AVENANT RC MONGO', '2014-10-29', '2014-12-30', 4922.08, NULL, 4922.08, 0.00, 4958.76, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.523372+00', 2560000.00, 0.00, 2560000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (744, '2500226117', '0400025291', '2014-11-07', 'Programme Document Against PCA', 'XAF', 'PREMIERE TRANCHE PCA201424CHDPROTIBCR', '2014-11-07', '2014-12-31', 58264.32, NULL, 58264.32, 0.00, 58998.86, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.574734+00', 30685601.00, 0.00, 30685601.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (860, '2500228112', '0400025293', '2014-11-07', 'Programme Document Against PCA', 'XAF', 'PREMIERE TRANCHE PCA201423HDPROTIHDL', '2014-11-07', '2014-12-31', 153638.46, NULL, 153638.46, 0.00, 155575.51, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.594266+00', 80915540.00, 0.00, 80915600.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (658, '2500219686', '0400025408', '2014-11-11', 'SSFA', 'XAF', 'PAIEMENT T1 APE CSJEFOD', '2014-11-10', '2014-12-25', 13014.44, NULL, 13014.44, 0.00, 13178.51, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.604273+00', 6854210.00, 0.00, 6854210.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (778, '2500214091', '0400025613', '2014-11-18', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME TRANCHE PCA CSSI 1', '2014-11-18', '2014-12-31', 55310.40, NULL, 55310.40, 0.00, 55310.40, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.662587+00', 29129884.00, 0.00, 29129884.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (369, '2500225658', '0400027527', '2015-01-27', 'SSFA', 'XAF', 'SSA/ADERBA/2014/2015/WASH/DS LIWA/BAGASSOLA', '2015-01-27', '2015-07-27', 42802.27, NULL, 42802.27, 0.00, 45148.95, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.788621+00', 25183500.00, 0.00, 25183500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (873, '2500219704', '0400028388', '2015-02-25', 'Programme Document Against PCA', 'XAF', 'FIN.PCA12/2014/PRO/URG/CHORA/AMEND/01 DERN TRANCHE', '2015-01-01', '2015-04-20', 15285.74, NULL, 15285.74, 0.00, 15432.78, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.815227+00', 8931750.00, 0.00, 8931750.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (479, '2500230977', '0400033414', '2015-09-08', 'Programme Document Against PCA', 'XAF', 'FR 1ERE TRANCHE PCA ENTRE ADERBA/UNICEF', '2012-01-01', '2016-12-31', 26331.01, NULL, 26331.01, 0.00, 28433.43, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.487458+00', 15358350.00, 0.00, 15358350.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (534, '2500221169', '0400036274', '2015-12-10', 'Programme Document Against PCA', 'XAF', 'ACTIVITE CONSTRUCTION SDC &SFC/PCA N 22/CRT', '2015-12-10', '2015-12-31', 30199.49, NULL, 30199.49, 0.00, 30199.49, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.803227+00', 18725375.00, 0.00, 18725375.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (619, '2500219704', '0400036682', '2015-12-18', 'Programme Document Against PCA', 'XAF', 'FR PCA UNICEF- CHORA1', '2015-12-01', '2016-01-31', 3350.44, NULL, 3350.44, 0.00, 3350.44, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.868236+00', 2000494.00, 0.00, 2000494.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (878, '2500224422', '0400038032', '2016-02-22', 'Programme Document Against PCA', 'XAF', 'FR POUR PCA SEARCHFOR COMMON GROUND', '2015-12-01', '2016-02-29', 60638.95, NULL, 60638.95, 0.00, 62763.57, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.975133+00', 36292472.00, 0.00, 36292472.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (33, '2500225602', '0400038323', '2016-03-02', 'Programme Document Against PCA', 'XAF', 'APPUI RENFORCEMENT DE MECANISME DE PROTECTION', '2015-01-01', '2016-12-31', 78630.19, NULL, 78630.19, 0.00, 104840.26, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.015956+00', 47060250.00, 0.00, 62747000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (648, '2500221169', '0400038673', '2016-03-15', 'Programme Document Against PCA', 'XAF', 'FR REMBOURSMENT DU AMENDMT PCA22/14/WASH/EDU/CRT', '2016-03-07', '2016-12-31', 18985.10, NULL, 18985.10, 0.00, 18985.10, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.0431+00', 11140000.00, 0.00, 11140000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (295, '2500232403', '0400039525', '2016-04-14', 'SSFA', 'XAF', 'FR RADIO FM LIBERTÉ MISE EN OEUVRE ACTIVITES ACPV', '2016-04-04', '2016-06-30', 2604.54, NULL, 2604.54, 0.00, 2614.47, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.141469+00', 1515000.00, 0.00, 1515000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (443, '2500221169', '0400040132', '2016-05-06', 'Programme Document Against PCA', 'XAF', 'FR CRT CONSTRUCTION 40 LTS ET 36 LATRINES BAGASSOL', '2015-11-25', '2016-05-31', 13870.01, NULL, 13870.01, 0.00, 13870.01, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.373185+00', 8025160.00, 0.00, 8025160.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (88, '2500213985', '0400041035', '2016-06-09', 'Programme Document Against PCA', 'XAF', 'FR PAIEMENT 1ERE TRANCHE PCA COOPI - PCIMA- HLAMIS', '2016-04-29', '2017-04-28', 142023.34, NULL, 142023.34, 0.00, 140486.17, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.557036+00', 82655739.00, 0.00, 82655739.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (197, '2500232382', '0400041773', '2016-07-05', 'Programme Document Against PCA', 'XAF', 'FR PCA ASSOCIATION POUR L''AUTOPROMOTION RURALE 2', '2016-04-01', '2016-12-31', 17289.08, NULL, 17289.08, 0.00, 17331.40, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.811455+00', 10280000.00, 0.00, 10280000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (762, '2500233978', '0400043701', '2016-09-22', 'Programme Document Against PCA', 'XAF', 'FINANCEM APPUI A L''EDUCATION AUX RISQUES DES MINES', '2016-09-22', '2016-12-22', 218909.35, NULL, 218909.35, 0.00, 218909.35, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.005744+00', 128831000.00, 0.00, 128831000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (454, '2500233645', '0400044666', '2016-10-26', 'SSFA', 'XAF', 'FIN. APE RADIO TOB FM DE KOUMRA', '2016-10-26', '2017-01-26', 1776.00, NULL, 1776.00, 0.00, 1776.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.261215+00', 1056000.00, 0.00, 1056000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (871, '2500234496', '0400044742', '2016-10-28', 'SSFA', 'XAF', 'FINANCEMENT MISE EN OEUVRE ACTIVITE ACPV', '2016-10-28', '2017-01-28', 3231.98, NULL, 3231.98, 0.00, 3279.54, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.287202+00', 1950000.00, 0.00, 1950000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (705, '2500212819', '0400044900', '2016-11-03', 'Programme Document Against PCA', 'XAF', 'FIN. PCA#20/2016/PROG/WASH/SECADEV', '2016-11-03', '2017-02-03', 96044.55, NULL, 96044.55, 0.00, 96495.08, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.332136+00', 57948000.00, 0.00, 57948000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (678, '2500233810', '0400045614', '2016-11-23', 'Programme Document Against PCA', 'XAF', 'FIN. PCA#14/2016/PROG/WASH/HELP', '2016-09-08', '2016-12-08', 78721.54, NULL, 78721.54, 0.00, 78721.54, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.475461+00', 47496250.00, 0.00, 47496250.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (590, '2500221408', '0400045667', '2016-11-24', 'SSFA', 'XAF', 'FIN. APE SURVEILLANCE A BASE COMMUNTAIRE DES PFA', '2016-10-01', '2016-12-31', 48086.50, NULL, 48086.50, 0.00, 49246.14, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.484282+00', 29712410.00, 0.00, 29712410.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (501, '2500224655', '0400046065', '2016-12-05', 'Programme Document Against PCA', 'XAF', 'RENFORCT QUALITE PRISE EN CHARGE MALNUTRITION AIGU', '2016-12-05', '2017-03-05', 25710.01, NULL, 25710.01, 0.00, 25710.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:58.492985+00', 15886083.00, 0.00, 15886083.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (727, '2500214090', '0400007000', '2012-10-03', 'Programme Document Against PCA', 'USD', 'REMBOURSEMENT DES DEPENSES POUR ACTIVITES WASH', '2011-09-01', '2012-02-28', 0.00, NULL, 0.00, 0.00, 395775.00, '2018-03-15 16:10:06.407235+00', '2018-07-03 00:02:39.138222+00', 0.00, 0.00, 1.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (581, '2500000912', '0400005928', '2012-08-23', 'Programme Document Against PCA', 'USD', 'FINANCEMENT DE LA 3EME TRANCHE PCA BAMBINI', '2012-08-23', '2012-11-23', 33442.88, NULL, 33442.88, 0.00, 33525.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:13.235325+00', 0.00, 0.00, 33525.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (462, '2500219704', '0400006382', '2012-09-11', 'Programme Document Against PCA', 'USD', 'PCA 2012/04 DE PROMOTION SANTÉ COMMUNAUTAIRE-CHORA', '2012-05-10', '2013-03-31', 34871.68, NULL, 34871.68, 0.00, 34870.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:13.279497+00', 0.00, 0.00, 34930.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (77, '2500212828', '0400011304', '2013-03-26', 'SSFA', 'USD', 'FINANCEMENT 2È TRANCHE APE TERRE VERTE/CELIAF', '2012-11-01', '2013-04-30', 7902.48, NULL, 7902.48, 0.00, 15842.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.335436+00', 0.00, 0.00, 7921.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (230, '2500215472', '0400000582', '2012-02-24', 'SSFA', 'USD', 'RESERVATION FINANCEMENT DEUXIEME TRANCHE AFVF', '2012-02-24', '2012-12-31', 3463.66, NULL, 3463.66, 0.00, 8232.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:11.950113+00', 0.00, 0.00, 8645.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (68, '2500214062', '0400000764', '2012-03-01', 'Programme Document Against PCA', 'USD', 'DCT 2EM TRANCHE PCA CHOLÉRA ESMS', '2011-11-01', '2012-02-29', 32103.69, NULL, 32103.69, 0.00, 62778.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:11.990357+00', 0.00, 0.00, 32100.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (829, '2500220423', '0400001032', '2012-03-12', 'Programme Document Against PCA', 'USD', 'REMBOUSEMENT FONDS CHOLERA OGB/UNICEF', '2011-11-11', '2012-01-31', 163238.50, NULL, 163238.50, 0.00, 398000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.055791+00', 0.00, 0.00, 81674.86, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (351, '2500213955', '0400001123', '2012-03-14', 'Programme Document Against PCA', 'USD', 'FR - PCA CRS OEV MOUDOU ET KELO', '2012-03-01', '2012-09-30', 113270.62, NULL, 113270.62, 0.00, 115269.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.084703+00', 0.00, 0.00, 115269.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (322, '2500214082', '0400001150', '2012-03-15', 'Programme Document Against PCA', 'USD', 'DCT POUR MISE EN OEUVRE APE-WASH', '2011-04-15', '2012-12-31', 8582.08, NULL, 8582.08, 0.00, 18000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.151771+00', 0.00, 0.00, 9000.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (181, '2500218272', '0400001186', '2012-03-15', 'Programme Document Against PCA', 'USD', 'PAIEMENT 2EME ET DERNIERE TRANCHE PCA CELIAF', '2010-06-01', '2012-09-30', 48594.11, NULL, 48594.11, 0.00, 49094.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.171499+00', 0.00, 0.00, 49094.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (832, '2500220423', '0400001423', '2012-03-23', 'Programme Document Against PCA', 'USD', 'REMBOURSEMENT FONDS CHOLERA OGB/UNICEF', '2011-11-11', '2012-01-31', 56146.83, NULL, 56146.83, 0.00, 398000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.220264+00', 0.00, 0.00, 29000.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (424, '2500213951', '0400002179', '2012-04-19', 'Programme Document Against PCA', 'USD', 'FR - PROGRAMME COOPERATION AGREEMENT - JRS', '2012-05-02', '2012-12-31', 51327.34, NULL, 51327.34, 0.00, 160000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.295284+00', 0.00, 0.00, 51260.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (806, '2500215473', '0400002484', '2012-04-27', 'Programme Document Against PCA', 'USD', 'FINANCEMENT 1ERE TRANCHE PCA BAMBINI', '2012-04-15', '2012-10-15', 27108.65, NULL, 27108.65, 0.00, 27180.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.332982+00', 0.00, 0.00, 27180.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (39, '2500221641', '0400002615', '2012-05-02', 'SSFA', 'USD', 'SSFA POUR LA MISE EN OEUVRE DE L''ATPC SALAMAT', '2012-05-02', '2012-11-02', 13275.02, NULL, 13275.02, 0.00, 13762.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.375431+00', 0.00, 0.00, 14093.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (185, '2500220951', '0400002665', '2012-05-03', 'SSFA', 'USD', 'SMALL SCALE FUNDING AGREEMNT BECADEL', '2012-01-03', '2012-12-31', 19804.57, NULL, 19804.57, 0.00, 17869.82, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.397802+00', 0.00, 0.00, 19579.79, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (353, '2500213954', '0400001124', '2012-03-14', 'Programme Document Against PCA', 'USD', 'FR PCA CARE DDR', '2012-02-01', '2012-09-30', 172691.43, NULL, 172691.43, 0.00, 176229.46, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:34.873828+00', 0.00, 0.00, 177000.00, true, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (7, '2500219704', '0400002485', '2012-04-27', 'Programme Document Against PCA', 'USD', 'FINANCEMENT 1ERE TRANCHE PCA CHORA', '2012-03-01', '2013-02-28', 14559.52, NULL, 14559.52, 0.00, 14560.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:34.930355+00', 0.00, 0.00, 14560.00, true, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (829, '2500220423', '0400001032', '2012-03-12', 'Programme Document Against PCA', 'USD', 'REMBOUSEMENT FONDS CHOLERA OGB/UNICEF', '2011-11-11', '2012-01-31', 163238.50, NULL, 163238.50, 0.00, 398000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:51.973735+00', 0.00, 0.00, 81674.86, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (351, '2500213955', '0400001123', '2012-03-14', 'Programme Document Against PCA', 'USD', 'FR - PCA CRS OEV MOUDOU ET KELO', '2012-03-01', '2012-09-30', 113270.62, NULL, 113270.62, 0.00, 115269.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:51.987493+00', 0.00, 0.00, 115269.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (552, '2500223886', '0400007139', '2012-10-10', 'SSFA', 'USD', 'ACCORD A PETITE ECHELLE PROMOTION PFE PAR AFEDD', '2012-10-10', '2012-12-30', 0.00, NULL, 0.00, 0.00, 7762.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.105849+00', 0.00, 0.00, 7762.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (114, '2500234967', '0400041453', '2016-06-22', 'SSFA', 'XAF', 'SENSIBILISA@T CONTRE MARIAGES DES ENFTS DS ÉGLISES', '2016-06-22', '2016-12-31', 11396.87, NULL, 11396.87, 0.00, 13008.88, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.59262+00', 6671000.00, 0.00, 7571000.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (429, '2500221668', '0400002673', '2012-05-03', 'SSFA', 'USD', 'MISE EN OEUVRE DE L''ATPC DANS LE OUADDAI', '2012-05-07', '2012-11-07', 9661.24, NULL, 9661.24, 0.00, 10011.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.420401+00', 0.00, 0.00, 12500.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (22, '2500215473', '0400002687', '2012-05-03', 'SSFA', 'USD', 'COMPLEMENT FR 400001709 BAMBINI', '2012-05-03', '2012-05-31', 309.08, NULL, 309.08, 0.00, 310.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.438649+00', 0.00, 0.00, 310.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (848, '2500221714', '0400002777', '2012-05-08', 'Programme Document Against PCA', 'USD', 'FR PAIEMENT 3È TRANCHE PCA MDM - REDUCTº MORTALIT', '2009-01-01', '2012-03-31', 77441.88, NULL, 77441.88, 0.00, 77442.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:12.456423+00', 0.00, 0.00, 77482.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (125, '2500223053', '0400005539', '2012-08-07', 'SSFA', 'USD', 'FR-FINANCEMENT APE/CSAI DOBA EN FAVEUR DE LA PTME', '2012-08-07', '2012-12-31', 8367.32, NULL, 8367.32, 0.00, 8367.32, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:13.080683+00', 0.00, 0.00, 8376.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (461, '2500223478', '0400006386', '2012-09-11', 'SSFA', 'USD', 'FR POUR MISE EN OEUVRE SSFA/04/WASH-NDJ/A2012', '2012-08-20', '2013-02-20', 9550.06, NULL, 9550.06, 0.00, 19100.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:13.309784+00', 0.00, 0.00, 9550.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (541, '2500223886', '0400007215', '2012-10-12', 'Programme Document Against PCA', 'USD', 'APE PROMOTION PFE ASSOCIATION AFEDD DE MAO/KANEM', '2012-10-12', '2012-11-30', 3884.80, NULL, 3884.80, 0.00, 8000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.15083+00', 0.00, 0.00, 3880.80, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (302, '2500223093', '0400008066', '2012-11-16', 'Programme Document Against PCA', 'USD', 'MISE EN ŒUVRE APE/UNICEF/ACPJ MAYO BENEYE ET MAY', '2012-11-01', '2013-01-31', 8452.48, NULL, 8452.48, 0.00, 17120.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.395933+00', 0.00, 0.00, 17120.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (161, '2500224553', '0400008375', '2012-11-27', 'SSFA', 'USD', 'PAIEMENT 1ÈRE TRANCHE APE AVEC CNCJ', '2012-11-01', '2012-11-30', 6880.94, NULL, 6880.94, 0.00, 6870.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.50355+00', 0.00, 0.00, 6870.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (850, '2500213951', '0400008488', '2012-11-29', 'Programme Document Against PCA', 'USD', 'FR - DECAISSEMENT DEUXIEME TRANCHE PCA JRS', '2012-11-29', '2012-12-31', 4177.10, NULL, 4177.10, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.593667+00', 0.00, 0.00, 4177.40, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (490, '2500213943', '0400009031', '2012-12-13', 'Programme Document Against PCA', 'USD', 'FINANCMT GROUPEMENTS FÉMININS DANS LE SILA/APLFT', '2012-12-13', '2012-12-31', 8762.95, NULL, 8762.95, 0.00, 9800.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.754093+00', 0.00, 0.00, 8778.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (384, '2500215492', '0400009302', '2012-12-19', 'SSFA', 'USD', 'DÉCAISSEMENT 1° TRANCHE À LA RADIO COMM. NGOURKOSS', '2012-12-19', '2013-04-30', 3345.96, NULL, 3345.96, 0.00, 3350.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:14.896429+00', 0.00, 0.00, 3350.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (203, '2500225499', '0400011524', '2013-04-04', 'SSFA', 'USD', 'FINANCEMENT 1ÈRE TRANCHE APE AFFOV', '2013-04-02', '2013-07-31', 20105.69, NULL, 20105.69, 0.00, 19800.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.353396+00', 0.00, 0.00, 31300.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (826, '2500223261', '0400011743', '2013-04-12', 'SSFA', 'USD', 'APPUI À LA PRÉVENTION CHOLÉRA, INONDATIONS À TISSI', '2013-04-01', '2013-06-30', 7520.24, NULL, 7520.24, 0.00, 8700.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.378039+00', 0.00, 0.00, 8700.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (244, '2500219704', '0400011780', '2013-04-15', 'Programme Document Against PCA', 'USD', 'FONDS POUR HYGIENE ET ASSAINISSEMENT AVEC CHORA', '2013-04-01', '2013-06-30', 42457.18, NULL, 42457.18, 0.00, 42525.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.406296+00', 0.00, 0.00, 42525.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (418, '2500212813', '0400011850', '2013-04-18', 'SSFA', 'USD', 'DÉCAISSEMENT 2° TRANCHE À LA RADIO TERRE NOUVELLE', '2013-01-15', '2013-07-27', 3115.18, NULL, 3115.18, 0.00, 3125.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.428807+00', 0.00, 0.00, 3125.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (107, '2500223478', '0400012047', '2013-04-25', 'SSFA', 'USD', 'FINANCEMENT 2È TRANCHE APE AOPK', '2013-04-25', '2013-05-31', 9923.60, NULL, 9923.60, 0.00, 9986.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.469843+00', 0.00, 0.00, 10050.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (761, '2500225653', '0400012057', '2013-04-26', 'Programme Document Against PCA', 'USD', 'PAIEMENT DE LA PREMIERE AVANCE MENTOR INITIATIVE', '2013-04-26', '2013-05-01', 53869.30, NULL, 53869.30, 0.00, 52800.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.489165+00', 0.00, 0.00, 52800.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (42, '2500221641', '0400012235', '2013-05-02', 'SSFA', 'USD', 'SMALL SCALE FUNDING AGREEMENT ATPCS', '2013-05-02', '2013-07-31', 18376.70, NULL, 18376.70, 0.00, 18420.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.515642+00', 0.00, 0.00, 18420.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (332, '2500223632', '0400012577', '2013-05-15', 'Programme Document Against PCA', 'USD', 'FINANCEMENT DU PCA ASSAR POUR TISSI', '2013-05-15', '2013-12-31', 69060.96, NULL, 69060.96, 0.00, 108876.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.547415+00', 0.00, 0.00, 109160.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (869, '2500225860', '0400012729', '2013-05-21', 'SSFA', 'USD', 'DÉCAISSEMENT 2ÈRE TRANCHE À LA RADIO ALBICHARI', '2013-05-21', '2013-06-30', 2474.30, NULL, 2474.30, 0.00, 2485.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.568564+00', 0.00, 0.00, 2485.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (734, '2500215492', '0400012759', '2013-05-22', 'SSFA', 'USD', 'DÉCAISSEMENT 2° TRANCHE À LA RADIO COMM. BENOYE', '2013-05-22', '2013-06-30', 3013.06, NULL, 3013.06, 0.00, 3025.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.606016+00', 0.00, 0.00, 3025.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (204, '2500215499', '0400012760', '2013-05-22', 'SSFA', 'USD', 'DÉCAISSEMENT 2° TRANCHE À LA RADIO SOLEIL KAR UBA', '2013-05-22', '2013-06-30', 2913.29, NULL, 2913.29, 0.00, 2925.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.626062+00', 0.00, 0.00, 2925.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (675, '2500228085', '0400018952', '2014-03-04', 'SSFA', 'XAF', 'FINANCEMENT APE Nº19/PRO/POLIO/CROIX-ROUGE - MANDO', '2014-03-04', '2014-12-31', 12635.81, NULL, 12635.81, 0.00, 12635.81, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.577593+00', 6058000.00, 0.00, 6058000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (529, '2500228118', '0400019117', '2014-03-11', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PROJET CDLS/PALA', '2014-03-11', '2014-12-31', 7042.80, NULL, 7042.80, 0.00, 7081.62, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:19.045664+00', 3376547.00, 0.00, 3777900.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (241, '2500228870', '0400021508', '2014-06-11', 'SSFA', 'XAF', 'MOBILISATION SOCIALE A TRAVERS LES RADIOS -GAYA TC', '2014-06-11', '2014-10-30', 12459.65, NULL, 12459.65, 0.00, 12459.65, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:20.983852+00', 6010000.00, 0.00, 6010000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (99, '2500228854', '0400021534', '2014-06-12', 'SSFA', 'XAF', 'MOBILISATION SOCIALE A TRAVERS LES RADIOS - DAR BA', '2014-06-12', '2014-10-30', 12459.65, NULL, 12459.65, 0.00, 12459.65, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.04443+00', 6010000.00, 0.00, 6010000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (651, '2500225860', '0400021565', '2014-06-13', 'SSFA', 'XAF', 'MOBILISATION SOCIALE A TRAVERS LES RADIOS - AL BIC', '2014-06-13', '2014-10-30', 12459.65, NULL, 12459.65, 0.00, 12459.65, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.090012+00', 6010000.00, 0.00, 6010000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (277, '2500221408', '0400021609', '2014-06-16', 'SSFA', 'XAF', 'PAIEMENT INTEGRAL DE L''APE Nº24/PRO/POLIO/CRCRT', '2014-06-16', '2014-12-31', 13242.27, NULL, 13242.27, 0.00, 18917.52, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.122642+00', 6387500.00, 0.00, 9125000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (682, '2500225658', '0400021669', '2014-06-17', 'SSFA', 'XAF', 'PAIEMENT INTEGRAL DE L''APE Nº28/PRO/POLIO/ADERBA', '2014-06-17', '2014-12-31', 18782.77, NULL, 18782.77, 0.00, 18782.77, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.174325+00', 9060000.00, 0.00, 9060000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (526, '2500225653', '0400022120', '2014-07-03', 'Programme Document Against PCA', 'XAF', 'REMBOURSSEMENT ONG-MENTOR-1', '2014-07-03', '2014-07-03', 33186.03, NULL, 33186.03, 0.00, 31275.26, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.446725+00', 16274365.00, 0.00, 18007768.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (741, '2500228112', '0400025292', '2014-11-07', 'Programme Document Against PCA', 'XAF', 'DECAISSMT 1ER TRANCH PCA Nº /IHDL/2014', '2014-11-07', '2015-01-07', 71545.03, NULL, 71545.03, 0.00, 72447.01, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.74139+00', 37680050.00, 0.00, 37680050.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (133, '2500212802', '0400012762', '2013-05-22', 'SSFA', 'USD', 'DÉCAISSEMENT 2° TRANCHE À LA RADIO DJA FM', '2013-05-22', '2013-06-30', 4283.28, NULL, 4283.28, 0.00, 4315.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.646083+00', 0.00, 0.00, 4315.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (583, '2500221193', '0400012887', '2013-05-29', 'Programme Document Against PCA', 'USD', 'REMBOURSEMENT PREFINANCEMENT PCA/007/CHD/PRO/BASE', '2013-05-29', '2013-06-30', 155034.44, NULL, 155034.44, 0.00, 155900.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.666126+00', 0.00, 0.00, 155900.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (316, '2500221408', '0400012890', '2013-05-29', 'SSFA', 'USD', 'REMBOURSEMENT APE CRT DU LAC .', '2013-05-29', '2013-12-31', 7610.00, NULL, 7610.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.689267+00', 0.00, 0.00, 7900.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (317, '2500225658', '0400012891', '2013-05-29', 'SSFA', 'USD', 'REMBOURSEMENT APE ADERBA .', '2013-05-29', '2013-12-31', 7127.00, NULL, 7127.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.713812+00', 0.00, 0.00, 7300.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (174, '2500215476', '0400012906', '2013-05-29', 'Programme Document Against PCA', 'USD', 'PAIEMENT INTEGRALE APE CELIAF MANDOUL', '2013-05-29', '2013-08-30', 10065.21, NULL, 10065.21, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.730956+00', 0.00, 0.00, 10200.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (818, '2500224381', '0400012931', '2013-05-30', 'SSFA', 'USD', 'DECAISSEMENT 2E TRANCHE DE AFASALES', '2013-05-30', '2013-10-31', 8624.85, NULL, 8624.85, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.780063+00', 0.00, 0.00, 9000.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (441, '2500225723', '0400012312', '2013-05-06', 'Programme Document Against PCA', 'USD', 'PCA 2013/02/CHD/EDUC/FOI', '2013-03-27', '2013-12-31', 69202.62, NULL, 69202.62, 0.00, 63563.49, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.181147+00', 0.00, 0.00, 70700.00, true, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (221, '2500228125', '0400019156', '2014-03-12', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PROJET CDIAM NDJAMENA', '2014-03-12', '2014-12-31', 12424.71, NULL, 12424.71, 0.00, 12443.65, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.276313+00', 5956791.00, 0.00, 6016891.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (82, '2500225889', '0400013037', '2013-06-04', 'SSFA', 'USD', 'REMBOURSEMENT APE UOFK', '2013-06-04', '2013-09-03', 4865.55, NULL, 4865.55, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.819823+00', 0.00, 0.00, 6000.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (105, '2500225656', '0400013060', '2013-06-04', 'SSFA', 'USD', 'PAIEMENT INTEGRALE APE ASSALAMA', '2013-06-04', '2013-08-03', 7205.05, NULL, 7205.05, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.841816+00', 0.00, 0.00, 8000.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (470, '2500215493', '0400013132', '2013-06-06', 'Programme Document Against PCA', 'USD', 'DÉCAISEMENT 2° TRANCHE À LA RADIO COMM DE MONGO', '2013-06-06', '2013-06-30', 2683.26, NULL, 2683.26, 0.00, 2690.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.891813+00', 0.00, 0.00, 2690.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (348, '2500224534', '0400013172', '2013-06-07', 'Programme Document Against PCA', 'XAF', 'DÉCAISEMENT 2° TRANCHE QU JOURNAL LE COURRIER DES', '2013-06-07', '2013-06-30', 2067.11, NULL, 2067.11, 0.00, 2069.60, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.908118+00', 1040000.00, 0.00, 1040000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (574, '2500221169', '0400013289', '2013-06-12', 'Programme Document Against PCA', 'USD', 'PREMIERE TRANCHE PCA/2013 CROIX ROUGE DU TCHAD', '2013-06-12', '2013-09-30', 99984.83, NULL, 99984.83, 0.00, 100000.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.925795+00', 0.00, 0.00, 100000.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (647, '2500226117', '0400013307', '2013-06-13', 'Programme Document Against PCA', 'XAF', 'FR PCA IBCR SUR LA CARTHOGRAPHIE', '2013-10-17', '2013-12-31', 58800.99, NULL, 58800.99, 0.00, 58871.95, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.962095+00', 29583896.00, 0.00, 49982145.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (783, '2500214101', '0400013375', '2013-06-17', 'Programme Document Against PCA', 'XAF', 'FONDS POUR PCA WASH/FPT (TISSI)', '2013-06-01', '2013-01-31', 38948.20, NULL, 38948.20, 0.00, 57101.88, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.978192+00', 19595579.00, 0.00, 69167421.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (854, '2500221169', '0400013380', '2013-06-17', 'SSFA', 'XAF', 'REMBOURSEMENT 3ÈME TRANCHE PCA/2012/CRT', '2013-06-17', '2013-06-17', -5614.42, NULL, -5614.42, 0.00, 138157.44, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:15.999911+00', 0.00, 0.00, 0.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (142, '2500223298', '0400013410', '2013-06-18', 'SSFA', 'XAF', 'SMALL SCALE FUNDING AGREEMENT - MERLIN', '2013-05-01', '2013-06-30', 14683.55, NULL, 14683.55, 0.00, 14701.27, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:16.020953+00', 7387574.00, 0.00, 7387574.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (540, '2500215480', '0400013592', '2013-06-24', 'SSFA', 'XAF', 'FINANCMT FORA NATIONAL A N''DJAMENA', '2013-06-24', '2013-06-15', 21620.63, NULL, 21620.63, 0.00, 21646.72, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:16.050246+00', 10877750.00, 0.00, 10932750.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (502, '2500213951', '0400013680', '2013-06-27', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT 3E ET 4E TRANCHES PCA JRS 2012', '2012-01-01', '2013-01-31', 53842.93, NULL, 53842.93, 0.00, 53907.91, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:16.07383+00', 27089400.00, 0.00, 27089400.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (614, '2500213939', '0400013768', '2013-07-03', 'SSFA', 'XAF', 'FINANCMT FORA NATIONAL N''DJAM LEADER CHRETIEN', '2013-07-03', '2013-07-20', 26045.53, NULL, 26045.53, 0.00, 26045.53, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:16.098719+00', 13104000.00, 0.00, 13104000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (341, '2500214062', '0400013770', '2013-07-03', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 2E TRANCHE DU PCA AVEC ESMS', '2013-07-03', '2013-12-31', 68096.12, NULL, 68096.12, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:16.120181+00', 34260450.00, 0.00, 34260450.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (360, '2500214085', '0400013793', '2013-07-04', 'SSFA', 'XAF', 'FONDS POUR REALISATON 17 FORAGES AVEC IAS A TISSI', '2013-07-04', '2013-12-31', 204987.12, NULL, 204987.12, 0.00, 204987.12, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:16.142898+00', 103132913.00, 0.00, 211144538.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (775, '2500221193', '0400013942', '2013-07-12', 'Programme Document Against PCA', 'XAF', 'VERSEMENT 1ERE TRANCHE PCA ONG BASE', '2013-07-12', '2013-10-12', 174168.59, NULL, 174168.59, 0.00, 174163.57, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:16.166444+00', 86142389.00, 0.00, 87690273.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (681, '2500223093', '0400014012', '2013-07-16', 'Programme Document Against PCA', 'XAF', 'PAIEMT 2EM TRANCHE ACPJ', '2013-07-16', '2013-10-16', 8507.58, NULL, 8507.58, 0.00, 8507.58, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:16.18464+00', 4280325.00, 0.00, 18000000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (411, '2500225905', '0400014204', '2013-07-23', 'SSFA', 'XAF', 'FINANCEMENT APE Nº 09/PRO/POLIO/ZOUKLAZO/2013', '2013-07-23', '2013-09-30', 5177.70, NULL, 5177.70, 0.00, 5177.70, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:16.240175+00', 2605000.00, 0.00, 2605000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (413, '2500213964', '0400014206', '2013-07-23', 'SSFA', 'XAF', 'FINANCEMENT APE Nº 05/ PRO/POLIO/CELIAF/2013', '2013-07-23', '2013-09-30', 3025.13, NULL, 3025.13, 0.00, 3025.13, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:16.260901+00', 1522000.00, 0.00, 1522000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (412, '2500215474', '0400014207', '2013-07-23', 'SSFA', 'XAF', 'FINANCEMENT APE Nº004/PRO/POLIO/BASE/2013', '2013-07-23', '2013-09-30', 6706.17, NULL, 6706.17, 0.00, 6706.17, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:16.280895+00', 3374000.00, 0.00, 3374000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (415, '2500225906', '0400014208', '2013-07-23', 'SSFA', 'XAF', 'FINANCEMENT APE Nº08/PRO/POLIO/TCHAD-SOS/2013', '2013-07-23', '2013-09-30', 3025.13, NULL, 3025.13, 0.00, 3025.13, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:16.301115+00', 1522000.00, 0.00, 1522001.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (536, '2500221791', '0400014242', '2013-07-24', 'Programme Document Against PCA', 'XAF', 'VIREMENT 2EME TRANCHE PCA/ADN/VIH', '2015-08-01', '2015-10-31', 44864.84, NULL, 44864.84, 0.00, 45281.83, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:16.337906+00', 23782150.00, 0.00, 23782150.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (700, '2500225655', '0400014300', '2013-07-26', 'SSFA', 'XAF', 'PAIEMENT INTEGRALE APE Nº11/PRO/POLIO/CELIAF /2013', '2013-07-26', '2013-09-30', 6807.53, NULL, 6807.53, 0.00, 6807.53, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:16.358546+00', 3425000.00, 0.00, 3425000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (263, '2500223261', '0400014391', '2013-07-31', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT APE AFDI', '2013-07-31', '2013-09-30', 3077.28, NULL, 3077.28, 0.00, 3025.13, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:16.381846+00', 1522000.00, 0.00, 1548344.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (262, '2500226341', '0400014393', '2013-07-31', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT APE Nº15/PRO/POLIO/ACPJ/2013', '2013-07-31', '2013-09-30', 7531.46, NULL, 7531.46, 0.00, 7403.82, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:16.427682+00', 3725000.00, 0.00, 3789470.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (667, '2500213954', '0400014624', '2013-08-14', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT SOLDE PROJET IRIBA 2012', '2013-08-14', '2013-10-30', 10109.34, NULL, 10109.34, 0.00, 10109.34, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:16.453948+00', 4999999.00, 0.00, 4999999.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (632, '2500224923', '0400014630', '2013-08-14', 'SSFA', 'XAF', 'DÉCAISEMENT 2È TRANCHE À LA RADIO ZAHSOO DE LÉRÉ', '2013-08-14', '2013-10-15', 2304.93, NULL, 2304.93, 0.00, 2304.93, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:16.777273+00', 1140000.00, 0.00, 1140000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (406, '2500224655', '0400014631', '2013-08-14', 'SSFA', 'XAF', 'FINANCEMENT FORMATION DES FORMATEURS DE CEVANUTRI', '2013-08-14', '2013-12-31', 9878.85, NULL, 9878.85, 0.00, 9878.85, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.085572+00', 4886000.00, 0.00, 4886000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (91, '2500220441', '0400014864', '2013-08-27', 'SSFA', 'XAF', 'FINANCEMENT 2EME TRANCHE ACTIVITE POLIO', '2013-08-27', '2013-09-30', 4023.52, NULL, 4023.52, 0.00, 4023.52, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.108101+00', 1990000.00, 0.00, 1990000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (639, '2500224289', '0400014935', '2013-08-30', 'Programme Document Against PCA', 'XAF', 'PAIEMT 3E TRANCHE EQUIVALENT A 10% A LEAD', '2013-08-30', '2013-10-30', 12447.12, NULL, 12447.12, 0.00, 12463.63, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.129237+00', 6164413.00, 0.00, 6164413.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (638, '2500224422', '0400014936', '2013-08-30', 'Programme Document Against PCA', 'XAF', 'DECAISSEMT DERNIERE TRANCHE SCG', '2013-08-30', '2013-09-30', 204036.08, NULL, 204036.08, 0.00, 204306.71, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.153643+00', 101048462.00, 0.00, 112000000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (883, '2500226636', '0400015020', '2013-09-04', 'SSFA', 'XAF', 'APE SUR LA SCOLARISATION DES FILLES AU SALAMAT', '2013-09-01', '2013-12-31', 5182.05, NULL, 5182.05, 0.00, 12955.13, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.174101+00', 2566400.00, 0.00, 6416000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (164, '2500223261', '0400015299', '2013-09-17', 'Programme Document Against PCA', 'XAF', 'DEUXIÈME & DERNIÈRE TRANCHE PCA Nº08/13/WASH/AFDI', '2013-06-10', '2013-12-10', 48887.69, NULL, 48887.69, 0.00, 48887.69, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.202071+00', 24211532.00, 0.00, 24211532.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (803, '2500000156', '0400030765', '2015-05-25', 'Programme Document Against PCA', 'XAF', 'APPUYER L''ORGANISATION DES SEANCES INFORMATIONS', '2015-05-25', '2015-07-31', 128002.27, NULL, 128002.27, 0.00, 129976.36, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:23.191271+00', 77080662.00, 0.00, 77080662.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (672, '2500213920', '0400031551', '2015-06-25', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT 2ÈT APE ACF/PROJET MEDICO-NUT/ZAFAI', '2015-06-18', '2015-12-31', 20626.47, NULL, 20626.47, 0.00, 20329.74, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:23.2195+00', 12242204.00, 0.00, 12242204.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (90, '2500219704', '0400034157', '2015-10-07', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT PCA ONG CHORA', '2015-10-07', '2016-01-07', 5786.27, NULL, 5786.27, 0.00, 18827.80, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:23.250003+00', 0.00, 0.00, 11152444.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (777, '2500214101', '0400015303', '2013-09-17', 'Programme Document Against PCA', 'XAF', 'DEUXIÈME & DERNIÈRE TRANCHE PCA Nº07/13/WASH/FPT', '2013-06-01', '2013-12-31', 39567.20, NULL, 39567.20, 0.00, 39567.20, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.222952+00', 19595579.00, 0.00, 19595579.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (431, '2500212785', '0400015348', '2013-09-19', 'Programme Document Against PCA', 'XAF', 'RESERVATION FONDS POUR PCA EDUC NO 10/OPAD', '2013-08-01', '2014-01-31', 70139.54, NULL, 70139.54, 0.00, 74710.04, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.239507+00', 34390020.00, 0.00, 37000000.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (814, '2500226932', '0400015371', '2013-09-19', 'SSFA', 'XAF', 'FINANCMT ACTIVITE PHA A BOL ASS ANDIMA', '2013-09-19', '2013-12-18', 20104.32, NULL, 20104.32, 0.00, 20104.32, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.269901+00', 9956625.00, 0.00, 9956625.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (233, '2500213991', '0400015422', '2013-09-23', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT APE Nº007/PRO/POLIO/CRT/2013', '2013-09-23', '2013-10-30', 3073.21, NULL, 3073.21, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.293953+00', 1522000.00, 0.00, 1522000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (884, '2500226407', '0400015450', '2013-09-24', 'SSFA', 'XAF', 'REMBOURSEMENT DES ACTIVITÉS POLIO PAR FEMME MOSSO', '2013-09-24', '2013-10-30', 6305.93, NULL, 6305.93, 0.00, 6305.93, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.339496+00', 3123000.00, 0.00, 3123000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (464, '2500214062', '0400015641', '2013-10-02', 'Programme Document Against PCA', 'XAF', 'DECAISSMT 3E TRANCH PCA12/2012/CHD/WASH/ESMS', '2013-10-02', '2014-01-05', 40383.81, NULL, 40383.81, 0.00, 41370.18, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.356587+00', 20000000.00, 0.00, 40000100.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (780, '2500219704', '0400015710', '2013-10-04', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT APE Nº006/PRO/POLIO/CHORA/2013', '2013-10-04', '2013-10-31', 3148.27, NULL, 3148.27, 0.00, 3148.27, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.384654+00', 1522000.00, 0.00, 1522000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (852, '2500226117', '0400016024', '2013-10-17', 'SSFA', 'XAF', 'DECAISSEMENT DE LA 2E TRANCHE PCA201304CHDPROTIBCR', '2013-10-17', '2013-12-31', 42193.96, NULL, 42193.96, 0.00, 42193.96, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.403023+00', 20398249.00, 0.00, 20398249.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (585, '2500227189', '0400016066', '2013-10-21', 'SSFA', 'XAF', 'DECAISSEMENT SUIVANT PROTOCOLE A PETITE ECHELLE AV', '2013-10-21', '2013-12-31', 9451.43, NULL, 9451.43, 0.00, 9566.85, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.428867+00', 4625000.00, 0.00, 9255000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (318, '2500227181', '0400016070', '2013-10-21', 'SSFA', 'XAF', 'FINANCEMENT PROJET MOB SOC PRÉVENTION PALUDISME', '2013-10-21', '2013-12-31', 7456.98, NULL, 7456.98, 0.00, 7456.98, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.450988+00', 3605000.00, 0.00, 7210000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (15, '2500223298', '0400016135', '2013-10-23', 'Programme Document Against PCA', 'XAF', 'PROVISION SERVICES URGENCE INTEGRE NUT,SANTE,WASH,', '2013-10-23', '2013-12-31', 20247.99, NULL, 20247.99, 0.00, 20495.27, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.481018+00', 9908233.00, 0.00, 9908233.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (290, '2500221169', '0400016199', '2013-10-26', 'Programme Document Against PCA', 'XAF', '2EME TRANCHE PCA CROIX ROUGE DU TCHAD', '2013-10-26', '2014-01-26', 104054.83, NULL, 104054.83, 0.00, 104054.83, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.507811+00', 50304267.00, 0.00, 50304267.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (807, '2500215480', '0400016277', '2013-10-30', 'Programme Document Against PCA', 'XAF', 'FR-FINANCEMENT APE/CSAI', '2013-10-30', '2014-12-31', 9376.55, NULL, 9376.55, 0.00, 9376.55, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.524361+00', 4533000.00, 0.00, 4533000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (363, '2500221790', '0400016418', '2013-11-05', 'Programme Document Against PCA', 'XAF', 'PRISE EN CHARGE OEVS', '2013-11-05', '2014-12-31', 129141.39, NULL, 129141.39, 0.00, 132639.58, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.5645+00', 63180476.00, 0.00, 63180476.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (180, '2500218272', '0400016729', '2013-11-20', 'Programme Document Against PCA', 'XAF', 'PAIEMENT PREMIÈRE TRANCHE APE Nº25 CELIAF/NDJAMENA', '2013-11-20', '2014-12-31', 6811.26, NULL, 6811.26, 0.00, 6811.26, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.585937+00', 3333050.00, 0.00, 3333050.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (514, '2500214088', '0400034287', '2015-10-12', 'Programme Document Against PCA', 'XAF', 'FR REMB 2E TRANCHE AMEND PCA 2014/N 14/CHD/PRO/SN', '2014-10-01', '2015-07-31', 84719.35, NULL, 84719.35, 0.00, 84719.35, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:23.286773+00', 49529641.00, 0.00, 49529641.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (845, '2500230977', '0400034452', '2015-10-19', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT TRANCHE/AVENANT 10 SEPT 2015 ADESOL', '2015-10-19', '2015-12-31', 8980.01, NULL, 8980.01, 0.00, 8980.01, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:23.305051+00', 5250000.00, 0.00, 5250000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (437, '2500219696', '0400016734', '2013-11-20', 'Programme Document Against PCA', 'XAF', 'PAIEMENT PREMIÈRE TRANCHE APE Nº24 EEMET/2013', '2013-11-20', '2013-12-31', 6242.75, NULL, 6242.75, 0.00, 6242.75, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.607284+00', 3054850.00, 0.00, 3054850.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (187, '2500225602', '0400016864', '2013-11-26', 'Programme Document Against PCA', 'XAF', 'PAIEMT 1ER TRANCHE A ATPV AM TIMAN', '2013-11-26', '2014-05-30', 15892.76, NULL, 15892.76, 0.00, 64521.94, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.627317+00', 7777028.00, 0.00, 31573425.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (475, '2500221790', '0400017122', '2013-12-04', 'Programme Document Against PCA', 'XAF', 'RNTAP/SENSIB IMPORTCE PTME EN MILIEU CONFES/COMMU', '2013-11-19', '2013-12-31', 35617.09, NULL, 35617.09, 0.00, 35617.09, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.648588+00', 17199100.00, 0.00, 17199100.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (127, '2500221790', '0400017123', '2013-12-04', 'Programme Document Against PCA', 'XAF', 'RNTAP/SUIVI MEDICAL OEV/SUIVI NUTRITIONNEL', '2013-12-04', '2013-12-31', 10601.82, NULL, 10601.82, 0.00, 10601.82, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.670165+00', 5119500.00, 0.00, 5119500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (717, '2500214088', '0400036311', '2015-12-10', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENTACTIVITÉS WASH GORÉ PAR IRC', '2015-01-01', '2015-12-31', 102500.72, NULL, 102500.72, 0.00, 102500.64, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:23.454901+00', 63556183.00, 0.00, 63562635.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (137, '2500221790', '0400017124', '2013-12-04', 'Programme Document Against PCA', 'XAF', 'RNTAP+/SOUTIEN PSYCHO-S DES PVVIH/APPUI PSYCHOLOGI', '2013-11-19', '2013-12-31', 36391.39, NULL, 36391.39, 0.00, 36391.39, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.690885+00', 17573000.00, 0.00, 17573000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (192, '2500221790', '0400017125', '2013-12-04', 'Programme Document Against PCA', 'XAF', 'RNTAP+/RECYCLAGE CPS/FORMATION MÉDIATEURS DE SANTÉ', '2013-11-19', '2013-12-31', 29869.18, NULL, 29869.18, 0.00, 29869.18, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.711381+00', 14423500.00, 0.00, 14423500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (144, '2500221790', '0400017126', '2013-12-04', 'Programme Document Against PCA', 'XAF', 'RNTAP+/RENFORC/CAPACITÉS RNTAP/APPUI COORD/SUIVI/E', '2013-11-19', '2013-12-31', 26603.37, NULL, 26603.37, 0.00, 26597.16, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.732925+00', 12846474.00, 0.00, 12846474.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (509, '2500221169', '0400017341', '2013-12-10', 'Programme Document Against PCA', 'USD', 'CFS GRANT SM 130125 REMBOURSEMENT 3E T. PCA/CRT/12', '2013-12-10', '2013-12-31', 143771.86, NULL, 143771.86, 0.00, 138158.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.75822+00', 0.00, 0.00, 138158.00, true, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (750, '2500221169', '0400017370', '2013-12-10', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 3ÈME TRANCHE PCA CRT 2013', '2013-12-10', '2014-03-10', 104173.56, NULL, 104173.56, 0.00, 104173.56, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.783994+00', 50304267.00, 0.00, 50304267.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (612, '2500224534', '0400017422', '2013-12-11', 'Programme Document Against PCA', 'XAF', 'DÉCAISSEMENT 3È TRANCHE AU JOURNAL LE COURRIER', '2013-12-11', '2013-12-31', 2070.87, NULL, 2070.87, 0.00, 2070.87, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.808496+00', 1000000.00, 0.00, 1000000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (858, '2500221193', '0400017436', '2013-12-12', 'Programme Document Against PCA', 'XAF', 'VERSEMENT DE LA 2ÈME TRANCHE PCA ONG BASE 2013', '2013-12-12', '2014-03-12', 178389.63, NULL, 178389.63, 0.00, 178389.63, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.829581+00', 86142389.00, 0.00, 86142389.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (758, '2500214085', '0400017474', '2013-12-13', 'Programme Document Against PCA', 'XAF', 'PAIEMT DERNIERE TRANCHE A IAS', '2013-12-13', '2014-03-06', 57159.42, NULL, 57159.42, 0.00, 57159.42, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.865286+00', 27601657.00, 0.00, 27601657.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (313, '2500214085', '0400017480', '2013-12-13', 'Programme Document Against PCA', 'XAF', 'PAIEMT 1ERE TRCH IAS PCA/8/2012/CHD/WASH/IAS AMEND', '2013-12-13', '2014-03-06', 405448.06, NULL, 405448.06, 0.00, 405448.06, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.896215+00', 195786410.00, 0.00, 195786410.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (739, '2500213943', '0400017494', '2013-12-13', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE PCA/2013/13/CHD/PROT/APLFT', '2013-12-13', '2013-12-31', 55450.56, NULL, 55450.56, 0.00, 55450.56, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.917397+00', 26776465.00, 0.00, 101193062.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (434, '2500213943', '0400017603', '2013-12-17', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE PCA/2013/13/CHD/PROT/APLFT', '2013-12-17', '2013-12-31', 154113.26, NULL, 154113.26, 0.00, 154119.47, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.942056+00', 74419597.00, 0.00, 74422597.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (800, '2500213931', '0400017713', '2013-12-19', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PCA/ ASTBEF', '2013-12-19', '2014-01-31', 19775.32, NULL, 19775.32, 0.00, 58598.16, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.961656+00', 9549284.00, 0.00, 45091972.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (659, '2500225653', '0400017832', '2013-12-30', 'Programme Document Against PCA', 'XAF', 'PAIEMENT SNDE TRANCHE PCA MENTHOR', '2013-12-30', '2013-12-30', 20188.84, NULL, 20188.84, 0.00, 20188.84, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:17.978849+00', 9748971.00, 0.00, 9748971.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (765, '2500221169', '0400017871', '2014-01-09', 'SSFA', 'XAF', 'FONDS FINANCEMENT APE CRT RETOURNÉS RCA.', '2014-01-06', '2014-02-06', 36956.60, NULL, 36956.60, 0.00, 19547.11, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.000783+00', 17551500.00, 0.00, 17551500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (694, '2500223633', '0400017910', '2014-01-17', 'SSFA', 'XAF', 'REMBOURSEMENT DES ACTIVITÉS POLIO PAR TCHAD SOS.', '2014-01-17', '2014-12-31', 3149.54, NULL, 3149.54, 0.00, 3202.44, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.022604+00', 1522000.00, 0.00, 1522000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (486, '2500213931', '0400018162', '2014-01-30', 'Programme Document Against PCA', 'XAF', 'APPUI MOB SOC IST/VIH SIDA ET PTME DANS LES CIOJ', '2014-01-30', '2014-12-31', 52703.24, NULL, 52703.24, 0.00, 166317.79, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.04249+00', 25444678.00, 0.00, 79044527.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (790, '2500212820', '0400018321', '2014-02-07', 'Programme Document Against PCA', 'XAF', 'REMBURSEMT PREFINANCEMET ACTIVITES WASH PA SIF', '2014-02-07', '2014-02-28', 53650.90, NULL, 53650.90, 0.00, 67063.62, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.078433+00', 25926528.00, 0.00, 32408160.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (791, '2500213955', '0400018327', '2014-02-07', 'Programme Document Against PCA', 'XAF', 'PRISE EN CHARGE OEV KELO/MOUNDOU PCA2013/14/PROTCR', '2014-02-07', '2014-12-31', 99369.48, NULL, 99369.48, 0.00, 105186.26, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.099328+00', 50830734.00, 0.00, 50830734.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (16, '2500224893', '0400018397', '2014-02-11', 'SSFA', 'XAF', 'PAIEMT SSA SID PROMOTION HYGIENE CAMP ZAAFAYE', '2014-02-11', '2014-04-30', 19995.03, NULL, 19995.03, 0.00, 19995.03, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:18.12073+00', 9662500.00, 0.00, 9662500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (488, '2500228587', '0400022605', '2014-07-24', 'Programme Document Against PCA', 'XAF', 'FR 1ERE TRANCHE PCA ADES - UNICEF URGENCE TISSI', '2014-07-24', '2014-08-30', 75452.56, NULL, 75452.56, 0.00, 75452.56, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.631882+00', 36421857.00, 0.00, 36421857.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (866, '2500226117', '0400022628', '2014-07-24', 'Programme Document Against PCA', 'XAF', 'DERNIERE TRANCHE PCA2013/04/CHD/PROT/IBCR', '2014-01-01', '2014-08-31', 37769.67, NULL, 37769.67, 0.00, 37769.67, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.655782+00', 18231873.00, 0.00, 18231873.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (842, '2500229339', '0400022714', '2014-07-30', 'SSFA', 'XAF', 'DECSIMT SSA IDRISS/CHD/2014/WASH', '2014-07-30', '2014-10-30', 19925.75, NULL, 19925.75, 0.00, 19925.75, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.674882+00', 9618400.00, 0.00, 9618400.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (430, '2500229515', '0400022952', '2014-08-08', 'SSFA', 'XAF', 'PAIEMENT INTEGRAL DE L''APE Nº29/ASSOCIATION HANDIC', '2014-08-08', '2015-12-31', 17233.91, NULL, 17233.91, 0.00, 18791.62, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.735336+00', 9215375.00, 0.00, 9335375.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (432, '2500212785', '0400022954', '2014-08-08', 'Programme Document Against PCA', 'XAF', 'PCA N° 15/OPAD/PROMOTE CFS & TRAIN PTAS', '2014-08-15', '2015-02-15', 89954.10, NULL, 89954.10, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.75586+00', 45567770.00, 0.00, 45577770.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (589, '2500224893', '0400023023', '2014-08-12', 'Programme Document Against PCA', 'XAF', 'DECSIMT 2E TRANCH/PCA SID/2014/WASH', '2014-08-12', '2014-11-10', 17820.68, NULL, 17820.68, 0.00, 17820.68, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.775413+00', 8739225.00, 0.00, 8739225.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (743, '2500212819', '0400023234', '2014-08-20', 'Programme Document Against PCA', 'XAF', 'DECAISSMT 1ER TRANCH PCA Nº17/SECADEV', '2014-08-20', '2014-11-20', 265936.25, NULL, 265936.25, 0.00, 265936.25, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.92598+00', 130414605.00, 0.00, 131007765.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (704, '2500224422', '0400023249', '2014-08-20', 'Programme Document Against PCA', 'XAF', 'PCA N°16/SFCG/2014/PRO-PEACE BUILDING & EDUCATION', '2014-08-20', '2015-08-31', 272817.65, NULL, 272817.65, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.949457+00', 135892381.00, 0.00, 184531121.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (337, '2500229637', '0400023359', '2014-08-25', 'SSFA', 'XAF', 'DECAISSEMENT FONDS SELON PROTOC ACC A LA MAISON DE', '2014-08-25', '2014-10-25', 8622.65, NULL, 8622.65, 0.00, 8758.19, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.970307+00', 4295000.00, 0.00, 4295000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (59, '2500229793', '0400023506', '2014-08-28', 'SSFA', 'XAF', 'FINANCEMENT NDJAMVI, ÉDITION 2014', '2014-08-28', '2014-11-28', 11041.80, NULL, 11041.80, 0.00, 11215.38, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:21.996798+00', 5500000.00, 0.00, 5500000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (586, '2500215477', '0400023590', '2014-09-01', 'SSFA', 'XAF', 'ACCORD A PETITE ECHELLE AVEC CERDO', '2014-09-01', '2014-12-31', 20076.01, NULL, 20076.01, 0.00, 20076.01, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.023486+00', 10000000.00, 0.00, 10000000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (294, '2500223478', '0400023641', '2014-09-03', 'SSFA', 'XAF', 'FINANCMT PREVENTION CHOLERA A KABIA/MOT-ILLI/AOPK', '2014-09-03', '2014-12-03', 19686.53, NULL, 19686.53, 0.00, 19686.53, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.044836+00', 9806000.00, 0.00, 19612000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (292, '2500223093', '0400023643', '2014-09-03', 'SSFA', 'XAF', 'FINANCMT PREVENTION CHOLERA A BONGOR/ACPJ', '2014-09-03', '2014-12-03', 19598.20, NULL, 19598.20, 0.00, 19598.20, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.065425+00', 9762000.00, 0.00, 19524000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (52, '2500224382', '0400023644', '2014-09-03', 'SSFA', 'XAF', 'FINANCMT PREVENTION CHOLERA EN TANDJILE/CAIDEL', '2014-09-03', '2014-12-03', 18370.55, NULL, 18370.55, 0.00, 18370.55, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.089434+00', 9150500.00, 0.00, 18301000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (2, '2500224893', '0400023654', '2014-09-03', 'Programme Document Against PCA', 'XAF', 'PREVENTION CHOLERA AU 1ER-8E ARRONDISSMT NDJ SID', '2014-09-03', '2014-12-03', 18421.53, NULL, 18421.53, 0.00, 18421.53, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.117138+00', 9175892.00, 0.00, 18351784.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (657, '2500229712', '0400023667', '2014-09-04', 'SSFA', 'XAF', 'FINANCEMENT PRODUCTION JOURNAL DES JEUNES', '2014-09-04', '2014-12-30', 5313.32, NULL, 5313.32, 0.00, 5313.32, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.139467+00', 2646600.00, 0.00, 2646600.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (673, '2500221790', '0400023942', '2014-09-16', 'Programme Document Against PCA', 'XAF', 'RENFORCEMENT ACCES FEMMES ENCEINTES SERVICE PTME', '2014-09-16', '2014-12-31', 161497.63, NULL, 161497.63, 0.00, 161497.63, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.270476+00', 80443101.00, 0.00, 83153000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (252, '2500221408', '0400024598', '2014-10-14', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT APE Nº31/PRO/POLIO/CRT DU LAC', '2014-10-14', '2015-12-31', 19155.15, NULL, 19155.15, 0.00, 19155.15, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.441054+00', 9889000.00, 0.00, 9889000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (121, '2500224381', '0400024636', '2014-10-15', 'SSFA', 'XAF', 'DECAISSMT SSA/AFASALES/2014/INONDATION SALAMAT', '2014-10-15', '2014-12-18', 19316.89, NULL, 19316.89, 0.00, 19316.89, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.461825+00', 9972500.00, 0.00, 9972500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (505, '2500214088', '0400024758', '2014-10-20', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA IRC', '2014-10-20', '2015-01-20', 103486.49, NULL, 103486.49, 0.00, 102889.46, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.483139+00', 53425727.00, 0.00, 53117509.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (268, '2500221193', '0400024763', '2014-10-20', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2ÈME TRANCHE PCA BASE 2014', '2014-10-20', '2015-01-20', 128301.06, NULL, 128301.06, 0.00, 129257.13, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.50558+00', 66730026.00, 0.00, 66730026.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (389, '2500214088', '0400025415', '2014-11-11', 'Programme Document Against PCA', 'XAF', 'REPONSE EDUC ENFANTS RETOURNÉS RCA SUD/PCA14/IRC', '2014-11-11', '2015-07-31', 62511.93, NULL, 62511.93, 0.00, 63606.39, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.809138+00', 33082000.00, 0.00, 33082002.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (865, '2500214088', '0400025423', '2014-11-12', 'Programme Document Against PCA', 'XAF', 'REPONSE EDUC ENFANTS RETOURNÉS RCA SUD/PCA14/IRC', '2014-11-12', '2015-07-31', 186071.34, NULL, 186071.34, 0.00, 189329.08, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.829622+00', 98470999.00, 0.00, 98470999.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (147, '2500214088', '0400025427', '2014-11-12', 'Programme Document Against PCA', 'XAF', 'REPONSE EDUC ENFANTS RETOURNÉS RCA SUD/PCA14/IRC', '2014-11-12', '2015-07-31', 24832.81, NULL, 24832.81, 0.00, 144496.50, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.864347+00', 13141798.00, 0.00, 75154000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (31, '2500224593', '0400025507', '2014-11-13', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT APE SCOUTS POUR LES URGENCES RETOURNÉS', '2014-11-13', '2014-12-30', 6474.74, NULL, 6474.74, 0.00, 6556.37, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.881759+00', 3410000.00, 0.00, 3410000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (131, '2500214091', '0400025609', '2014-11-18', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME TRANCHE PCA CSSI 1', '2014-11-18', '2014-12-31', 29989.00, NULL, 29989.00, 0.00, 85299.40, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.903141+00', 15794066.00, 0.00, 15794066.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (764, '2500230634', '0400025680', '2014-11-19', 'Programme Document Against PCA', 'XAF', 'REPONSE EDUC EIE -APE-ATURAD/SUD', '2014-11-19', '2015-02-28', 17088.76, NULL, 17088.76, 0.00, 17088.76, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.922534+00', 9000000.00, 0.00, 9000500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (654, '2500229124', '0400025769', '2014-11-21', 'Programme Document Against PCA', 'XAF', 'DECSIMT 2E TRANCH/PCA13 ACTED/2014/WASH', '2014-11-21', '2015-03-19', 134851.69, NULL, 134851.69, 0.00, 134205.17, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.945062+00', 70680761.00, 0.00, 70680761.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (80, '2500213954', '0400026153', '2014-12-02', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT PCA/2001/20/CHD/EDUC/CARE', '2014-12-02', '2014-12-31', 14825.68, NULL, 14825.68, 0.00, 14825.68, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:22.966676+00', 7770685.00, 0.00, 7770685.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (661, '2500224655', '0400026264', '2014-12-04', 'SSFA', 'XAF', '1ÈRE TRANCHE APE CEVANUTRI 2014', '2014-12-04', '2015-03-01', 12452.85, NULL, 12452.85, 0.00, 18987.40, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:23.002101+00', 6527000.00, 0.00, 9952000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (288, '2500212828', '0400026395', '2014-12-08', 'Programme Document Against PCA', 'XAF', 'DECSIMT 2E TRANCH/PCA TERRE VERTE/2014/WASH', '2014-12-08', '2015-03-19', 39337.43, NULL, 39337.43, 0.00, 39337.41, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:23.056294+00', 20618195.00, 0.00, 20618195.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (652, '2500230977', '0400026480', '2014-12-09', 'SSFA', 'XAF', 'DECSIMT SSA/ADESOLA/2014/WASH DISTRICT DE BOL', '2014-12-09', '2015-03-19', 15444.44, NULL, 15444.44, 0.00, 15444.44, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:23.078927+00', 8095000.00, 0.00, 8095000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (128, '2500223261', '0400027087', '2014-12-22', 'Programme Document Against PCA', 'XAF', 'REQUETE DU 31.10.14 EDUC.RISQUE MINES AFDI', '2014-12-22', '2015-02-28', 36376.75, NULL, 36376.75, 0.00, 36376.75, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:23.102715+00', 19250975.00, 0.00, 19250975.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (122, '2500218808', '0400027121', '2014-12-26', 'SSFA', 'XAF', 'APPUI PSYCHOSOCIAL DES ENFANTS', '2014-12-26', '2014-12-31', 19174.41, NULL, 19174.41, 0.00, 19500.06, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:23.136011+00', 10319647.00, 0.00, 10319647.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (327, '2500212820', '0400029114', '2015-03-24', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT ONG SIF DERNIERE TRANCHE', '2015-03-24', '2015-04-05', 10473.07, NULL, 10473.07, 0.00, 10473.07, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:23.170954+00', 6481635.00, 0.00, 6481635.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (58, '2500225658', '0400034560', '2015-10-22', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT COÛT DIRECT DU PROJET/ADERBA', '2015-10-22', '2015-12-31', 3824.65, NULL, 3824.65, 0.00, 3824.65, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:23.328456+00', 2236010.00, 0.00, 2236010.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (825, '2500213955', '0400036108', '2015-12-07', 'SSFA', 'XAF', 'REMB APPUI SYSTEME PROTECTION SOCIALE DES OEV', '2015-12-07', '2015-12-31', 17863.19, NULL, 17863.19, 0.00, 17863.19, '2018-03-15 16:10:06.407235+00', '2018-10-21 00:02:23.399474+00', 11076181.00, 0.00, 11076181.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (353, '2500213954', '0400001124', '2012-03-14', 'Programme Document Against PCA', 'USD', 'FR PCA CARE DDR', '2012-02-01', '2012-09-30', 172691.43, NULL, 172691.43, 0.00, 176229.46, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.005248+00', 0.00, 0.00, 177000.00, true, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (322, '2500214082', '0400001150', '2012-03-15', 'Programme Document Against PCA', 'USD', 'DCT POUR MISE EN OEUVRE APE-WASH', '2011-04-15', '2012-12-31', 8582.08, NULL, 8582.08, 0.00, 18000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.026721+00', 0.00, 0.00, 9000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (181, '2500218272', '0400001186', '2012-03-15', 'Programme Document Against PCA', 'USD', 'PAIEMENT 2EME ET DERNIERE TRANCHE PCA CELIAF', '2010-06-01', '2012-09-30', 48594.11, NULL, 48594.11, 0.00, 49094.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.03665+00', 0.00, 0.00, 49094.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (832, '2500220423', '0400001423', '2012-03-23', 'Programme Document Against PCA', 'USD', 'REMBOURSEMENT FONDS CHOLERA OGB/UNICEF', '2011-11-11', '2012-01-31', 56146.83, NULL, 56146.83, 0.00, 398000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.056247+00', 0.00, 0.00, 29000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (424, '2500213951', '0400002179', '2012-04-19', 'Programme Document Against PCA', 'USD', 'FR - PROGRAMME COOPERATION AGREEMENT - JRS', '2012-05-02', '2012-12-31', 51327.34, NULL, 51327.34, 0.00, 160000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.077646+00', 0.00, 0.00, 51260.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (806, '2500215473', '0400002484', '2012-04-27', 'Programme Document Against PCA', 'USD', 'FINANCEMENT 1ERE TRANCHE PCA BAMBINI', '2012-04-15', '2012-10-15', 27108.65, NULL, 27108.65, 0.00, 27180.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.111639+00', 0.00, 0.00, 27180.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (7, '2500219704', '0400002485', '2012-04-27', 'Programme Document Against PCA', 'USD', 'FINANCEMENT 1ERE TRANCHE PCA CHORA', '2012-03-01', '2013-02-28', 14559.52, NULL, 14559.52, 0.00, 14560.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.126622+00', 0.00, 0.00, 14560.00, true, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (39, '2500221641', '0400002615', '2012-05-02', 'SSFA', 'USD', 'SSFA POUR LA MISE EN OEUVRE DE L''ATPC SALAMAT', '2012-05-02', '2012-11-02', 13275.02, NULL, 13275.02, 0.00, 13762.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.13631+00', 0.00, 0.00, 14093.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (185, '2500220951', '0400002665', '2012-05-03', 'SSFA', 'USD', 'SMALL SCALE FUNDING AGREEMNT BECADEL', '2012-01-03', '2012-12-31', 19804.57, NULL, 19804.57, 0.00, 17869.82, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.145259+00', 0.00, 0.00, 19579.79, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (429, '2500221668', '0400002673', '2012-05-03', 'SSFA', 'USD', 'MISE EN OEUVRE DE L''ATPC DANS LE OUADDAI', '2012-05-07', '2012-11-07', 9661.24, NULL, 9661.24, 0.00, 10011.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.155509+00', 0.00, 0.00, 12500.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (22, '2500215473', '0400002687', '2012-05-03', 'SSFA', 'USD', 'COMPLEMENT FR 400001709 BAMBINI', '2012-05-03', '2012-05-31', 309.08, NULL, 309.08, 0.00, 310.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.164396+00', 0.00, 0.00, 310.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (848, '2500221714', '0400002777', '2012-05-08', 'Programme Document Against PCA', 'USD', 'FR PAIEMENT 3È TRANCHE PCA MDM - REDUCTº MORTALIT', '2009-01-01', '2012-03-31', 77441.88, NULL, 77441.88, 0.00, 77442.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.181884+00', 0.00, 0.00, 77482.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (125, '2500223053', '0400005539', '2012-08-07', 'SSFA', 'USD', 'FR-FINANCEMENT APE/CSAI DOBA EN FAVEUR DE LA PTME', '2012-08-07', '2012-12-31', 8367.32, NULL, 8367.32, 0.00, 8367.32, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.511914+00', 0.00, 0.00, 8376.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (581, '2500000912', '0400005928', '2012-08-23', 'Programme Document Against PCA', 'USD', 'FINANCEMENT DE LA 3EME TRANCHE PCA BAMBINI', '2012-08-23', '2012-11-23', 33442.88, NULL, 33442.88, 0.00, 33525.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.604815+00', 0.00, 0.00, 33525.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (462, '2500219704', '0400006382', '2012-09-11', 'Programme Document Against PCA', 'USD', 'PCA 2012/04 DE PROMOTION SANTÉ COMMUNAUTAIRE-CHORA', '2012-05-10', '2013-03-31', 34871.68, NULL, 34871.68, 0.00, 34870.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.621734+00', 0.00, 0.00, 34930.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (302, '2500223093', '0400008066', '2012-11-16', 'Programme Document Against PCA', 'USD', 'MISE EN ŒUVRE APE/UNICEF/ACPJ MAYO BENEYE ET MAY', '2012-11-01', '2013-01-31', 8452.48, NULL, 8452.48, 0.00, 17120.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.818226+00', 0.00, 0.00, 17120.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (161, '2500224553', '0400008375', '2012-11-27', 'SSFA', 'USD', 'PAIEMENT 1ÈRE TRANCHE APE AVEC CNCJ', '2012-11-01', '2012-11-30', 6880.94, NULL, 6880.94, 0.00, 6870.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.924879+00', 0.00, 0.00, 6870.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (850, '2500213951', '0400008488', '2012-11-29', 'Programme Document Against PCA', 'USD', 'FR - DECAISSEMENT DEUXIEME TRANCHE PCA JRS', '2012-11-29', '2012-12-31', 4177.10, NULL, 4177.10, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.954016+00', 0.00, 0.00, 4177.40, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (490, '2500213943', '0400009031', '2012-12-13', 'Programme Document Against PCA', 'USD', 'FINANCMT GROUPEMENTS FÉMININS DANS LE SILA/APLFT', '2012-12-13', '2012-12-31', 8762.95, NULL, 8762.95, 0.00, 9800.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.026806+00', 0.00, 0.00, 8778.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (384, '2500215492', '0400009302', '2012-12-19', 'SSFA', 'USD', 'DÉCAISSEMENT 1° TRANCHE À LA RADIO COMM. NGOURKOSS', '2012-12-19', '2013-04-30', 3345.96, NULL, 3345.96, 0.00, 3350.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.080662+00', 0.00, 0.00, 3350.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (77, '2500212828', '0400011304', '2013-03-26', 'SSFA', 'USD', 'FINANCEMENT 2È TRANCHE APE TERRE VERTE/CELIAF', '2012-11-01', '2013-04-30', 7902.48, NULL, 7902.48, 0.00, 15842.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.285317+00', 0.00, 0.00, 7921.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (203, '2500225499', '0400011524', '2013-04-04', 'SSFA', 'USD', 'FINANCEMENT 1ÈRE TRANCHE APE AFFOV', '2013-04-02', '2013-07-31', 20105.69, NULL, 20105.69, 0.00, 19800.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.295577+00', 0.00, 0.00, 31300.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (826, '2500223261', '0400011743', '2013-04-12', 'SSFA', 'USD', 'APPUI À LA PRÉVENTION CHOLÉRA, INONDATIONS À TISSI', '2013-04-01', '2013-06-30', 7520.24, NULL, 7520.24, 0.00, 8700.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.305652+00', 0.00, 0.00, 8700.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (244, '2500219704', '0400011780', '2013-04-15', 'Programme Document Against PCA', 'USD', 'FONDS POUR HYGIENE ET ASSAINISSEMENT AVEC CHORA', '2013-04-01', '2013-06-30', 42457.18, NULL, 42457.18, 0.00, 42525.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.315205+00', 0.00, 0.00, 42525.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (418, '2500212813', '0400011850', '2013-04-18', 'SSFA', 'USD', 'DÉCAISSEMENT 2° TRANCHE À LA RADIO TERRE NOUVELLE', '2013-01-15', '2013-07-27', 3115.18, NULL, 3115.18, 0.00, 3125.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.327735+00', 0.00, 0.00, 3125.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (107, '2500223478', '0400012047', '2013-04-25', 'SSFA', 'USD', 'FINANCEMENT 2È TRANCHE APE AOPK', '2013-04-25', '2013-05-31', 9923.60, NULL, 9923.60, 0.00, 9986.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.352706+00', 0.00, 0.00, 10050.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (761, '2500225653', '0400012057', '2013-04-26', 'Programme Document Against PCA', 'USD', 'PAIEMENT DE LA PREMIERE AVANCE MENTOR INITIATIVE', '2013-04-26', '2013-05-01', 53869.30, NULL, 53869.30, 0.00, 52800.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.362719+00', 0.00, 0.00, 52800.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (42, '2500221641', '0400012235', '2013-05-02', 'SSFA', 'USD', 'SMALL SCALE FUNDING AGREEMENT ATPCS', '2013-05-02', '2013-07-31', 18376.70, NULL, 18376.70, 0.00, 18420.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.379409+00', 0.00, 0.00, 18420.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (332, '2500223632', '0400012577', '2013-05-15', 'Programme Document Against PCA', 'USD', 'FINANCEMENT DU PCA ASSAR POUR TISSI', '2013-05-15', '2013-12-31', 69060.96, NULL, 69060.96, 0.00, 108876.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.404275+00', 0.00, 0.00, 109160.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (869, '2500225860', '0400012729', '2013-05-21', 'SSFA', 'USD', 'DÉCAISSEMENT 2ÈRE TRANCHE À LA RADIO ALBICHARI', '2013-05-21', '2013-06-30', 2474.30, NULL, 2474.30, 0.00, 2485.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.414022+00', 0.00, 0.00, 2485.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (734, '2500215492', '0400012759', '2013-05-22', 'SSFA', 'USD', 'DÉCAISSEMENT 2° TRANCHE À LA RADIO COMM. BENOYE', '2013-05-22', '2013-06-30', 3013.06, NULL, 3013.06, 0.00, 3025.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.425748+00', 0.00, 0.00, 3025.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (114, '2500234967', '0400041453', '2016-06-22', 'SSFA', 'XAF', 'SENSIBILISA@T CONTRE MARIAGES DES ENFTS DS ÉGLISES', '2016-06-22', '2016-12-31', 11396.87, NULL, 11396.87, 0.00, 13008.88, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.668285+00', 6671000.00, 0.00, 7571000.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (441, '2500225723', '0400012312', '2013-05-06', 'Programme Document Against PCA', 'USD', 'PCA 2013/02/CHD/EDUC/FOI', '2013-03-27', '2013-12-31', 69202.62, NULL, 69202.62, 0.00, 63563.49, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.393723+00', 0.00, 0.00, 70700.00, true, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (204, '2500215499', '0400012760', '2013-05-22', 'SSFA', 'USD', 'DÉCAISSEMENT 2° TRANCHE À LA RADIO SOLEIL KAR UBA', '2013-05-22', '2013-06-30', 2913.29, NULL, 2913.29, 0.00, 2925.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.436984+00', 0.00, 0.00, 2925.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (133, '2500212802', '0400012762', '2013-05-22', 'SSFA', 'USD', 'DÉCAISSEMENT 2° TRANCHE À LA RADIO DJA FM', '2013-05-22', '2013-06-30', 4283.28, NULL, 4283.28, 0.00, 4315.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.446803+00', 0.00, 0.00, 4315.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (317, '2500225658', '0400012891', '2013-05-29', 'SSFA', 'USD', 'REMBOURSEMENT APE ADERBA .', '2013-05-29', '2013-12-31', 7127.00, NULL, 7127.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.478583+00', 0.00, 0.00, 7300.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (174, '2500215476', '0400012906', '2013-05-29', 'Programme Document Against PCA', 'USD', 'PAIEMENT INTEGRALE APE CELIAF MANDOUL', '2013-05-29', '2013-08-30', 10065.21, NULL, 10065.21, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.487406+00', 0.00, 0.00, 10200.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (818, '2500224381', '0400012931', '2013-05-30', 'SSFA', 'USD', 'DECAISSEMENT 2E TRANCHE DE AFASALES', '2013-05-30', '2013-10-31', 8624.85, NULL, 8624.85, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.50684+00', 0.00, 0.00, 9000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (82, '2500225889', '0400013037', '2013-06-04', 'SSFA', 'USD', 'REMBOURSEMENT APE UOFK', '2013-06-04', '2013-09-03', 4865.55, NULL, 4865.55, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.526649+00', 0.00, 0.00, 6000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (105, '2500225656', '0400013060', '2013-06-04', 'SSFA', 'USD', 'PAIEMENT INTEGRALE APE ASSALAMA', '2013-06-04', '2013-08-03', 7205.05, NULL, 7205.05, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.536434+00', 0.00, 0.00, 8000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (470, '2500215493', '0400013132', '2013-06-06', 'Programme Document Against PCA', 'USD', 'DÉCAISEMENT 2° TRANCHE À LA RADIO COMM DE MONGO', '2013-06-06', '2013-06-30', 2683.26, NULL, 2683.26, 0.00, 2690.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.548744+00', 0.00, 0.00, 2690.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (348, '2500224534', '0400013172', '2013-06-07', 'Programme Document Against PCA', 'XAF', 'DÉCAISEMENT 2° TRANCHE QU JOURNAL LE COURRIER DES', '2013-06-07', '2013-06-30', 2067.11, NULL, 2067.11, 0.00, 2069.60, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.561192+00', 1040000.00, 0.00, 1040000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (574, '2500221169', '0400013289', '2013-06-12', 'Programme Document Against PCA', 'USD', 'PREMIERE TRANCHE PCA/2013 CROIX ROUGE DU TCHAD', '2013-06-12', '2013-09-30', 99984.83, NULL, 99984.83, 0.00, 100000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.571207+00', 0.00, 0.00, 100000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (647, '2500226117', '0400013307', '2013-06-13', 'Programme Document Against PCA', 'XAF', 'FR PCA IBCR SUR LA CARTHOGRAPHIE', '2013-10-17', '2013-12-31', 58800.99, NULL, 58800.99, 0.00, 58871.95, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.580921+00', 29583896.00, 0.00, 49982145.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (783, '2500214101', '0400013375', '2013-06-17', 'Programme Document Against PCA', 'XAF', 'FONDS POUR PCA WASH/FPT (TISSI)', '2013-06-01', '2013-01-31', 38948.20, NULL, 38948.20, 0.00, 57101.88, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.591196+00', 19595579.00, 0.00, 69167421.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (854, '2500221169', '0400013380', '2013-06-17', 'SSFA', 'XAF', 'REMBOURSEMENT 3ÈME TRANCHE PCA/2012/CRT', '2013-06-17', '2013-06-17', -5614.42, NULL, -5614.42, 0.00, 138157.44, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.600328+00', 0.00, 0.00, 0.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (142, '2500223298', '0400013410', '2013-06-18', 'SSFA', 'XAF', 'SMALL SCALE FUNDING AGREEMENT - MERLIN', '2013-05-01', '2013-06-30', 14683.55, NULL, 14683.55, 0.00, 14701.27, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.618392+00', 7387574.00, 0.00, 7387574.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (540, '2500215480', '0400013592', '2013-06-24', 'SSFA', 'XAF', 'FINANCMT FORA NATIONAL A N''DJAMENA', '2013-06-24', '2013-06-15', 21620.63, NULL, 21620.63, 0.00, 21646.72, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.627877+00', 10877750.00, 0.00, 10932750.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (502, '2500213951', '0400013680', '2013-06-27', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT 3E ET 4E TRANCHES PCA JRS 2012', '2012-01-01', '2013-01-31', 53842.93, NULL, 53842.93, 0.00, 53907.91, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.636677+00', 27089400.00, 0.00, 27089400.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (614, '2500213939', '0400013768', '2013-07-03', 'SSFA', 'XAF', 'FINANCMT FORA NATIONAL N''DJAM LEADER CHRETIEN', '2013-07-03', '2013-07-20', 26045.53, NULL, 26045.53, 0.00, 26045.53, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.646878+00', 13104000.00, 0.00, 13104000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (341, '2500214062', '0400013770', '2013-07-03', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 2E TRANCHE DU PCA AVEC ESMS', '2013-07-03', '2013-12-31', 68096.12, NULL, 68096.12, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.659646+00', 34260450.00, 0.00, 34260450.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (360, '2500214085', '0400013793', '2013-07-04', 'SSFA', 'XAF', 'FONDS POUR REALISATON 17 FORAGES AVEC IAS A TISSI', '2013-07-04', '2013-12-31', 204987.12, NULL, 204987.12, 0.00, 204987.12, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.669157+00', 103132913.00, 0.00, 211144538.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (775, '2500221193', '0400013942', '2013-07-12', 'Programme Document Against PCA', 'XAF', 'VERSEMENT 1ERE TRANCHE PCA ONG BASE', '2013-07-12', '2013-10-12', 174168.59, NULL, 174168.59, 0.00, 174163.57, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.679623+00', 86142389.00, 0.00, 87690273.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (681, '2500223093', '0400014012', '2013-07-16', 'Programme Document Against PCA', 'XAF', 'PAIEMT 2EM TRANCHE ACPJ', '2013-07-16', '2013-10-16', 8507.58, NULL, 8507.58, 0.00, 8507.58, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.702756+00', 4280325.00, 0.00, 18000000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (411, '2500225905', '0400014204', '2013-07-23', 'SSFA', 'XAF', 'FINANCEMENT APE Nº 09/PRO/POLIO/ZOUKLAZO/2013', '2013-07-23', '2013-09-30', 5177.70, NULL, 5177.70, 0.00, 5177.70, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.722092+00', 2605000.00, 0.00, 2605000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (413, '2500213964', '0400014206', '2013-07-23', 'SSFA', 'XAF', 'FINANCEMENT APE Nº 05/ PRO/POLIO/CELIAF/2013', '2013-07-23', '2013-09-30', 3025.13, NULL, 3025.13, 0.00, 3025.13, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.731814+00', 1522000.00, 0.00, 1522000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (412, '2500215474', '0400014207', '2013-07-23', 'SSFA', 'XAF', 'FINANCEMENT APE Nº004/PRO/POLIO/BASE/2013', '2013-07-23', '2013-09-30', 6706.17, NULL, 6706.17, 0.00, 6706.17, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.742241+00', 3374000.00, 0.00, 3374000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (415, '2500225906', '0400014208', '2013-07-23', 'SSFA', 'XAF', 'FINANCEMENT APE Nº08/PRO/POLIO/TCHAD-SOS/2013', '2013-07-23', '2013-09-30', 3025.13, NULL, 3025.13, 0.00, 3025.13, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.754664+00', 1522000.00, 0.00, 1522001.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (536, '2500221791', '0400014242', '2013-07-24', 'Programme Document Against PCA', 'XAF', 'VIREMENT 2EME TRANCHE PCA/ADN/VIH', '2015-08-01', '2015-10-31', 44864.84, NULL, 44864.84, 0.00, 45281.83, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.76426+00', 23782150.00, 0.00, 23782150.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (675, '2500228085', '0400018952', '2014-03-04', 'SSFA', 'XAF', 'FINANCEMENT APE Nº19/PRO/POLIO/CROIX-ROUGE - MANDO', '2014-03-04', '2014-12-31', 12635.81, NULL, 12635.81, 0.00, 12635.81, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.51922+00', 6058000.00, 0.00, 6058000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (529, '2500228118', '0400019117', '2014-03-11', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PROJET CDLS/PALA', '2014-03-11', '2014-12-31', 7042.80, NULL, 7042.80, 0.00, 7081.62, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.576636+00', 3376547.00, 0.00, 3777900.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (221, '2500228125', '0400019156', '2014-03-12', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PROJET CDIAM NDJAMENA', '2014-03-12', '2014-12-31', 12424.71, NULL, 12424.71, 0.00, 12443.65, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.601828+00', 5956791.00, 0.00, 6016891.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (241, '2500228870', '0400021508', '2014-06-11', 'SSFA', 'XAF', 'MOBILISATION SOCIALE A TRAVERS LES RADIOS -GAYA TC', '2014-06-11', '2014-10-30', 12459.65, NULL, 12459.65, 0.00, 12459.65, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.896463+00', 6010000.00, 0.00, 6010000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (99, '2500228854', '0400021534', '2014-06-12', 'SSFA', 'XAF', 'MOBILISATION SOCIALE A TRAVERS LES RADIOS - DAR BA', '2014-06-12', '2014-10-30', 12459.65, NULL, 12459.65, 0.00, 12459.65, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.917444+00', 6010000.00, 0.00, 6010000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (651, '2500225860', '0400021565', '2014-06-13', 'SSFA', 'XAF', 'MOBILISATION SOCIALE A TRAVERS LES RADIOS - AL BIC', '2014-06-13', '2014-10-30', 12459.65, NULL, 12459.65, 0.00, 12459.65, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.927445+00', 6010000.00, 0.00, 6010000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (277, '2500221408', '0400021609', '2014-06-16', 'SSFA', 'XAF', 'PAIEMENT INTEGRAL DE L''APE Nº24/PRO/POLIO/CRCRT', '2014-06-16', '2014-12-31', 13242.27, NULL, 13242.27, 0.00, 18917.52, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.938178+00', 6387500.00, 0.00, 9125000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (682, '2500225658', '0400021669', '2014-06-17', 'SSFA', 'XAF', 'PAIEMENT INTEGRAL DE L''APE Nº28/PRO/POLIO/ADERBA', '2014-06-17', '2014-12-31', 18782.77, NULL, 18782.77, 0.00, 18782.77, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.956937+00', 9060000.00, 0.00, 9060000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (526, '2500225653', '0400022120', '2014-07-03', 'Programme Document Against PCA', 'XAF', 'REMBOURSSEMENT ONG-MENTOR-1', '2014-07-03', '2014-07-03', 33186.03, NULL, 33186.03, 0.00, 31275.26, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.050645+00', 16274365.00, 0.00, 18007768.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (741, '2500228112', '0400025292', '2014-11-07', 'Programme Document Against PCA', 'XAF', 'DECAISSMT 1ER TRANCH PCA Nº /IHDL/2014', '2014-11-07', '2015-01-07', 71545.03, NULL, 71545.03, 0.00, 72447.01, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.585786+00', 37680050.00, 0.00, 37680050.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (263, '2500223261', '0400014391', '2013-07-31', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT APE AFDI', '2013-07-31', '2013-09-30', 3077.28, NULL, 3077.28, 0.00, 3025.13, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.782605+00', 1522000.00, 0.00, 1548344.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (262, '2500226341', '0400014393', '2013-07-31', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT APE Nº15/PRO/POLIO/ACPJ/2013', '2013-07-31', '2013-09-30', 7531.46, NULL, 7531.46, 0.00, 7403.82, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.791861+00', 3725000.00, 0.00, 3789470.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (632, '2500224923', '0400014630', '2013-08-14', 'SSFA', 'XAF', 'DÉCAISEMENT 2È TRANCHE À LA RADIO ZAHSOO DE LÉRÉ', '2013-08-14', '2013-10-15', 2304.93, NULL, 2304.93, 0.00, 2304.93, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.81423+00', 1140000.00, 0.00, 1140000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (406, '2500224655', '0400014631', '2013-08-14', 'SSFA', 'XAF', 'FINANCEMENT FORMATION DES FORMATEURS DE CEVANUTRI', '2013-08-14', '2013-12-31', 9878.85, NULL, 9878.85, 0.00, 9878.85, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.826673+00', 4886000.00, 0.00, 4886000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (91, '2500220441', '0400014864', '2013-08-27', 'SSFA', 'XAF', 'FINANCEMENT 2EME TRANCHE ACTIVITE POLIO', '2013-08-27', '2013-09-30', 4023.52, NULL, 4023.52, 0.00, 4023.52, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.836361+00', 1990000.00, 0.00, 1990000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (639, '2500224289', '0400014935', '2013-08-30', 'Programme Document Against PCA', 'XAF', 'PAIEMT 3E TRANCHE EQUIVALENT A 10% A LEAD', '2013-08-30', '2013-10-30', 12447.12, NULL, 12447.12, 0.00, 12463.63, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.850981+00', 6164413.00, 0.00, 6164413.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (638, '2500224422', '0400014936', '2013-08-30', 'Programme Document Against PCA', 'XAF', 'DECAISSEMT DERNIERE TRANCHE SCG', '2013-08-30', '2013-09-30', 204036.08, NULL, 204036.08, 0.00, 204306.71, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.860563+00', 101048462.00, 0.00, 112000000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (883, '2500226636', '0400015020', '2013-09-04', 'SSFA', 'XAF', 'APE SUR LA SCOLARISATION DES FILLES AU SALAMAT', '2013-09-01', '2013-12-31', 5182.05, NULL, 5182.05, 0.00, 12955.13, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.870021+00', 2566400.00, 0.00, 6416000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (164, '2500223261', '0400015299', '2013-09-17', 'Programme Document Against PCA', 'XAF', 'DEUXIÈME & DERNIÈRE TRANCHE PCA Nº08/13/WASH/AFDI', '2013-06-10', '2013-12-10', 48887.69, NULL, 48887.69, 0.00, 48887.69, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.879871+00', 24211532.00, 0.00, 24211532.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (777, '2500214101', '0400015303', '2013-09-17', 'Programme Document Against PCA', 'XAF', 'DEUXIÈME & DERNIÈRE TRANCHE PCA Nº07/13/WASH/FPT', '2013-06-01', '2013-12-31', 39567.20, NULL, 39567.20, 0.00, 39567.20, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.895823+00', 19595579.00, 0.00, 19595579.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (431, '2500212785', '0400015348', '2013-09-19', 'Programme Document Against PCA', 'XAF', 'RESERVATION FONDS POUR PCA EDUC NO 10/OPAD', '2013-08-01', '2014-01-31', 70139.54, NULL, 70139.54, 0.00, 74710.04, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.906381+00', 34390020.00, 0.00, 37000000.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (814, '2500226932', '0400015371', '2013-09-19', 'SSFA', 'XAF', 'FINANCMT ACTIVITE PHA A BOL ASS ANDIMA', '2013-09-19', '2013-12-18', 20104.32, NULL, 20104.32, 0.00, 20104.32, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.915205+00', 9956625.00, 0.00, 9956625.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (233, '2500213991', '0400015422', '2013-09-23', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT APE Nº007/PRO/POLIO/CRT/2013', '2013-09-23', '2013-10-30', 3073.21, NULL, 3073.21, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.924404+00', 1522000.00, 0.00, 1522000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (884, '2500226407', '0400015450', '2013-09-24', 'SSFA', 'XAF', 'REMBOURSEMENT DES ACTIVITÉS POLIO PAR FEMME MOSSO', '2013-09-24', '2013-10-30', 6305.93, NULL, 6305.93, 0.00, 6305.93, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.945568+00', 3123000.00, 0.00, 3123000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (464, '2500214062', '0400015641', '2013-10-02', 'Programme Document Against PCA', 'XAF', 'DECAISSMT 3E TRANCH PCA12/2012/CHD/WASH/ESMS', '2013-10-02', '2014-01-05', 40383.81, NULL, 40383.81, 0.00, 41370.18, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.954878+00', 20000000.00, 0.00, 40000100.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (780, '2500219704', '0400015710', '2013-10-04', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT APE Nº006/PRO/POLIO/CHORA/2013', '2013-10-04', '2013-10-31', 3148.27, NULL, 3148.27, 0.00, 3148.27, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.963785+00', 1522000.00, 0.00, 1522000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (852, '2500226117', '0400016024', '2013-10-17', 'SSFA', 'XAF', 'DECAISSEMENT DE LA 2E TRANCHE PCA201304CHDPROTIBCR', '2013-10-17', '2013-12-31', 42193.96, NULL, 42193.96, 0.00, 42193.96, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.973166+00', 20398249.00, 0.00, 20398249.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (585, '2500227189', '0400016066', '2013-10-21', 'SSFA', 'XAF', 'DECAISSEMENT SUIVANT PROTOCOLE A PETITE ECHELLE AV', '2013-10-21', '2013-12-31', 9451.43, NULL, 9451.43, 0.00, 9566.85, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.029852+00', 4625000.00, 0.00, 9255000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (318, '2500227181', '0400016070', '2013-10-21', 'SSFA', 'XAF', 'FINANCEMENT PROJET MOB SOC PRÉVENTION PALUDISME', '2013-10-21', '2013-12-31', 7456.98, NULL, 7456.98, 0.00, 7456.98, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.039875+00', 3605000.00, 0.00, 7210000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (15, '2500223298', '0400016135', '2013-10-23', 'Programme Document Against PCA', 'XAF', 'PROVISION SERVICES URGENCE INTEGRE NUT,SANTE,WASH,', '2013-10-23', '2013-12-31', 20247.99, NULL, 20247.99, 0.00, 20495.27, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.049644+00', 9908233.00, 0.00, 9908233.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (290, '2500221169', '0400016199', '2013-10-26', 'Programme Document Against PCA', 'XAF', '2EME TRANCHE PCA CROIX ROUGE DU TCHAD', '2013-10-26', '2014-01-26', 104054.83, NULL, 104054.83, 0.00, 104054.83, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.05918+00', 50304267.00, 0.00, 50304267.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (807, '2500215480', '0400016277', '2013-10-30', 'Programme Document Against PCA', 'XAF', 'FR-FINANCEMENT APE/CSAI', '2013-10-30', '2014-12-31', 9376.55, NULL, 9376.55, 0.00, 9376.55, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.069002+00', 4533000.00, 0.00, 4533000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (363, '2500221790', '0400016418', '2013-11-05', 'Programme Document Against PCA', 'XAF', 'PRISE EN CHARGE OEVS', '2013-11-05', '2014-12-31', 129141.39, NULL, 129141.39, 0.00, 132639.58, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.082727+00', 63180476.00, 0.00, 63180476.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (180, '2500218272', '0400016729', '2013-11-20', 'Programme Document Against PCA', 'XAF', 'PAIEMENT PREMIÈRE TRANCHE APE Nº25 CELIAF/NDJAMENA', '2013-11-20', '2014-12-31', 6811.26, NULL, 6811.26, 0.00, 6811.26, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.093891+00', 3333050.00, 0.00, 3333050.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (437, '2500219696', '0400016734', '2013-11-20', 'Programme Document Against PCA', 'XAF', 'PAIEMENT PREMIÈRE TRANCHE APE Nº24 EEMET/2013', '2013-11-20', '2013-12-31', 6242.75, NULL, 6242.75, 0.00, 6242.75, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.106714+00', 3054850.00, 0.00, 3054850.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (187, '2500225602', '0400016864', '2013-11-26', 'Programme Document Against PCA', 'XAF', 'PAIEMT 1ER TRANCHE A ATPV AM TIMAN', '2013-11-26', '2014-05-30', 15892.76, NULL, 15892.76, 0.00, 64521.94, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.117932+00', 7777028.00, 0.00, 31573425.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (475, '2500221790', '0400017122', '2013-12-04', 'Programme Document Against PCA', 'XAF', 'RNTAP/SENSIB IMPORTCE PTME EN MILIEU CONFES/COMMU', '2013-11-19', '2013-12-31', 35617.09, NULL, 35617.09, 0.00, 35617.09, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.13584+00', 17199100.00, 0.00, 17199100.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (127, '2500221790', '0400017123', '2013-12-04', 'Programme Document Against PCA', 'XAF', 'RNTAP/SUIVI MEDICAL OEV/SUIVI NUTRITIONNEL', '2013-12-04', '2013-12-31', 10601.82, NULL, 10601.82, 0.00, 10601.82, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.145989+00', 5119500.00, 0.00, 5119500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (137, '2500221790', '0400017124', '2013-12-04', 'Programme Document Against PCA', 'XAF', 'RNTAP+/SOUTIEN PSYCHO-S DES PVVIH/APPUI PSYCHOLOGI', '2013-11-19', '2013-12-31', 36391.39, NULL, 36391.39, 0.00, 36391.39, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.157266+00', 17573000.00, 0.00, 17573000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (803, '2500000156', '0400030765', '2015-05-25', 'Programme Document Against PCA', 'XAF', 'APPUYER L''ORGANISATION DES SEANCES INFORMATIONS', '2015-05-25', '2015-07-31', 128002.27, NULL, 128002.27, 0.00, 129976.36, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.994196+00', 77080662.00, 0.00, 77080662.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (672, '2500213920', '0400031551', '2015-06-25', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT 2ÈT APE ACF/PROJET MEDICO-NUT/ZAFAI', '2015-06-18', '2015-12-31', 20626.47, NULL, 20626.47, 0.00, 20329.74, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.139513+00', 12242204.00, 0.00, 12242204.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (90, '2500219704', '0400034157', '2015-10-07', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT PCA ONG CHORA', '2015-10-07', '2016-01-07', 5786.27, NULL, 5786.27, 0.00, 18827.80, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.578672+00', 0.00, 0.00, 11152444.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (514, '2500214088', '0400034287', '2015-10-12', 'Programme Document Against PCA', 'XAF', 'FR REMB 2E TRANCHE AMEND PCA 2014/N 14/CHD/PRO/SN', '2014-10-01', '2015-07-31', 84719.35, NULL, 84719.35, 0.00, 84719.35, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.588149+00', 49529641.00, 0.00, 49529641.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (845, '2500230977', '0400034452', '2015-10-19', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT TRANCHE/AVENANT 10 SEPT 2015 ADESOL', '2015-10-19', '2015-12-31', 8980.01, NULL, 8980.01, 0.00, 8980.01, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.608244+00', 5250000.00, 0.00, 5250000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (717, '2500214088', '0400036311', '2015-12-10', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENTACTIVITÉS WASH GORÉ PAR IRC', '2015-01-01', '2015-12-31', 102500.72, NULL, 102500.72, 0.00, 102500.64, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.811982+00', 63556183.00, 0.00, 63562635.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (144, '2500221790', '0400017126', '2013-12-04', 'Programme Document Against PCA', 'XAF', 'RNTAP+/RENFORC/CAPACITÉS RNTAP/APPUI COORD/SUIVI/E', '2013-11-19', '2013-12-31', 26603.37, NULL, 26603.37, 0.00, 26597.16, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.184369+00', 12846474.00, 0.00, 12846474.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (509, '2500221169', '0400017341', '2013-12-10', 'Programme Document Against PCA', 'USD', 'CFS GRANT SM 130125 REMBOURSEMENT 3E T. PCA/CRT/12', '2013-12-10', '2013-12-31', 143771.86, NULL, 143771.86, 0.00, 138158.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.200572+00', 0.00, 0.00, 138158.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (750, '2500221169', '0400017370', '2013-12-10', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 3ÈME TRANCHE PCA CRT 2013', '2013-12-10', '2014-03-10', 104173.56, NULL, 104173.56, 0.00, 104173.56, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.21039+00', 50304267.00, 0.00, 50304267.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (758, '2500214085', '0400017474', '2013-12-13', 'Programme Document Against PCA', 'XAF', 'PAIEMT DERNIERE TRANCHE A IAS', '2013-12-13', '2014-03-06', 57159.42, NULL, 57159.42, 0.00, 57159.42, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.242387+00', 27601657.00, 0.00, 27601657.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (313, '2500214085', '0400017480', '2013-12-13', 'Programme Document Against PCA', 'XAF', 'PAIEMT 1ERE TRCH IAS PCA/8/2012/CHD/WASH/IAS AMEND', '2013-12-13', '2014-03-06', 405448.06, NULL, 405448.06, 0.00, 405448.06, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.251327+00', 195786410.00, 0.00, 195786410.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (739, '2500213943', '0400017494', '2013-12-13', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE PCA/2013/13/CHD/PROT/APLFT', '2013-12-13', '2013-12-31', 55450.56, NULL, 55450.56, 0.00, 55450.56, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.260385+00', 26776465.00, 0.00, 101193062.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (434, '2500213943', '0400017603', '2013-12-17', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE PCA/2013/13/CHD/PROT/APLFT', '2013-12-17', '2013-12-31', 154113.26, NULL, 154113.26, 0.00, 154119.47, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.273512+00', 74419597.00, 0.00, 74422597.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (800, '2500213931', '0400017713', '2013-12-19', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PCA/ ASTBEF', '2013-12-19', '2014-01-31', 19775.32, NULL, 19775.32, 0.00, 58598.16, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.282149+00', 9549284.00, 0.00, 45091972.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (659, '2500225653', '0400017832', '2013-12-30', 'Programme Document Against PCA', 'XAF', 'PAIEMENT SNDE TRANCHE PCA MENTHOR', '2013-12-30', '2013-12-30', 20188.84, NULL, 20188.84, 0.00, 20188.84, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.290705+00', 9748971.00, 0.00, 9748971.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (765, '2500221169', '0400017871', '2014-01-09', 'SSFA', 'XAF', 'FONDS FINANCEMENT APE CRT RETOURNÉS RCA.', '2014-01-06', '2014-02-06', 36956.60, NULL, 36956.60, 0.00, 19547.11, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.299601+00', 17551500.00, 0.00, 17551500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (694, '2500223633', '0400017910', '2014-01-17', 'SSFA', 'XAF', 'REMBOURSEMENT DES ACTIVITÉS POLIO PAR TCHAD SOS.', '2014-01-17', '2014-12-31', 3149.54, NULL, 3149.54, 0.00, 3202.44, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.308804+00', 1522000.00, 0.00, 1522000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (486, '2500213931', '0400018162', '2014-01-30', 'Programme Document Against PCA', 'XAF', 'APPUI MOB SOC IST/VIH SIDA ET PTME DANS LES CIOJ', '2014-01-30', '2014-12-31', 52703.24, NULL, 52703.24, 0.00, 166317.79, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.326983+00', 25444678.00, 0.00, 79044527.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (790, '2500212820', '0400018321', '2014-02-07', 'Programme Document Against PCA', 'XAF', 'REMBURSEMT PREFINANCEMET ACTIVITES WASH PA SIF', '2014-02-07', '2014-02-28', 53650.90, NULL, 53650.90, 0.00, 67063.62, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.337325+00', 25926528.00, 0.00, 32408160.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (791, '2500213955', '0400018327', '2014-02-07', 'Programme Document Against PCA', 'XAF', 'PRISE EN CHARGE OEV KELO/MOUNDOU PCA2013/14/PROTCR', '2014-02-07', '2014-12-31', 99369.48, NULL, 99369.48, 0.00, 105186.26, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.354303+00', 50830734.00, 0.00, 50830734.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (16, '2500224893', '0400018397', '2014-02-11', 'SSFA', 'XAF', 'PAIEMT SSA SID PROMOTION HYGIENE CAMP ZAAFAYE', '2014-02-11', '2014-04-30', 19995.03, NULL, 19995.03, 0.00, 19995.03, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.365669+00', 9662500.00, 0.00, 9662500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (488, '2500228587', '0400022605', '2014-07-24', 'Programme Document Against PCA', 'XAF', 'FR 1ERE TRANCHE PCA ADES - UNICEF URGENCE TISSI', '2014-07-24', '2014-08-30', 75452.56, NULL, 75452.56, 0.00, 75452.56, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.112269+00', 36421857.00, 0.00, 36421857.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (866, '2500226117', '0400022628', '2014-07-24', 'Programme Document Against PCA', 'XAF', 'DERNIERE TRANCHE PCA2013/04/CHD/PROT/IBCR', '2014-01-01', '2014-08-31', 37769.67, NULL, 37769.67, 0.00, 37769.67, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.121333+00', 18231873.00, 0.00, 18231873.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (842, '2500229339', '0400022714', '2014-07-30', 'SSFA', 'XAF', 'DECSIMT SSA IDRISS/CHD/2014/WASH', '2014-07-30', '2014-10-30', 19925.75, NULL, 19925.75, 0.00, 19925.75, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.130318+00', 9618400.00, 0.00, 9618400.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (430, '2500229515', '0400022952', '2014-08-08', 'SSFA', 'XAF', 'PAIEMENT INTEGRAL DE L''APE Nº29/ASSOCIATION HANDIC', '2014-08-08', '2015-12-31', 17233.91, NULL, 17233.91, 0.00, 18791.62, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.165812+00', 9215375.00, 0.00, 9335375.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (432, '2500212785', '0400022954', '2014-08-08', 'Programme Document Against PCA', 'XAF', 'PCA N° 15/OPAD/PROMOTE CFS & TRAIN PTAS', '2014-08-15', '2015-02-15', 89954.10, NULL, 89954.10, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.176396+00', 45567770.00, 0.00, 45577770.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (589, '2500224893', '0400023023', '2014-08-12', 'Programme Document Against PCA', 'XAF', 'DECSIMT 2E TRANCH/PCA SID/2014/WASH', '2014-08-12', '2014-11-10', 17820.68, NULL, 17820.68, 0.00, 17820.68, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.195635+00', 8739225.00, 0.00, 8739225.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (743, '2500212819', '0400023234', '2014-08-20', 'Programme Document Against PCA', 'XAF', 'DECAISSMT 1ER TRANCH PCA Nº17/SECADEV', '2014-08-20', '2014-11-20', 265936.25, NULL, 265936.25, 0.00, 265936.25, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.205165+00', 130414605.00, 0.00, 131007765.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (704, '2500224422', '0400023249', '2014-08-20', 'Programme Document Against PCA', 'XAF', 'PCA N°16/SFCG/2014/PRO-PEACE BUILDING & EDUCATION', '2014-08-20', '2015-08-31', 272817.65, NULL, 272817.65, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.217139+00', 135892381.00, 0.00, 184531121.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (337, '2500229637', '0400023359', '2014-08-25', 'SSFA', 'XAF', 'DECAISSEMENT FONDS SELON PROTOC ACC A LA MAISON DE', '2014-08-25', '2014-10-25', 8622.65, NULL, 8622.65, 0.00, 8758.19, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.227211+00', 4295000.00, 0.00, 4295000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (59, '2500229793', '0400023506', '2014-08-28', 'SSFA', 'XAF', 'FINANCEMENT NDJAMVI, ÉDITION 2014', '2014-08-28', '2014-11-28', 11041.80, NULL, 11041.80, 0.00, 11215.38, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.236897+00', 5500000.00, 0.00, 5500000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (586, '2500215477', '0400023590', '2014-09-01', 'SSFA', 'XAF', 'ACCORD A PETITE ECHELLE AVEC CERDO', '2014-09-01', '2014-12-31', 20076.01, NULL, 20076.01, 0.00, 20076.01, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.256385+00', 10000000.00, 0.00, 10000000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (294, '2500223478', '0400023641', '2014-09-03', 'SSFA', 'XAF', 'FINANCMT PREVENTION CHOLERA A KABIA/MOT-ILLI/AOPK', '2014-09-03', '2014-12-03', 19686.53, NULL, 19686.53, 0.00, 19686.53, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.265999+00', 9806000.00, 0.00, 19612000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (292, '2500223093', '0400023643', '2014-09-03', 'SSFA', 'XAF', 'FINANCMT PREVENTION CHOLERA A BONGOR/ACPJ', '2014-09-03', '2014-12-03', 19598.20, NULL, 19598.20, 0.00, 19598.20, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.275306+00', 9762000.00, 0.00, 19524000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (52, '2500224382', '0400023644', '2014-09-03', 'SSFA', 'XAF', 'FINANCMT PREVENTION CHOLERA EN TANDJILE/CAIDEL', '2014-09-03', '2014-12-03', 18370.55, NULL, 18370.55, 0.00, 18370.55, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.284383+00', 9150500.00, 0.00, 18301000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (2, '2500224893', '0400023654', '2014-09-03', 'Programme Document Against PCA', 'XAF', 'PREVENTION CHOLERA AU 1ER-8E ARRONDISSMT NDJ SID', '2014-09-03', '2014-12-03', 18421.53, NULL, 18421.53, 0.00, 18421.53, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.293672+00', 9175892.00, 0.00, 18351784.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (657, '2500229712', '0400023667', '2014-09-04', 'SSFA', 'XAF', 'FINANCEMENT PRODUCTION JOURNAL DES JEUNES', '2014-09-04', '2014-12-30', 5313.32, NULL, 5313.32, 0.00, 5313.32, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.302809+00', 2646600.00, 0.00, 2646600.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (673, '2500221790', '0400023942', '2014-09-16', 'Programme Document Against PCA', 'XAF', 'RENFORCEMENT ACCES FEMMES ENCEINTES SERVICE PTME', '2014-09-16', '2014-12-31', 161497.63, NULL, 161497.63, 0.00, 161497.63, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.349424+00', 80443101.00, 0.00, 83153000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (252, '2500221408', '0400024598', '2014-10-14', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT APE Nº31/PRO/POLIO/CRT DU LAC', '2014-10-14', '2015-12-31', 19155.15, NULL, 19155.15, 0.00, 19155.15, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.445482+00', 9889000.00, 0.00, 9889000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (121, '2500224381', '0400024636', '2014-10-15', 'SSFA', 'XAF', 'DECAISSMT SSA/AFASALES/2014/INONDATION SALAMAT', '2014-10-15', '2014-12-18', 19316.89, NULL, 19316.89, 0.00, 19316.89, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.455208+00', 9972500.00, 0.00, 9972500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (859, '2500213951', '0400000725', '2012-02-29', 'Programme Document Against PCA', 'USD', 'RESERVATION TROISIEME TRANCHE PROJET JRS', '2012-02-29', '2012-05-31', 53616.59, NULL, 53616.59, 0.00, 56000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:51.901646+00', 0.00, 0.00, 56000.00, true, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (474, '2500214100', '0400000066', '2012-01-23', 'Programme Document Against PCA', 'USD', 'PAIEMENT DEUXIEMENT TRANCHE PROJET DDR JRS 2011', '2011-01-02', '2012-01-31', 0.00, NULL, 0.00, 0.00, 195500.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:34.805628+00', 0.00, 0.00, 195950.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (859, '2500213951', '0400000725', '2012-02-29', 'Programme Document Against PCA', 'USD', 'RESERVATION TROISIEME TRANCHE PROJET JRS', '2012-02-29', '2012-05-31', 53616.59, NULL, 53616.59, 0.00, 56000.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:34.846901+00', 0.00, 0.00, 56000.00, true, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (833, '2500212820', '0400001403', '2012-03-22', 'Programme Document Against PCA', 'USD', 'FR POUR REMBOURSEMENT COUTS ACTIVITES CHOLERA SIF', '2011-11-01', '2012-05-15', 49112.89, NULL, 49112.89, 0.00, 150000.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:34.883819+00', 0.00, 0.00, 24800.00, true, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (427, '2500213943', '0400002171', '2012-04-19', 'SSFA', 'USD', 'FR - PROGRAMME COOPERATION AGREEMNT - APLFT', '2012-05-02', '2012-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:34.903478+00', 0.00, 0.00, 0.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (630, '2500214314', '0400002466', '2012-04-26', 'Programme Document Against PCA', 'USD', 'FC- PAIEMENT TROISIÈME TRANCHE PCA ASTBEF', '2011-07-25', '2012-07-26', 0.00, NULL, 0.00, 0.00, 27108.84, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:34.914393+00', 0.00, 0.00, 27108.84, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (440, '2500221714', '0400002774', '2012-05-08', 'Programme Document Against PCA', 'USD', 'FR PAIEMENT 1ÈR TRANCHE PCA MDM - REDUCTº MORTALIT', '2009-01-01', '2012-03-31', 0.00, NULL, 0.00, 0.00, 1.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:34.944231+00', 0.00, 0.00, 29390.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (555, '2500221193', '0400002843', '2012-05-09', 'Programme Document Against PCA', 'USD', 'FINANCEMENT DE LA 1ERE TRANCHE PCA ONG BASE', '2012-05-01', '2013-04-30', 127108.15, NULL, 127108.15, 0.00, 127172.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:34.963281+00', 0.00, 0.00, 138622.00, true, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (18, '2500221883', '0400003074', '2012-05-16', 'Programme Document Against PCA', 'USD', 'FINANCEMENT DE LA 1ERE TRANCHE PCA ONG ALIMA', '2012-04-15', '2012-10-15', 29237.88, NULL, 29237.88, 0.00, 29250.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:34.981951+00', 0.00, 0.00, 29250.00, true, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (602, '2500213923', '0400003303', '2012-05-23', 'Programme Document Against PCA', 'USD', 'FR POUR PCA Nº 2012/18/CHD/WASH/ADRA', '2012-11-01', '2012-04-30', 82496.00, NULL, 82496.00, 0.00, 175989.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.011787+00', 0.00, 0.00, 88000.00, true, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (840, '2500214090', '0400003419', '2012-05-25', 'Programme Document Against PCA', 'USD', 'FR POUR PAIEMENT 3E TRANCHE PCA2011/06/WASH/IRW', '2012-05-25', '2012-05-30', 73470.93, NULL, 73470.93, 0.00, 180000.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.024768+00', 0.00, 0.00, 78400.00, true, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (124, '2500223094', '0400005537', '2012-08-07', 'SSFA', 'USD', 'FR POUR MISE EN OEUVRE SSFA/UNICEF-EAA/NPRI', '2012-08-01', '2012-09-05', 18301.35, NULL, 18301.35, 0.00, 18350.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.092342+00', 0.00, 0.00, 18350.00, true, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (225, '2500221408', '0400007145', '2012-10-10', 'Programme Document Against PCA', 'USD', '2EME TRANCHE PCA/CRT/EPH/CRO/P/2012', '2012-10-10', '2012-12-30', 0.00, NULL, 0.00, 0.00, 137000.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.116897+00', 0.00, 0.00, 137000.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (742, '2500223886', '0400007184', '2012-10-11', 'Programme Document Against PCA', 'USD', 'APE PROMOTION PFE ASSOCIATION AFEDD DE MAO/KANEM', '2012-10-11', '2012-12-30', 0.00, NULL, 0.00, 0.00, 7762.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.130761+00', 0.00, 0.00, 7770.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (304, '2500224422', '0400008061', '2012-11-16', 'Programme Document Against PCA', 'USD', 'PCA AVEC SFCG', '2012-10-01', '2013-03-31', 85518.50, NULL, 85518.50, 0.00, 280000.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.142437+00', 0.00, 0.00, 290000.00, true, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (272, '2500225975', '0400012940', '2013-05-30', 'Programme Document Against PCA', 'USD', 'PAIEMENT INTEGRALE APE CR DU MOYEN - CHARI.', '2013-05-30', '2013-08-30', 20492.17, NULL, 20492.17, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.193158+00', 0.00, 0.00, 20517.00, true, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (266, '2500225723', '0400014551', '2013-08-09', 'Programme Document Against PCA', 'XAF', 'PCA POUR PROTECTION DE L''ENFANT A TRAVERS DES EAE', '2013-08-09', '2013-12-31', 0.00, NULL, 0.00, 0.00, 1010.93, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.215535+00', 0.00, 0.00, 0.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (231, '2500226920', '0400015424', '2013-09-23', 'Programme Document Against PCA', 'XAF', 'PCA/2013/CHD/NO 09/ACRA (ENFANTS BOUVIERS)', '2013-09-01', '2014-07-31', 280541.65, NULL, 280541.65, 0.00, 376607.15, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.249014+00', 136123973.00, 0.00, 264809913.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (422, '2500214088', '0400020672', '2014-05-14', 'Programme Document Against PCA', 'XAF', 'VERSEMENT 1ÈRE TRANCHE PCA 2014/ CSSI', '2014-04-07', '2014-07-09', 0.00, NULL, 0.00, 0.00, 217689.47, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.306228+00', 0.00, 0.00, 58378410.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (145, '2500225860', '0400020798', '2014-05-19', 'Programme Document Against PCA', 'XAF', 'MOBILISATION SOCIALE POLIO À TRAVERS LA RADIO', '2014-05-19', '2014-12-31', 0.00, NULL, 0.00, 0.00, 12664.90, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.317603+00', 0.00, 0.00, 6010000.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (687, '2500212828', '0400021661', '2014-06-17', 'Programme Document Against PCA', 'XAF', 'DECSIMT 1RE TRANCH PCA CELIAF-WASH/14/', '2014-06-17', '2014-09-17', 64163.08, NULL, 64163.08, 0.00, 44021.53, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.363266+00', 30972291.00, 0.00, 30972291.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (833, '2500212820', '0400001403', '2012-03-22', 'Programme Document Against PCA', 'USD', 'FR POUR REMBOURSEMENT COUTS ACTIVITES CHOLERA SIF', '2011-11-01', '2012-05-15', 49112.89, NULL, 49112.89, 0.00, 150000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.045977+00', 0.00, 0.00, 24800.00, true, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (555, '2500221193', '0400002843', '2012-05-09', 'Programme Document Against PCA', 'USD', 'FINANCEMENT DE LA 1ERE TRANCHE PCA ONG BASE', '2012-05-01', '2013-04-30', 127108.15, NULL, 127108.15, 0.00, 127172.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.191943+00', 0.00, 0.00, 138622.00, true, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (18, '2500221883', '0400003074', '2012-05-16', 'Programme Document Against PCA', 'USD', 'FINANCEMENT DE LA 1ERE TRANCHE PCA ONG ALIMA', '2012-04-15', '2012-10-15', 29237.88, NULL, 29237.88, 0.00, 29250.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.243609+00', 0.00, 0.00, 29250.00, true, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (602, '2500213923', '0400003303', '2012-05-23', 'Programme Document Against PCA', 'USD', 'FR POUR PCA Nº 2012/18/CHD/WASH/ADRA', '2012-11-01', '2012-04-30', 82496.00, NULL, 82496.00, 0.00, 175989.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.274699+00', 0.00, 0.00, 88000.00, true, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (840, '2500214090', '0400003419', '2012-05-25', 'Programme Document Against PCA', 'USD', 'FR POUR PAIEMENT 3E TRANCHE PCA2011/06/WASH/IRW', '2012-05-25', '2012-05-30', 73470.93, NULL, 73470.93, 0.00, 180000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.284789+00', 0.00, 0.00, 78400.00, true, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (124, '2500223094', '0400005537', '2012-08-07', 'SSFA', 'USD', 'FR POUR MISE EN OEUVRE SSFA/UNICEF-EAA/NPRI', '2012-08-01', '2012-09-05', 18301.35, NULL, 18301.35, 0.00, 18350.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.50051+00', 0.00, 0.00, 18350.00, true, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (304, '2500224422', '0400008061', '2012-11-16', 'Programme Document Against PCA', 'USD', 'PCA AVEC SFCG', '2012-10-01', '2013-03-31', 85518.50, NULL, 85518.50, 0.00, 280000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.796701+00', 0.00, 0.00, 290000.00, true, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (272, '2500225975', '0400012940', '2013-05-30', 'Programme Document Against PCA', 'USD', 'PAIEMENT INTEGRALE APE CR DU MOYEN - CHARI.', '2013-05-30', '2013-08-30', 20492.17, NULL, 20492.17, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.516203+00', 0.00, 0.00, 20517.00, true, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (231, '2500226920', '0400015424', '2013-09-23', 'Programme Document Against PCA', 'XAF', 'PCA/2013/CHD/NO 09/ACRA (ENFANTS BOUVIERS)', '2013-09-01', '2014-07-31', 280541.65, NULL, 280541.65, 0.00, 376607.15, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.936386+00', 136123973.00, 0.00, 264809913.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (505, '2500214088', '0400024758', '2014-10-20', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA IRC', '2014-10-20', '2015-01-20', 103486.49, NULL, 103486.49, 0.00, 102889.46, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.464368+00', 53425727.00, 0.00, 53117509.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (268, '2500221193', '0400024763', '2014-10-20', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2ÈME TRANCHE PCA BASE 2014', '2014-10-20', '2015-01-20', 128301.06, NULL, 128301.06, 0.00, 129257.13, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.473711+00', 66730026.00, 0.00, 66730026.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (389, '2500214088', '0400025415', '2014-11-11', 'Programme Document Against PCA', 'XAF', 'REPONSE EDUC ENFANTS RETOURNÉS RCA SUD/PCA14/IRC', '2014-11-11', '2015-07-31', 62511.93, NULL, 62511.93, 0.00, 63606.39, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.613276+00', 33082000.00, 0.00, 33082002.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (865, '2500214088', '0400025423', '2014-11-12', 'Programme Document Against PCA', 'XAF', 'REPONSE EDUC ENFANTS RETOURNÉS RCA SUD/PCA14/IRC', '2014-11-12', '2015-07-31', 186071.34, NULL, 186071.34, 0.00, 189329.08, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.622226+00', 98470999.00, 0.00, 98470999.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (147, '2500214088', '0400025427', '2014-11-12', 'Programme Document Against PCA', 'XAF', 'REPONSE EDUC ENFANTS RETOURNÉS RCA SUD/PCA14/IRC', '2014-11-12', '2015-07-31', 24832.81, NULL, 24832.81, 0.00, 144496.50, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.63229+00', 13141798.00, 0.00, 75154000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (31, '2500224593', '0400025507', '2014-11-13', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT APE SCOUTS POUR LES URGENCES RETOURNÉS', '2014-11-13', '2014-12-30', 6474.74, NULL, 6474.74, 0.00, 6556.37, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.641396+00', 3410000.00, 0.00, 3410000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (764, '2500230634', '0400025680', '2014-11-19', 'Programme Document Against PCA', 'XAF', 'REPONSE EDUC EIE -APE-ATURAD/SUD', '2014-11-19', '2015-02-28', 17088.76, NULL, 17088.76, 0.00, 17088.76, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.696418+00', 9000000.00, 0.00, 9000500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (654, '2500229124', '0400025769', '2014-11-21', 'Programme Document Against PCA', 'XAF', 'DECSIMT 2E TRANCH/PCA13 ACTED/2014/WASH', '2014-11-21', '2015-03-19', 134851.69, NULL, 134851.69, 0.00, 134205.17, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.706146+00', 70680761.00, 0.00, 70680761.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (80, '2500213954', '0400026153', '2014-12-02', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT PCA/2001/20/CHD/EDUC/CARE', '2014-12-02', '2014-12-31', 14825.68, NULL, 14825.68, 0.00, 14825.68, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.714821+00', 7770685.00, 0.00, 7770685.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (661, '2500224655', '0400026264', '2014-12-04', 'SSFA', 'XAF', '1ÈRE TRANCHE APE CEVANUTRI 2014', '2014-12-04', '2015-03-01', 12452.85, NULL, 12452.85, 0.00, 18987.40, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.723988+00', 6527000.00, 0.00, 9952000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (288, '2500212828', '0400026395', '2014-12-08', 'Programme Document Against PCA', 'XAF', 'DECSIMT 2E TRANCH/PCA TERRE VERTE/2014/WASH', '2014-12-08', '2015-03-19', 39337.43, NULL, 39337.43, 0.00, 39337.41, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.733321+00', 20618195.00, 0.00, 20618195.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (652, '2500230977', '0400026480', '2014-12-09', 'SSFA', 'XAF', 'DECSIMT SSA/ADESOLA/2014/WASH DISTRICT DE BOL', '2014-12-09', '2015-03-19', 15444.44, NULL, 15444.44, 0.00, 15444.44, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.744588+00', 8095000.00, 0.00, 8095000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (128, '2500223261', '0400027087', '2014-12-22', 'Programme Document Against PCA', 'XAF', 'REQUETE DU 31.10.14 EDUC.RISQUE MINES AFDI', '2014-12-22', '2015-02-28', 36376.75, NULL, 36376.75, 0.00, 36376.75, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.753621+00', 19250975.00, 0.00, 19250975.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (122, '2500218808', '0400027121', '2014-12-26', 'SSFA', 'XAF', 'APPUI PSYCHOSOCIAL DES ENFANTS', '2014-12-26', '2014-12-31', 19174.41, NULL, 19174.41, 0.00, 19500.06, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.763346+00', 10319647.00, 0.00, 10319647.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (327, '2500212820', '0400029114', '2015-03-24', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT ONG SIF DERNIERE TRANCHE', '2015-03-24', '2015-04-05', 10473.07, NULL, 10473.07, 0.00, 10473.07, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.878396+00', 6481635.00, 0.00, 6481635.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (58, '2500225658', '0400034560', '2015-10-22', 'Programme Document Against PCA', 'XAF', 'REMBOURSEMENT COÛT DIRECT DU PROJET/ADERBA', '2015-10-22', '2015-12-31', 3824.65, NULL, 3824.65, 0.00, 3824.65, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.626489+00', 2236010.00, 0.00, 2236010.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (825, '2500213955', '0400036108', '2015-12-07', 'SSFA', 'XAF', 'REMB APPUI SYSTEME PROTECTION SOCIALE DES OEV', '2015-12-07', '2015-12-31', 17863.19, NULL, 17863.19, 0.00, 17863.19, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.750503+00', 11076181.00, 0.00, 11076181.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (722, '2500215479', '0400000074', '2012-01-23', 'Programme Document Against PCA', 'USD', 'REMBOURSEMENT MONTANT DÉPENSE POUR ACTIVITÉS WASH', '2011-04-15', '2012-12-31', 40012.20, NULL, 40012.20, 0.00, 204300.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:51.821706+00', 0.00, 0.00, 24425.00, true, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (380, '2500221641', '0400022187', '2014-07-07', 'SSFA', 'XAF', 'PAIEMENT PREMIERE TRANCHE ATPCS', '2014-07-07', '2014-10-10', 0.00, NULL, 0.00, 0.00, 41.43, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.374231+00', 0.00, 0.00, 20000.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (320, '2500214088', '0400022856', '2014-08-05', 'Programme Document Against PCA', 'XAF', 'COUTS OPERATIONNELS PCA 2014/CHD/PRO/LA IRC', '2014-08-05', '2014-11-05', 108943.60, NULL, 108943.60, 0.00, 110982.77, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.400353+00', 53425727.00, 0.00, 54425727.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (563, '2500228112', '0400029194', '2015-03-26', 'Programme Document Against PCA', 'XAF', 'DECSIMT 2E TRANCHPCA 2014/CHD/WASH/IHDL', '2015-03-26', '2015-04-30', 133704.48, NULL, 133704.48, 0.00, 130743.85, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.497858+00', 80915540.00, 0.00, 82754040.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (19, '2500212828', '0400031955', '2015-07-09', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA11/2014/PROG/WASH/CELIAF', '2015-07-09', '2015-12-31', 17369.45, NULL, 17369.45, 0.00, 17572.19, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.509755+00', 10309097.00, 0.00, 10309097.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (286, '2500232774', '0400039528', '2016-04-14', 'SSFA', 'XAF', 'FR ASSOCIATION BOUSSO CONTRE SIDA POUR LES ACT ACP', '2016-04-04', '2016-06-30', 3180.46, NULL, 3180.46, 0.00, 3192.59, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.546767+00', 1850000.00, 0.00, 1850000.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (123, '2500213985', '0400051761', '2017-06-19', 'Programme Document Against PCA', 'XAF', 'FR FINANCEMENT 2ND TRIMESTRE 2017- COOPI', '2017-06-19', '2017-06-30', 135633.26, NULL, 135633.26, 0.00, 145127.59, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.719307+00', 79493975.00, 0.00, 85058553.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (152, '2500227181', '0400052127', '2017-07-03', 'SSFA', 'XAF', 'FR COMPAGNIE HADRE DOUNIA', '2017-07-03', '2017-12-31', 12724.63, NULL, 12724.63, 0.00, 24932.29, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.734107+00', 7185000.00, 0.00, 14370000.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (732, '2500215479', '0400056451', '2017-12-08', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 1ERE TRANCHE PCA WORLD CONCERN', '2017-12-08', '2018-01-31', 97114.19, NULL, 97114.19, 0.00, 97114.19, '2018-03-15 16:10:06.407235+00', '2019-06-08 00:03:35.796763+00', 53753090.00, 0.00, 53753091.00, false, true, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (897, '2500213985', '0400059040', '2018-03-27', 'Programme Document Against PCA', 'XAF', 'FR PCA AVEC COOPI - APPUI EDUCATION DES ENFTS', '2018-02-12', '2018-08-12', 0.00, NULL, 0.00, 0.00, 258826.09, '2018-03-29 00:04:02.64965+00', '2019-06-08 00:03:35.808833+00', 0.00, 0.00, 138436758.00, false, true, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (928, '2500212820', '0400061516', '2018-07-04', 'Programme Document Against PCA', 'XAF', '12/PCA/2018/WASH/SIF', '2018-07-04', '2018-12-31', 861550.44, NULL, 861550.44, 357874.66, 892531.90, '2018-07-06 00:02:39.135204+00', '2019-11-07 00:30:50.13715+00', 505668413.00, 213603575.00, 505668413.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1043, '2500227539', '0400069939', '2019-07-25', 'SSFA', 'XAF', 'RENFORCEMENT DU SYSTEME DE PROTECTION EN FAVEUR', '2019-07-25', '2019-10-25', 9751.78, NULL, 9751.78, 0.00, 9903.99, '2019-07-27 00:06:06.512394+00', '2019-10-01 14:41:45.578+00', 5717000.00, 0.00, 5717000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (990, '2500238161', '0400066565', '2019-02-13', 'Programme Document Against PCA', 'XAF', 'FR 4ÈME TRANCHE PCA ESMS', '2018-04-01', '2019-01-31', 0.00, NULL, 7996.00, 0.00, 8216.95, '2019-02-15 00:11:32.573754+00', '2019-11-12 15:01:57.523345+00', 0.00, 0.00, 4721000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1080, '2500237522', '0400073099', '2019-12-17', 'Programme Document Against PCA', 'XAF', '7% COUT SUPPORT INDIRECT DE PROGRAMME', '2019-12-17', '2020-03-31', 1961.99, NULL, 1961.99, 0.00, 1961.99, '2019-12-19 00:14:38.732242+00', '2019-12-22 00:07:50.198596+00', 1169874.00, 0.00, 1169874.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1062, '2500213955', '0400071814', '2019-10-25', 'Programme Document Against PCA', 'XAF', '7% DES COUTS SUPPORT INDIRECT DU PROGRAMME', '2019-10-25', '2019-12-31', 13028.37, NULL, 13028.37, 0.00, 12829.01, '2019-10-27 00:15:38.953369+00', '2019-11-14 00:06:36.1562+00', 7692211.00, 0.00, 7692211.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1041, '2500213951', '0400069588', '2019-07-09', 'Programme Document Against PCA', 'XAF', 'PAIEMENT DERNIERE TRANCHE PCA ACEC JRS', '2019-07-09', '2019-08-15', 217595.94, NULL, 217595.94, 0.00, 217595.94, '2019-07-11 00:06:27.839057+00', '2019-11-15 00:08:43.236675+00', 125605517.00, 0.00, 125605517.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1068, '2500212828', '0400072478', '2019-11-26', 'Programme Document Against PCA', 'XAF', 'FR TRANCHE 1 PCA TERRE VERTE', '2019-10-01', '2020-07-31', 56771.62, NULL, 56771.62, 56771.62, 56771.62, '2019-11-28 00:08:30.541878+00', '2019-11-30 00:08:41.325748+00', 33519100.00, 33519100.00, 33519100.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1059, '2500237165', '0400071402', '2019-10-09', 'Programme Document Against PCA', 'XAF', 'PRISE EN CHARGE NUT DES ENFTS 06 A 59 MOIS', '2019-10-09', '2019-12-31', 99672.81, NULL, 99672.81, 0.00, 99672.81, '2019-10-11 00:15:21.121246+00', '2019-12-20 00:15:27.984842+00', 59763319.00, 0.00, 59763319.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (998, '2500221790', '0400067095', '2019-03-12', 'Programme Document Against PCA', 'XAF', 'FR 1ERE TRANCHE PCA AVEC RNTAP+', '2019-02-25', '2019-03-31', 50463.44, NULL, 50463.44, 0.00, 50463.44, '2019-03-15 13:52:32.639244+00', '2019-10-05 00:06:15.575197+00', 29100500.00, 0.00, 29100500.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1022, '2500213951', '0400068212', '2019-05-07', 'Programme Document Against PCA', 'XAF', 'APPUI AUX COMMUNAUTES EFFECTEES PAR LA CRISE SOUDA', '2019-05-07', '2019-08-07', 55852.35, NULL, 55852.35, 0.00, 55852.35, '2019-05-09 00:18:22.027294+00', '2019-10-01 14:41:45.567585+00', 32852185.00, 0.00, 32852185.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (986, '2500213920', '0400066019', '2019-01-14', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE DU 17/PCA/2018/WASH/ACF APPUI AUX URG', '2019-01-14', '2019-06-30', 146536.86, NULL, 146536.86, 0.00, 145821.90, '2019-01-16 00:02:00.037658+00', '2019-08-29 00:27:59.772335+00', 83744494.00, 0.00, 83744494.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (891, '2500238161', '0400058431', '2018-03-07', 'Programme Document Against PCA', 'XAF', '3/PCA/18/WASH/CRF,RENF CAP COMM DANS LE HADJER L', '2018-03-07', '2018-12-11', 764867.57, NULL, 768142.20, 257894.52, 817172.47, '2018-03-15 16:10:06.407235+00', '2019-11-03 00:33:54.092501+00', 434415226.00, 151409431.00, 437076136.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (891, '2500238161', '0400058431', '2018-03-07', 'Programme Document Against PCA', 'XAF', '3/PCA/18/WASH/CRF,RENF CAP COMM DANS LE HADJER L', '2018-03-07', '2018-12-11', 768142.20, NULL, 768142.20, 0.00, 817172.47, '2018-03-15 16:10:06.407235+00', '2019-11-29 00:08:10.220798+00', 436348633.00, 0.00, 437076136.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1057, '2500237473', '0400071344', '2019-10-07', 'Programme Document Against PCA', 'XAF', '6E T ORG ET MISE EN OEUVRE ACT PLAIDOYER DE COMM', '2019-10-07', '2019-12-31', 9158.43, NULL, 9158.43, 0.00, 9158.43, '2019-10-09 00:11:10.23444+00', '2019-11-29 00:08:19.857417+00', 5491348.00, 0.00, 5491348.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (972, '2500233143', '0400064814', '2018-11-19', 'Programme Document Against PCA', 'XAF', 'APPUI CONSOL PAIX PROJET TRANSFRONTALIER', '2018-11-19', '2019-02-28', 98768.48, NULL, 98768.48, 0.00, 98768.48, '2018-11-21 00:01:57.401884+00', '2019-09-06 00:26:06.96566+00', 57006500.00, 0.00, 57006500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1067, '2500238161', '0400072488', '2019-11-26', 'Programme Document Against PCA', 'XAF', '7 % COUT SUPPORTS INDIRECT 3E ET 4E TRANCHES', '2019-11-26', '2020-01-31', 14676.42, NULL, 14676.42, 0.00, 14676.42, '2019-11-28 00:08:30.541781+00', '2019-11-29 00:08:19.904722+00', 8665253.00, 0.00, 8665253.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1065, '2500212828', '0400072318', '2019-11-20', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE 19/PCA/2019/WASH/TERRE VERTE', '2019-11-20', '2019-12-31', 0.00, NULL, 0.00, 0.00, 0.00, '2019-11-22 00:03:25.983888+00', '2019-12-25 00:21:21.991877+00', 0.00, 0.00, 0.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1044, '2500228510', '0400069988', '2019-07-29', 'Programme Document Against PCA', 'XAF', 'REMBBOURSMENT 7% ONG ALIMA', '2019-07-29', '2019-12-31', 2543.26, NULL, 2543.26, 0.00, 2678.24, '2019-07-31 00:05:24.030862+00', '2019-10-19 00:30:50.892027+00', 1490992.00, 0.00, 1545992.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1014, '2500214062', '0400067661', '2019-04-08', 'Programme Document Against PCA', 'XAF', '08/PCA/2019/WASH/ESMS', '2019-04-08', '2019-12-31', 48563.13, NULL, 72508.77, 10927.34, 73216.00, '2019-04-12 17:41:31.98834+00', '2019-10-19 00:30:50.830788+00', 28427630.00, 6522170.00, 42785305.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1057, '2500237473', '0400071344', '2019-10-07', 'Programme Document Against PCA', 'XAF', '6E T ORG ET MISE EN OEUVRE ACT PLAIDOYER DE COMM', '2019-10-07', '2019-12-31', 9158.43, NULL, 9158.43, 9158.43, 9158.43, '2019-10-09 00:11:10.23444+00', '2019-10-10 00:11:25.907957+00', 5491348.00, 5491348.00, 5491348.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (993, '2500233143', '0400066809', '2019-02-27', 'Programme Document Against PCA', 'XAF', 'FR T 2 ET 3 PCA - CELIAF, COORDINATION NATIONALE', '2018-11-01', '2019-08-30', 45499.57, NULL, 45499.57, 27221.71, 47169.58, '2019-03-02 00:15:29.158934+00', '2019-10-16 00:15:08.367613+00', 27101000.00, 16322000.00, 27101000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (958, '2500225653', '0400063875', '2018-10-11', 'Programme Document Against PCA', 'XAF', '2E TRANCHE PAC MENTHOR INITIATIVE', '2018-10-11', '2018-12-31', 102591.92, NULL, 104641.57, 0.00, 109031.53, '2018-10-13 00:02:13.626548+00', '2019-11-03 00:33:54.534912+00', 59970382.00, 0.00, 61180535.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (960, '2500213951', '0400064459', '2018-11-05', 'Programme Document Against PCA', 'XAF', 'APPUI AUX COMMUNAUTES AFFECTEES PAR LA CRISE SOUDA', '2018-10-01', '2018-12-31', 340117.84, NULL, 356859.67, 0.00, 340117.84, '2018-11-06 16:46:32.84077+00', '2019-11-03 00:33:54.555106+00', 196306834.00, 0.00, 196306834.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (981, '2500233727', '0400065408', '2018-12-10', 'Programme Document Against PCA', 'XAF', 'FR PCA CVDT (EDUCATION/COMMUNICATION)', '2018-03-06', '2019-05-31', 123090.64, NULL, 125313.63, 28814.46, 124216.91, '2018-12-12 00:02:07.776938+00', '2019-11-03 00:33:54.568437+00', 71349000.00, 16992750.00, 71619000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (984, '2500213937', '0400065909', '2019-01-03', 'Programme Document Against PCA', 'XAF', '21/PCA/2018/COMMUNICATION/AGT', '2019-01-03', '2019-12-31', 25363.43, NULL, 43332.34, 16735.12, 54558.39, '2019-01-05 00:01:56.452119+00', '2019-11-03 00:33:54.579274+00', 14742000.00, 9811000.00, 31831000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1027, '2500240134', '0400068450', '2019-05-16', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2019_PCA_09_WASH_APDI', '2019-05-16', '2019-08-16', 26940.57, NULL, 87324.70, 26940.57, 87552.92, '2019-05-18 00:04:14.988776+00', '2019-11-03 00:33:54.620805+00', 15846364.00, 15846364.00, 51498364.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1040, '2500214062', '0400069407', '2019-07-01', 'Programme Document Against PCA', 'XAF', 'FR PCA ECOLE SAINE MÉNAGE SAIN', '2019-07-01', '2019-09-30', 14444.55, NULL, 89936.57, 14444.55, 91660.00, '2019-07-05 15:00:06.327401+00', '2019-11-03 00:33:54.640253+00', 8338000.00, 8338000.00, 52910000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1045, '2500225653', '0400070026', '2019-07-30', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 3ÈME TRANCHE PCA AVEC MENTHOR', '2019-06-21', '2019-08-31', 77434.77, NULL, 78635.24, 77434.77, 79871.30, '2019-08-01 00:05:49.895313+00', '2019-11-03 00:33:54.652494+00', 45396289.00, 45396289.00, 46105068.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1046, '2500223261', '0400070223', '2019-08-07', 'Programme Document Against PCA', 'XAF', 'PCA:15/2019 1ERE ET 2EME TRANCHE AFDI', '2019-08-07', '2019-11-07', 71060.43, NULL, 138985.26, 71060.43, 138894.83, '2019-08-09 00:05:26.573663+00', '2019-11-03 00:33:54.664936+00', 41659321.00, 41659321.00, 81763500.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1058, '2500235282', '0400071422', '2019-10-10', 'SSFA', 'XAF', 'PAIEMENT 13/SSFA/2019/COM/AFA', '2019-10-10', '2019-12-31', 16155.91, NULL, 26470.60, 16155.91, 26312.76, '2019-10-11 00:15:21.121059+00', '2019-11-03 00:33:54.689639+00', 9687000.00, 9687000.00, 15777000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1029, '2500214085', '0400068467', '2019-05-17', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA 03-2019 ET PCA 11-2019 IAS', '2019-05-17', '2019-08-17', 53405.25, NULL, 89995.19, 53405.25, 126474.21, '2019-05-19 00:05:23.846838+00', '2019-11-14 00:06:36.144724+00', 31875833.00, 31875833.00, 74391752.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (958, '2500225653', '0400063875', '2018-10-11', 'Programme Document Against PCA', 'XAF', '2E TRANCHE PAC MENTHOR INITIATIVE', '2018-10-11', '2018-12-31', 102591.92, NULL, 102591.92, 0.00, 106874.88, '2018-10-13 00:02:13.626548+00', '2019-12-25 00:21:21.93378+00', 59970382.00, 0.00, 59970382.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1070, '2500228510', '0400072732', '2019-12-04', 'Programme Document Against PCA', 'XAF', 'PROJET DISTRIBUTION KITS WASH NUT COUPLES MERE-EN', '2019-11-25', '2020-02-29', 38960.19, NULL, 38960.19, 38960.19, 38960.19, '2019-12-06 00:10:30.508977+00', '2019-12-10 04:22:40.820399+00', 23230795.00, 23230795.00, 23230795.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1071, '2500240134', '0400072879', '2019-12-09', 'Programme Document Against PCA', 'XAF', '2E TRA MISE OEUVRE ATPC 91 VILLAG ET ATPE 42 ECOLE', '2019-12-09', '2020-03-31', 13981.92, NULL, 13981.92, 0.00, 13981.92, '2019-12-10 04:22:40.756032+00', '2020-03-18 00:04:29.367169+00', 8337000.00, 0.00, 8337000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1081, '2500213985', '0400073115', '2019-12-17', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT TRANCHE 1 PCA AVEC COOPI', '2019-11-27', '2020-11-26', 70000.23, NULL, 70000.23, 70000.23, 70000.23, '2019-12-19 00:14:38.732355+00', '2020-04-02 00:05:15.008104+00', 41739036.00, 41739036.00, 41739036.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (993, '2500233143', '0400066809', '2019-02-27', 'Programme Document Against PCA', 'XAF', 'FR T 2 ET 3 PCA - CELIAF, COORDINATION NATIONALE', '2018-11-01', '2019-08-30', 45499.57, NULL, 45499.57, 0.00, 47169.58, '2019-03-02 00:15:29.158934+00', '2020-01-10 18:19:25.542123+00', 27101000.00, 0.00, 27101000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (928, '2500212820', '0400061516', '2018-07-04', 'Programme Document Against PCA', 'XAF', '12/PCA/2018/WASH/SIF', '2018-07-04', '2018-12-31', 861550.44, NULL, 861550.44, 96162.98, 892531.90, '2018-07-06 00:02:39.135204+00', '2020-02-18 00:09:35.963365+00', 505668413.00, 57396507.00, 505668413.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1066, '2500240242', '0400072361', '2019-11-21', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT SECONTRE TRANCHE PCA AVEC CR MOYEN CHA', '2019-05-01', '2020-04-20', 13962.94, NULL, 13962.94, 0.00, 13962.94, '2019-11-23 00:04:54.104085+00', '2020-01-15 00:01:36.06661+00', 8244000.00, 0.00, 8244000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1052, '2500240664', '0400071091', '2019-09-23', 'Programme Document Against PCA', 'XAF', '18/PCA/2019/WASH/ASD', '2019-09-23', '2020-01-31', 96909.53, 13, 96909.53, 0.00, 96909.53, '2019-09-25 00:10:29.68795+00', '2020-01-25 00:41:59.480343+00', 57842100.00, 0.00, 57842100.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1038, '2500213920', '0400069369', '2019-06-28', 'Programme Document Against PCA', 'XAF', 'PAIEMENT 07/PCA/2019/WASH/ACF', '2019-06-28', '2019-12-31', 185374.04, 12, 185374.04, 0.00, 184539.14, '2019-07-01 00:22:32.343775+00', '2020-04-04 00:05:01.398043+00', 108828267.00, 0.00, 108828267.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (563, '2500228112', '0400029194', '2015-03-26', 'Programme Document Against PCA', 'XAF', 'DECSIMT 2E TRANCHPCA 2014/CHD/WASH/IHDL', '2015-03-26', '2015-04-30', 133704.48, NULL, 133704.48, 0.00, 130743.85, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.896671+00', 80915540.00, 0.00, 82754040.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (990, '2500238161', '0400066565', '2019-02-13', 'Programme Document Against PCA', 'XAF', 'FR 4ÈME TRANCHE PCA', '2018-04-01', '2019-01-31', 10136.54, NULL, 10136.54, 0.00, 10519.85, '2019-02-15 00:11:32.573754+00', '2019-12-18 00:12:20.691101+00', 6044118.00, 0.00, 6044118.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (19, '2500212828', '0400031955', '2015-07-09', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA11/2014/PROG/WASH/CELIAF', '2015-07-09', '2015-12-31', 17369.45, NULL, 17369.45, 0.00, 17572.19, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.176477+00', 10309097.00, 0.00, 10309097.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (286, '2500232774', '0400039528', '2016-04-14', 'SSFA', 'XAF', 'FR ASSOCIATION BOUSSO CONTRE SIDA POUR LES ACT ACP', '2016-04-04', '2016-06-30', 3180.46, NULL, 3180.46, 0.00, 3192.59, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:57.159483+00', 1850000.00, 0.00, 1850000.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (320, '2500214088', '0400022856', '2014-08-05', 'Programme Document Against PCA', 'XAF', 'COUTS OPERATIONNELS PCA 2014/CHD/PRO/LA IRC', '2014-08-05', '2014-11-05', 108943.60, NULL, 108943.60, 0.00, 110982.77, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.139772+00', 53425727.00, 0.00, 54425727.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1058, '2500235282', '0400071422', '2019-10-10', 'SSFA', 'XAF', 'PAIEMENT 13/SSFA/2019/COM/AFA', '2019-10-10', '2020-04-30', 16155.91, 15, 16155.91, 0.00, 16155.91, '2019-10-11 00:15:21.121059+00', '2020-02-21 00:49:28.534376+00', 9687000.00, 0.00, 9687000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (985, '2500234968', '0400065931', '2019-01-07', 'Programme Document Against PCA', 'XAF', '20/PCA/2018/COMMUNICATION/UAFAT', '2019-01-07', '2019-06-30', 24014.32, NULL, 24214.80, 0.00, 24595.46, '2019-01-09 00:02:01.540774+00', '2020-03-03 00:11:07.946336+00', 14125000.00, 0.00, 14125000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1075, '2500233143', '0400073002', '2019-12-12', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE 26/PCA/2019/EDUCATION/CELIAF', '2019-12-12', '2020-06-30', 166706.76, 7, 166706.76, 166706.76, 166706.76, '2019-12-13 00:39:43.75102+00', '2019-12-26 01:46:35.564066+00', 99402238.00, 99402238.00, 99402238.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1040, '2500214062', '0400069407', '2019-07-01', 'Programme Document Against PCA', 'XAF', 'FR PCA ECOLE SAINE MÉNAGE SAIN', '2019-07-01', '2019-09-30', 48581.77, 14, 48581.77, 7748.17, 96337.41, '2019-07-05 15:00:06.327401+00', '2020-04-09 00:04:15.838832+00', 28693000.00, 4620000.00, 55610000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1074, '2500237473', '0400072969', '2019-12-11', 'Programme Document Against PCA', 'XAF', '7% DE 4E TRANCHE DES COUTS SUPPORT INDIRECT', '2019-12-11', '2020-03-31', 19279.64, NULL, 19279.64, 0.00, 19279.64, '2019-12-13 00:39:43.750936+00', '2019-12-14 00:03:38.712684+00', 11495870.00, 0.00, 11495870.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (983, '2500227536', '0400065910', '2019-01-03', 'Programme Document Against PCA', 'XAF', '19/PCA/2018/COMMUNICATION/ANNASSOUR', '2019-01-03', '2019-12-31', 22967.39, NULL, 23098.17, 16362.81, 23592.25, '2019-01-05 00:01:56.451908+00', '2019-11-06 00:28:42.172879+00', 13548866.00, 9660933.00, 13548866.00, false, false, false); INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1064, '2500237900', '0400071926', '2019-10-31', 'Programme Document Against PCA', 'XAF', 'PAIEMENT SECONDE TRANCHE PCA RESEAU JOURNALISTE TC', '2019-05-07', '2019-12-31', 30283.53, NULL, 30283.53, 30283.53, 29820.13, '2019-11-01 00:33:46.96802+00', '2019-11-06 00:28:42.21854+00', 17880000.00, 17880000.00, 17880000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (985, '2500234968', '0400065931', '2019-01-07', 'Programme Document Against PCA', 'XAF', '20/PCA/2018/COMMUNICATION/UAFAT', '2019-01-07', '2019-06-30', 12844.31, NULL, 13837.45, 798.29, 25410.37, '2019-01-09 00:02:01.540774+00', '2019-11-15 00:08:38.413218+00', 7530000.00, 468000.00, 14593000.00, false, false, false); -INSERT INTO [[schema]].funds_fundsreservationheader VALUES (991, '2500237874', '0400066639', '2019-02-18', 'SSFA', 'XAF', 'FR GLOBAL DU SSFA EDUCATION LABEL 109', '2019-02-11', '2019-12-31', 24015.54, NULL, 24015.54, 386.62, 25645.99, '2019-02-20 00:02:19.238942+00', '2019-11-15 00:08:43.152461+00', 14036000.00, 228000.00, 14734750.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1072, '2500233727', '0400072987', '2019-12-11', 'Programme Document Against PCA', 'XAF', 'FR TRANCHE 1 ET 2 PCA CVDT (EDUCATION) : 25/PCA', '2019-12-11', '2020-09-30', 48495.16, 8, 48495.16, 48495.16, 48495.16, '2019-12-13 00:39:43.750727+00', '2019-12-20 00:15:28.146295+00', 28916208.00, 28916208.00, 28916208.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1027, '2500240134', '0400068450', '2019-05-16', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2019_PCA_09_WASH_APDI', '2019-05-16', '2019-08-16', 26940.57, NULL, 26940.57, 0.00, 87552.92, '2019-05-18 00:04:14.988776+00', '2019-12-09 15:34:17.787044+00', 15846364.00, 0.00, 51498364.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1029, '2500214085', '0400068467', '2019-05-17', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT PCA 03-2019 ET PCA 11-2019 IAS', '2019-05-17', '2019-08-17', 53405.25, NULL, 53405.25, 0.00, 122345.14, '2019-05-19 00:05:23.846838+00', '2020-02-19 00:07:33.921197+00', 31875833.00, 0.00, 71963044.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (960, '2500213951', '0400064459', '2018-11-05', 'Programme Document Against PCA', 'XAF', 'APPUI AUX COMMUNAUTES AFFECTEES PAR LA CRISE SOUDA', '2018-10-01', '2018-12-31', 340117.84, NULL, 340117.84, 0.00, 340117.84, '2018-11-06 16:46:32.84077+00', '2019-11-29 00:08:17.688804+00', 196306834.00, 0.00, 196306834.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1079, '2500224593', '0400073074', '2019-12-16', 'SSFA', 'XAF', 'PROMOTION ENGAGEMENT COMMUNAUTAIRE DES JEUNES', '2019-12-16', '2020-03-31', 24854.51, 9, 24854.51, 24854.51, 24854.51, '2019-12-17 00:44:03.996176+00', '2019-12-22 00:07:50.187206+00', 14820000.00, 14820000.00, 14820000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1046, '2500223261', '0400070223', '2019-08-07', 'Programme Document Against PCA', 'XAF', 'PCA:15/2019 1ERE ET 2EME TRANCHE AFDI', '2019-08-07', '2019-11-07', 138318.85, 6, 138318.85, 67258.42, 138894.83, '2019-08-09 00:05:26.573663+00', '2020-03-11 00:08:16.924459+00', 81763500.00, 40104179.00, 81763500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1084, '2500237165', '0400073177', '2019-12-19', 'Programme Document Against PCA', 'XAF', 'TRANCHE DE NOVEMBRE -DECEMBRE 2019 - WVISION', '2019-12-19', '2019-12-31', 93401.06, NULL, 108477.89, 93401.06, 108426.01, '2019-12-21 00:13:15.75407+00', '2020-04-04 00:05:01.43034+00', 55692250.00, 55692250.00, 64651176.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (981, '2500233727', '0400065408', '2018-12-10', 'Programme Document Against PCA', 'XAF', 'FR PCA CVDT (EDUCATION/COMMUNICATION)', '2018-03-06', '2019-05-31', 123090.64, NULL, 123090.64, 0.00, 121940.50, '2018-12-12 00:02:07.776938+00', '2019-12-26 01:46:36.005095+00', 71349000.00, 0.00, 70306500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (991, '2500237874', '0400066639', '2019-02-18', 'SSFA', 'XAF', 'FR GLOBAL DU SSFA EDUCATION LABEL 109', '2019-02-11', '2019-12-31', 25199.02, NULL, 25199.02, 0.00, 25645.99, '2019-02-20 00:02:19.238942+00', '2020-02-09 00:50:47.120747+00', 14734750.00, 0.00, 14734750.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1060, '2500238464', '0400071491', '2019-10-14', 'Programme Document Against PCA', 'XAF', 'PAIEMENT TRANCHE 3 DU PCA AVEC ASRADD', '2019-03-01', '2020-02-29', 80112.41, NULL, 80112.41, 0.00, 80112.41, '2019-10-16 00:15:08.28184+00', '2019-12-20 00:15:28.105438+00', 48035000.00, 0.00, 48035000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (984, '2500213937', '0400065909', '2019-01-03', 'Programme Document Against PCA', 'XAF', '21/PCA/2018/COMMUNICATION/AGT', '2019-01-03', '2019-12-31', 25363.43, 10, 25363.43, 0.00, 36952.91, '2019-01-05 00:01:56.452119+00', '2020-01-17 00:06:25.614943+00', 14742000.00, 0.00, 21221800.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1045, '2500225653', '0400070026', '2019-07-30', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 3ÈME TRANCHE PCA AVEC MENTHOR', '2019-06-21', '2019-08-31', 77434.77, NULL, 77434.77, 16877.71, 78643.43, '2019-08-01 00:05:49.895313+00', '2020-04-15 03:42:04.688421+00', 45396289.00, 9894591.00, 45396289.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1073, '2500213955', '0400073012', '2019-12-12', 'Programme Document Against PCA', 'XAF', 'MISE EN PLACE MECANISME COMM DROITS HUMAINS', '2019-12-12', '2020-06-30', 107650.64, NULL, 107650.64, 107650.64, 107650.64, '2019-12-13 00:39:43.750847+00', '2019-12-20 00:15:28.155384+00', 64188845.00, 64188845.00, 64188845.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1078, '2500214062', '0400073041', '2019-12-13', 'Programme Document Against PCA', 'XAF', '1ERE TRANCHE 24/PCA/2019/WASH/ESMS', '2019-12-13', '2020-02-29', 68068.73, NULL, 68068.73, 68068.73, 68068.73, '2019-12-15 00:07:17.9363+00', '2019-12-20 00:15:28.180615+00', 40587343.00, 40587343.00, 40587343.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1082, '2500238464', '0400073121', '2019-12-17', 'Programme Document Against PCA', 'XAF', '4E TRANCH 04/2019/NUTRITION/ASRADD', '2019-12-17', '2019-12-31', 54564.21, NULL, 54564.21, 54564.21, 54564.21, '2019-12-19 00:14:38.732448+00', '2019-12-22 00:07:50.211868+00', 32535000.00, 32535000.00, 32535000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1085, '2500237522', '0400073196', '2019-12-20', 'Programme Document Against PCA', 'XAF', '7% COUT INDIRECT DU PROGRAMME 4E TRANCHES', '2019-12-20', '2020-03-31', 33226.93, NULL, 33226.93, 0.00, 33226.93, '2019-12-22 00:07:50.10875+00', '2019-12-22 00:07:50.576004+00', 19812222.00, 0.00, 19812222.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (487, '2500220423', '0400000562', '2012-02-23', 'Programme Document Against PCA', 'USD', 'DCT 1ÈRE TRANCHE PCA CHOLÉRA OGB', '2011-11-01', '2012-01-31', 189012.87, NULL, 189012.87, 0.00, 388900.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:51.881322+00', 0.00, 0.00, 190000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (230, '2500215472', '0400000582', '2012-02-24', 'SSFA', 'USD', 'RESERVATION FINANCEMENT DEUXIEME TRANCHE AFVF', '2012-02-24', '2012-12-31', 3463.66, NULL, 3463.66, 0.00, 8232.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:51.891348+00', 0.00, 0.00, 8645.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (68, '2500214062', '0400000764', '2012-03-01', 'Programme Document Against PCA', 'USD', 'DCT 2EM TRANCHE PCA CHOLÉRA ESMS', '2011-11-01', '2012-02-29', 32103.69, NULL, 32103.69, 0.00, 62778.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:51.937457+00', 0.00, 0.00, 32100.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (211, '2500214085', '0400000801', '2012-03-03', 'Programme Document Against PCA', 'USD', 'DCT 3EM TRANCHE PCA IAS PROMOTION HYGIENE', '2011-04-27', '2012-03-31', 39066.90, NULL, 39066.90, 0.00, 383000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:51.948252+00', 0.00, 0.00, 39000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (67, '2500213923', '0400001149', '2012-03-15', 'Programme Document Against PCA', 'USD', 'FR POUR 3E TRANCHE PCA ADRA/UNICEF WASH', '2011-11-11', '2012-01-31', 59641.74, NULL, 59641.74, 0.00, 3000000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.015847+00', 0.00, 0.00, 61000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (730, '2500215473', '0400001709', '2012-03-30', 'SSFA', 'USD', 'FR SMALL SCALE FUNDING AGREE BAMBINI NEL DESSERTO', '2012-04-01', '2012-04-20', 19340.98, NULL, 19340.98, 0.00, 19466.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.066501+00', 0.00, 0.00, 19466.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (278, '2500221314', '0400002187', '2012-04-19', 'SSFA', 'USD', 'FR - SMALL SCALE FUNDING - ASER', '2012-05-02', '2012-12-31', 8075.75, NULL, 8075.75, 0.00, 8078.99, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.088308+00', 0.00, 0.00, 8078.99, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (786, '2500221791', '0400002850', '2012-05-09', 'Programme Document Against PCA', 'USD', '1ERE TRANCHE PCA AVEC ASSO DJENANDOUM NASSON (ADN)', '2012-05-28', '2013-05-28', 28220.15, NULL, 28220.15, 0.00, 32491.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.215751+00', 0.00, 0.00, 64982.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (785, '2500214062', '0400003131', '2012-05-17', 'Programme Document Against PCA', 'USD', 'FONDS POUR FINANCEMENT VIDÉO PARTICIPATIVE', '2012-05-17', '2012-08-30', 2396.03, NULL, 2396.03, 0.00, 2400.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.253531+00', 0.00, 0.00, 2400.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (11, '2500219700', '0400003670', '2012-06-04', 'SSFA', 'USD', 'FR-FINANCEMENT APE/CASI MOUNDOU EN FAVEUR DE PTME', '2012-06-04', '2012-12-31', 7982.27, NULL, 7982.27, 0.00, 7982.27, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.319306+00', 0.00, 0.00, 7982.27, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (401, '2500212785', '0400004215', '2012-06-19', 'SSFA', 'USD', 'PROJET D''APPUI AUX APE/AME A L''EST DU TCHAD', '2012-06-19', '2012-09-30', 20253.94, NULL, 20253.94, 0.00, 19800.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.414522+00', 0.00, 0.00, 20374.33, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (1083, '2500212787', '0400073170', '2019-12-19', 'Programme Document Against PCA', 'XAF', 'SECONDE TRANCHE PCA 17 PREMIERE URGENCE', '2019-10-01', '2019-12-31', 180631.25, NULL, 180631.25, 180631.25, 180631.24, '2019-12-21 00:13:15.753687+00', '2020-01-01 00:21:58.907615+00', 107704992.00, 107704992.00, 107704992.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (264, '2500000912', '0400004619', '2012-07-03', 'Programme Document Against PCA', 'USD', 'FINANCEMENT 2EME TRANCHE PCA/BAMBINI 2012', '2012-07-03', '2012-09-30', 25456.55, NULL, 25456.55, 0.00, 26000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.443749+00', 0.00, 0.00, 26491.00, true, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (314, '2500222842', '0400005023', '2012-07-18', 'SSFA', 'USD', 'FR-FINANCEMENT APE/EEMET DOBA EN FAVEUR DE LA PTME', '2012-07-18', '2012-12-31', 8256.52, NULL, 8256.52, 0.00, 8514.12, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.455603+00', 0.00, 0.00, 8514.12, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (656, '2500213920', '0400005286', '2012-07-27', 'Programme Document Against PCA', 'USD', 'RÈGLEMENT IMPAYÉS UNICEF PCA2010/CHD/11/WASH/ACF', '2012-07-13', '2012-12-31', 0.00, NULL, 0.00, 0.00, 11200.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.466961+00', 0.00, 0.00, 11200.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (385, '2500213965', '0400005299', '2012-07-27', 'SSFA', 'USD', 'FR-FINANCEMENT APE/CENTREYALNA PREVENTION VIH/SIDA', '2012-07-27', '2012-12-31', 6405.33, NULL, 6405.33, 0.00, 6575.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.476968+00', 0.00, 0.00, 6600.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (547, '2500223298', '0400005810', '2012-08-17', 'Programme Document Against PCA', 'USD', 'PAIEMENT 1E TRANCHE PCA2012/11/CHD/WASH/MERLIN', '2012-08-08', '2014-03-31', 54475.06, NULL, 54475.06, 0.00, 200000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.542675+00', 0.00, 0.00, 100000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (293, '2500223261', '0400005879', '2012-08-22', 'Programme Document Against PCA', 'USD', 'FR POUR PAIEMENTS PCA2012/13/CHD/WASH/AFDI', '2012-08-01', '2013-01-31', 37301.80, NULL, 37301.80, 0.00, 84000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.552717+00', 0.00, 0.00, 44000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (172, '2500223336', '0400005907', '2012-08-22', 'SSFA', 'USD', 'FR POUR PAIEMENTS N°SSFA/03/WASH-NDJ/UP', '2012-08-20', '2012-10-20', 5742.99, NULL, 5742.99, 0.00, 20000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.596405+00', 0.00, 0.00, 20000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (461, '2500223478', '0400006386', '2012-09-11', 'SSFA', 'USD', 'FR POUR MISE EN OEUVRE SSFA/04/WASH-NDJ/A2012', '2012-08-20', '2013-02-20', 9550.06, NULL, 9550.06, 0.00, 19100.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.631337+00', 0.00, 0.00, 9550.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (472, '2500221169', '0400006419', '2012-09-12', 'Programme Document Against PCA', 'USD', 'FINANCEMENT ACCORD A PETITE ECHELLE CRT', '2012-09-12', '2012-12-05', 15302.28, NULL, 15302.28, 0.00, 15330.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.639967+00', 0.00, 0.00, 15330.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (856, '2300006133', '0400006438', '2012-09-12', 'SSFA', 'USD', 'CAMPAGNE DE SENSIBILISATION PAR ACRA (ACCORD)', '2012-09-01', '2012-10-31', 10438.07, NULL, 10438.07, 0.00, 10500.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.650363+00', 0.00, 0.00, 10500.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (404, '2500223632', '0400006557', '2012-09-18', 'SSFA', 'USD', 'FINANCEMENT PROJET COMMUNICATION STRATÉGIQUE-ASSAR', '2012-09-18', '2012-12-19', 21287.84, NULL, 21287.84, 0.00, 18452.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.659912+00', 0.00, 0.00, 27000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (677, '2500223633', '0400006558', '2012-09-18', 'SSFA', 'USD', 'FINANCEMENT PROJET COMMUNICATION STRATÉGIQUE-SOS', '2012-09-20', '2012-12-19', 19551.71, NULL, 19551.71, 0.00, 18948.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.669755+00', 0.00, 0.00, 19620.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (390, '2500221193', '0400006801', '2012-09-25', 'Programme Document Against PCA', 'USD', '2EME TRANCHE PCA/118/ADM/BASE/2012', '2012-09-25', '2012-12-25', 116316.54, NULL, 116316.54, 0.00, 117000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.685557+00', 0.00, 0.00, 117000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (541, '2500223886', '0400007215', '2012-10-12', 'Programme Document Against PCA', 'USD', 'APE PROMOTION PFE ASSOCIATION AFEDD DE MAO/KANEM', '2012-10-12', '2012-11-30', 3884.80, NULL, 3884.80, 0.00, 8000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.717249+00', 0.00, 0.00, 3880.80, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (309, '2500223336', '0400007345', '2012-10-17', 'Programme Document Against PCA', 'USD', 'FR - DECAISSEMENT DEUXIEME TRANCHE PCA UP', '2012-10-17', '2013-01-18', 12227.30, NULL, 12227.30, 0.00, 12230.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.727728+00', 0.00, 0.00, 12230.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (346, '2500219704', '0400007437', '2012-10-22', 'Programme Document Against PCA', 'USD', 'PROGRAMME SANTE COMMUNAUTAIRE/SANTE/WASH/PROTECTIO', '2012-04-01', '2013-03-31', 20047.99, NULL, 20047.99, 0.00, 20000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.737504+00', 0.00, 0.00, 20000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (344, '2500223261', '0400007439', '2012-10-22', 'Programme Document Against PCA', 'USD', 'PCA 2012/13/CHD/WASH/AFDI WASH IN NUT. DS LES CNA', '2012-08-09', '2013-02-09', 39427.80, NULL, 39427.80, 0.00, 39345.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.747131+00', 0.00, 0.00, 39345.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (603, '2500219704', '0400007836', '2012-11-08', 'Programme Document Against PCA', 'USD', 'COMPLÉMENT 3È TRANCHE DU PCA 12-04/PRO/CHORA', '2012-10-01', '2012-12-31', 1253.80, NULL, 1253.80, 0.00, 1270.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.775031+00', 0.00, 0.00, 1270.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (335, '2500224289', '0400007946', '2012-11-13', 'Programme Document Against PCA', 'USD', 'PCA "ACTION COMMUNAUTAIRE AU LOG OCCID & N''DJAMEN"', '2012-11-13', '2013-05-31', 36693.57, NULL, 36693.57, 0.00, 135000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:52.785181+00', 0.00, 0.00, 135000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (582, '2500219704', '0400010718', '2013-03-04', 'Programme Document Against PCA', 'USD', 'PAIEMENT DERNIERE TRANCHE PCA CHORA AMENDER', '2013-03-04', '2013-03-05', 22358.61, NULL, 22358.61, 0.00, 25000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.190459+00', 0.00, 0.00, 25000.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (98, '2500224289', '0400010837', '2013-03-07', 'Programme Document Against PCA', 'USD', 'RESERVATION FONDS POUR PCA AVEC LEAD', '2013-03-07', '2013-05-31', 74214.40, NULL, 74214.40, 0.00, 125000.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.222147+00', 0.00, 0.00, 90000.00, true, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (583, '2500221193', '0400012887', '2013-05-29', 'Programme Document Against PCA', 'USD', 'REMBOURSEMENT PREFINANCEMENT PCA/007/CHD/PRO/BASE', '2013-05-29', '2013-06-30', 155034.44, NULL, 155034.44, 0.00, 155900.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.456646+00', 0.00, 0.00, 155900.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (316, '2500221408', '0400012890', '2013-05-29', 'SSFA', 'USD', 'REMBOURSEMENT APE CRT DU LAC .', '2013-05-29', '2013-12-31', 7610.00, NULL, 7610.00, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.465622+00', 0.00, 0.00, 7900.00, true, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (700, '2500225655', '0400014300', '2013-07-26', 'SSFA', 'XAF', 'PAIEMENT INTEGRALE APE Nº11/PRO/POLIO/CELIAF /2013', '2013-07-26', '2013-09-30', 6807.53, NULL, 6807.53, 0.00, 6807.53, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:53.773235+00', 3425000.00, 0.00, 3425000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (192, '2500221790', '0400017125', '2013-12-04', 'Programme Document Against PCA', 'XAF', 'RNTAP+/RECYCLAGE CPS/FORMATION MÉDIATEURS DE SANTÉ', '2013-11-19', '2013-12-31', 29869.18, NULL, 29869.18, 0.00, 29869.18, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.166913+00', 14423500.00, 0.00, 14423500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (612, '2500224534', '0400017422', '2013-12-11', 'Programme Document Against PCA', 'XAF', 'DÉCAISSEMENT 3È TRANCHE AU JOURNAL LE COURRIER', '2013-12-11', '2013-12-31', 2070.87, NULL, 2070.87, 0.00, 2070.87, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.220147+00', 1000000.00, 0.00, 1000000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (858, '2500221193', '0400017436', '2013-12-12', 'Programme Document Against PCA', 'XAF', 'VERSEMENT DE LA 2ÈME TRANCHE PCA ONG BASE 2013', '2013-12-12', '2014-03-12', 178389.63, NULL, 178389.63, 0.00, 178389.63, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.233206+00', 86142389.00, 0.00, 86142389.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (500, '2500227539', '0400018647', '2014-02-19', 'SSFA', 'XAF', 'FINANCEMENT APE Nº05/PRO/POLIO/APSELPA/2013', '2014-02-19', '2014-12-31', 13120.67, NULL, 13120.67, 0.00, 13120.67, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.437314+00', 6340500.00, 0.00, 6340500.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (781, '2500227536', '0400018675', '2014-02-20', 'SSFA', 'XAF', 'FINANCEMENT APE/ANNASSOUR-AMTIMAN', '2014-02-01', '2014-03-30', 16312.64, NULL, 16312.64, 0.00, 16312.64, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.459489+00', 7883000.00, 0.00, 7883000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (595, '2500228104', '0400019420', '2014-03-21', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PROJET CDLS/DOBA', '2014-03-24', '2014-12-31', 9559.75, NULL, 9559.75, 0.00, 9446.29, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.6468+00', 4536485.00, 0.00, 12036328.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (738, '2500228048', '0400019465', '2014-03-24', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 1ÈRE TRANCHE PCA/ AILS/COORDINATION', '2014-03-24', '2014-12-31', 15783.65, NULL, 15783.65, 0.00, 15783.65, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.655525+00', 7567172.00, 0.00, 7800000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (270, '2500226636', '0400019701', '2014-04-01', 'SSFA', 'XAF', 'DECAISEMENT 2E TRANCHE APE/APSCOFIS', '2014-04-01', '2014-07-01', 8073.54, NULL, 8073.54, 0.00, 8073.54, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.687206+00', 3849600.00, 0.00, 3849600.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (381, '2500228510', '0400020322', '2014-04-30', 'Programme Document Against PCA', 'XAF', 'VERSEMENT 1ÈRE TRANCHE PCA/ONG ALIMA/2014', '2014-04-30', '2014-07-30', 45645.86, NULL, 45645.86, 0.00, 46139.29, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.754252+00', 21764721.00, 0.00, 22000000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (687, '2500212828', '0400021661', '2014-06-17', 'Programme Document Against PCA', 'XAF', 'DECSIMT 1RE TRANCH PCA CELIAF-WASH/14/', '2014-06-17', '2014-09-17', 64163.08, NULL, 64163.08, 0.00, 44021.53, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:54.947316+00', 30972291.00, 0.00, 30972291.00, false, true, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (281, '2500228510', '0400021938', '2014-06-26', 'Programme Document Against PCA', 'XAF', '2ÈME VERSEMENT PCA ALIMA 2014', '2014-06-26', '2014-09-26', 30984.87, NULL, 30984.87, 0.00, 31926.56, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.005383+00', 14956768.00, 0.00, 15400000.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (85, '2500213954', '0400022192', '2014-07-07', 'Programme Document Against PCA', 'XAF', 'DECAISSEMENT PREMIERE TRANCHE PCA CARE', '2014-07-07', '2014-12-31', 88477.89, NULL, 88477.89, 0.00, 88477.89, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.070222+00', 42709340.00, 0.00, 42709340.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (362, '2500226920', '0400022278', '2014-07-10', 'Programme Document Against PCA', 'XAF', 'PCA NO 08/CHDA/2013 AVEC ACRA (ENFANTS BOUVIERS)', '2014-07-10', '2014-09-10', 183983.28, NULL, 183983.28, 0.00, 0.00, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.07987+00', 88810939.00, 0.00, 88810939.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (168, '2500214085', '0400022565', '2014-07-23', 'Programme Document Against PCA', 'XAF', 'REMBURSMT PREFINANCMT ACTIVITES TISSI/IAS', '2014-07-23', '2014-07-23', 45004.16, NULL, 45004.16, 0.00, 45004.16, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.090458+00', 21724046.00, 0.00, 21724046.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (139, '2500214084', '0400023761', '2014-09-09', 'Programme Document Against PCA', 'XAF', 'DECAISSMT 1ER TRANCH PCA Nº /OXFAM INTERMON/2014', '2014-09-09', '2014-12-30', 233633.93, NULL, 233633.93, 0.00, 233633.93, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.339746+00', 116374695.00, 0.00, 116374695.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (131, '2500214091', '0400025609', '2014-11-18', 'Programme Document Against PCA', 'XAF', 'FINANCEMENT 2EME TRANCHE PCA CSSI 1', '2014-11-18', '2014-12-31', 29989.00, NULL, 29989.00, 0.00, 85299.40, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:55.651473+00', 15794066.00, 0.00, 15794066.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (76, '2500219686', '0400031514', '2015-06-24', 'SSFA', 'XAF', 'FINANCEMENT APE CSJEFOD/VIH/EDUC PAIX DANS ETABLIS', '2015-07-15', '2015-09-30', 9863.87, NULL, 9863.87, 0.00, 9834.07, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.131003+00', 5921900.00, 0.00, 5921900.00, false, false, false); +INSERT INTO [[schema]].funds_fundsreservationheader VALUES (375, '2500232394', '0400032065', '2015-07-15', 'SSFA', 'XAF', 'FINANCEMENT APE UNION DES FEMMES POUR LA PAIX/COM', '2015-07-03', '2016-12-31', 17690.08, NULL, 17690.08, 0.00, 17690.08, '2018-03-15 16:10:06.407235+00', '2020-01-01 00:21:56.215848+00', 10499400.00, 0.00, 10499400.00, false, false, false); -- @@ -12292,7 +13039,7 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1450, '0400063590-1', INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1451, '0400063568-2', 2, '0810/A0/05/882/002/009', 'SM180201', 'SM', 62196.55, 34900166.00, '2018-10-01', 'ACTIVITES MOBILISATION COMMUNAUTAIRE AU NIVEAU', 957, '2018-10-05 00:01:45.506175+00', '2018-10-05 00:01:45.507372+00', 'European Commission / ECHO', 'I49912'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1452, '0400063568-1', 1, '0810/A0/05/882/002/009', 'SM180259', 'SM', 18629.00, 10453234.00, '2018-10-01', 'ACTIVITES MOBILISATION COMMUNAUTAIRE AU NIVEAU', 957, '2018-10-05 00:01:45.506359+00', '2018-10-05 00:01:45.507534+00', 'UNOCHA', 'U99901'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1361, '0400059095-1', 1, '0810/A0/05/884/004/005', 'SM180105', 'SM', 2570.90, 0.00, '2018-03-29', 'FR PCA AVEC SECADEV SNDE TRANCHE', 899, '2018-03-31 00:04:25.02551+00', '2018-10-05 00:01:45.580026+00', 'UNOCHA', 'U99901'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1453, '0400063875-1', 1, '0810/A0/05/881/002/012', 'NON-GRANT', 'GC', 109031.53, 61180535.00, '2018-10-11', '2E TRANCHE PAC MENTHOR INITIATIVE', 958, '2018-10-13 00:02:13.94467+00', '2018-10-13 00:02:13.945192+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1739, '0400073240-1', 1, '0810/A0/05/882/002/008', 'SM190128', 'SM', 4838.02, 2884767.00, '2019-12-24', '7% COUT SUPPORT INDIRECT DU PROGRAMME', 1086, '2019-12-26 01:46:35.864508+00', '2019-12-26 01:46:35.864508+00', 'USAID/Food for Peace', 'G45617'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (163, '0400057948-1', 1, '0810/A0/05/884/001/003', 'NON-GRANT', 'GC', 34033.33, 17845813.00, '2018-02-19', '1ERE T VULGARISAT@ APPRO ASSAINI PAR ATPC À MANDAL', 219, '2018-03-15 16:10:07.188292+00', '2018-10-14 00:01:56.355801+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (480, '0400055672-1', 1, '0810/A0/05/883/004/002', 'SC160332', 'SC', 0.00, 0.00, '2017-11-17', '1ERE TRANCHE SSFA AVEC CSJEFOD', 864, '2018-03-15 16:10:07.188292+00', '2018-10-14 00:01:56.397035+00', 'Chad', 'G08101'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1455, '0400064106-1', 1, '0810/A0/05/882/002/009', 'SM180301', 'SM', 17417.32, 9887500.00, '2018-10-22', '4E T SUP FORM,ELAB DES REQUETES, REUNION DE COORD', 959, '2018-10-24 00:02:03.874871+00', '2018-10-24 00:02:03.875627+00', 'The United Kingdom', 'G45301'); @@ -12381,23 +13128,23 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1507, '0400065408-2', INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1508, '0400065408-5', 5, '0810/A0/05/885/001/001', 'SC170715', 'SC', 2268.80, 1308110.00, '2018-12-10', 'FR PCA CVDT (EDUCATION/COMMUNICATION)', 981, '2018-12-12 00:02:08.719156+00', '2018-12-12 00:02:08.724407+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1509, '0400065408-10', 10, '0810/A0/05/885/003/006', 'SC170715', 'SC', 4314.14, 2487380.00, '2018-12-10', 'FR PCA CVDT (EDUCATION/COMMUNICATION)', 981, '2018-12-12 00:02:08.719333+00', '2018-12-12 00:02:08.724611+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1510, '0400065408-1', 1, '0810/A0/05/887/001/002', 'SC170715', 'SC', 27707.24, 15975000.00, '2018-12-10', 'FR PCA CVDT (EDUCATION/COMMUNICATION)', 981, '2018-12-12 00:02:08.719624+00', '2018-12-12 00:02:08.724761+00', 'Germany', 'G52501'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1511, '0400065408-3', 3, '0810/A0/05/885/001/001', 'SC170715', 'SC', 2358.80, 1360000.00, '2018-12-10', 'FR PCA CVDT (EDUCATION/COMMUNICATION)', 981, '2018-12-12 00:02:08.719812+00', '2018-12-12 00:02:08.724993+00', 'Germany', 'G52501'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1512, '0400065408-8', 8, '0810/A0/05/880/004/005', 'SC170715', 'SC', 11274.33, 6500370.00, '2018-12-10', 'FR PCA CVDT (EDUCATION/COMMUNICATION)', 981, '2018-12-12 00:02:08.72015+00', '2018-12-12 00:02:08.725131+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1740, '0400073255-1', 1, '0810/A0/05/882/002/012', 'SC160629', 'SC', 7016.00, 4183432.00, '2019-12-26', 'REMBTRANCHE DE NOVEMBRE -DECEMBRE 2019 - WVISION', 1087, '2019-12-28 00:20:53.174661+00', '2019-12-28 00:20:53.174661+00', 'WFP - Italy', 'U99930'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1513, '0400065408-7', 7, '0810/A0/05/887/001/002', 'SC170715', 'SC', 13710.53, 7905000.00, '2018-12-10', 'FR PCA CVDT (EDUCATION/COMMUNICATION)', 981, '2018-12-12 00:02:08.720328+00', '2018-12-12 00:02:08.725259+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1514, '0400065408-4', 4, '0810/A0/05/885/002/004', 'SC170715', 'SC', 24973.62, 14398890.00, '2018-12-10', 'FR PCA CVDT (EDUCATION/COMMUNICATION)', 981, '2018-12-12 00:02:08.720626+00', '2018-12-12 00:02:08.725384+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1515, '0400065408-6', 6, '0810/A0/05/885/003/006', 'SC170715', 'SC', 5607.91, 3233320.00, '2018-12-10', 'FR PCA CVDT (EDUCATION/COMMUNICATION)', 981, '2018-12-12 00:02:08.720819+00', '2018-12-12 00:02:08.725677+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1516, '0400065603-1', 1, '0810/A0/05/882/002/009', 'SM180201', 'SM', 47181.23, 27203000.00, '2018-12-13', 'ACTIVITES MOBILISATION SOCIALE AU NIVEAU COMMUNAUT', 982, '2018-12-15 00:02:14.213361+00', '2018-12-15 00:02:14.214178+00', 'European Commission / ECHO', 'I49912'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1517, '0400065910-2', 2, '0810/A0/05/880/004/005', 'NON-GRANT', 'GC', 16822.31, 9660933.00, '2019-01-03', '3E TRANCHE 19/PCA/2018/COMMUNICATION/ANNASSOUR', 983, '2019-01-05 00:01:56.894258+00', '2019-01-05 00:01:56.897268+00', 'N/A', 'N/A'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1531, '0400066565-1', 1, '0810/A0/05/884/002/001', 'NON-GRANT', 'GC', 8216.95, 4721000.00, '2019-02-13', 'FR 4ÈME TRANCHE PCA ESMS', 990, '2019-02-15 00:11:32.788234+00', '2019-02-15 00:11:32.788709+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1725, '0400073074-1', 1, '0810/A0/05/887/001/001', 'NON-GRANT', 'GC', 24854.51, 14820000.00, '2019-12-16', 'PROMOTION ENGAGEMENT COMMUNAUTAIRE DES JEUNES', 1079, '2019-12-17 00:44:04.252997+00', '2019-12-17 00:44:04.252997+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1519, '0400065910-1', 1, '0810/A0/05/880/004/005', 'NON-GRANT', 'GC', 6769.95, 3887933.00, '2019-01-03', '2E TRANCHE 19/PCA/2018/COMMUNICATION/ANNASSOUR', 983, '2019-01-05 00:01:56.894576+00', '2019-01-05 00:01:56.897722+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1532, '0400066639-1', 1, '0810/A0/05/885/002/002', 'NON-GRANT', 'GC', 25645.99, 14734750.00, '2019-02-18', 'FR GLOBAL DU SSFA EDUCATION LABEL 109', 991, '2019-02-20 00:02:19.511579+00', '2019-02-20 00:02:19.512216+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1533, '0400066633-1', 1, '0810/A0/05/884/002/001', 'NON-GRANT', 'GC', 8216.95, 4721000.00, '2019-02-18', 'FR 4ÈME TRANCHE PCA ESMS', 992, '2019-02-20 00:02:19.511724+00', '2019-02-20 00:02:19.512425+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1650, '0400069899-3', 3, '0810/A0/05/882/003/005', 'SM190128', 'SM', 5425.80, 3132000.00, '2019-07-24', 'FORMATION ET APPUI AUX PRESTATAIRES ET INTERVENANT', 1042, '2019-07-26 00:10:45.996894+00', '2019-07-26 00:10:46.000582+00', 'USAID/Food for Peace', 'G45617'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1523, '0400065909-1', 1, '0810/A0/05/887/001/002', 'NON-GRANT', 'GC', 8434.72, 4844000.00, '2019-01-03', '1ERE TRANCHE 21/PCA/2018/COMMUNICATION/AGT', 984, '2019-01-05 00:01:56.89533+00', '2019-01-05 00:01:56.898812+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1720, '0400073041-1', 1, '0810/A0/05/884/001/003', 'SC181084', 'SC', 32764.22, 19536321.00, '2019-12-13', '1ERE TRANCHE 24/PCA/2019/WASH/ESMS', 1078, '2019-12-15 00:07:18.304377+00', '2019-12-15 00:07:18.304377+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1524, '0400065909-2', 2, '0810/A0/05/887/002/001', 'NON-GRANT', 'GC', 11469.75, 6587000.00, '2019-01-03', '1ERE TRANCHE 21/PCA/2018/COMMUNICATION/AGT', 984, '2019-01-05 00:01:56.895463+00', '2019-01-05 00:01:56.898947+00', 'N/A', 'N/A'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1525, '0400065931-2', 2, '0810/A0/05/880/004/005', 'NON-GRANT', 'GC', 12298.60, 7063000.00, '2019-01-07', '3E TRANCHE 20/PCA/2018/COMMUNICATION/UAFAT', 985, '2019-01-09 00:02:01.923468+00', '2019-01-09 00:02:01.924424+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1526, '0400065931-1', 1, '0810/A0/05/880/004/005', 'NON-GRANT', 'GC', 13111.77, 7530000.00, '2019-01-07', '2E TRANCHE 20/PCA/2018/COMMUNICATION/UAFAT', 985, '2019-01-09 00:02:01.923707+00', '2019-01-09 00:02:01.924642+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1529, '0400066422-1', 1, '0810/A0/05/884/002/001', 'NON-GRANT', 'GC', 26783.65, 15388386.00, '2019-02-05', 'COUT DE SUPPORT INDIRECT 7 %', 988, '2019-02-07 00:02:03.341345+00', '2019-02-07 00:02:03.341717+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1525, '0400065931-2', 2, '0810/A0/05/880/004/005', 'NON-GRANT', 'GC', 11513.72, 6595000.00, '2019-01-07', '3E TRANCHE 20/PCA/2018/COMMUNICATION/UAFAT', 985, '2019-01-09 00:02:01.923468+00', '2019-12-13 00:39:44.177761+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1512, '0400065408-8', 8, '0810/A0/05/880/004/005', 'SC170715', 'SC', 9525.96, 5457870.00, '2018-12-10', 'FR PCA CVDT (EDUCATION/COMMUNICATION)', 981, '2018-12-12 00:02:08.72015+00', '2019-12-25 00:21:21.783178+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1173, '0400021609-2', 2, '0810/A0/04/806/004/003', 'SC100588', 'SC', 5675.26, 2737500.00, '2014-09-23', 'REMBOURSEMENT DES FONDS PREFINANCE PAR LA CRT LAC', 277, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:59.203507+00', 'Bill & Melinda Gates Foundation', 'N45682'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1185, '0400045436-2', 2, '0810/A0/04/881/005/002', 'SM120268', 'SM', 1243.07, 750000.00, '2016-11-17', 'FINANCEMENT 2EME TRANCHE PCA CELIAF BOL', 597, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:59.441574+00', 'Australia', 'G02701'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1125, '0400019178-2', 2, '0810/A0/04/802/002/003', 'SC130377', 'SC', 271.16, 130000.00, '2014-03-13', 'APPUI MEDICAL, JURIDIQUE, SCOLAIRE/OEV', 32, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:03.68468+00', 'FOSAP', 'N08102'); @@ -12419,8 +13166,8 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1375, '0400059557-4', INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1528, '0400066060-1', 1, '0810/A0/05/883/002/002', 'SC160332', 'SC', 24048.64, 13743580.00, '2019-01-16', 'COUT DE SUPPORT DE PROGRAMME', 987, '2019-01-18 00:02:01.141932+00', '2019-01-18 00:02:01.142713+00', 'Chad', 'G08101'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1530, '0400066433-1', 1, '0810/A0/05/884/004/002', 'NON-GRANT', 'GC', 115.13, 66150.00, '2019-02-06', 'FR REMBOURSMENT 7% COUTS ADMINISTRATIFS ALIMA', 989, '2019-02-07 15:42:14.308612+00', '2019-02-07 15:42:14.309197+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1449, '0400063589-1', 1, '0810/A0/05/883/002/003', 'SC160332', 'SC', 674.70, 1.00, '2018-10-02', '0810/662 - 883 CSD HIV 2018', 955, '2018-10-05 00:01:45.505787+00', '2019-02-09 00:03:02.034552+00', 'Chad', 'G08101'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1518, '0400065909-5', 5, '0810/A0/05/887/001/001', 'NON-GRANT', 'GC', 5354.41, 3075000.00, '2019-01-03', '3E TRANCHE 21/PCA/2018/COMMUNICATION/AGT', 984, '2019-01-05 00:01:56.894438+00', '2019-02-13 00:03:57.309748+00', 'N/A', 'N/A'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1520, '0400065909-6', 6, '0810/A0/05/887/001/002', 'NON-GRANT', 'GC', 11884.18, 6825000.00, '2019-01-03', '3E TRANCHE 21/PCA/2018/COMMUNICATION/AGT', 984, '2019-01-05 00:01:56.894781+00', '2019-02-13 00:03:57.375829+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1719, '0400073002-7', 7, '0810/A0/05/884/002/002', 'SC180742', 'SC', 3980.39, 2373385.00, '2019-12-12', '1ERE TRANCHE 26/PCA/2019/EDUCATION/CELIAF', 1075, '2019-12-14 00:03:39.289207+00', '2019-12-14 00:03:39.289207+00', 'Republic of Korea', 'G56701'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1721, '0400073041-2', 2, '0810/A0/05/884/002/002', 'SC181084', 'SC', 2683.23, 1599931.00, '2019-12-13', '1ERE TRANCHE 24/PCA/2019/WASH/ESMS', 1078, '2019-12-15 00:07:18.304576+00', '2019-12-15 00:07:18.304576+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1534, '0400066809-2', 2, '0810/A0/05/880/004/005', 'NON-GRANT', 'GC', 27799.44, 15972000.00, '2019-02-27', 'FR 3EME TRANCHE PCA AVEC CELIAF', 993, '2019-03-02 00:15:29.512987+00', '2019-03-02 00:15:29.513589+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1535, '0400066809-1', 1, '0810/A0/05/880/004/005', 'NON-GRANT', 'GC', 19370.14, 11129000.00, '2019-02-27', 'FR SECONDE TRANCHE PCA AVEC CELIAF', 993, '2019-03-02 00:15:29.513123+00', '2019-03-02 00:15:29.513712+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1536, '0400066882-1', 1, '0810/A0/05/884/002/001', 'NON-GRANT', 'GC', 65932.90, 38021196.00, '2019-03-01', 'FR 3EME TRANCHE PCA AVEC ADRA', 994, '2019-03-03 00:17:00.959957+00', '2019-03-03 00:17:00.960371+00', 'N/A', 'N/A'); @@ -12553,7 +13300,7 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1616, '0400068450-4', INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1617, '0400068450-1', 1, '0810/A0/05/884/001/003', 'SC189906', 'SC', 26940.57, 15846364.00, '2019-05-16', 'FINANCEMENT 1ERE TRANCHE PCA APDI', 1027, '2019-05-18 00:04:15.285446+00', '2019-05-18 00:04:15.286266+00', 'Global - Water Sanitation & Hygiene', 'T49952'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1618, '0400068450-3', 3, '0810/A0/05/884/001/003', 'SC189906', 'SC', 31936.15, 18784750.00, '2019-05-16', 'FINANCEMENT 1ERE TRANCHE PCA APDI', 1027, '2019-05-18 00:04:15.285562+00', '2019-05-18 00:04:15.286372+00', 'Global - Water Sanitation & Hygiene', 'T49952'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1619, '0400068450-2', 2, '0810/A0/05/884/001/003', 'SC189906', 'SC', 11746.06, 6909000.00, '2019-05-16', 'FINANCEMENT 1ERE TRANCHE PCA APDI', 1027, '2019-05-18 00:04:15.285669+00', '2019-05-18 00:04:15.286508+00', 'Global - Water Sanitation & Hygiene', 'T49952'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1620, '0400068467-5', 5, '0810/A0/05/884/002/003', 'SC189906', 'SC', 4129.07, 2428708.00, '2019-05-17', 'FINANCEMENT 4EME TRANCHE', 1029, '2019-05-19 00:05:24.104861+00', '2019-05-19 00:05:24.105921+00', 'Global - Water Sanitation & Hygiene', 'T49952'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1741, '0400073377-1', 1, '0810/A0/05/887/001/006', 'NON-GRANT', 'GC', 26317.76, 15462000.00, '2020-01-14', 'FORM DE 100 JRC EN TECH DE PRODUCTION RADIOPHONIQ', 1088, '2020-01-16 00:04:37.881567+00', '2020-01-16 00:04:37.881567+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1621, '0400068467-2', 2, '0810/A0/05/884/001/001', 'SC189906', 'SC', 23408.87, 13769028.00, '2019-05-17', 'COMPLEMENT FINANCEMENT 2EME TRANCHE', 1029, '2019-05-19 00:05:24.105024+00', '2019-05-19 00:05:24.10606+00', 'Global - Water Sanitation & Hygiene', 'T49952'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1622, '0400068467-3', 3, '0810/A0/05/884/002/003', 'SM180557', 'SM', 35553.54, 20912488.00, '2019-05-17', 'FINANCEMENT 3EME TRANCHE', 1029, '2019-05-19 00:05:24.105124+00', '2019-05-19 00:05:24.106151+00', 'The United Kingdom', 'G45301'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1623, '0400068467-1', 1, '0810/A0/05/884/004/004', 'SM180557', 'SM', 36156.04, 21266874.00, '2019-05-17', 'FINANCEMENT 2EME TRANCHE', 1029, '2019-05-19 00:05:24.105213+00', '2019-05-19 00:05:24.106238+00', 'The United Kingdom', 'G45301'); @@ -12589,9 +13336,9 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1635, '0400068974-2', INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1636, '0400068977-2', 2, '0810/A0/05/885/002/001', 'SC170198', 'SC', 46155.89, 27219514.00, '2019-06-11', 'COUT SUPPORT INDIRECT DE PROGRAMME', 1036, '2019-06-13 00:04:47.609055+00', '2019-06-13 00:04:47.609969+00', 'Canada', 'G07201'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1637, '0400069044-1', 1, '0810/A0/05/884/001/003', 'SC189906', 'SC', 23754.68, 14008850.00, '2019-06-13', 'MISE EN OEUVRE DE L''ATPC ET ATPE', 1037, '2019-06-15 00:06:06.006385+00', '2019-06-15 00:06:06.006914+00', 'Global - Water Sanitation & Hygiene', 'T49952'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1638, '0400069370-1', 1, '0810/A0/05/885/001/001', 'SC170198', 'SC', 49997.12, 29484800.00, '2019-06-28', 'ORGANISATION MISE EN OEUVRE ACTIVITE PALIDOYER COM', 1039, '2019-07-01 00:22:32.622555+00', '2019-07-01 00:22:32.623219+00', 'Canada', 'G07201'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1639, '0400069369-1', 1, '0810/A0/05/884/002/002', 'SM180557', 'SM', 87692.56, 51714931.00, '2019-06-28', 'PAIEMENT 1ERE TRANCHE PCA WASH- ACF', 1038, '2019-07-01 00:22:32.622766+00', '2019-07-01 00:22:32.623378+00', 'The United Kingdom', 'G45301'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1700, '0400072361-1', 1, '0810/A0/05/884/001/003', 'SC189906', 'SC', 13962.94, 8244000.00, '2019-11-21', 'FINANCEMENT SECONTRE TRANCHE PCA AVEC CR MOYEN CHA', 1066, '2019-11-23 00:04:56.240075+00', '2019-11-23 00:04:56.240075+00', 'Global - Water Sanitation & Hygiene', 'T49952'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1640, '0400067214-2', 2, '0810/A0/05/882/002/009', 'NON-GRANT', 'GC', 117980.11, 68035000.00, '2019-07-02', '2E TRAN PCA N 04/2019/NUT/ASRADD PREVENSION MALNUT', 1007, '2019-07-05 15:00:06.791907+00', '2019-07-05 15:00:06.792841+00', 'N/A', 'N/A'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1641, '0400069407-2', 2, '0810/A0/05/884/001/003', 'SC189906', 'SC', 30585.09, 17655000.00, '2019-07-01', 'FINANCEMENT 2EME TRANCHE', 1040, '2019-07-05 15:00:06.792045+00', '2019-07-05 15:00:06.792994+00', 'Global - Water Sanitation & Hygiene', 'T49952'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1732, '0400073177-1', 1, '0810/A0/05/882/002/012', 'SC160629', 'SC', 63080.00, 37612711.00, '2019-12-19', 'TRANCHE DE NOVEMBRE -DECEMBRE 2019 - WVISION', 1084, '2019-12-21 00:13:16.990842+00', '2019-12-21 00:13:16.990842+00', 'WFP - Italy', 'U99930'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1642, '0400069407-3', 3, '0810/A0/05/884/001/003', 'SC189906', 'SC', 22255.83, 12847000.00, '2019-07-01', 'FINANCEMENT 3EME TRANCHE', 1040, '2019-07-05 15:00:06.792198+00', '2019-07-05 15:00:06.79308+00', 'Global - Water Sanitation & Hygiene', 'T49952'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1643, '0400069407-1', 1, '0810/A0/05/884/001/003', 'SC189906', 'SC', 14444.55, 8338000.00, '2019-07-01', 'FINANCEMENT 1ERE TRANCHE', 1040, '2019-07-05 15:00:06.792305+00', '2019-07-05 15:00:06.793198+00', 'Global - Water Sanitation & Hygiene', 'T49952'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1644, '0400069407-4', 4, '0810/A0/05/884/001/003', 'SC189906', 'SC', 24374.53, 14070000.00, '2019-07-01', 'FINANCEMENT 4EME TRANCHE', 1040, '2019-07-05 15:00:06.792392+00', '2019-07-05 15:00:06.793281+00', 'Global - Water Sanitation & Hygiene', 'T49952'); @@ -12602,12 +13349,13 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1648, '0400069588-4', INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1662, '0400070590-1', 1, '0810/A0/05/881/002/009', 'SC190053', 'SC', 3070.35, 1800000.00, '2019-08-29', 'REMBOURSEMENT PERDIEM PERSONNES RESSOURCES C4D', 1049, '2019-08-31 00:26:50.037473+00', '2019-08-31 00:26:50.037914+00', 'United States Fund for UNICEF', 'C45601'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1663, '0400070746-1', 1, '0810/A0/05/884/002/001', 'NON-GRANT', 'GC', 18578.24, 11012585.00, '2019-09-06', '7% COUTS SUPPORT INDIRECT DE PROGRAMME', 1050, '2019-09-08 00:04:42.72602+00', '2019-09-08 00:04:42.72602+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1651, '0400069899-2', 2, '0810/A0/05/882/002/009', 'SM190128', 'SM', 665.23, 383996.00, '2019-07-24', 'ASSISTANCE TECHNIQUE AUX STRUCTURES', 1042, '2019-07-26 00:10:45.99728+00', '2019-07-26 00:10:46.000748+00', 'USAID/Food for Peace', 'G45617'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1742, '0400073412-1', 1, '0810/A0/05/883/004/002', 'SC190605', 'SC', 5711.37, 3355500.00, '2020-01-15', 'PAIEMENT TRANCHE PCA AVEC RNTAP', 1089, '2020-01-17 00:06:26.617245+00', '2020-01-17 00:06:26.617245+00', 'Chad', 'G08101'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1745, '0400073556-1', 1, '0810/A0/05/887/001/001', 'NON-GRANT', 'GC', 16850.72, 9900000.00, '2020-01-23', 'FINANCEMENT TRANCHE 3 PCA AVEC AGT', 1092, '2020-01-25 00:41:59.660582+00', '2020-01-25 00:41:59.660582+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1656, '0400070223-2', 2, '0810/A0/05/884/004/004', 'SM190180', 'SM', 68126.53, 40104179.00, '2019-08-07', 'PCA:15/2019 1ERE ET 2EME TRANCHE AFDI', 1046, '2019-08-09 00:05:26.985484+00', '2019-08-09 00:05:26.986379+00', 'UNOCHA', 'U99901'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1657, '0400070239-1', 1, '0810/A0/05/885/001/001', 'SC170198', 'SC', 2203.76, 1297294.00, '2019-08-08', 'REMBOURSMENT 7% ONG RET', 1047, '2019-08-10 00:05:11.142103+00', '2019-08-10 00:05:11.143073+00', 'Canada', 'G07201'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1658, '0400070239-2', 2, '0810/A0/05/885/002/001', 'SC170198', 'SC', 16758.96, 9865533.00, '2019-08-08', 'REMBOURSMENT 7% ONG RET', 1047, '2019-08-10 00:05:11.142332+00', '2019-08-10 00:05:11.143316+00', 'Canada', 'G07201'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1655, '0400070223-1', 1, '0810/A0/05/884/004/004', 'SM190180', 'SM', 70768.31, 41659321.00, '2019-08-07', 'PCA:15/2019 1ERE TRANCHE AFDI', 1046, '2019-08-09 00:05:26.985209+00', '2019-08-10 00:05:11.171213+00', 'UNOCHA', 'U99901'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1659, '0400070026-2', 2, '0810/A0/05/881/002/012', 'NON-GRANT', 'GC', 0.00, 0.00, '2019-08-15', 'FINANCEMENT 3ÈME TRANCHE PCA AVEC MENTHOR', 1045, '2019-08-17 00:12:08.796746+00', '2019-08-17 00:12:08.797442+00', 'N/A', 'N/A'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1654, '0400070026-1', 1, '0810/A0/05/881/002/012', 'NON-GRANT', 'GC', 79847.46, 46105068.00, '2019-07-30', 'FINANCEMENT 3ÈME TRANCHE PCA AVEC MENTHOR', 1045, '2019-08-01 00:05:50.33442+00', '2019-08-17 00:12:08.833614+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (124, '0400020060-2', 2, '0810/A0/04/802/001/002', 'NON-GRANT', 'GC', 1389.42, 662500.00, '2014-09-15', 'ATELIER DE FORMATION', 140, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:59.768071+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (79, '0400056995-2', 2, '0810/A0/05/885/001/002', 'SM170151', 'SM', 47187.13, 26118263.00, '2017-12-27', 'RENF CAP DES COMMU ET DES ORGANES GESTION SCOLAIRE', 136, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:00.019683+00', 'USA USAID', 'G45602'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (233, '0400000376-2', 2, '0810/A0/04/803/002/005', 'SM110356', 'SM', 31390.88, 31390.88, '2012-02-20', 'FONDS POUR ACTIVITES WASH CHOLERA', 240, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:04.168208+00', 'UNOCHA', 'U99901'); @@ -12624,23 +13372,23 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (76, '0400056995-5', 5, INSERT INTO [[schema]].funds_fundsreservationitem VALUES (232, '0400019415-6', 6, '0810/A0/04/802/002/001', 'SC130377', 'SC', 533.37, 255718.00, '2014-03-21', 'REALISER 19 JOURNÉE D''INFORMATION/RESP RELIGIEUX', 170, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:08.543341+00', 'FOSAP', 'N08102'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (253, '0400019117-7', 7, '0810/A0/04/802/002/001', 'SC130377', 'SC', 292.02, 140000.00, '2014-03-11', 'ORGANISER ACTIVITES CREATIVES COMMUNAUTAIRES OEV', 529, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:08.776613+00', 'FOSAP', 'N08102'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (197, '0400023942-22', 22, '0810/A0/04/802/002/006', 'SC130377', 'SC', 903.42, 450000.00, '2014-09-16', 'COMMUNICATION STRATEGIQUE DU PROGRAMME', 673, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:12.568577+00', 'FOSAP', 'N08102'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1660, '0400070479-2', 2, '0810/A0/05/883/004/003', 'NON-GRANT', 'GC', 5723.65, 3355500.00, '2019-08-23', 'PAIEMENT TRANCHE PCA AVEC RNTAP', 1048, '2019-08-25 00:14:10.553663+00', '2019-08-25 00:14:10.55422+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1652, '0400069939-1', 1, '0810/A0/05/886/004/005', 'NON-GRANT', 'GC', 9903.99, 5717000.00, '2019-07-25', 'RENFORCEMENT DU SYSTEME DE PROTECTION EN FAVEUR', 1043, '2019-07-27 00:06:06.899238+00', '2019-07-27 00:06:06.899762+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1661, '0400070479-1', 1, '0810/A0/05/883/002/002', 'NON-GRANT', 'GC', 30111.20, 17652750.00, '2019-08-23', 'PAIEMENT TRANCHE PCA AVEC RNTAP', 1048, '2019-08-25 00:14:10.553774+00', '2019-08-25 00:14:10.554342+00', 'N/A', 'N/A'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1522, '0400065909-3', 3, '0810/A0/05/887/001/002', 'NON-GRANT', 'GC', 7821.16, 4500000.00, '2019-01-03', '2E TRANCHE 21/PCA/2018/COMMUNICATION/AGT', 984, '2019-01-05 00:01:56.895176+00', '2019-08-29 00:27:59.981871+00', 'N/A', 'N/A'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1521, '0400065909-4', 4, '0810/A0/05/887/001/002', 'NON-GRANT', 'GC', 10434.50, 6000000.00, '2019-01-03', '2E TRANCHE 21/PCA/2018/COMMUNICATION/AGT', 984, '2019-01-05 00:01:56.894936+00', '2019-08-29 00:27:59.999302+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1521, '0400065909-4', 4, '0810/A0/05/887/001/002', 'NON-GRANT', 'GC', 9698.26, 5561000.00, '2019-01-03', '2E TRANCHE 21/PCA/2018/COMMUNICATION/AGT', 984, '2019-01-05 00:01:56.894936+00', '2019-12-13 00:39:44.246702+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1722, '0400073041-3', 3, '0810/A0/05/884/003/002', 'SC181084', 'SC', 32621.28, 19451091.00, '2019-12-13', '1ERE TRANCHE 24/PCA/2019/WASH/ESMS', 1078, '2019-12-15 00:07:18.304743+00', '2019-12-15 00:07:18.304743+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1653, '0400069988-1', 1, '0810/A0/05/884/004/002', 'NON-GRANT', 'GC', 2676.39, 1545992.00, '2019-07-29', 'REMBBOURSMENT 7% ONG ALIMA', 1044, '2019-07-31 00:05:24.529915+00', '2019-08-31 00:26:50.077901+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1664, '0400070857-3', 3, '0810/A0/05/885/002/001', 'SC170198', 'SC', 9204.25, 5455987.00, '2019-09-12', '7 % COUT SUPPORT INDIRECT DE PROGRAMME', 1051, '2019-09-14 00:04:27.03357+00', '2019-09-14 00:04:27.03357+00', 'Canada', 'G07201'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1665, '0400070857-1', 1, '0810/A0/05/885/001/002', 'SC170198', 'SC', 921.30, 546118.00, '2019-09-12', '7 % COUT SUPPORT INDIRECT DE PROGRAMME', 1051, '2019-09-14 00:04:27.033802+00', '2019-09-14 00:04:27.033802+00', 'Canada', 'G07201'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1666, '0400070857-4', 4, '0810/A0/05/885/002/003', 'SC170198', 'SC', 570.66, 338270.00, '2019-09-12', '7 % COUT SUPPORT INDIRECT DE PROGRAMME', 1051, '2019-09-14 00:04:27.034056+00', '2019-09-14 00:04:27.034056+00', 'Canada', 'G07201'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1667, '0400070857-2', 2, '0810/A0/05/885/001/004', 'SC170198', 'SC', 1529.65, 906728.00, '2019-09-12', '7 % COUT SUPPORT INDIRECT DE PROGRAMME', 1051, '2019-09-14 00:04:27.034238+00', '2019-09-14 00:04:27.034238+00', 'Canada', 'G07201'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1660, '0400070479-2', 2, '0810/A0/05/883/004/003', 'NON-GRANT', 'GC', 0.00, 0.00, '2019-08-23', 'PAIEMENT TRANCHE PCA AVEC RNTAP', 1048, '2019-08-25 00:14:10.553663+00', '2020-01-24 00:24:56.166564+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1671, '0400071179-1', 1, '0810/A0/05/882/004/002', 'SM180336', 'SM', 38121.45, 22753435.00, '2019-09-26', 'RENF PREV PATHOL COURANTES & PRISE EN CHARG MALNU', 1053, '2019-10-01 14:41:45.80611+00', '2019-10-01 14:41:45.80611+00', 'USA (USAID) OFDA', 'G45605'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1672, '0400071179-2', 2, '0810/A0/05/882/002/008', 'SM190180', 'SM', 30924.01, 18457522.00, '2019-09-26', 'RENF PREV PATHOL COURANTES & PRISE EN CHARG MALNU', 1053, '2019-10-01 14:41:45.806238+00', '2019-10-01 14:41:45.806238+00', 'UNOCHA', 'U99901'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1673, '0400071189-1', 1, '0810/A0/05/887/001/002', 'NON-GRANT', 'GC', 30358.52, 18120000.00, '2019-09-27', 'ATELIER ELAB DES PLANS ACT DES RADIOS COMMU', 1055, '2019-10-01 14:41:45.806328+00', '2019-10-01 14:41:45.806328+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1674, '0400071199-1', 1, '0810/A0/05/881/002/002', 'NON-GRANT', 'GC', 51332.31, 30638563.00, '2019-09-28', 'REMBOURSEMENT FONDS ENGAGÉS IRC', 1054, '2019-10-01 14:41:45.806412+00', '2019-10-01 14:41:45.806412+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1668, '0400071091-1', 1, '0810/A0/05/880/004/005', 'NON-GRANT', 'GC', 19862.65, 11855360.00, '2019-09-23', 'PCA 18/PCA/2019/WASH/ASD', 1052, '2019-09-25 00:10:29.922983+00', '2019-10-01 14:41:45.842518+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1669, '0400071091-2', 2, '0810/A0/05/880/004/007', 'NON-GRANT', 'GC', 49656.62, 29638400.00, '2019-09-23', 'PCA 18/PCA/2019/WASH/ASD', 1052, '2019-09-25 00:10:29.923125+00', '2019-10-01 14:41:45.856514+00', 'N/A', 'N/A'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1670, '0400071091-3', 3, '0810/A0/05/884/001/003', 'NON-GRANT', 'GC', 27390.35, 16348400.00, '2019-09-23', 'PCA 18/PCA/2019/WASH/ASD', 1052, '2019-09-25 00:10:29.923217+00', '2019-10-01 14:41:45.867817+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1522, '0400065909-3', 3, '0810/A0/05/887/001/002', 'NON-GRANT', 'GC', 7441.80, 4273800.00, '2019-01-03', '2E TRANCHE 21/PCA/2018/COMMUNICATION/AGT', 984, '2019-01-05 00:01:56.895176+00', '2019-12-13 00:39:44.22791+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1403, '0400061516-3', 3, '0810/A0/05/884/002/001', 'SC180404', 'SC', 69258.47, 39379329.00, '2018-07-04', '3E TRANCHE 12/PCA/2018/WASH/SIF', 928, '2018-07-06 00:02:39.642175+00', '2019-10-01 14:41:45.879661+00', 'Chad', 'G08101'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1676, '0400071342-1', 1, '0810/A0/05/885/001/001', 'SC170198', 'SC', 267.17, 160192.00, '2019-10-07', 'ORG ET MISE EN OEUVRE ACT PLAIDOYER DE COMM ET MOB', 1056, '2019-10-09 00:11:10.479189+00', '2019-10-09 00:11:10.479189+00', 'Canada', 'G07201'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1677, '0400071342-2', 2, '0810/A0/05/885/001/002', 'SC170198', 'SC', 591.33, 354556.00, '2019-10-07', 'RENF CAP COMM POUR PROMOUVOIR L''EDUC DES ENFANTS', 1056, '2019-10-09 00:11:10.479288+00', '2019-10-09 00:11:10.479288+00', 'Canada', 'G07201'); @@ -12649,7 +13397,6 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1679, '0400071342-3', INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1680, '0400071342-7', 7, '0810/A0/05/885/004/005', 'SC170198', 'SC', 17.40, 10435.00, '2019-10-07', 'ACQUISITION ET DISTRIBUTION DES MANUELS SCOLAIRES', 1056, '2019-10-09 00:11:10.479545+00', '2019-10-09 00:11:10.479545+00', 'Canada', 'G07201'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1681, '0400071344-1', 1, '0810/A0/05/885/001/001', 'SC170198', 'SC', 9158.43, 5491348.00, '2019-10-07', '6E T ORG ET MISE EN OEUVRE ACT PLAIDOYER DE COMM', 1057, '2019-10-09 00:11:10.479615+00', '2019-10-09 00:11:10.479615+00', 'Canada', 'G07201'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1682, '0400071342-6', 6, '0810/A0/05/885/002/003', 'SC170198', 'SC', 402.13, 241114.00, '2019-10-07', 'FORMATION ET SUIVI PEDAGOG DES ENSEIGNANTS', 1056, '2019-10-09 00:11:10.479718+00', '2019-10-09 00:11:10.479718+00', 'Canada', 'G07201'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1683, '0400071422-2', 2, '0810/A0/05/880/004/005', 'NON-GRANT', 'GC', 10156.86, 6090000.00, '2019-10-10', '2E TRANCHE 13/SSFA/2019/COM/AFA', 1058, '2019-10-11 00:15:21.387171+00', '2019-10-11 00:15:21.387171+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (379, '0400019119-2', 2, '0810/A0/04/802/002/001', 'SC130377', 'SC', 208.58, 100000.00, '2014-04-30', 'ORGANISER DEPISTAGE MOBILE DANS 105 PAROISSES', 553, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:59.544813+00', 'FOSAP', 'N08102'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (386, '0400003279-2', 2, '0810/A0/04/803/001/003', 'SC110675', 'SC', 265200.00, 265200.00, '2013-12-31', 'FONDS POUR ACTIVITES WASH', 75, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:00.123821+00', 'Italian National Committee', 'C22201'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (370, '0400008481-2', 2, '0810/A0/04/805/001/006', 'NON-GRANT', 'GC', 0.00, 0.00, '2012-11-29', 'FR - DECAISSSEMENT DEUXIEME TRANCHE PCA JRS', 853, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:00.187482+00', 'N/A', 'N/A'); @@ -12681,6 +13428,21 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1694, '0400071898-2', INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1695, '0400071926-1', 1, '0810/A0/05/882/002/014', 'SC181084', 'SC', 29820.13, 17880000.00, '2019-10-31', 'PAIEMENT SECONDE TRANCHE PCA RESEAU JOURNALISTE TC', 1064, '2019-11-01 00:33:52.753502+00', '2019-11-01 00:33:52.753502+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1696, '0400068169-2', 2, '0810/A0/05/885/001/001', 'SC170198', 'SC', 3508.92, 2063936.00, '2019-11-06', '7% DU 5E TRANCHE DES COUTS SUPPORT INDIRECT', 1021, '2019-11-08 17:11:54.419999+00', '2019-11-08 17:11:54.419999+00', 'Canada', 'G07201'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1697, '0400066882-2', 2, '0810/A0/05/884/002/002', 'NON-GRANT', 'GC', 3724.87, 2148001.00, '2019-11-13', '7 % COUT DE SUPPORT INDIRECT', 994, '2019-11-14 00:06:36.394395+00', '2019-11-14 00:06:36.394395+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1767, '0400074171-1', 1, '0810/A0/05/881/002/012', 'NON-GRANT', 'GC', 136354.66, 81112479.00, '2020-02-25', 'REMBOURSEMENT PREFINANCEMENT ACTIVITES ICCM MENTHO', 1098, '2020-02-27 00:53:07.756735+00', '2020-02-27 00:53:07.756735+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1639, '0400069369-1', 1, '0810/A0/05/884/002/002', 'SM180557', 'SM', 87692.56, 51714931.00, '2019-06-28', '1ERE TRANCHE 07/PCA/2019/WASH/ACF', 1038, '2019-07-01 00:22:32.622766+00', '2019-11-22 00:03:26.605657+00', 'The United Kingdom', 'G45301'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1701, '0400072474-1', 1, '0810/A0/05/885/002/001', 'SC170198', 'SC', 18786.69, 11092039.00, '2019-11-26', 'REMBOURSEMENT COUTS INDIRECTS T4 ET T5 PCA JRS', 1069, '2019-11-28 00:08:37.57016+00', '2019-11-28 00:08:37.57016+00', 'Canada', 'G07201'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1702, '0400072478-1', 1, '0810/A0/05/884/001/003', 'SC189906', 'SC', 56771.62, 33519100.00, '2019-11-26', 'FR TRANCHE 1 PCA TERRE VERTE', 1068, '2019-11-28 00:08:37.570284+00', '2019-11-28 00:08:37.570284+00', 'Global - Water Sanitation & Hygiene', 'T49952'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1703, '0400072488-1', 1, '0810/A0/05/884/001/003', 'SC181084', 'SC', 14676.42, 8665253.00, '2019-11-26', '7 % COUT SUPPORTS INDIRECT 3E ET 4E TRANCHES', 1067, '2019-11-28 00:08:37.570373+00', '2019-11-28 00:08:37.570373+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1704, '0400072732-1', 1, '0810/A0/05/884/004/002', 'SM190227', 'SM', 38960.19, 23230795.00, '2019-12-04', 'PROJET DISTRIBUTION KITS WASH NUT COUPLES MERE-EN', 1070, '2019-12-06 00:10:38.671075+00', '2019-12-06 00:10:38.671075+00', 'European Commission / ECHO', 'I49912'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1705, '0400072879-1', 1, '0810/A0/05/884/001/003', 'SC189906', 'SC', 13981.92, 8337000.00, '2019-12-09', '2E TRA MISE OEUVRE ATPC 91 VILLAG ET ATPE 42 ECOLE', 1071, '2019-12-10 04:22:41.232615+00', '2019-12-10 04:22:41.232615+00', 'Global - Water Sanitation & Hygiene', 'T49952'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1706, '0400073002-1', 1, '0810/A0/05/885/001/001', 'SC180742', 'SC', 59578.00, 35524577.00, '2019-12-12', '1ERE TRANCHE 26/PCA/2019/EDUCATION/CELIAF', 1075, '2019-12-13 00:39:44.105911+00', '2019-12-13 00:39:44.105911+00', 'Republic of Korea', 'G56701'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1707, '0400072987-2', 2, '0810/A0/05/885/003/003', 'SC181084', 'SC', 5002.98, 2983125.00, '2019-12-11', 'TRANCHE 2 PCA CVDT (EDUCATION', 1072, '2019-12-13 00:39:44.106045+00', '2019-12-13 00:39:44.106045+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1708, '0400073002-4', 4, '0810/A0/05/880/004/003', 'SC180742', 'SC', 37482.89, 22349920.00, '2019-12-12', '1ERE TRANCHE 26/PCA/2019/EDUCATION/CELIAF', 1075, '2019-12-13 00:39:44.106132+00', '2019-12-13 00:39:44.106132+00', 'Republic of Korea', 'G56701'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1709, '0400073012-1', 1, '0810/A0/05/886/001/002', 'SC181202', 'SC', 13801.66, 8229515.00, '2019-12-12', '1ERE T MISE EN PLACE MECANISME COMM DROITS HUMAINS', 1073, '2019-12-13 00:39:44.106212+00', '2019-12-13 00:39:44.106212+00', 'UNDP - MDTF', 'U99967'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1710, '0400073002-2', 2, '0810/A0/05/884/001/004', 'SC180742', 'SC', 16922.89, 10090612.00, '2019-12-12', '1ERE TRANCHE 26/PCA/2019/EDUCATION/CELIAF', 1075, '2019-12-13 00:39:44.106291+00', '2019-12-13 00:39:44.106291+00', 'Republic of Korea', 'G56701'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1711, '0400073002-3', 3, '0810/A0/05/880/004/001', 'SC180742', 'SC', 12376.94, 7380000.00, '2019-12-12', '1ERE TRANCHE 26/PCA/2019/EDUCATION/CELIAF', 1075, '2019-12-13 00:39:44.10637+00', '2019-12-13 00:39:44.10637+00', 'Republic of Korea', 'G56701'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1712, '0400072969-1', 1, '0810/A0/05/885/004/002', 'SC170198', 'SC', 19279.64, 11495870.00, '2019-12-11', '7% DE 4E TRANCHE DES COUTS SUPPORT INDIRECT', 1074, '2019-12-13 00:39:44.106447+00', '2019-12-13 00:39:44.106447+00', 'Canada', 'G07201'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1698, '0400069369-2', 2, '0810/A0/05/884/002/002', 'SM180557', 'SM', 96846.59, 57113336.00, '2019-11-20', '2E TRANCHE 07/PCA/2019/WASH/ACF', 1038, '2019-11-22 00:03:26.547991+00', '2019-12-25 00:21:21.746247+00', 'The United Kingdom', 'G45301'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (564, '0400000582-2', 2, '0810/A0/04/805/002/007', 'NON-GRANT', 'GC', 413.00, 413.00, '2013-10-23', 'REGLEMENT DEPASSEMENT', 230, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:59.528655+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (622, '0400002665-2', 2, '0810/A0/04/805/001/005', 'NON-GRANT', 'GC', 3647.00, 3647.00, '2012-05-03', 'SMALL SCALE FUNDING AGREEMNT BECADEL', 185, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:59.955339+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (473, '0400019412-2', 2, '0810/A0/04/802/002/001', 'SC130377', 'SC', 312.87, 150000.00, '2014-03-21', 'ORGANISER DEPISTAGE MOBILE DANS 105 PAROISSES', 167, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:03.36467+00', 'FOSAP', 'N08102'); @@ -12697,6 +13459,34 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (478, '0400019412-7', 7 INSERT INTO [[schema]].funds_fundsreservationitem VALUES (505, '0400019156-11', 11, '0810/A0/04/802/002/003', 'SC130377', 'SC', 585.24, 280580.00, '2014-12-31', 'PRISE EN CHARGE NUTRITIONNEL', 221, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:09.624287+00', 'FOSAP', 'N08102'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (502, '0400019156-14', 14, '0810/A0/04/802/002/006', 'SC130377', 'SC', 507.64, 243380.00, '2014-12-31', 'MOTIVATION PERSONNEL/CDLS', 221, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:10.252349+00', 'FOSAP', 'N08102'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (556, '0400023942-14', 14, '0810/A0/04/802/002/006', 'SC130377', 'SC', 46.18, 23000.00, '2014-09-16', 'FOURNITURES DE BUREAU', 673, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:10.343291+00', 'FOSAP', 'N08102'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1713, '0400072987-1', 1, '0810/A0/05/885/002/004', 'SC181084', 'SC', 43492.18, 25933083.00, '2019-12-11', 'TRANCHE 1 PCA CVDT (EDUCATION', 1072, '2019-12-13 00:39:44.106565+00', '2019-12-13 00:39:44.106565+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1714, '0400073002-5', 5, '0810/A0/05/880/004/005', 'SC180742', 'SC', 31863.92, 18999497.00, '2019-12-12', '1ERE TRANCHE 26/PCA/2019/EDUCATION/CELIAF', 1075, '2019-12-13 00:39:44.106652+00', '2019-12-13 00:39:44.106652+00', 'Republic of Korea', 'G56701'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1715, '0400073004-1', 1, '0810/A0/05/885/001/001', 'SC170198', 'SC', 644.66, 384394.00, '2019-12-12', 'REMBOURSEMENT COUTS INDIRECTS T6 RET', 1076, '2019-12-13 00:39:44.106734+00', '2019-12-13 00:39:44.106734+00', 'Canada', 'G07201'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1716, '0400073012-2', 2, '0810/A0/05/886/001/003', 'SC181202', 'SC', 15209.60, 9069027.00, '2019-12-12', '1ERE T MISE EN PLACE MECANISME COMM DROITS HUMAINS', 1073, '2019-12-13 00:39:44.106813+00', '2019-12-13 00:39:44.106813+00', 'UNDP - MDTF', 'U99967'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1717, '0400073012-3', 3, '0810/A0/05/886/002/003', 'SC181202', 'SC', 78639.38, 46890303.00, '2019-12-12', '1ERE T MISE EN PLACE MECANISME COMM DROITS HUMAINS', 1073, '2019-12-13 00:39:44.106893+00', '2019-12-13 00:39:44.106893+00', 'UNDP - MDTF', 'U99967'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1718, '0400073002-6', 6, '0810/A0/05/881/001/003', 'SC180742', 'SC', 4501.73, 2684247.00, '2019-12-12', '1ERE TRANCHE 26/PCA/2019/EDUCATION/CELIAF', 1075, '2019-12-13 00:39:44.106969+00', '2019-12-13 00:39:44.106969+00', 'Republic of Korea', 'G56701'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1523, '0400065909-1', 1, '0810/A0/05/887/001/002', 'NON-GRANT', 'GC', 8360.93, 4800000.00, '2019-01-03', '1ERE TRANCHE 21/PCA/2018/COMMUNICATION/AGT', 984, '2019-01-05 00:01:56.89533+00', '2019-12-13 00:39:44.14784+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1683, '0400071422-2', 2, '0810/A0/05/880/004/005', 'NON-GRANT', 'GC', 0.00, 0.00, '2019-10-10', '2E TRANCHE 13/SSFA/2019/COM/AFA', 1058, '2019-10-11 00:15:21.387171+00', '2019-12-13 00:39:44.196694+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1670, '0400071091-3', 3, '0810/A0/05/884/001/003', 'NON-GRANT', 'GC', 27390.25, 16348340.00, '2019-09-23', 'PCA 18/PCA/2019/WASH/ASD', 1052, '2019-09-25 00:10:29.923217+00', '2019-12-13 00:39:44.208653+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1518, '0400065909-5', 5, '0810/A0/05/887/001/001', 'NON-GRANT', 'GC', 197.35, 0.00, '2019-01-03', '3E TRANCHE 21/PCA/2018/COMMUNICATION/AGT', 984, '2019-01-05 00:01:56.894438+00', '2019-12-13 00:39:44.25667+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1520, '0400065909-6', 6, '0810/A0/05/887/001/002', 'NON-GRANT', 'GC', 438.02, 0.00, '2019-01-03', '3E TRANCHE 21/PCA/2018/COMMUNICATION/AGT', 984, '2019-01-05 00:01:56.894781+00', '2019-12-13 00:39:44.267629+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1723, '0400066565-2', 2, '0810/A0/05/884/002/002', 'SC181084', 'SC', 2218.99, 1323118.00, '2019-12-13', '7% COUT INDIRECT DU PROGRAMME 3E ET 4E TRANCHES', 990, '2019-12-15 00:07:18.30483+00', '2019-12-15 00:07:18.30483+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1724, '0400073043-1', 1, '0810/A0/05/884/002/002', 'SC181084', 'SC', 2218.99, 1323118.00, '2019-12-13', '7% COUT INDIRECT DU PROGRAMME 3E ET 4E TRANCHES', 1077, '2019-12-15 00:07:18.304911+00', '2019-12-15 00:07:18.304911+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1531, '0400066565-1', 1, '0810/A0/05/884/002/001', 'NON-GRANT', 'GC', 8216.95, 4721000.00, '2019-02-13', 'FR 4ÈME TRANCHE PCA', 990, '2019-02-15 00:11:32.788234+00', '2019-12-15 00:07:18.331851+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1726, '0400073115-1', 1, '0810/A0/05/886/004/004', 'SM190227', 'SM', 70000.23, 41739036.00, '2019-12-17', 'FINANCEMENT TRANCHE 1 PCA AVEC COOPI', 1081, '2019-12-19 00:14:39.059876+00', '2019-12-19 00:14:39.059876+00', 'European Commission / ECHO', 'I49912'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1785, '0400074873-2', 2, '0810/A0/05/884/001/003', 'SC181084', 'SC', 66466.92, 39495843.00, '2020-04-06', 'TRANCHE 3', 1107, '2020-04-08 00:04:18.224527+00', '2020-04-08 00:04:18.224527+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1728, '0400073099-1', 1, '0810/A0/05/885/002/001', 'SC170198', 'SC', 1961.99, 1169874.00, '2019-12-17', '7% COUT SUPPORT INDIRECT DE PROGRAMME', 1080, '2019-12-19 00:14:39.060324+00', '2019-12-19 00:14:39.060324+00', 'Canada', 'G07201'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1729, '0400073121-1', 1, '0810/A0/05/882/002/009', 'SM180557', 'SM', 54564.21, 32535000.00, '2019-12-17', '4E TRANCH 04/2019/NUTRITION/ASRADD', 1082, '2019-12-19 00:14:39.060497+00', '2019-12-19 00:14:39.060497+00', 'The United Kingdom', 'G45301'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1730, '0400069407-6', 6, '0810/A0/05/884/001/003', 'SC189906', 'SC', 4565.05, 2722000.00, '2019-12-18', 'FINANCEMENT 5 TRANCHE', 1040, '2019-12-20 00:15:28.737915+00', '2019-12-20 00:15:28.737915+00', 'Global - Water Sanitation & Hygiene', 'T49952'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1731, '0400069407-5', 5, '0810/A0/05/884/001/003', 'NON-GRANT', 'GC', 6876.08, 4100000.00, '2019-12-18', 'FINANCEMENT 5 TRANCHE', 1040, '2019-12-20 00:15:28.738135+00', '2019-12-20 00:15:28.738135+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1641, '0400069407-2', 2, '0810/A0/05/884/001/003', 'SC189906', 'SC', 23672.11, 13533000.00, '2019-07-01', 'FINANCEMENT 2EME TRANCHE', 1040, '2019-07-05 15:00:06.792045+00', '2019-12-20 00:15:28.86125+00', 'Global - Water Sanitation & Hygiene', 'T49952'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1733, '0400073170-4', 4, '0810/A0/05/882/002/008', 'SM190128', 'SM', 14430.55, 8604504.00, '2019-12-19', 'SECONDE TRANCHE PCA 17 PREMIERE URGENCE', 1083, '2019-12-21 00:13:16.991099+00', '2019-12-21 00:13:16.991099+00', 'USAID/Food for Peace', 'G45617'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1734, '0400073177-2', 2, '0810/A0/05/882/002/012', 'NON-GRANT', 'GC', 45346.01, 27038465.00, '2019-12-19', 'TRANCHE DE NOVEMBRE -DECEMBRE 2019 - WVISION', 1084, '2019-12-21 00:13:16.991304+00', '2019-12-21 00:13:16.991304+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1735, '0400073170-1', 1, '0810/A0/05/882/002/008', 'SM190180', 'SM', 109089.44, 65046760.00, '2019-12-19', 'SECONDE TRANCHE PCA 17 PREMIERE URGENCE', 1083, '2019-12-21 00:13:16.991486+00', '2019-12-21 00:13:16.991486+00', 'UNOCHA', 'U99901'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1736, '0400073170-2', 2, '0810/A0/05/882/002/008', 'SM180557', 'SM', 18711.27, 11156968.00, '2019-12-19', 'SECONDE TRANCHE PCA 17 PREMIERE URGENCE', 1083, '2019-12-21 00:13:16.991639+00', '2019-12-21 00:13:16.991639+00', 'The United Kingdom', 'G45301'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1737, '0400073170-3', 3, '0810/A0/05/882/002/008', 'SM180347', 'SM', 38399.99, 22896760.00, '2019-12-19', 'SECONDE TRANCHE PCA 17 PREMIERE URGENCE', 1083, '2019-12-21 00:13:16.991776+00', '2019-12-21 00:13:16.991776+00', 'USAID/Food for Peace', 'G45617'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1654, '0400070026-1', 1, '0810/A0/05/881/002/012', 'NON-GRANT', 'GC', 78658.77, 45396289.00, '2019-07-30', 'FINANCEMENT 3ÈME TRANCHE PCA AVEC MENTHOR', 1045, '2019-08-01 00:05:50.33442+00', '2019-12-25 00:21:21.671412+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1762, '0400073882-1', 1, '0810/A0/05/884/002/004', 'SC180404', 'SC', 97822.67, 58191183.00, '2020-02-11', 'TRANCHE 4 PCA AVEC SIF', 1094, '2020-02-13 00:09:21.853177+00', '2020-02-13 00:09:21.853177+00', 'Chad', 'G08101'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (790, '0400045435-2', 2, '0810/A0/04/881/005/002', 'SM160077', 'SM', 200.55, 121000.00, '2016-11-22', 'FINANCEMENT 2EME TRANCHE PCA ASSOCIAT. ALNADJA', 596, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:00.739035+00', 'Japan', 'G23101'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (809, '0400030493-2', 2, '0810/A0/04/881/002/002', 'SC140620', 'SC', 26216.63, 15547408.00, '2015-05-15', 'MOBILISATION SOCIALE JLV DU 29 AU 31 MAI 2015', 196, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:02.34058+00', 'United States Fund for UNICEF', 'C45601'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (688, '0400053651-2', 2, '0810/A0/05/883/001/001', 'NON-GRANT', 'GC', 1709.10, 950000.00, '2017-08-29', 'MISE EN PLACE SERV PTME ET LES CENTRES DE S.', 275, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:02.484083+00', 'N/A', 'N/A'); @@ -12712,6 +13502,18 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (716, '0400016048-4', 4 INSERT INTO [[schema]].funds_fundsreservationitem VALUES (737, '0400016063-5', 5, '0810/A0/04/802/002/006', 'SC130377', 'SC', 13263.54, 6412127.00, '2013-10-21', 'RENFORCEMENT DES CAPACITÉS DE L''AILS ET APPUI À LA', 587, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:07.94378+00', 'FOSAP', 'N08102'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (672, '0400026332-5', 5, '0810/A0/04/803/003/003', 'SM140304', 'SM', 1105.94, 579663.00, '2014-12-05', 'DECSIMT 2E TRANCH/PCA TERRE VERTE/2014/WASH', 112, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:08.150297+00', 'UNOCHA', 'U99901'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (794, '0400019415-10', 10, '0810/A0/04/802/002/003', 'SC130377', 'SC', 456.25, 218740.00, '2014-03-21', 'SIGNER CONTRAT AVEC LES CPS', 170, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:09.568981+00', 'FOSAP', 'N08102'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1738, '0400073196-1', 1, '0810/A0/05/885/002/001', 'SC170198', 'SC', 33226.93, 19812222.00, '2019-12-20', '7% COUT INDIRECT DU PROGRAMME 4E TRANCHES', 1085, '2019-12-22 00:07:50.41841+00', '2019-12-22 00:07:50.41841+00', 'Canada', 'G07201'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1699, '0400072318-1', 1, '0810/A0/05/884/001/001', 'SC189906', 'SC', 556.99, 0.00, '2019-11-20', '1ERE TRANCHE 19/PCA/2019/WASH/TERRE VERTE', 1065, '2019-11-22 00:03:26.548183+00', '2019-12-25 00:21:21.692472+00', 'Global - Water Sanitation & Hygiene', 'T49952'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1453, '0400063875-1', 1, '0810/A0/05/881/002/012', 'NON-GRANT', 'GC', 107001.99, 59970382.00, '2018-10-11', '2E TRANCHE PAC MENTHOR INITIATIVE', 958, '2018-10-13 00:02:13.94467+00', '2019-12-25 00:21:21.723275+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1511, '0400065408-3', 3, '0810/A0/05/885/001/001', 'SC170715', 'SC', 1905.99, 1090000.00, '2018-12-10', 'FR PCA CVDT (EDUCATION/COMMUNICATION)', 981, '2018-12-12 00:02:08.719812+00', '2019-12-25 00:21:21.761055+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1620, '0400068467-5', 5, '0810/A0/05/884/002/003', 'SC189906', 'SC', 55.90, 0.00, '2019-05-17', 'FINANCEMENT 4EME TRANCHE', 1029, '2019-05-19 00:05:24.104861+00', '2019-12-25 00:21:21.772235+00', 'Global - Water Sanitation & Hygiene', 'T49952'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1744, '0400073429-1', 1, '0810/A0/05/884/001/003', 'SC189906', 'SC', 31512.97, 18514250.00, '2020-01-16', 'FINANCEMENT TRANCHE 3 PCA AVEC CROIX ROUGE MOYEN C', 1091, '2020-01-18 00:05:30.387456+00', '2020-01-18 00:05:30.387456+00', 'Global - Water Sanitation & Hygiene', 'T49952'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1743, '0400073418-1', 1, '0810/A0/05/882/002/009', 'NON-GRANT', 'GC', 8370.54, 7500.00, '2020-01-15', 'CHAD_RENOUVELLEMENT CONVENTION NUTRIPASS UNICEF', 1090, '2020-01-17 00:06:26.617395+00', '2020-01-22 00:09:29.870551+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1772, '0400067661-6', 6, '0810/A0/05/884/001/004', 'NON-GRANT', 'GC', 0.00, 0.00, '2020-03-19', '4ÈME TRANCHE 08/PCA/2019/WASH/ESMS', 1014, '2020-03-21 00:05:18.220872+00', '2020-03-21 00:05:18.220872+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1748, '0400073713-2', 2, '0810/A0/05/885/002/004', 'SC181202', 'SC', 12573.45, 7388270.00, '2020-01-30', '1ERE TRANCHE PCA CELIAF 2020', 1093, '2020-02-03 17:14:12.723927+00', '2020-03-18 00:04:29.644082+00', 'UNDP - MDTF', 'U99967'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1784, '0400073429-2', 2, '0810/A0/05/884/001/003', 'SC189906', 'SC', 19342.16, 11363750.00, '2020-04-02', '4E TRANCHE 10/PCA/2019/WASH/CRT', 1091, '2020-04-04 00:05:01.777122+00', '2020-04-04 00:05:01.777122+00', 'Global - Water Sanitation & Hygiene', 'T49952'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1791, '0400075095-2', 2, '0810/A0/05/884/004/002', 'SM200158', 'SM', 33746.18, 20285975.00, '2020-04-16', 'FR PCA AVEC ASSO HELP - TCHAD', 1109, '2020-04-18 01:10:53.435203+00', '2020-04-18 01:10:53.435203+00', 'UNOCHA', 'U99901'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1792, '0400075095-1', 1, '0810/A0/05/884/004/002', 'SM189910', 'SM', 16160.00, 9714325.00, '2020-04-16', 'FR PCA AVEC ASSO HELP - TCHAD', 1109, '2020-04-18 01:10:53.435326+00', '2020-04-18 01:10:53.435326+00', 'Global - Thematic Humanitarian Resp', 'T49906'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (930, '0400016089-1', 1, '0810/A0/04/802/001/005', 'NON-GRANT', 'GC', 16520.53, 7986684.00, '2013-10-22', 'RENFORCEMENT DES CAPACITÉS DE L''AILS ET APPUI À LA', 184, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:34.319857+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (936, '0400023359-1', 1, '0810/A0/04/806/002/012', 'NON-GRANT', 'GC', 8758.19, 4295000.00, '2014-08-25', 'DECAISSEMENT FONDS SELON PROTOC ACC A LA MAISON DE', 337, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:34.345904+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (946, '0400055205-1', 1, '0810/A0/05/882/002/009', 'SM170270', 'SM', 71389.39, 40310233.00, '2017-11-02', 'APPUI AUTONOMISATION DU FONCTIONNEMENT UNT HME', 400, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:34.370031+00', 'European Commission / ECHO', 'I49912'); @@ -12741,6 +13543,8 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1019, '0400019156-8', INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1018, '0400019156-9', 9, '0810/A0/04/802/002/001', 'SC130377', 'SC', 645.31, 309380.00, '2014-12-31', 'ORGANISER 6 JOURNEES EDUCATIVES SCOLAIRES PTME', 221, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:09.392354+00', 'FOSAP', 'N08102'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (916, '0400019420-12', 12, '0810/A0/04/802/002/001', 'SC130377', 'SC', 3524.28, 1678889.00, '2014-03-26', 'ORGANISER JOURNEE MONDIALE SIDA', 595, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:09.999506+00', 'FOSAP', 'N08102'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (910, '0400019420-18', 18, '0810/A0/04/802/002/006', 'SC130377', 'SC', 146.88, 69998.00, '2014-03-26', 'FRAIS GENERAUX/CLDS', 595, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:10.610844+00', 'FOSAP', 'N08102'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1749, '0400073713-16', 16, '0810/A0/05/880/005/009', 'SC181202', 'SC', 2418.32, 1420533.00, '2020-01-30', '4E TRANCHE PCA CELIAF 2020', 1093, '2020-02-03 17:14:12.724007+00', '2020-02-19 00:07:34.902606+00', 'UNDP - MDTF', 'U99967'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1766, '0400074143-1', 1, '0810/A0/05/884/002/003', 'SC189906', 'SC', 12081.36, 7186767.00, '2020-02-24', 'FR POUR TRANCHE 3 PCA AVEC IAS', 1097, '2020-02-26 00:09:11.954308+00', '2020-02-26 00:09:11.954308+00', 'Global - Water Sanitation & Hygiene', 'T49952'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1045, '0400019939-1', 1, '0810/A0/04/802/001/001', 'NON-GRANT', 'GC', 2705.44, 1290000.00, '2014-09-15', 'CAMPAGNES DE MASSE', 588, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:34.758476+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1049, '0400026395-1', 1, '0810/A0/04/803/001/002', 'SC130798', 'SC', 6517.18, 3415894.00, '2014-12-08', 'DECSIMT 2E TRANCH/PCA TERR', 288, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:34.782886+00', 'Switzerland', 'G57501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1052, '0400020495-1', 1, '0810/A0/04/803/002/005', 'SM140061', 'SM', 18416.20, 8739225.00, '2014-05-07', 'DECSIMT 1E TRANCH PCA SID/CHD/2014/WASH', 410, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:34.801361+00', 'UNOCHA', 'U99901'); @@ -12784,6 +13588,7 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1165, '0400019415-13', INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1147, '0400019117-14', 14, '0810/A0/04/802/002/006', 'SC130377', 'SC', 625.74, 300000.00, '2014-03-11', 'MOTIVATION PERSONNEL/CDLS', 529, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:10.359918+00', 'FOSAP', 'N08102'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1341, '0400058431-5', 5, '0810/A0/05/884/002/002', 'SC170715', 'SC', 172855.37, 95068272.00, '2018-03-07', '3E TRANCHE 3/PCA/18/WASH/CRF', 891, '2018-03-15 16:10:07.188292+00', '2018-12-12 00:02:08.821182+00', 'Germany', 'G52501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1380, '0400060391-1', 1, '0810/A0/05/884/004/003', 'NON-GRANT', 'GC', 33658.01, 18279500.00, '2018-05-21', 'FR PCA AVEC IHDL 2NDE TRANCHE AVENANT 01', 913, '2018-05-24 13:16:55.775867+00', '2018-10-14 00:01:56.323352+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1768, '0400074269-3', 3, '0810/A0/05/882/004/002', 'SM190227', 'SM', 15399.41, 9188887.00, '2020-03-02', '7% COUTS SUPPORT DIRECT 1ERE ET 2E TRANCHE', 1099, '2020-03-04 00:04:15.537587+00', '2020-03-04 00:04:15.537587+00', 'European Commission / ECHO', 'I49912'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1241, '0400044339-1', 1, '0810/A0/04/882/002/001', 'SC160332', 'SC', 37360.30, 22214250.00, '2016-10-17', 'FINANCEMENT DU PCA#019/2016/PROG-VIH/RNTAP+', 828, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:35.499098+00', 'Chad', 'G08101'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1245, '0400023857-1', 1, '0810/A0/04/803/002/005', 'NON-GRANT', 'GC', 200.76, 100000.00, '2014-09-11', 'ACTIVITÉ CHOLERA/CORRECTION LIQUIDATION', 324, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:35.523934+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1260, '0400039170-1', 1, '0810/A0/04/886/002/002', 'NON-GRANT', 'GC', 3451.45, 2000000.00, '2016-04-01', 'FC FINANCEMENT PAIEMENT 2EME ET 3EME TRANCHE ASVDO', 609, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:35.540534+00', 'N/A', 'N/A'); @@ -12813,7 +13618,6 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1268, '0400043711-2', INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1351, '0400058799-2', 2, '0810/A0/05/882/001/001', 'NON-GRANT', 'GC', 5272.37, 2820000.00, '2018-03-19', 'FINANCEMENT DEUXIEME TRANCHE APE RJTN', 895, '2018-03-21 00:04:26.10923+00', '2018-06-05 00:05:02.138668+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1322, '0400008987-2', 2, '0810/A0/04/803/002/005', 'SM120089', 'SM', 10050.00, 10050.00, '2012-12-13', 'CONTRIBUTION 50% WASH AU PAIEMENT APE ASTBEF', 823, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:02.429272+00', 'Republic of Korea', 'G56701'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1020, '0400044394-2', 2, '0810/A0/04/881/003/009', 'SM160403', 'SM', 7223.40, 4295000.00, '2016-10-19', 'FINANCEMENT 1ERE TRANCHE PCA/CSNDA/2016', 56, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:03.190648+00', 'European Commission / ECHO', 'I49912'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (960, '0400054056-1', 1, '0810/A0/05/884/002/002', 'NON-GRANT', 'GC', 15134.48, 8258525.00, '2017-09-18', '1ER T SENSIB HYG,PROMO ACTIVITES ASSAIN & COUT OPÉ', 3, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:03:44.309446+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (321, '0400022033-2', 2, '0810/A0/04/808/002/006', 'SM149910', 'SM', 14501.40, 7000000.00, '2014-11-13', 'FINANCEMENT 2E TRANCHE PCA CHORA CONSORTIUM TISSI', 247, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:03.90207+00', 'Global - Thematic Humanitarian Resp', 'T49906'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (774, '0400056697-2', 2, '0810/A0/05/881/004/002', 'SM170449', 'SM', 10563.54, 5846960.00, '2017-12-13', 'ASSISTANCE MEDICALE ET NUTRITIONNELLE AUX REFUGIES', 92, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:04.928037+00', 'Italy', 'G22201'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1347, '0400058647-3', 3, '0810/A0/05/885/002/001', 'SM170151', 'SM', 253003.33, 135322375.00, '2018-03-14', 'CONSTRUCTION ET EQUIPEMENTS INFRASTRUCTURES SCOLAI', 894, '2018-03-16 00:05:05.696481+00', '2018-06-05 00:05:06.012878+00', 'USA USAID', 'G45602'); @@ -12823,6 +13627,7 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1301, '0400050967-6', INSERT INTO [[schema]].funds_fundsreservationitem VALUES (36, '0400019117-8', 8, '0810/A0/04/802/002/002', 'SC130377', 'SC', 625.74, 300000.00, '2014-03-11', 'FORMATION 424 LEADERS RELIGIEUX SUR IMPORTANCE PTM', 529, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:09.20774+00', 'FOSAP', 'N08102'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1256, '0400019412-14', 14, '0810/A0/04/802/002/003', 'SC130377', 'SC', 2169.24, 1040000.00, '2014-03-21', 'APPUI MEDICAL, JURIDIQUE, SCOLAIRE/OEV', 167, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:10.323474+00', 'FOSAP', 'N08102'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (913, '0400019420-15', 15, '0810/A0/04/802/002/003', 'SC130377', 'SC', 3322.09, 1582564.00, '2014-03-26', 'APPUI MEDICAL, JURIDIQUE, SCOLAIRE/OEV', 595, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:10.460416+00', 'FOSAP', 'N08102'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1769, '0400074269-1', 1, '0810/A0/05/882/004/002', 'SM190367', 'SM', 128755.41, 76828868.00, '2020-03-02', 'REMB 1ERE ET 2E TRANCHE 16/PCA/2019/IRC/NUT', 1099, '2020-03-04 00:04:15.537707+00', '2020-03-04 00:04:15.537707+00', 'USA (USAID) OFDA', 'G45605'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (464, '0400044344-1', 1, '0810/A0/04/881/003/010', 'SC150654', 'SC', 3593.48, 2136666.00, '2016-10-17', 'FIN MISE EN OEUVRE ACTIVITÉS ACPV T3 DS DE KELO', 477, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:03:33.546368+00', 'United States Fund for UNICEF', 'C45601'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (6, '0400002884-1', 1, '0810/A0/04/802/001/001', 'NON-GRANT', 'GC', 13550.00, 13550.00, '2012-05-10', 'FINANCEMENT 3È TRANCHE ASTBEF', 14, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:03:33.57339+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (907, '0400055035-1', 1, '0810/A0/05/884/004/004', 'SM170351', 'SM', 8074.32, 4490000.00, '2017-10-23', 'FINANCEMENT COUT DIRECT/SUPPORT DIRECT AU PROGRAMM', 494, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:03:33.600155+00', 'SIDA - Sweden', 'G41102'); @@ -12856,6 +13661,7 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (950, '0400046549-1', 1 INSERT INTO [[schema]].funds_fundsreservationitem VALUES (952, '0400021534-1', 1, '0810/A0/04/806/002/012', 'SC110602', 'SC', 12459.65, 6010000.00, '2014-06-12', 'MOBILISATION SOCIALE A TRAVERS LES RADIOS - DAR BA', 99, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:03:44.218369+00', 'Bill & Melinda Gates Foundation', 'N45682'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1372, '0400059539-1', 1, '0810/A0/05/883/002/003', 'NON-GRANT', 'GC', 30518.14, 16212000.00, '2018-04-16', 'RENF CAP EN FAV FEMMES ENCEINTE & PERS VIVANTS HIV', 907, '2018-04-18 00:06:06.223099+00', '2018-06-05 00:03:44.239097+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (957, '0400048065-1', 1, '0810/A0/05/880/004/005', 'SM160077', 'SM', 9535.23, 5862500.00, '2017-02-23', 'PROMO ALLAITEMENT MAT EXCL & LUTTE CONTRE MARIAGE', 97, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:03:44.256285+00', 'Japan', 'G23101'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (960, '0400054056-1', 1, '0810/A0/05/884/002/002', 'NON-GRANT', 'GC', 15134.48, 8258525.00, '2017-09-18', '1ER T SENSIB HYG,PROMO ACTIVITES ASSAIN & COUT OPÉ', 3, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:03:44.309446+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (962, '0400036689-1', 1, '0810/A0/04/885/002/005', 'SC130377', 'SC', 10022.04, 5984000.00, '2015-12-18', 'APPUI SCOLAIRE &PSYCHOSOCIAL AUX OEV', 624, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:03:44.327931+00', 'FOSAP', 'N08102'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (965, '0400022281-1', 1, '0810/A0/04/808/004/002', 'GS130135', 'GS', 414.33, 200000.00, '2014-07-10', 'APPUYER ET COORDONNER LA REALISATION DES ETUDES', 846, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:03:44.354306+00', 'UNICEF (FOR GR ALLOCATIONS ONLY)', 'U99999'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (968, '0400039527-1', 1, '0810/A0/04/881/003/010', 'SC140165', 'SC', 3641.28, 2110000.00, '2016-04-14', 'FR ASDI POUR LA MISE EN OEUVRE DES ACTIVITÉS ACPV', 297, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:03:44.377205+00', 'GAVI The Vaccine Alliance', 'I49928'); @@ -12893,6 +13699,7 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1012, '0400041226-1', INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1013, '0400033049-1', 1, '0810/A0/04/881/003/010', 'SC150119', 'SC', 4888.71, 2935000.00, '2015-08-25', 'FINANCEMENT APE PROJET COMM ET MOBSOC POLIO BEDJON', 300, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:03:45.32098+00', 'United States Fund for UNICEF', 'C45601'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1016, '0400041453-1', 1, '0810/A0/04/886/002/003', 'NON-GRANT', 'GC', 13008.88, 7571000.00, '2016-06-22', 'SENSIBILISAT@ CONTRE MARIAGES DES ENFTS DS ÉGLISES', 114, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:03:45.431052+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1017, '0400050967-1', 1, '0810/A0/05/887/001/001', 'NON-GRANT', 'GC', 13748.75, 8309000.00, '2017-05-25', '1ERE T RENF CAP DES JEUNES SUR TECH DE PLAIDOY 70%', 94, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:03:45.453503+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1752, '0400073713-9', 9, '0810/A0/05/885/001/002', 'SC181202', 'SC', 2296.63, 1329500.00, '2020-01-30', '3E TRANCHE PCA CELIAF 2020', 1093, '2020-02-03 17:14:12.724233+00', '2020-03-18 00:04:29.773869+00', 'UNDP - MDTF', 'U99967'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1025, '0400014300-1', 1, '0810/A0/04/806/004/003', 'SM130059', 'SM', 6807.53, 3425000.00, '2013-07-26', 'P APE N 11/PRO/POLIO/CELIAF /2013', 700, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:03:45.498406+00', 'Japan', 'G23101'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1026, '0400014204-1', 1, '0810/A0/04/806/004/003', 'SM130059', 'SM', 5177.70, 2605000.00, '2013-07-23', 'F APE N 09/PRO/POLIO/ZOUKLAZO/2013', 411, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:03:45.516758+00', 'Japan', 'G23101'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1027, '0400039585-1', 1, '0810/A0/04/881/003/010', 'SC140165', 'SC', 4189.04, 2436667.00, '2016-04-15', 'FR ACTIVITES ACPV PAR ASSOCIATION JEUNES ASSAIN H', 118, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:03:45.541149+00', 'GAVI The Vaccine Alliance', 'I49928'); @@ -13064,7 +13871,6 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (704, '0400024499-1', 1 INSERT INTO [[schema]].funds_fundsreservationitem VALUES (843, '0400033353-1', 1, '0810/A0/04/881/003/010', 'SC150119', 'SC', 12992.04, 7578000.00, '2015-09-05', 'FINANCEMENT APE - CROIX ROUGE OUADDAI', 623, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:09.146563+00', 'United States Fund for UNICEF', 'C45601'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (871, '0400026480-1', 1, '0810/A0/04/803/002/005', 'SM140264', 'SM', 15444.44, 8095000.00, '2014-12-09', 'DECSIMT SSA/ADESOLA/2014/WASH DISTRICT DE BOL', 652, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:09.455498+00', 'Switzerland', 'G57501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (911, '0400038319-1', 1, '0810/A0/04/885/004/007', 'SM150610', 'SM', 49223.45, 29460284.00, '2016-03-02', 'FINANCEMENT SSFA HANDICAP INTERNATIONAL', 684, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:12.429324+00', 'UNOCHA', 'U99901'); -INSERT INTO [[schema]].funds_fundsreservationitem VALUES (214, '0400034991-1', 1, '0810/A0/04/883/001/003', 'SC130798', 'SC', 17226.44, 10309097.00, '2015-11-05', 'FR PCA/11/2014/PRO/WASH/CELIAF 6ÈME TRANCHE', 449, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:31.473223+00', 'Switzerland', 'G57501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (921, '0400052067-1', 1, '0810/A0/05/885/002/001', 'SC130197', 'SC', 23289.74, 13650000.00, '2017-06-29', 'FR ACCORD REVISÉ PROJET CONSTRUCTION 21 SDC OUADD', 81, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:14.125376+00', 'Global Partnership for Education', 'I49927'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (983, '0400017480-1', 1, '0810/A0/04/803/001/003', 'SM130374', 'SM', 405448.06, 195786410.00, '2013-12-13', 'PAIEMT 1ERE TRCH IAS PCA/8/2012/CHD/WASH/IAS AMEND', 313, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:14.145112+00', 'UNOCHA', 'U99901'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (985, '0400041670-1', 1, '0810/A0/04/886/002/003', 'NON-GRANT', 'GC', 11310.39, 6582500.00, '2016-06-29', 'FR APE ASSOCIATION MALADES VIVANT AVEC SIDA KYABÉ', 201, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:16.715112+00', 'N/A', 'N/A'); @@ -13106,6 +13912,7 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (203, '0400056356-1', 1 INSERT INTO [[schema]].funds_fundsreservationitem VALUES (208, '0400023667-1', 1, '0810/A0/04/806/002/012', 'NON-GRANT', 'GC', 5313.32, 2646600.00, '2014-09-04', 'FINANCEMENT PRODUCTION JOURNAL DES JEUNES', 657, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:31.390546+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (250, '0400001709-1', 1, '0810/A0/04/805/001/006', 'NON-GRANT', 'GC', 19466.00, 19466.00, '2012-03-30', 'SMALL SCALE FUNDING AGREE BAMBINI NEL DESSERTO', 730, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:31.415536+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (276, '0400011043-1', 1, '0810/A0/04/803/002/005', 'SM120478', 'SM', 18145.00, 18145.00, '2013-03-16', 'DECAISSEMENT 2ÈME TRANCHE APE GRPMT DARASSALAM', 643, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:31.435593+00', 'Switzerland', 'G57501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (214, '0400034991-1', 1, '0810/A0/04/883/001/003', 'SC130798', 'SC', 17226.44, 10309097.00, '2015-11-05', 'FR PCA/11/2014/PRO/WASH/CELIAF 6ÈME TRANCHE', 449, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:31.473223+00', 'Switzerland', 'G57501'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (220, '0400050567-1', 1, '0810/A0/05/881/002/011', 'SM160077', 'SM', 139533.00, 84326210.00, '2017-05-15', '1ERE T PCA SANTE-NUT/VIH PROFIL POPULATION LAC', 30, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:31.491433+00', 'Japan', 'G23101'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (225, '0400040168-1', 1, '0810/A0/04/886/003/001', 'NON-GRANT', 'GC', 1825.10, 1056000.00, '2016-05-09', 'FINANCEMENT ENCADREMENT CLUB DES JEUNES REPORTERS', 439, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:31.523694+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (239, '0400017125-1', 1, '0810/A0/04/802/002/003', 'SC130377', 'SC', 29869.18, 14423500.00, '2013-12-04', 'RNTAP+/RECYCLAGE CPS/FORMATION MÉDIATEURS DE SANTÉ', 192, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:31.543582+00', 'FOSAP', 'N08102'); @@ -13249,6 +14056,7 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (236, '0400025609-1', 1 INSERT INTO [[schema]].funds_fundsreservationitem VALUES (240, '0400024802-1', 1, '0810/A0/04/804/004/001', 'SC110667', 'SC', 256704.98, 132526000.00, '2014-10-21', 'PAIEMENT 1ERE TRANCHE ACRA', 333, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:41.948031+00', 'Netherlands', 'G30001'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (242, '0400056251-1', 1, '0810/A0/05/887/001/002', 'NON-GRANT', 'GC', 5569.07, 3082500.00, '2017-12-04', 'FR SSFA COMPAGNIE HADRE DOUNIA', 847, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:41.966691+00', 'N/A', 'N/A'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (243, '0400053314-1', 1, '0810/A0/05/885/004/003', 'SC160529', 'SC', 2478.26, 1377540.00, '2017-08-15', '7% COUTS SUP INDIRECT DES ACTIV EDUCATIVES DE WVT', 557, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:42.002095+00', 'United States Fund for UNICEF', 'C45601'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1770, '0400074269-2', 2, '0810/A0/05/882/004/002', 'SM190227', 'SM', 91236.11, 54440952.00, '2020-03-02', 'REMB 1ERE ET 2E TRANCHE 16/PCA/2019/IRC/NUT', 1099, '2020-03-04 00:04:15.537812+00', '2020-03-04 00:04:15.537812+00', 'European Commission / ECHO', 'I49912'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (294, '0400043261-1', 1, '0810/A0/04/885/001/002', 'SC150063', 'SC', 200213.55, 117828278.00, '2016-09-06', 'FINANCMENT SNDE TRANCHE PCA/APLFT ( ADECIV BATHA)', 54, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:42.618152+00', 'European Commission/EC', 'I49905'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (299, '0400038830-1', 1, '0810/A0/04/886/002/004', 'SC150015', 'SC', 10532.13, 6180000.00, '2016-03-18', 'FR ACCORD PETITE ECHELLE AVEC CIE HADRE DOUNIA', 442, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:42.640972+00', 'GAVI The Vaccine Alliance', 'I49928'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (309, '0400016245-1', 1, '0810/A0/04/806/004/003', 'SC130233', 'SC', 9376.55, 4533000.00, '2013-10-29', 'FR- FINANCEMENT APE/CSAI MISSION DE PLAIDOYER LEAD', 665, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:04:45.495983+00', 'United States Fund for UNICEF', 'C45601'); @@ -13300,6 +14108,40 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (298, '0400019119-5', 5 INSERT INTO [[schema]].funds_fundsreservationitem VALUES (563, '0400016048-5', 5, '0810/A0/04/802/002/006', 'SC130377', 'SC', 28042.23, 13556730.00, '2013-11-13', 'RENFORCEMENT CAPACITÉ RNTAP+/COORD/SUIVI/EVALUTATI', 79, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:08.051798+00', 'FOSAP', 'N08102'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (75, '0400056995-6', 6, '0810/A0/05/885/004/004', 'SM170522', 'SM', 19200.00, 10627277.00, '2017-12-27', 'CONST ET EQUIP INFRAST SCOLAIRES EN SITUAT@ D''URG', 136, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:08.602611+00', 'UNOCHA', 'U99901'); INSERT INTO [[schema]].funds_fundsreservationitem VALUES (493, '0400023942-7', 7, '0810/A0/04/802/002/006', 'SC130377', 'SC', 11041.80, 5500000.00, '2014-09-16', 'ASSURER DE DISTRIBUTION VIVRES ENTREPOSAGE/SUIVI', 673, '2018-03-15 16:10:07.188292+00', '2018-06-05 00:05:08.869613+00', 'FOSAP', 'N08102'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1783, '0400074774-1', 1, '0810/A0/05/884/001/003', 'GS180090', 'GS', 133511.89, 77393104.00, '2020-03-30', '3E TRANCHE 07/PCA/2019/WASH/ACF', 1105, '2020-04-01 00:04:28.430555+00', '2020-04-01 00:04:28.430555+00', 'UNICEF (FOR GR ALLOCATIONS ONLY)', 'U99999'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1727, '0400073115-2', 2, '0810/A0/05/886/004/004', 'SM170463', 'SM', 0.00, 0.00, '2019-12-17', 'FINANCEMENT TRANCHE 1 PCA AVEC COOPI', 1081, '2019-12-19 00:14:39.060148+00', '2020-04-02 00:05:14.887059+00', 'The United Kingdom', 'G45301'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1773, '0400074627-1', 1, '0810/A0/05/884/004/002', 'SM190227', 'SM', 149740.53, 86800393.00, '2020-03-20', '03/PCA/2020/WASH/INTERSOS', 1101, '2020-03-22 00:06:43.479682+00', '2020-04-03 00:04:03.730243+00', 'European Commission / ECHO', 'I49912'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1763, '0400073906-1', 1, '0810/A0/05/880/005/002', 'SM190227', 'SM', 30175.43, 17950275.00, '2020-02-12', 'REMBOURSEMENT FINANCEMENT ACTIVITES', 1095, '2020-02-14 00:24:10.634398+00', '2020-02-14 00:24:10.634398+00', 'European Commission / ECHO', 'I49912'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1764, '0400073949-1', 1, '0810/A0/05/880/004/005', 'NON-GRANT', 'GC', 10237.63, 6090000.00, '2020-02-14', '2E TRANCHE 13/SSFA/2019/COM/AFA', 1096, '2020-02-18 00:09:36.276675+00', '2020-02-18 00:09:36.276675+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1765, '0400071422-3', 3, '0810/A0/05/880/004/005', 'NON-GRANT', 'GC', 0.00, 0.00, '2020-02-14', '2E TRANCHE 13/SSFA/2019/COM/AFA', 1058, '2020-02-18 00:09:36.276801+00', '2020-02-18 00:09:36.276801+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1750, '0400073713-4', 4, '0810/A0/05/880/005/009', 'SC181202', 'SC', 27166.71, 16160500.00, '2020-01-30', '1ERE TRANCHE PCA CELIAF 2020', 1093, '2020-02-03 17:14:12.724086+00', '2020-02-19 00:07:34.759933+00', 'UNDP - MDTF', 'U99967'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1759, '0400073713-8', 8, '0810/A0/05/880/005/009', 'SC181202', 'SC', 17187.42, 10097867.00, '2020-01-30', '2E TRANCHE PCA CELIAF 2020', 1093, '2020-02-03 17:14:12.724748+00', '2020-02-19 00:07:34.791326+00', 'UNDP - MDTF', 'U99967'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1778, '0400074612-1', 1, '0810/A0/05/884/001/004', 'NON-GRANT', 'GC', 3363.97, 1950000.00, '2020-03-19', 'FR POUR TRANCHE 4 PCA AVEC ESMS', 1102, '2020-03-22 00:06:43.480144+00', '2020-03-22 00:06:43.480144+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1754, '0400073713-13', 13, '0810/A0/05/880/005/009', 'SC181202', 'SC', 5733.73, 3368500.00, '2020-01-30', '3E TRANCHE PCA CELIAF 2020', 1093, '2020-02-03 17:14:12.724395+00', '2020-02-19 00:07:34.854146+00', 'UNDP - MDTF', 'U99967'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1780, '0400074691-1', 1, '0810/A0/05/886/004/004', 'SM190227', 'SM', 85953.64, 49824917.00, '2020-03-24', 'CFS FINANCEMENT TRANCHE 1 PCA AVEC COOPI', 1104, '2020-03-26 00:04:31.441397+00', '2020-03-26 00:04:31.441397+00', 'European Commission / ECHO', 'I49912'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1771, '0400074359-1', 1, '0810/A0/05/884/001/003', 'SC189906', 'SC', 31480.85, 18784750.00, '2020-03-05', 'FR 3EME TRANCHE ONG APDI', 1100, '2020-03-07 00:04:59.278048+00', '2020-03-07 00:04:59.278048+00', 'Global - Water Sanitation & Hygiene', 'T49952'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1756, '0400073713-1', 1, '0810/A0/05/885/001/002', 'SC181202', 'SC', 40004.91, 23475580.00, '2020-01-30', '1ERE TRANCHE PCA CELIAF 2020', 1093, '2020-02-03 17:14:12.724525+00', '2020-03-18 00:04:29.614957+00', 'UNDP - MDTF', 'U99967'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1755, '0400073713-5', 5, '0810/A0/05/885/001/002', 'SC181202', 'SC', 37051.36, 21737367.00, '2020-01-30', '2E TRANCHE PCA CELIAF 2020', 1093, '2020-02-03 17:14:12.724461+00', '2020-03-18 00:04:29.695183+00', 'UNDP - MDTF', 'U99967'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1747, '0400073713-10', 10, '0810/A0/05/885/001/002', 'SC181202', 'SC', 2382.71, 1420533.00, '2020-01-30', '4E TRANCHE PCA CELIAF 2020', 1093, '2020-02-03 17:14:12.723824+00', '2020-03-18 00:04:29.796753+00', 'UNDP - MDTF', 'U99967'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1781, '0400073713-17', 17, '0810/A0/05/887/001/004', 'SC181202', 'SC', 22931.39, 13683250.00, '2020-03-24', 'COMPL 1ERE TRANCHE PCA CELIAF 2020', 1093, '2020-03-26 00:04:31.441512+00', '2020-03-26 00:04:31.441512+00', 'UNDP - MDTF', 'U99967'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1782, '0400073713-18', 18, '0810/A0/05/887/001/006', 'SC181202', 'SC', 24433.39, 14579500.00, '2020-03-24', 'COMPL 1ERE TRANCHE PCA CELIAF 2020', 1093, '2020-03-26 00:04:31.441621+00', '2020-03-26 00:04:31.441621+00', 'UNDP - MDTF', 'U99967'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1761, '0400073713-3', 3, '0810/A0/05/887/001/001', 'SC181202', 'SC', 31971.18, 18357875.00, '2020-01-30', '1ERE TRANCHE PCA CELIAF 2020', 1093, '2020-02-03 17:14:12.724889+00', '2020-03-26 00:04:31.529899+00', 'UNDP - MDTF', 'U99967'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1760, '0400073713-6', 6, '0810/A0/05/887/001/004', 'SC181202', 'SC', 16136.87, 9582000.00, '2020-01-30', '2E TRANCHE PCA CELIAF 2020', 1093, '2020-02-03 17:14:12.724818+00', '2020-03-26 00:04:31.596498+00', 'UNDP - MDTF', 'U99967'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1758, '0400073713-7', 7, '0810/A0/05/887/001/006', 'SC181202', 'SC', 13421.24, 7816367.00, '2020-01-30', '2E TRANCHE PCA CELIAF 2020', 1093, '2020-02-03 17:14:12.724678+00', '2020-03-26 00:04:31.77111+00', 'UNDP - MDTF', 'U99967'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1751, '0400073713-11', 11, '0810/A0/05/887/001/004', 'SC181202', 'SC', 6354.13, 3655000.00, '2020-01-30', '3E TRANCHE PCA CELIAF 2020', 1093, '2020-02-03 17:14:12.72416+00', '2020-03-26 00:04:31.793456+00', 'UNDP - MDTF', 'U99967'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1753, '0400073713-12', 12, '0810/A0/05/887/001/006', 'SC181202', 'SC', 11545.95, 6882000.00, '2020-01-30', '3E TRANCHE PCA CELIAF 2020', 1093, '2020-02-03 17:14:12.724306+00', '2020-03-26 00:04:31.860266+00', 'UNDP - MDTF', 'U99967'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1746, '0400073713-14', 14, '0810/A0/05/887/001/004', 'SC181202', 'SC', 6197.51, 3580000.00, '2020-01-30', '4E TRANCHE PCA CELIAF 2020', 1093, '2020-02-03 17:14:12.723674+00', '2020-03-26 00:04:31.931711+00', 'UNDP - MDTF', 'U99967'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1757, '0400073713-15', 15, '0810/A0/05/887/001/004', 'SC181202', 'SC', 9705.03, 5740533.00, '2020-01-30', '4E TRANCHE PCA CELIAF 2020', 1093, '2020-02-03 17:14:12.724588+00', '2020-03-26 00:04:31.979206+00', 'UNDP - MDTF', 'U99967'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1786, '0400074873-4', 4, '0810/A0/05/884/002/004', 'SC181084', 'SC', 23595.60, 14020929.00, '2020-04-06', 'TRANCHE 5', 1107, '2020-04-08 00:04:18.224659+00', '2020-04-08 00:04:18.224659+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1787, '0400074882-1', 1, '0810/A0/05/884/001/003', 'NON-GRANT', 'GC', 21620.01, 12847000.00, '2020-04-06', '3E TRANCHE PCA/WASH/2019', 1106, '2020-04-08 00:04:18.224754+00', '2020-04-08 00:04:18.224754+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1788, '0400074873-1', 1, '0810/A0/05/884/001/003', 'SC181084', 'SC', 91733.75, 54509843.00, '2020-04-06', 'TRANCHE 2', 1107, '2020-04-08 00:04:18.224832+00', '2020-04-08 00:04:18.224832+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1789, '0400074873-3', 3, '0810/A0/05/884/002/004', 'SC181084', 'SC', 30590.36, 18177343.00, '2020-04-06', 'TRANCHE 4', 1107, '2020-04-08 00:04:18.224913+00', '2020-04-08 00:04:18.224913+00', 'Germany', 'G52501'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1790, '0400074970-1', 1, '0810/A0/05/881/002/014', 'NON-GRANT', 'GC', 4182.17, 2485119.00, '2020-04-09', '7% COUT SUPPORT INDIRECT DE PROGRAMME', 1108, '2020-04-11 00:06:40.954787+00', '2020-04-12 00:05:02.794516+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1779, '0400074626-1', 1, '0810/A0/05/881/002/014', 'NON-GRANT', 'GC', 61159.08, 35452206.00, '2020-03-20', '1ERE TRANCHE 02/PCA/2020/SANTE/MENTOR', 1103, '2020-03-22 00:06:43.480217+00', '2020-04-17 00:53:53.413923+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1777, '0400074626-2', 2, '0810/A0/05/881/002/014', 'NON-GRANT', 'GC', 83774.16, 48561531.00, '2020-03-20', '2E TRANCHE 02/PCA/2020/SANTE/MENTOR', 1103, '2020-03-22 00:06:43.480068+00', '2020-04-17 00:53:53.434661+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1774, '0400074626-3', 3, '0810/A0/05/881/002/014', 'NON-GRANT', 'GC', 66758.80, 38698206.00, '2020-03-20', '3E TRANCHE 02/PCA/2020/SANTE/MENTOR', 1103, '2020-03-22 00:06:43.479783+00', '2020-04-17 00:53:53.444838+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1776, '0400074626-4', 4, '0810/A0/05/881/002/014', 'NON-GRANT', 'GC', 64877.26, 37607531.00, '2020-03-20', '4E TRANCHE 02/PCA/2020/SANTE/MENTOR', 1103, '2020-03-22 00:06:43.479988+00', '2020-04-17 00:53:53.45528+00', 'N/A', 'N/A'); +INSERT INTO [[schema]].funds_fundsreservationitem VALUES (1775, '0400074626-5', 5, '0810/A0/05/881/002/014', 'NON-GRANT', 'GC', 19333.44, 11207051.00, '2020-03-20', '7% C S I P', 1103, '2020-03-22 00:06:43.47986+00', '2020-04-17 00:53:53.464844+00', 'N/A', 'N/A'); -- @@ -13312,7 +14154,8 @@ INSERT INTO [[schema]].funds_fundsreservationitem VALUES (493, '0400023942-7', 7 -- Data for Name: hact_aggregatehact; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].hact_aggregatehact VALUES (2, '2019-01-01 04:00:11.154023+00', '2019-11-15 04:00:57.14057+00', 2019, '"{\"assurance_activities\": {\"programmatic_visits\": {\"completed\": 5, \"min_required\": 165}, \"spot_checks\": {\"completed\": 0, \"required\": 62, \"follow_up\": 0}, \"scheduled_audit\": 0, \"special_audit\": 0, \"micro_assessment\": 0, \"missing_micro_assessment\": 15}, \"assurance_coverage\": {\"coverage_by_number_of_ips\": [[\"Coverage by number of IPs\", \"Count\"], [\"Without Assurance\", 113], [\"Partially Met Requirements\", 3], [\"Met Requirements\", 1]], \"coverage_by_cash_transfer\": [[\"Coverage by Cash Transfer (USD) (Total)\", \"Count\"], [\"Without Assurance\", 14546202.04], [\"Partially Met Requirements\", 196652.66], [\"Met Requirements\", 57072.26]], \"table\": [{\"label\": \"Partners\", \"value\": 117}, {\"label\": \"IPs without required PV\", \"value\": 95}, {\"label\": \"IPs without required SC\", \"value\": 63}, {\"label\": \"IPs without required assurance\", \"value\": 55}]}, \"financial_findings\": [{\"name\": \"Total Audited Expenditure\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Total Financial Findings\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Refunds\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Additional Supporting Documentation Received\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Justification Provided and Accepted\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Impairment\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Outstanding current year (Requires Follow-up)\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Outstanding prior year\", \"value\": 0.0, \"highlighted\": true}], \"financial_findings_numbers\": [{\"name\": \"Number of High Priority Findings\", \"value\": 0}, {\"name\": \"Number of Medium Priority Findings\", \"value\": 0}, {\"name\": \"Number of Low Priority Findings\", \"value\": 0}, {\"name\": \"Audit Opinion\", \"value\": [{\"name\": \"qualified\", \"value\": 0}, {\"name\": \"unqualified\", \"value\": 0}, {\"name\": \"denial\", \"value\": 0}, {\"name\": \"adverse\", \"value\": 0}]}], \"charts\": {\"cash_transfers_amounts\": [[\"Risk Rating\", \"Not Required\", \"Low\", \"Medium\", \"Significant\", \"High\", \"Number of IPs\"], [\"$0-50,000\", 27074.2, 78801.97, 66751.12, 0.0, 528209.5, 52], [\"$50,001-100,000\", 96909.53, 329143.8, 527364.01, 373494.08, 591328.47, 25], [\"$100,001-350,000\", 0.0, 1260042.54, 1253627.35, 1058497.11, 2008561.89, 31], [\"$350,001-500,000\", 0.0, 0.0, 380541.78, 0.0, 404650.7, 2], [\">$500,000\", 0.0, 615659.32, 1322758.26, 1081053.1, 2795458.23, 7]], \"cash_transfers_risk_ratings\": [[\"Risk Rating\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of IPs\"], [\"Not Required\", 123983.73, \"#D8D8D8\", 5], [\"Low\", 2283647.63, \"#2BB0F2\", 18], [\"Medium\", 3551042.52, \"#FECC02\", 21], [\"Significant\", 2513044.29, \"#F05656\", 13], [\"High\", 6328208.79, \"#751010\", 60]], \"cash_transfers_partner_type\": [[\"Partner Type\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of Partners\"], [\"CSO\", 5790222.66, \"#FECC02\", 49], [\"GOV\", 9009704.3, \"#F05656\", 68]], \"spot_checks_completed\": [[\"Completed by\", \"Count\"], [\"Staff\", 0], [\"Service Providers\", 0]]}}"'); +INSERT INTO [[schema]].hact_aggregatehact VALUES (3, '2020-01-01 04:00:51.673763+00', '2020-04-21 04:00:33.619919+00', 2020, '"{\"assurance_activities\": {\"programmatic_visits\": {\"completed\": 13, \"min_required\": 112}, \"spot_checks\": {\"completed\": 1, \"required\": 39, \"follow_up\": 0}, \"scheduled_audit\": 0, \"special_audit\": 0, \"micro_assessment\": 0, \"missing_micro_assessment\": 20}, \"assurance_coverage\": {\"coverage_by_number_of_ips\": [[\"Coverage by number of IPs\", \"Count\"], [\"Without Assurance\", 73], [\"Partially Met Requirements\", 7], [\"Met Requirements\", 18]], \"coverage_by_cash_transfer\": [[\"Coverage by Cash Transfer (USD) (Total)\", \"Count\"], [\"Without Assurance\", 1695254.46], [\"Partially Met Requirements\", 341268.43], [\"Met Requirements\", 38555.06]], \"table\": [{\"label\": \"Partners\", \"value\": 98}, {\"label\": \"IPs without required PV\", \"value\": 73}, {\"label\": \"IPs without required SC\", \"value\": 38}, {\"label\": \"IPs without required assurance\", \"value\": 32}]}, \"financial_findings\": [{\"name\": \"Total Audited Expenditure\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Total Financial Findings\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Refunds\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Additional Supporting Documentation Received\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Justification Provided and Accepted\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Impairment\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Outstanding current year (Requires Follow-up)\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Outstanding prior year\", \"value\": 0.0, \"highlighted\": true}], \"financial_findings_numbers\": [{\"name\": \"Number of High Priority Findings\", \"value\": 0}, {\"name\": \"Number of Medium Priority Findings\", \"value\": 0}, {\"name\": \"Number of Low Priority Findings\", \"value\": 0}, {\"name\": \"Audit Opinion\", \"value\": [{\"name\": \"qualified\", \"value\": 0}, {\"name\": \"unqualified\", \"value\": 0}, {\"name\": \"denial\", \"value\": 0}, {\"name\": \"adverse\", \"value\": 0}]}], \"charts\": {\"cash_transfers_amounts\": [[\"Risk Rating\", \"Not Required\", \"Low\", \"Medium\", \"Significant\", \"High\", \"Number of IPs\"], [\"$0-50,000\", 30175.43, 12081.36, 204749.35, 56418.27, 135379.37, 87], [\"$50,001-100,000\", 0.0, 83561.0, 0.0, 140052.71, 148459.51, 5], [\"$100,001-350,000\", 0.0, 521582.3, 0.0, 160745.13, 581873.52, 6], [\"$350,001-500,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0], [\">$500,000\", 0.0, 0.0, 0.0, 0.0, 0.0, 0]], \"cash_transfers_risk_ratings\": [[\"Risk Rating\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of IPs\"], [\"Not Required\", 30175.43, \"#D8D8D8\", 4], [\"Low\", 617224.66, \"#2BB0F2\", 13], [\"Medium\", 204749.35, \"#FECC02\", 21], [\"Significant\", 357216.11, \"#F05656\", 13], [\"High\", 865712.4, \"#751010\", 47]], \"cash_transfers_partner_type\": [[\"Partner Type\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of Partners\"], [\"CSO\", 911371.84, \"#FECC02\", 38], [\"GOV\", 1163706.11, \"#F05656\", 60]], \"spot_checks_completed\": [[\"Completed by\", \"Count\"], [\"Staff\", 1], [\"Service Providers\", 0]]}}"'); +INSERT INTO [[schema]].hact_aggregatehact VALUES (2, '2019-01-01 04:00:11.154023+00', '2020-01-02 17:12:28.383169+00', 2019, '"{\"assurance_activities\": {\"programmatic_visits\": {\"completed\": 8, \"min_required\": 165}, \"spot_checks\": {\"completed\": 0, \"required\": 62, \"follow_up\": 0}, \"scheduled_audit\": 0, \"special_audit\": 0, \"micro_assessment\": 0, \"missing_micro_assessment\": 16}, \"assurance_coverage\": {\"coverage_by_number_of_ips\": [[\"Coverage by number of IPs\", \"Count\"], [\"Without Assurance\", 117], [\"Partially Met Requirements\", 0], [\"Met Requirements\", 0]], \"coverage_by_cash_transfer\": [[\"Coverage by Cash Transfer (USD) (Total)\", \"Count\"], [\"Without Assurance\", 19466682.44], [\"Partially Met Requirements\", 0.0], [\"Met Requirements\", 0.0]], \"table\": [{\"label\": \"Partners\", \"value\": 117}, {\"label\": \"IPs without required PV\", \"value\": 99}, {\"label\": \"IPs without required SC\", \"value\": 63}, {\"label\": \"IPs without required assurance\", \"value\": 58}]}, \"financial_findings\": [{\"name\": \"Total Audited Expenditure\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Total Financial Findings\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Refunds\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Additional Supporting Documentation Received\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Justification Provided and Accepted\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Impairment\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Outstanding current year (Requires Follow-up)\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Outstanding prior year\", \"value\": 0.0, \"highlighted\": true}], \"financial_findings_numbers\": [{\"name\": \"Number of High Priority Findings\", \"value\": 0}, {\"name\": \"Number of Medium Priority Findings\", \"value\": 0}, {\"name\": \"Number of Low Priority Findings\", \"value\": 0}, {\"name\": \"Audit Opinion\", \"value\": [{\"name\": \"qualified\", \"value\": 0}, {\"name\": \"unqualified\", \"value\": 0}, {\"name\": \"denial\", \"value\": 0}, {\"name\": \"adverse\", \"value\": 0}]}], \"charts\": {\"cash_transfers_amounts\": [[\"Risk Rating\", \"Not Required\", \"Low\", \"Medium\", \"Significant\", \"High\", \"Number of IPs\"], [\"$0-50,000\", 27074.2, 65303.78, 66751.12, 0.0, 445087.13, 47], [\"$50,001-100,000\", 96909.53, 328521.39, 52815.29, 176967.31, 648146.31, 17], [\"$100,001-350,000\", 0.0, 1464889.43, 2498100.73, 1471650.53, 1696575.44, 40], [\"$350,001-500,000\", 0.0, 0.0, 400466.08, 443438.74, 1250936.95, 5], [\">$500,000\", 0.0, 711443.67, 1974789.65, 1422135.34, 4224679.82, 8]], \"cash_transfers_risk_ratings\": [[\"Risk Rating\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of IPs\"], [\"Not Required\", 123983.73, \"#D8D8D8\", 5], [\"Low\", 2570158.27, \"#2BB0F2\", 18], [\"Medium\", 4992922.87, \"#FECC02\", 21], [\"Significant\", 3514191.92, \"#F05656\", 13], [\"High\", 8265425.65, \"#751010\", 60]], \"cash_transfers_partner_type\": [[\"Partner Type\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of Partners\"], [\"CSO\", 6675540.99, \"#FECC02\", 49], [\"GOV\", 12791141.45, \"#F05656\", 68]], \"spot_checks_completed\": [[\"Completed by\", \"Count\"], [\"Staff\", 0], [\"Service Providers\", 0]]}}"'); INSERT INTO [[schema]].hact_aggregatehact VALUES (1, '2018-02-15 19:30:47.116992+00', '2018-12-31 04:00:10.744513+00', 2018, '"{\"assurance_activities\": {\"programmatic_visits\": {\"completed\": 0, \"min_required\": 174}, \"spot_checks\": {\"completed\": 0, \"min_required\": 55, \"follow_up\": 0}, \"scheduled_audit\": 0, \"special_audit\": 0, \"micro_assessment\": 0, \"missing_micro_assessment\": 21}, \"assurance_coverage\": {\"coverage_by_number_of_ips\": [[\"Coverage by number of IPs\", \"Count\"], [\"Without Assurance\", 125], [\"Partially Met Requirements\", 0], [\"Met Requirements\", 0]], \"coverage_by_cash_transfer\": [[\"Coverage by Cash Transfer (USD) (Total)\", \"Count\"], [\"Without Assurance\", 17687781.4], [\"Partially Met Requirements\", 0.0], [\"Met Requirements\", 0.0]], \"table\": [{\"label\": \"Active Partners\", \"value\": 125}, {\"label\": \"IPs without required PV\", \"value\": 106}, {\"label\": \"IPs without required SC\", \"value\": 55}, {\"label\": \"IPs without required assurance\", \"value\": 52}]}, \"financial_findings\": [{\"name\": \"Total Audited Expenditure\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Total Financial Findings\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Refunds\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Additional Supporting Documentation Received\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Justification Provided and Accepted\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Impairment\", \"value\": 0.0, \"highlighted\": false}, {\"name\": \"Outstanding current year (Requires Follow-up)\", \"value\": 0.0, \"highlighted\": true}, {\"name\": \"Outstanding prior year\", \"value\": 0.0, \"highlighted\": true}], \"financial_findings_numbers\": [{\"name\": \"Number of High Priority Findings\", \"value\": 0}, {\"name\": \"Number of Medium Priority Findings\", \"value\": 0}, {\"name\": \"Number of Low Priority Findings\", \"value\": 0}, {\"name\": \"Audit Opinion\", \"value\": [{\"name\": \"qualified\", \"value\": 0}, {\"name\": \"unqualified\", \"value\": 0}, {\"name\": \"denial\", \"value\": 0}, {\"name\": \"adverse\", \"value\": 0}]}], \"charts\": {\"cash_transfers_amounts\": [[\"Risk Rating\", \"Not Required\", \"Low\", \"Medium\", \"Significant\", \"High\", \"Number of IPs\"], [\"$0-50,000\", 0.0, 57824.35, 74921.85, 138152.32, 435668.98, 66], [\"$50,001-100,000\", 0.0, 199602.88, 174634.72, 138698.03, 677550.85, 16], [\"$100,001-350,000\", 0.0, 1185031.61, 246623.62, 1026005.53, 2280302.14, 25], [\"$350,001-500,000\", 0.0, 801681.11, 1670641.81, 1112473.22, 0.0, 9], [\">$500,000\", 0.0, 657494.76, 2292416.08, 688583.34, 3829474.2, 9]], \"cash_transfers_risk_ratings\": [[\"Risk Rating\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of IPs\"], [\"Not Required\", 0.0, \"#D8D8D8\", 2], [\"Low\", 2901634.71, \"#2BB0F2\", 16], [\"Medium\", 4459238.08, \"#FECC02\", 21], [\"Significant\", 3103912.44, \"#F05656\", 20], [\"High\", 7222996.17, \"#751010\", 66]], \"cash_transfers_partner_type\": [[\"Partner Type\", \"Total Cash Transfers\", {\"role\": \"style\"}, \"Number of Partners\"], [\"CSO\", 8663176.83, \"#FECC02\", 53], [\"GOV\", 9024604.57, \"#F05656\", 72]], \"spot_checks_completed\": [[\"Completed by\", \"Count\"], [\"Staff\", 0], [\"Service Providers\", 0]]}}"'); @@ -13325,99 +14168,122 @@ INSERT INTO [[schema]].hact_hacthistory VALUES (3, '2018-12-31 13:05:18.604511+0 INSERT INTO [[schema]].hact_hacthistory VALUES (4, '2018-12-31 13:05:18.642703+00', '2019-02-07 18:15:40.660872+00', 2018, '"[[\"Implementing Partner\", \"ADMINISTRATION PUBLIQUE MAIRIE D AM TIMAN COMMUNE\"], [\"Vendor Number\", \"2500236590\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 11538.4], [\"Liquidations 1 OCT - 30 SEP\", 17098.13], [\"Cash Transfers Jan - Dec\", 11538.4], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 414); INSERT INTO [[schema]].hact_hacthistory VALUES (5, '2018-12-31 13:05:18.681328+00', '2019-02-07 18:15:40.678108+00', 2018, '"[[\"Implementing Partner\", \"ADRA TCHAD\"], [\"Vendor Number\", \"2500213923\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 326399.33], [\"Liquidations 1 OCT - 30 SEP\", 131883.4], [\"Cash Transfers Jan - Dec\", 312992.45], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 25); INSERT INTO [[schema]].hact_hacthistory VALUES (6, '2018-12-31 13:05:18.806785+00', '2019-02-07 18:15:40.694828+00', 2018, '"[[\"Implementing Partner\", \"AGENCE DE DEVELOPPEMENT ECONOMIQUE ET SOCIALE ADES\"], [\"Vendor Number\", \"2500228587\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 157031.99], [\"Liquidations 1 OCT - 30 SEP\", 176288.28], [\"Cash Transfers Jan - Dec\", 120351.86], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 294); +INSERT INTO [[schema]].hact_hacthistory VALUES (126, '2019-12-31 03:30:22.347286+00', '2019-12-31 03:30:22.360559+00', 2019, '"[[\"Implementing Partner\", \"ACRA TCD ECW EDUCATION CANNOT WAIT\"], [\"Vendor Number\", \"2500237522\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 1287018.05], [\"Liquidations 1 OCT - 30 SEP\", 1777033.94], [\"Cash Transfers Jan - Dec\", 604839.82], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 416); +INSERT INTO [[schema]].hact_hacthistory VALUES (127, '2019-12-31 03:30:22.430524+00', '2019-12-31 03:30:22.442799+00', 2019, '"[[\"Implementing Partner\", \"ACTION CONTRE LA FAIM FRANCE\"], [\"Vendor Number\", \"2500213920\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 615659.32], [\"Liquidations 1 OCT - 30 SEP\", 146536.86], [\"Cash Transfers Jan - Dec\", 711443.67], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 130); INSERT INTO [[schema]].hact_hacthistory VALUES (9, '2018-12-31 13:05:18.96797+00', '2019-02-07 18:15:40.764189+00', 2018, '"[[\"Implementing Partner\", \"ANDAT\"], [\"Vendor Number\", \"2500236169\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 13474.16], [\"Liquidations 1 OCT - 30 SEP\", 13474.16], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 409); INSERT INTO [[schema]].hact_hacthistory VALUES (10, '2018-12-31 13:05:19.081826+00', '2019-02-07 18:15:40.781573+00', 2018, '"[[\"Implementing Partner\", \"ASRADD ALLIANCE SAHELIENNE DE RECHERS APPLIQUEES POUR LE DEVELOPPEMENT DURABLE\"], [\"Vendor Number\", \"2500238464\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 38714.57], [\"Liquidations 1 OCT - 30 SEP\", 37843.39], [\"Cash Transfers Jan - Dec\", 166721.35], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 435); INSERT INTO [[schema]].hact_hacthistory VALUES (11, '2018-12-31 13:05:19.205269+00', '2019-02-07 18:15:40.798573+00', 2018, '"[[\"Implementing Partner\", \"ASSOCIATION ASSO COOPERAZIONE INTERNAZIONALE\"], [\"Vendor Number\", \"2500213985\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 874480.32], [\"Liquidations 1 OCT - 30 SEP\", 496493.41], [\"Cash Transfers Jan - Dec\", 657494.76], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 123); INSERT INTO [[schema]].hact_hacthistory VALUES (12, '2018-12-31 13:05:19.286283+00', '2019-02-07 18:15:40.817165+00', 2018, '"[[\"Implementing Partner\", \"ASSOCIATION COMITE REGIONAL D ACTION DU GUERA\"], [\"Vendor Number\", \"2500236702\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 30447.99], [\"Liquidations 1 OCT - 30 SEP\", 30447.99], [\"Cash Transfers Jan - Dec\", 30447.99], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 423); INSERT INTO [[schema]].hact_hacthistory VALUES (8, '2018-12-31 13:05:18.929611+00', '2019-02-07 18:15:40.746822+00', 2018, '"[[\"Implementing Partner\", \"ALLIANCE FOR INTERNATIONAL MEDICAL ACTION ALIMA\"], [\"Vendor Number\", \"2500228510\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 84106.74], [\"Liquidations 1 OCT - 30 SEP\", 76166.58], [\"Cash Transfers Jan - Dec\", 14354.64], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 296); +INSERT INTO [[schema]].hact_hacthistory VALUES (128, '2019-12-31 03:30:22.525058+00', '2019-12-31 03:30:22.541002+00', 2019, '"[[\"Implementing Partner\", \"ADRA TCHAD\"], [\"Vendor Number\", \"2500213923\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 176854.94], [\"Liquidations 1 OCT - 30 SEP\", 373784.85], [\"Cash Transfers Jan - Dec\", 96354.64], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 25); INSERT INTO [[schema]].hact_hacthistory VALUES (15, '2018-12-31 13:05:19.461599+00', '2019-02-07 18:15:40.882496+00', 2018, '"[[\"Implementing Partner\", \"ASSOCIATION DES GUIDES DU TCHAD\"], [\"Vendor Number\", \"2500213937\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 16525.99], [\"Liquidations 1 OCT - 30 SEP\", 16525.99], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 28); INSERT INTO [[schema]].hact_hacthistory VALUES (16, '2018-12-31 13:05:19.59694+00', '2019-02-07 18:15:40.905612+00', 2018, '"[[\"Implementing Partner\", \"ASSOCIATION DES SCOUTS DU TCHAD\"], [\"Vendor Number\", \"2500224593\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Simplified Checklist\"], [\"Cash Transfer 1 OCT - 30 SEP\", 8832.82], [\"Liquidations 1 OCT - 30 SEP\", 8832.82], [\"Cash Transfers Jan - Dec\", 14013.13], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 220); INSERT INTO [[schema]].hact_hacthistory VALUES (17, '2018-12-31 13:05:19.663665+00', '2019-02-07 18:15:40.923303+00', 2018, '"[[\"Implementing Partner\", \"ASSOCIATION DISPENSAIRE NDA CHAGOUA BP 82 NDJAMENA\"], [\"Vendor Number\", \"2500212780\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 77555.79], [\"Liquidations 1 OCT - 30 SEP\", 61620.08], [\"Cash Transfers Jan - Dec\", 94973.11], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 77); INSERT INTO [[schema]].hact_hacthistory VALUES (18, '2018-12-31 13:05:19.760458+00', '2019-02-07 18:15:40.940406+00', 2018, '"[[\"Implementing Partner\", \"ASSOCIATION FONDATION ROTARY INTERNATIONAL\"], [\"Vendor Number\", \"2500212817\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Others\"], [\"Cash Transfer 1 OCT - 30 SEP\", 1328.25], [\"Liquidations 1 OCT - 30 SEP\", 1328.25], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 87); INSERT INTO [[schema]].hact_hacthistory VALUES (14, '2018-12-31 13:05:19.404086+00', '2019-02-07 18:15:40.852387+00', 2018, '"[[\"Implementing Partner\", \"ASSOCIATION DES FEMMES ANNASSOUR\"], [\"Vendor Number\", \"2500227536\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 15616.53], [\"Liquidations 1 OCT - 30 SEP\", 24730.61], [\"Cash Transfers Jan - Dec\", 21416.34], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 258); +INSERT INTO [[schema]].hact_hacthistory VALUES (129, '2019-12-31 03:30:22.692531+00', '2019-12-31 03:30:22.704458+00', 2019, '"[[\"Implementing Partner\", \"AGENCE DE DEVELOPPEMENT ECONOMIQUE ET SOCIALE ADES\"], [\"Vendor Number\", \"2500228587\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", -209.11], [\"Liquidations 1 OCT - 30 SEP\", 80531.75], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 294); INSERT INTO [[schema]].hact_hacthistory VALUES (21, '2018-12-31 13:05:20.029519+00', '2019-02-07 18:15:40.994976+00', 2018, '"[[\"Implementing Partner\", \"ASSOCIATION POUR LA PROMOTION DES LIBERT FONDAMENTALES AU TCHAD\"], [\"Vendor Number\", \"2500213943\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 11685.18], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 11685.18], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 30); INSERT INTO [[schema]].hact_hacthistory VALUES (22, '2018-12-31 13:05:20.281621+00', '2019-02-07 18:15:41.01199+00', 2018, '"[[\"Implementing Partner\", \"ASSOCIATION SOEURS DE NOTRE DAME DES APOTRES\"], [\"Vendor Number\", \"2500237892\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 46920.72], [\"Liquidations 1 OCT - 30 SEP\", 35136.6], [\"Cash Transfers Jan - Dec\", 11784.12], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 426); INSERT INTO [[schema]].hact_hacthistory VALUES (23, '2018-12-31 13:05:20.524613+00', '2019-02-07 18:15:41.045344+00', 2018, '"[[\"Implementing Partner\", \"CATHOLIC RELIEF SERVICES\"], [\"Vendor Number\", \"2500213955\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 122579.84], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 122579.84], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 54); INSERT INTO [[schema]].hact_hacthistory VALUES (24, '2018-12-31 13:05:20.696367+00', '2019-02-07 18:15:41.064491+00', 2018, '"[[\"Implementing Partner\", \"CELLULE DE LIAISON ET D INFORMATION DES ASSOCIATIONS FEMININES COORDINATION NATIONALE\"], [\"Vendor Number\", \"2500233143\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 300885.43], [\"Liquidations 1 OCT - 30 SEP\", 323984.53], [\"Cash Transfers Jan - Dec\", 270591.5], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 339); INSERT INTO [[schema]].hact_hacthistory VALUES (20, '2018-12-31 13:05:19.960614+00', '2019-02-07 18:15:40.977534+00', 2018, '"[[\"Implementing Partner\", \"ASSOCIATION LIGUE TCHADIENNE DROITS DE LHOMME\"], [\"Vendor Number\", \"2500212751\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", -849.34], [\"Liquidations 1 OCT - 30 SEP\", 3001.04], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 32); +INSERT INTO [[schema]].hact_hacthistory VALUES (130, '2019-12-31 03:30:22.790245+00', '2019-12-31 03:30:22.806536+00', 2019, '"[[\"Implementing Partner\", \"AGENCE POUR LA PROMOTION DES INITIATIVES COMMUNAUTAIRES EN EDUCATION APICED\"], [\"Vendor Number\", \"2500240519\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 146219.94], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 195191.88], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 1], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 447); INSERT INTO [[schema]].hact_hacthistory VALUES (27, '2018-12-31 13:05:21.028508+00', '2019-02-07 18:15:41.118986+00', 2018, '"[[\"Implementing Partner\", \"CNEAH\"], [\"Vendor Number\", \"2500226725\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 189143.55], [\"Liquidations 1 OCT - 30 SEP\", 135529.99], [\"Cash Transfers Jan - Dec\", 230528.68], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 262); INSERT INTO [[schema]].hact_hacthistory VALUES (28, '2018-12-31 13:05:21.115656+00', '2019-02-07 18:15:41.135581+00', 2018, '"[[\"Implementing Partner\", \"COMITE POUR LE DEVELOPPEMENT DU VOLONTARIAT AU TCHAD\"], [\"Vendor Number\", \"2500233727\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 20811.05], [\"Liquidations 1 OCT - 30 SEP\", 20811.05], [\"Cash Transfers Jan - Dec\", 94276.18], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 372); INSERT INTO [[schema]].hact_hacthistory VALUES (29, '2018-12-31 13:05:21.254751+00', '2019-02-07 18:15:41.153024+00', 2018, '"[[\"Implementing Partner\", \"COMPANIE HADRE DOUNIA\"], [\"Vendor Number\", \"2500227181\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 22056.35], [\"Liquidations 1 OCT - 30 SEP\", 22056.35], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"Not Required\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 269); INSERT INTO [[schema]].hact_hacthistory VALUES (30, '2018-12-31 13:05:21.351603+00', '2019-02-07 18:15:41.208033+00', 2018, '"[[\"Implementing Partner\", \"CONSEIL NATIONAL DE LUTTE CONTRE LE SIDA\"], [\"Vendor Number\", \"2500220945\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 143185.94], [\"Liquidations 1 OCT - 30 SEP\", 277906.54], [\"Cash Transfers Jan - Dec\", 155353.28], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 155); INSERT INTO [[schema]].hact_hacthistory VALUES (26, '2018-12-31 13:05:20.904048+00', '2019-02-07 18:15:41.100414+00', 2018, '"[[\"Implementing Partner\", \"CENTRE NATIONAL DE DEMINAGE\"], [\"Vendor Number\", \"2500214079\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 0.0], [\"Liquidations 1 OCT - 30 SEP\", 26670.91], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 3); +INSERT INTO [[schema]].hact_hacthistory VALUES (131, '2019-12-31 03:30:22.885976+00', '2019-12-31 03:30:22.897196+00', 2019, '"[[\"Implementing Partner\", \"ALLIANCE FOR INTERNATIONAL MEDICAL ACTION ALIMA\"], [\"Vendor Number\", \"2500228510\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 43758.83], [\"Liquidations 1 OCT - 30 SEP\", 51698.99], [\"Cash Transfers Jan - Dec\", 81081.73], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 296); INSERT INTO [[schema]].hact_hacthistory VALUES (33, '2018-12-31 13:05:21.616924+00', '2019-02-07 18:15:41.263759+00', 2018, '"[[\"Implementing Partner\", \"COORDINATION PRINCIPALE PROGRAMME EDUCATION\"], [\"Vendor Number\", \"2500213988\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 561607.19], [\"Liquidations 1 OCT - 30 SEP\", 761963.96], [\"Cash Transfers Jan - Dec\", 688583.34], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 4], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 125); INSERT INTO [[schema]].hact_hacthistory VALUES (34, '2018-12-31 13:05:21.717596+00', '2019-02-07 18:15:41.28216+00', 2018, '"[[\"Implementing Partner\", \"CROIX ROUGE DU TCHAD\"], [\"Vendor Number\", \"2500221169\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 448616.84], [\"Liquidations 1 OCT - 30 SEP\", 419442.67], [\"Cash Transfers Jan - Dec\", 448616.84], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 162); INSERT INTO [[schema]].hact_hacthistory VALUES (35, '2018-12-31 13:05:21.799467+00', '2019-02-07 18:15:41.299073+00', 2018, '"[[\"Implementing Partner\", \"CSJEFOD\"], [\"Vendor Number\", \"2500219686\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 33718.43], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 33718.43], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 141); INSERT INTO [[schema]].hact_hacthistory VALUES (36, '2018-12-31 13:05:21.835997+00', '2019-02-07 18:15:41.315196+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION DE LACTION SOCIALE DU MANDOU\"], [\"Vendor Number\", \"2500235430\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 105825.89], [\"Liquidations 1 OCT - 30 SEP\", 43784.15], [\"Cash Transfers Jan - Dec\", 62041.74], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 398); INSERT INTO [[schema]].hact_hacthistory VALUES (32, '2018-12-31 13:05:21.579526+00', '2019-02-07 18:15:41.243116+00', 2018, '"[[\"Implementing Partner\", \"COORDINATION PREVENTION DE LA TRANSMISSI MERE ET ENFANT\"], [\"Vendor Number\", \"2500213987\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 191900.09], [\"Liquidations 1 OCT - 30 SEP\", 224660.46], [\"Cash Transfers Jan - Dec\", 374177.73], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 124); +INSERT INTO [[schema]].hact_hacthistory VALUES (132, '2019-12-31 03:30:22.931431+00', '2019-12-31 03:30:22.948076+00', 2019, '"[[\"Implementing Partner\", \"ALTERNATIVES D APPUI STRATEGIQUE AU DVPT\"], [\"Vendor Number\", \"2500240664\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 96909.53], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 96909.53], [\"Risk Rating\", \"Not Required\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", true], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 1], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 450); INSERT INTO [[schema]].hact_hacthistory VALUES (39, '2018-12-31 13:05:22.033183+00', '2019-02-07 18:15:41.366232+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION REGIONALE ACTION SOCIAL DU LAC\"], [\"Vendor Number\", \"2500226137\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 280633.29], [\"Liquidations 1 OCT - 30 SEP\", 280633.29], [\"Cash Transfers Jan - Dec\", 206118.08], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 246); INSERT INTO [[schema]].hact_hacthistory VALUES (40, '2018-12-31 13:05:22.075556+00', '2019-02-07 18:15:41.383453+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION REGIONALE DE L ACTION SOCIALE\"], [\"Vendor Number\", \"2500229979\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 0.0], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 31801.85], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 315); INSERT INTO [[schema]].hact_hacthistory VALUES (41, '2018-12-31 13:05:22.11432+00', '2019-02-07 18:15:41.40025+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION REGIONALE DE L''ACTION SOCIALE\"], [\"Vendor Number\", \"2500229126\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 29166.91], [\"Liquidations 1 OCT - 30 SEP\", 29166.91], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 311); INSERT INTO [[schema]].hact_hacthistory VALUES (42, '2018-12-31 13:05:22.167633+00', '2019-02-07 18:15:41.416492+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION REGIONALE DE L ACTION SOCIALE DE LA TANDJILE\"], [\"Vendor Number\", \"2500234944\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 0.0], [\"Liquidations 1 OCT - 30 SEP\", 47742.84], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 396); INSERT INTO [[schema]].hact_hacthistory VALUES (38, '2018-12-31 13:05:21.940026+00', '2019-02-07 18:15:41.349426+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION REG DE LEDUCATION NAT\"], [\"Vendor Number\", \"2500232251\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 94409.45], [\"Liquidations 1 OCT - 30 SEP\", 84119.17], [\"Cash Transfers Jan - Dec\", 147276.42], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 344); +INSERT INTO [[schema]].hact_hacthistory VALUES (133, '2019-12-31 03:30:23.036552+00', '2019-12-31 03:30:23.049051+00', 2019, '"[[\"Implementing Partner\", \"APSELPA\"], [\"Vendor Number\", \"2500227539\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 48202.15], [\"Liquidations 1 OCT - 30 SEP\", 48202.15], [\"Cash Transfers Jan - Dec\", 127153.95], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 261); INSERT INTO [[schema]].hact_hacthistory VALUES (45, '2018-12-31 13:05:22.39379+00', '2019-02-07 18:15:41.473339+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION REGIONALE SANITAIRE DU LAC\"], [\"Vendor Number\", \"2500214005\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 309832.39], [\"Liquidations 1 OCT - 30 SEP\", 224064.8], [\"Cash Transfers Jan - Dec\", 402999.6], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 47); INSERT INTO [[schema]].hact_hacthistory VALUES (46, '2018-12-31 13:05:22.441256+00', '2019-02-07 18:15:41.490433+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION REG. SANITAIRE DU MOYEN CHARI\"], [\"Vendor Number\", \"2500222990\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 65347.26], [\"Liquidations 1 OCT - 30 SEP\", 116296.29], [\"Cash Transfers Jan - Dec\", 21985.22], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 177); INSERT INTO [[schema]].hact_hacthistory VALUES (47, '2018-12-31 13:05:22.507538+00', '2019-02-07 18:15:41.509072+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION REG SANITAIRE GUERA\"], [\"Vendor Number\", \"2500221849\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 154174.42], [\"Liquidations 1 OCT - 30 SEP\", 178547.5], [\"Cash Transfers Jan - Dec\", 329521.31], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 174); INSERT INTO [[schema]].hact_hacthistory VALUES (48, '2018-12-31 13:05:22.544498+00', '2019-02-07 18:15:41.526019+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION REG SANITAIRE HADJER LAMIS\"], [\"Vendor Number\", \"2500226900\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 48996.22], [\"Liquidations 1 OCT - 30 SEP\", 37070.24], [\"Cash Transfers Jan - Dec\", 98191.94], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 268); INSERT INTO [[schema]].hact_hacthistory VALUES (44, '2018-12-31 13:05:22.299662+00', '2019-02-07 18:15:41.456244+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION REGIONALE DE LA SANTE WADI FIRA\"], [\"Vendor Number\", \"2500214003\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 182145.15], [\"Liquidations 1 OCT - 30 SEP\", 159760.83], [\"Cash Transfers Jan - Dec\", 182145.15], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 45); +INSERT INTO [[schema]].hact_hacthistory VALUES (134, '2019-12-31 03:30:23.09937+00', '2019-12-31 03:30:23.111574+00', 2019, '"[[\"Implementing Partner\", \"ASRADD ALLIANCE SAHELIENNE DE RECHERS APPLIQUEES POUR LE DEVELOPPEMENT DURABLE\"], [\"Vendor Number\", \"2500238464\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 367360.64], [\"Liquidations 1 OCT - 30 SEP\", 250369.64], [\"Cash Transfers Jan - Dec\", 374030.48], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 435); INSERT INTO [[schema]].hact_hacthistory VALUES (51, '2018-12-31 13:05:22.657181+00', '2019-02-07 18:15:41.610894+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE DE LA LOGONE OCCIDENTALE\"], [\"Vendor Number\", \"2500223368\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 68257.49], [\"Liquidations 1 OCT - 30 SEP\", 117647.49], [\"Cash Transfers Jan - Dec\", 47254.97], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 187); INSERT INTO [[schema]].hact_hacthistory VALUES (52, '2018-12-31 13:05:22.694305+00', '2019-02-07 18:15:41.628039+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE DU MAYO K EST\"], [\"Vendor Number\", \"2500225289\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 61407.11], [\"Liquidations 1 OCT - 30 SEP\", 62110.35], [\"Cash Transfers Jan - Dec\", 10246.5], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 206); INSERT INTO [[schema]].hact_hacthistory VALUES (53, '2018-12-31 13:05:22.732505+00', '2019-02-07 18:15:41.645146+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE DU SALAMAT\"], [\"Vendor Number\", \"2500214000\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 200753.18], [\"Liquidations 1 OCT - 30 SEP\", 242376.39], [\"Cash Transfers Jan - Dec\", 124332.96], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 42); INSERT INTO [[schema]].hact_hacthistory VALUES (54, '2018-12-31 13:05:22.769618+00', '2019-02-07 18:15:41.669122+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE REG. DE LA TANDJILE\"], [\"Vendor Number\", \"2500227023\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 79661.61], [\"Liquidations 1 OCT - 30 SEP\", 104369.38], [\"Cash Transfers Jan - Dec\", 79661.61], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 266); INSERT INTO [[schema]].hact_hacthistory VALUES (50, '2018-12-31 13:05:22.619748+00', '2019-02-07 18:15:41.594082+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION REG SANIT DU BARH EL GHAZAL\"], [\"Vendor Number\", \"2500214004\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 68539.01], [\"Liquidations 1 OCT - 30 SEP\", 55864.49], [\"Cash Transfers Jan - Dec\", 96672.22], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 46); +INSERT INTO [[schema]].hact_hacthistory VALUES (135, '2019-12-31 03:30:23.230508+00', '2019-12-31 03:30:23.243043+00', 2019, '"[[\"Implementing Partner\", \"ASSOCIATION ASSO COOPERAZIONE INTERNAZIONALE\"], [\"Vendor Number\", \"2500213985\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 75704.07], [\"Liquidations 1 OCT - 30 SEP\", 692748.43], [\"Cash Transfers Jan - Dec\", 75704.07], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 123); INSERT INTO [[schema]].hact_hacthistory VALUES (57, '2018-12-31 13:05:22.881258+00', '2019-02-07 18:15:41.721464+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE REGIONAL DU KANEM\"], [\"Vendor Number\", \"2500214001\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 313854.95], [\"Liquidations 1 OCT - 30 SEP\", 188300.48], [\"Cash Transfers Jan - Dec\", 392957.71], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 43); INSERT INTO [[schema]].hact_hacthistory VALUES (58, '2018-12-31 13:05:22.91769+00', '2019-02-07 18:15:41.739082+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE REGIONALE DE NDJAMENA\"], [\"Vendor Number\", \"2500224907\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 59628.32], [\"Liquidations 1 OCT - 30 SEP\", 51666.37], [\"Cash Transfers Jan - Dec\", 51353.76], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 199); INSERT INTO [[schema]].hact_hacthistory VALUES (59, '2018-12-31 13:05:22.954554+00', '2019-02-07 18:15:41.756886+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE REGIONALE DU LOGONE ORIENTALE\"], [\"Vendor Number\", \"2500214006\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 362168.22], [\"Liquidations 1 OCT - 30 SEP\", 312161.0], [\"Cash Transfers Jan - Dec\", 362168.22], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 48); INSERT INTO [[schema]].hact_hacthistory VALUES (60, '2018-12-31 13:05:23.009405+00', '2019-02-07 18:15:41.779514+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION SANIT. REG. DU MANDOUL\"], [\"Vendor Number\", \"2500213999\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 173164.82], [\"Liquidations 1 OCT - 30 SEP\", 88218.89], [\"Cash Transfers Jan - Dec\", 136394.02], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 41); INSERT INTO [[schema]].hact_hacthistory VALUES (56, '2018-12-31 13:05:22.844485+00', '2019-02-07 18:15:41.704228+00', 2018, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE REGI DU OUADDAI\"], [\"Vendor Number\", \"2500214007\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 133293.1], [\"Liquidations 1 OCT - 30 SEP\", 159771.45], [\"Cash Transfers Jan - Dec\", 110229.6], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 49); +INSERT INTO [[schema]].hact_hacthistory VALUES (136, '2019-12-31 03:30:23.356824+00', '2019-12-31 03:30:23.368591+00', 2019, '"[[\"Implementing Partner\", \"ASSOCIATION DES FEMMES ALLAITANTES\"], [\"Vendor Number\", \"2500235282\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 19629.27], [\"Liquidations 1 OCT - 30 SEP\", 19629.27], [\"Cash Transfers Jan - Dec\", 24392.93], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 403); INSERT INTO [[schema]].hact_hacthistory VALUES (63, '2018-12-31 13:05:23.229412+00', '2019-02-07 18:15:41.866067+00', 2018, '"[[\"Implementing Partner\", \"DIRECT DE L ENFANCE COORD PROG VOLET\"], [\"Vendor Number\", \"2500237554\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 144451.1], [\"Liquidations 1 OCT - 30 SEP\", 40608.17], [\"Cash Transfers Jan - Dec\", 280949.08], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 420); INSERT INTO [[schema]].hact_hacthistory VALUES (64, '2018-12-31 13:05:23.28263+00', '2019-02-07 18:15:41.882938+00', 2018, '"[[\"Implementing Partner\", \"DIRECTION DE LA VACCINATION ET DE LA SURVEILLANCE EPIDEMIOLOGIQUE DVSE\"], [\"Vendor Number\", \"2500212790\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 1650232.96], [\"Liquidations 1 OCT - 30 SEP\", 1431492.48], [\"Cash Transfers Jan - Dec\", 851311.98], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 4], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 112); INSERT INTO [[schema]].hact_hacthistory VALUES (65, '2018-12-31 13:05:23.336635+00', '2019-02-07 18:15:41.89993+00', 2018, '"[[\"Implementing Partner\", \"DIRECTION DE L ORGANISATION DES SERVICES DE SANTE ET DES MECANISMES DE FINANCEMENT DOSSMF\"], [\"Vendor Number\", \"2500239012\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 243549.73], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 243549.73], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 438); INSERT INTO [[schema]].hact_hacthistory VALUES (66, '2018-12-31 13:05:23.378107+00', '2019-02-07 18:15:41.917225+00', 2018, '"[[\"Implementing Partner\", \"DIRECTION DES AFFAIRES POLITIQUES ET DE L ETAT CIVIL\"], [\"Vendor Number\", \"2500214018\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 5722.14], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 5722.14], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 60); INSERT INTO [[schema]].hact_hacthistory VALUES (62, '2018-12-31 13:05:23.190626+00', '2019-02-07 18:15:41.847185+00', 2018, '"[[\"Implementing Partner\", \"DIRECT DE LA NUTRI AND DE LA TECHNOLOGIE ALIMENTAIRE\"], [\"Vendor Number\", \"2500213970\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 425014.32], [\"Liquidations 1 OCT - 30 SEP\", 820770.5], [\"Cash Transfers Jan - Dec\", 464727.46], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 120); +INSERT INTO [[schema]].hact_hacthistory VALUES (137, '2019-12-31 03:30:23.394489+00', '2019-12-31 03:30:23.406357+00', 2019, '"[[\"Implementing Partner\", \"ASSOCIATION DES FEMMES ANNASSOUR\"], [\"Vendor Number\", \"2500227536\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 28020.92], [\"Liquidations 1 OCT - 30 SEP\", 21416.34], [\"Cash Transfers Jan - Dec\", 22967.39], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 258); INSERT INTO [[schema]].hact_hacthistory VALUES (69, '2018-12-31 13:05:23.5125+00', '2019-02-07 18:15:41.969951+00', 2018, '"[[\"Implementing Partner\", \"DIRECTION GENERALE DE LA POLICE NATIONAL\"], [\"Vendor Number\", \"2500237547\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 46816.83], [\"Liquidations 1 OCT - 30 SEP\", 46816.83], [\"Cash Transfers Jan - Dec\", 4768.35], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 417); INSERT INTO [[schema]].hact_hacthistory VALUES (70, '2018-12-31 13:05:23.555251+00', '2019-02-07 18:15:41.987806+00', 2018, '"[[\"Implementing Partner\", \"DIRECTION GENERALE DE LA SANTE ENVIRONNEMENTALE ET DE LA LUTTE CONTRE LA MALADIE DGSELM\"], [\"Vendor Number\", \"2500235511\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 70785.17], [\"Liquidations 1 OCT - 30 SEP\", 70785.17], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 405); INSERT INTO [[schema]].hact_hacthistory VALUES (71, '2018-12-31 13:05:23.668758+00', '2019-02-07 18:15:42.004751+00', 2018, '"[[\"Implementing Partner\", \"DISTRICT SANITAIRE D AM DAM OUADDAI\"], [\"Vendor Number\", \"2500214026\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 3651.16], [\"Liquidations 1 OCT - 30 SEP\", 22892.52], [\"Cash Transfers Jan - Dec\", 3651.16], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 65); INSERT INTO [[schema]].hact_hacthistory VALUES (72, '2018-12-31 13:05:23.750779+00', '2019-02-07 18:15:42.021994+00', 2018, '"[[\"Implementing Partner\", \"DISTRICT SANITAIRE DE BEDJONDO\"], [\"Vendor Number\", \"2500234500\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 13811.18], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 13811.18], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 378); INSERT INTO [[schema]].hact_hacthistory VALUES (68, '2018-12-31 13:05:23.458476+00', '2019-02-07 18:15:41.95223+00', 2018, '"[[\"Implementing Partner\", \"DIRECTION DES ETUDES ET DE PREVISION\"], [\"Vendor Number\", \"2500234840\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 171068.89], [\"Liquidations 1 OCT - 30 SEP\", 120829.29], [\"Cash Transfers Jan - Dec\", 194521.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 393); +INSERT INTO [[schema]].hact_hacthistory VALUES (138, '2019-12-31 03:30:23.432481+00', '2019-12-31 03:30:23.445095+00', 2019, '"[[\"Implementing Partner\", \"ASSOCIATION DES FEMMES POUR LE DEVELOPPEMENT INTEGRE AFDI\"], [\"Vendor Number\", \"2500223261\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 71060.43], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 138318.85], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 182); INSERT INTO [[schema]].hact_hacthistory VALUES (75, '2018-12-31 13:05:24.099798+00', '2019-02-07 18:15:42.075622+00', 2018, '"[[\"Implementing Partner\", \"DISTRICT SANITAIRE DIRIBA\"], [\"Vendor Number\", \"2500229233\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 2220.7], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 2220.7], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 304); INSERT INTO [[schema]].hact_hacthistory VALUES (77, '2018-12-31 13:05:24.178593+00', '2019-02-07 18:15:42.112131+00', 2018, '"[[\"Implementing Partner\", \"DISTRICT SANITAIRE N DJAMENA SUD\"], [\"Vendor Number\", \"2500238341\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 11722.74], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 11722.74], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 433); INSERT INTO [[schema]].hact_hacthistory VALUES (78, '2018-12-31 13:05:24.322695+00', '2019-02-07 18:15:42.129215+00', 2018, '"[[\"Implementing Partner\", \"DSR DU CHARI BAGUIRMI\"], [\"Vendor Number\", \"2500230473\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 0.0], [\"Liquidations 1 OCT - 30 SEP\", 7786.93], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 313); +INSERT INTO [[schema]].hact_hacthistory VALUES (139, '2019-12-31 03:30:23.479461+00', '2019-12-31 03:30:23.491074+00', 2019, '"[[\"Implementing Partner\", \"ASSOCIATION DES GUIDES DU TCHAD\"], [\"Vendor Number\", \"2500213937\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 36549.6], [\"Liquidations 1 OCT - 30 SEP\", 19814.48], [\"Cash Transfers Jan - Dec\", 36737.18], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 28); INSERT INTO [[schema]].hact_hacthistory VALUES (74, '2018-12-31 13:05:23.995731+00', '2019-02-07 18:15:42.057471+00', 2018, '"[[\"Implementing Partner\", \"DISTRICT SANITAIRE DE MONGO\"], [\"Vendor Number\", \"2500234501\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 9717.96], [\"Liquidations 1 OCT - 30 SEP\", 9717.96], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 367); +INSERT INTO [[schema]].hact_hacthistory VALUES (140, '2019-12-31 03:30:23.618228+00', '2019-12-31 03:30:23.630168+00', 2019, '"[[\"Implementing Partner\", \"ASSOCIATION DES SCOUTS DU TCHAD\"], [\"Vendor Number\", \"2500224593\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 22368.07], [\"Liquidations 1 OCT - 30 SEP\", 22368.07], [\"Cash Transfers Jan - Dec\", 34041.82], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 220); INSERT INTO [[schema]].hact_hacthistory VALUES (81, '2018-12-31 13:05:24.633601+00', '2019-02-07 18:15:42.179726+00', 2018, '"[[\"Implementing Partner\", \"GROUPEMENT AL NADJA\"], [\"Vendor Number\", \"2500232213\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 30960.52], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 30960.52], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 350); INSERT INTO [[schema]].hact_hacthistory VALUES (82, '2018-12-31 13:05:24.773038+00', '2019-02-07 18:15:42.197186+00', 2018, '"[[\"Implementing Partner\", \"HANDICAP INTERNATIONAL\"], [\"Vendor Number\", \"2500233978\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 107895.44], [\"Liquidations 1 OCT - 30 SEP\", 107895.44], [\"Cash Transfers Jan - Dec\", 63694.0], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 369); INSERT INTO [[schema]].hact_hacthistory VALUES (83, '2018-12-31 13:05:24.825582+00', '2019-02-07 18:15:42.214225+00', 2018, '"[[\"Implementing Partner\", \"HOPITAL DE LA MERE ET DE L ENFANT\"], [\"Vendor Number\", \"2500224825\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 96360.29], [\"Liquidations 1 OCT - 30 SEP\", 63753.74], [\"Cash Transfers Jan - Dec\", 54564.27], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 208); INSERT INTO [[schema]].hact_hacthistory VALUES (84, '2018-12-31 13:05:24.907609+00', '2019-02-07 18:15:42.231043+00', 2018, '"[[\"Implementing Partner\", \"IBCR\"], [\"Vendor Number\", \"2500233086\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Low Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 62868.47], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 62868.47], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 357); INSERT INTO [[schema]].hact_hacthistory VALUES (80, '2018-12-31 13:05:24.580894+00', '2019-02-07 18:15:42.162566+00', 2018, '"[[\"Implementing Partner\", \"GENERARION ABCD ANYBODYCANDREAM OFFICE NOTARIALE ME DJOMIA GERMAIN 621 NDJAMENA\"], [\"Vendor Number\", \"2500236830\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 14120.09], [\"Liquidations 1 OCT - 30 SEP\", 34372.78], [\"Cash Transfers Jan - Dec\", 16150.48], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 413); +INSERT INTO [[schema]].hact_hacthistory VALUES (141, '2019-12-31 03:30:23.686389+00', '2019-12-31 03:30:23.698219+00', 2019, '"[[\"Implementing Partner\", \"ASSOCIATION DISPENSAIRE NDA CHAGOUA BP 82 NDJAMENA\"], [\"Vendor Number\", \"2500212780\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 17417.32], [\"Liquidations 1 OCT - 30 SEP\", 33353.03], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 77); INSERT INTO [[schema]].hact_hacthistory VALUES (87, '2018-12-31 13:05:25.08066+00', '2019-02-07 18:15:42.2831+00', 2018, '"[[\"Implementing Partner\", \"INTERNATIONAL AID SERVICES\"], [\"Vendor Number\", \"2500214085\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 688136.45], [\"Liquidations 1 OCT - 30 SEP\", 107067.0], [\"Cash Transfers Jan - Dec\", 931234.98], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 7); INSERT INTO [[schema]].hact_hacthistory VALUES (88, '2018-12-31 13:05:25.116516+00', '2019-02-07 18:15:42.300106+00', 2018, '"[[\"Implementing Partner\", \"INTERNATIONAL RESCUE COMMITTEE\"], [\"Vendor Number\", \"2500214088\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 96368.46], [\"Liquidations 1 OCT - 30 SEP\", 312377.64], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 8); INSERT INTO [[schema]].hact_hacthistory VALUES (89, '2018-12-31 13:05:25.254698+00', '2019-02-07 18:15:42.316932+00', 2018, '"[[\"Implementing Partner\", \"JRS UNICEF\"], [\"Vendor Number\", \"2500213951\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 386883.19], [\"Liquidations 1 OCT - 30 SEP\", 45088.66], [\"Cash Transfers Jan - Dec\", 681912.37], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 53); INSERT INTO [[schema]].hact_hacthistory VALUES (90, '2018-12-31 13:05:25.383853+00', '2019-02-07 18:15:42.334775+00', 2018, '"[[\"Implementing Partner\", \"MAISON DE CULTURE ALHADJ AHMAT PECOS\"], [\"Vendor Number\", \"2500238592\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 16772.85], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 16772.85], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 437); INSERT INTO [[schema]].hact_hacthistory VALUES (86, '2018-12-31 13:05:25.029252+00', '2019-02-07 18:15:42.266263+00', 2018, '"[[\"Implementing Partner\", \"INSTITUT NATIONAL DE STATISTIQUES DES ETUDES ECONOMIQUES ET DEMOGRAPHIQUES\"], [\"Vendor Number\", \"2500214083\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 172419.94], [\"Liquidations 1 OCT - 30 SEP\", 162417.05], [\"Cash Transfers Jan - Dec\", 1051309.83], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 5); +INSERT INTO [[schema]].hact_hacthistory VALUES (142, '2019-12-31 03:30:23.909464+00', '2019-12-31 03:30:23.921924+00', 2019, '"[[\"Implementing Partner\", \"ASSOCIATION LABEL 109\"], [\"Vendor Number\", \"2500237874\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 24015.54], [\"Liquidations 1 OCT - 30 SEP\", 8342.27], [\"Cash Transfers Jan - Dec\", 25199.02], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 427); INSERT INTO [[schema]].hact_hacthistory VALUES (93, '2018-12-31 13:05:25.601463+00', '2019-02-07 18:15:42.39886+00', 2018, '"[[\"Implementing Partner\", \"MINISTERE DE LA FEMME DE L ACTION SOCIALE ET DE LA SOLIDARITE NATIONALE\"], [\"Vendor Number\", \"2500212758\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 0.0], [\"Liquidations 1 OCT - 30 SEP\", 37666.59], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 100); INSERT INTO [[schema]].hact_hacthistory VALUES (94, '2018-12-31 13:05:25.642044+00', '2019-02-07 18:15:42.417943+00', 2018, '"[[\"Implementing Partner\", \"MINISTERE DE LA JUSTICE ET DROITS H\"], [\"Vendor Number\", \"2500212764\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 0.0], [\"Liquidations 1 OCT - 30 SEP\", 32609.77], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 76); INSERT INTO [[schema]].hact_hacthistory VALUES (95, '2018-12-31 13:05:25.712586+00', '2019-02-07 18:15:42.439025+00', 2018, '"[[\"Implementing Partner\", \"MINISTERE DU PLAN DEVELOPPEMENT ET DE LA COOPERATION\"], [\"Vendor Number\", \"2500212777\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 177394.7], [\"Liquidations 1 OCT - 30 SEP\", 117820.95], [\"Cash Transfers Jan - Dec\", 208049.66], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 74); INSERT INTO [[schema]].hact_hacthistory VALUES (96, '2018-12-31 13:05:25.752162+00', '2019-02-07 18:15:42.455588+00', 2018, '"[[\"Implementing Partner\", \"MINISTERE HAUT CONSEIL DE LA COMMUNICATION HCC AIDE PRESSE\"], [\"Vendor Number\", \"2500235258\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Simplified Checklist\"], [\"Cash Transfer 1 OCT - 30 SEP\", 20229.0], [\"Liquidations 1 OCT - 30 SEP\", 13975.15], [\"Cash Transfers Jan - Dec\", 23967.62], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 400); INSERT INTO [[schema]].hact_hacthistory VALUES (92, '2018-12-31 13:05:25.562398+00', '2019-02-07 18:15:42.370845+00', 2018, '"[[\"Implementing Partner\", \"MINISTERE DE LA DE LA JEUNESSE SPORTS ET LOISIRS\"], [\"Vendor Number\", \"2500212763\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", -1706.65], [\"Liquidations 1 OCT - 30 SEP\", 19370.68], [\"Cash Transfers Jan - Dec\", 17035.07], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 51); +INSERT INTO [[schema]].hact_hacthistory VALUES (143, '2019-12-31 03:30:23.948026+00', '2019-12-31 03:30:23.961713+00', 2019, '"[[\"Implementing Partner\", \"ASSOCIATION LA VOIX DU OUADDAI COMP\"], [\"Vendor Number\", \"2500224554\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 5062.93], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 5062.93], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 222); INSERT INTO [[schema]].hact_hacthistory VALUES (99, '2018-12-31 13:05:25.908518+00', '2019-02-07 18:15:42.506929+00', 2018, '"[[\"Implementing Partner\", \"ONG CROIX ROUGE FRANCAISE\"], [\"Vendor Number\", \"2500238161\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Others\"], [\"Cash Transfer 1 OCT - 30 SEP\", 336326.15], [\"Liquidations 1 OCT - 30 SEP\", 48113.26], [\"Cash Transfers Jan - Dec\", 521921.33], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 431); INSERT INTO [[schema]].hact_hacthistory VALUES (100, '2018-12-31 13:05:26.04946+00', '2019-02-07 18:15:42.5238+00', 2018, '"[[\"Implementing Partner\", \"OPDAS TCHAD\"], [\"Vendor Number\", \"2500235894\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 60483.1], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 146068.23], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 407); INSERT INTO [[schema]].hact_hacthistory VALUES (102, '2018-12-31 13:05:26.239448+00', '2019-02-07 18:15:42.557088+00', 2018, '"[[\"Implementing Partner\", \"PROGRAMME DE MASTER HYDROSIG\"], [\"Vendor Number\", \"2500236512\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Simplified Checklist\"], [\"Cash Transfer 1 OCT - 30 SEP\", 13746.05], [\"Liquidations 1 OCT - 30 SEP\", 36044.87], [\"Cash Transfers Jan - Dec\", 19550.92], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 410); +INSERT INTO [[schema]].hact_hacthistory VALUES (144, '2019-12-31 03:30:24.032294+00', '2019-12-31 03:30:24.044975+00', 2019, '"[[\"Implementing Partner\", \"ASSOCIATION POUR LA PROMOTION DES LIBERTES FONDAMENTALES AU TCHAD\"], [\"Vendor Number\", \"2500213943\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 39681.8], [\"Liquidations 1 OCT - 30 SEP\", 11685.18], [\"Cash Transfers Jan - Dec\", 117567.28], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 30); INSERT INTO [[schema]].hact_hacthistory VALUES (98, '2018-12-31 13:05:25.869631+00', '2019-02-07 18:15:42.489053+00', 2018, '"[[\"Implementing Partner\", \"ONG CONCERN WORLDWIDE\"], [\"Vendor Number\", \"2500215479\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 142418.68], [\"Liquidations 1 OCT - 30 SEP\", 227033.11], [\"Cash Transfers Jan - Dec\", 53468.73], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 18); +INSERT INTO [[schema]].hact_hacthistory VALUES (145, '2019-12-31 03:30:24.256438+00', '2019-12-31 03:30:24.270204+00', 2019, '"[[\"Implementing Partner\", \"ASSOCIATION PREMIERE URGENCE INTERNATIONALE\"], [\"Vendor Number\", \"2500212787\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 115184.89], [\"Liquidations 1 OCT - 30 SEP\", 115184.89], [\"Cash Transfers Jan - Dec\", 120023.23], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 80); INSERT INTO [[schema]].hact_hacthistory VALUES (105, '2018-12-31 13:05:26.441687+00', '2019-02-07 18:15:42.608118+00', 2018, '"[[\"Implementing Partner\", \"PROJET TRANSFORMATION PACIFIQUE DES CONFLICTS\"], [\"Vendor Number\", \"2500236867\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 15314.18], [\"Liquidations 1 OCT - 30 SEP\", 45165.14], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 421); INSERT INTO [[schema]].hact_hacthistory VALUES (106, '2018-12-31 13:05:26.479567+00', '2019-02-07 18:15:42.624161+00', 2018, '"[[\"Implementing Partner\", \"PROTECTION D ENFANTS AU MINISTERE DE LA DE LA DEFENSE\"], [\"Vendor Number\", \"2500237862\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 37563.37], [\"Liquidations 1 OCT - 30 SEP\", 32016.12], [\"Cash Transfers Jan - Dec\", 35622.19], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 425); INSERT INTO [[schema]].hact_hacthistory VALUES (107, '2018-12-31 13:05:26.700212+00', '2019-02-07 18:15:42.640529+00', 2018, '"[[\"Implementing Partner\", \"RADIO FM LIBERTE\"], [\"Vendor Number\", \"2500232403\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 19413.69], [\"Liquidations 1 OCT - 30 SEP\", 45254.21], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 337); INSERT INTO [[schema]].hact_hacthistory VALUES (108, '2018-12-31 13:05:26.979364+00', '2019-02-07 18:15:42.658144+00', 2018, '"[[\"Implementing Partner\", \"REFUGEE EDUCATION TRUST RET\"], [\"Vendor Number\", \"2500237473\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 435933.74], [\"Liquidations 1 OCT - 30 SEP\", 157527.19], [\"Cash Transfers Jan - Dec\", 723018.69], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 424); INSERT INTO [[schema]].hact_hacthistory VALUES (104, '2018-12-31 13:05:26.34347+00', '2019-02-07 18:15:42.591231+00', 2018, '"[[\"Implementing Partner\", \"PROGRAMME SANTE NUTRITION C C\"], [\"Vendor Number\", \"2500212797\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 106253.57], [\"Liquidations 1 OCT - 30 SEP\", 97726.78], [\"Cash Transfers Jan - Dec\", 186967.93], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 81); +INSERT INTO [[schema]].hact_hacthistory VALUES (146, '2019-12-31 03:30:24.296517+00', '2019-12-31 03:30:24.308085+00', 2019, '"[[\"Implementing Partner\", \"ASSOCIATION PROMODEVELOP DURABLE ET INTGRAL\"], [\"Vendor Number\", \"2500240134\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 26940.57], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 40922.49], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 444); INSERT INTO [[schema]].hact_hacthistory VALUES (111, '2018-12-31 13:05:27.114281+00', '2019-02-07 18:15:42.7192+00', 2018, '"[[\"Implementing Partner\", \"RESEAU DES MAISONS DE QUARTIER\"], [\"Vendor Number\", \"2500229637\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 15754.18], [\"Liquidations 1 OCT - 30 SEP\", 36371.51], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"Not Required\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 322); INSERT INTO [[schema]].hact_hacthistory VALUES (112, '2018-12-31 13:05:27.152577+00', '2019-02-07 18:15:42.735886+00', 2018, '"[[\"Implementing Partner\", \"RESEAU DES PARLEMENTAIRES SUR LA NUTRITION\"], [\"Vendor Number\", \"2500233567\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 11624.07], [\"Liquidations 1 OCT - 30 SEP\", 11624.07], [\"Cash Transfers Jan - Dec\", 3331.45], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 387); INSERT INTO [[schema]].hact_hacthistory VALUES (113, '2018-12-31 13:05:27.191072+00', '2019-02-07 18:15:42.751819+00', 2018, '"[[\"Implementing Partner\", \"RESEAU DES PARLEMENTAIRES VIH SIDA\"], [\"Vendor Number\", \"2500237124\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", -7001.02], [\"Liquidations 1 OCT - 30 SEP\", 45869.45], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 419); INSERT INTO [[schema]].hact_hacthistory VALUES (114, '2018-12-31 13:05:27.245868+00', '2019-02-07 18:15:42.768434+00', 2018, '"[[\"Implementing Partner\", \"RESEAU NATIONAL TCHADIEN DES ASSOCIATIONS DES PERSONNES VIVANT AVEC LE VIH RNTAP\"], [\"Vendor Number\", \"2500221790\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 85109.86], [\"Liquidations 1 OCT - 30 SEP\", 131222.18], [\"Cash Transfers Jan - Dec\", 87344.27], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 169); INSERT INTO [[schema]].hact_hacthistory VALUES (110, '2018-12-31 13:05:27.074467+00', '2019-02-07 18:15:42.703174+00', 2018, '"[[\"Implementing Partner\", \"RESEAU DES JOURNALISTES TCHADIENS EN NUTRITION\"], [\"Vendor Number\", \"2500237900\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 24519.44], [\"Liquidations 1 OCT - 30 SEP\", 19747.52], [\"Cash Transfers Jan - Dec\", 41013.63], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 428); +INSERT INTO [[schema]].hact_hacthistory VALUES (147, '2019-12-31 03:30:24.382578+00', '2019-12-31 03:30:24.395635+00', 2019, '"[[\"Implementing Partner\", \"ASSOCIATION SOEURS DE NOTRE DAME DES APOTRES\"], [\"Vendor Number\", \"2500237892\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 0.0], [\"Liquidations 1 OCT - 30 SEP\", 11784.12], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 426); INSERT INTO [[schema]].hact_hacthistory VALUES (117, '2018-12-31 13:05:27.391343+00', '2019-02-07 18:15:42.818943+00', 2018, '"[[\"Implementing Partner\", \"SECOURS ISLAMIQUE FRANCE PROJET WASH\"], [\"Vendor Number\", \"2500212820\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 221820.18], [\"Liquidations 1 OCT - 30 SEP\", 24680.76], [\"Cash Transfers Jan - Dec\", 224620.46], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 104); INSERT INTO [[schema]].hact_hacthistory VALUES (118, '2018-12-31 13:05:27.448245+00', '2019-02-07 18:15:42.835114+00', 2018, '"[[\"Implementing Partner\", \"SOCIAL CHANGE FACTORY\"], [\"Vendor Number\", \"2500234927\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 108047.79], [\"Liquidations 1 OCT - 30 SEP\", 68444.45], [\"Cash Transfers Jan - Dec\", 120349.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 429); INSERT INTO [[schema]].hact_hacthistory VALUES (119, '2018-12-31 13:05:27.537483+00', '2019-02-07 18:15:42.850984+00', 2018, '"[[\"Implementing Partner\", \"TEMOINS DES URGENCES ACTIONS DE DEVELOPPEMENT BP ABECHE\"], [\"Vendor Number\", \"2500230634\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 0.0], [\"Liquidations 1 OCT - 30 SEP\", 50556.58], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 317); INSERT INTO [[schema]].hact_hacthistory VALUES (120, '2018-12-31 13:05:27.575595+00', '2019-02-07 18:15:42.866654+00', 2018, '"[[\"Implementing Partner\", \"TERRE VERTE CELIAF\"], [\"Vendor Number\", \"2500212828\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 38968.83], [\"Liquidations 1 OCT - 30 SEP\", 38968.83], [\"Cash Transfers Jan - Dec\", 17283.83], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 105); INSERT INTO [[schema]].hact_hacthistory VALUES (116, '2018-12-31 13:05:27.35156+00', '2019-02-07 18:15:42.800671+00', 2018, '"[[\"Implementing Partner\", \"SECADEV\"], [\"Vendor Number\", \"2500212819\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 249133.72], [\"Liquidations 1 OCT - 30 SEP\", 346497.45], [\"Cash Transfers Jan - Dec\", 249133.72], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 88); +INSERT INTO [[schema]].hact_hacthistory VALUES (148, '2019-12-31 03:30:24.699002+00', '2019-12-31 03:30:24.711473+00', 2019, '"[[\"Implementing Partner\", \"CATHOLIC RELIEF SERVICES\"], [\"Vendor Number\", \"2500213955\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 72313.86], [\"Liquidations 1 OCT - 30 SEP\", 122579.84], [\"Cash Transfers Jan - Dec\", 192992.87], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 54); INSERT INTO [[schema]].hact_hacthistory VALUES (123, '2018-12-31 13:05:27.778046+00', '2019-02-07 18:15:42.930243+00', 2018, '"[[\"Implementing Partner\", \"UNITE DE GESTION DES PROJETS UGP\"], [\"Vendor Number\", \"2500238874\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 37165.49], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 72126.51], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 436); INSERT INTO [[schema]].hact_hacthistory VALUES (124, '2018-12-31 13:05:27.859124+00', '2019-02-07 18:15:42.947564+00', 2018, '"[[\"Implementing Partner\", \"WENAKLABS\"], [\"Vendor Number\", \"2500234767\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 441.21], [\"Liquidations 1 OCT - 30 SEP\", 14323.13], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 402); INSERT INTO [[schema]].hact_hacthistory VALUES (125, '2018-12-31 13:05:27.897524+00', '2019-02-07 18:15:42.971566+00', 2018, '"[[\"Implementing Partner\", \"WORLD VISION\"], [\"Vendor Number\", \"2500237165\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 287222.24], [\"Liquidations 1 OCT - 30 SEP\", 159087.03], [\"Cash Transfers Jan - Dec\", 353064.27], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 415); @@ -13445,6 +14311,100 @@ INSERT INTO [[schema]].hact_hacthistory VALUES (103, '2018-12-31 13:05:26.291683 INSERT INTO [[schema]].hact_hacthistory VALUES (109, '2018-12-31 13:05:27.015767+00', '2019-02-07 18:15:42.674989+00', 2018, '"[[\"Implementing Partner\", \"REPOD RESEAU DES PARLEMENTAIRES POUR LA POUR LA POPULATION ET LE DEVELOPPEMENT\"], [\"Vendor Number\", \"2500236837\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Simplified Checklist\"], [\"Cash Transfer 1 OCT - 30 SEP\", 10687.98], [\"Liquidations 1 OCT - 30 SEP\", 33372.02], [\"Cash Transfers Jan - Dec\", 25142.26], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 412); INSERT INTO [[schema]].hact_hacthistory VALUES (115, '2018-12-31 13:05:27.298768+00', '2019-02-07 18:15:42.784275+00', 2018, '"[[\"Implementing Partner\", \"RTSE\"], [\"Vendor Number\", \"2500236515\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 14232.01], [\"Liquidations 1 OCT - 30 SEP\", 13016.46], [\"Cash Transfers Jan - Dec\", 14232.01], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 434); INSERT INTO [[schema]].hact_hacthistory VALUES (121, '2018-12-31 13:05:27.612598+00', '2019-02-07 18:15:42.898216+00', 2018, '"[[\"Implementing Partner\", \"THE MENTOR INITIATIVE\"], [\"Vendor Number\", \"2500225653\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 73040.41], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 73040.41], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 237); +INSERT INTO [[schema]].hact_hacthistory VALUES (149, '2019-12-31 03:30:24.888517+00', '2019-12-31 03:30:24.901384+00', 2019, '"[[\"Implementing Partner\", \"CELLULE DE LIAISON ET D INFORMATION DES ASSOCIATIONS FEMININES COORDINATION NATIONALE\"], [\"Vendor Number\", \"2500233143\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 264439.19], [\"Liquidations 1 OCT - 30 SEP\", 231105.65], [\"Cash Transfers Jan - Dec\", 319456.1], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 339); +INSERT INTO [[schema]].hact_hacthistory VALUES (150, '2019-12-31 03:30:24.973274+00', '2019-12-31 03:30:24.985534+00', 2019, '"[[\"Implementing Partner\", \"CELLULE PLAIDOYER ET COMMUNICATION MINISTERE DE LA COMMUNICATION\"], [\"Vendor Number\", \"2500220939\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", -1066.35], [\"Liquidations 1 OCT - 30 SEP\", 19006.79], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 156); +INSERT INTO [[schema]].hact_hacthistory VALUES (151, '2019-12-31 03:30:25.245352+00', '2019-12-31 03:30:25.257493+00', 2019, '"[[\"Implementing Partner\", \"CNEAH\"], [\"Vendor Number\", \"2500226725\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 170904.54], [\"Liquidations 1 OCT - 30 SEP\", 241957.06], [\"Cash Transfers Jan - Dec\", 112938.87], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 262); +INSERT INTO [[schema]].hact_hacthistory VALUES (152, '2019-12-31 03:30:25.330602+00', '2019-12-31 03:30:25.344235+00', 2019, '"[[\"Implementing Partner\", \"COMITE POUR LE DEVELOPPEMENT DU VOLONTARIAT AU TCHAD\"], [\"Vendor Number\", \"2500233727\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 123090.64], [\"Liquidations 1 OCT - 30 SEP\", 92468.06], [\"Cash Transfers Jan - Dec\", 77309.62], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 372); +INSERT INTO [[schema]].hact_hacthistory VALUES (153, '2019-12-31 03:30:25.370916+00', '2019-12-31 03:30:25.384188+00', 2019, '"[[\"Implementing Partner\", \"COMITE PROVINCIAL DE LA CROIX ROUGE DU MOYEN CHARI\"], [\"Vendor Number\", \"2500240242\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 23754.68], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 37717.62], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 445); +INSERT INTO [[schema]].hact_hacthistory VALUES (154, '2019-12-31 03:30:25.412518+00', '2019-12-31 03:30:25.424184+00', 2019, '"[[\"Implementing Partner\", \"COMITE REGIONAL D ACTION CRA REGION DU OUADDAI\"], [\"Vendor Number\", \"2500232659\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 0.0], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 13644.33], [\"Risk Rating\", \"Not Required\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 335); +INSERT INTO [[schema]].hact_hacthistory VALUES (155, '2019-12-31 03:30:25.606446+00', '2019-12-31 03:30:25.618292+00', 2019, '"[[\"Implementing Partner\", \"CONSEIL NATIONAL DE LUTTE CONTRE LE SIDA\"], [\"Vendor Number\", \"2500220945\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 44004.38], [\"Liquidations 1 OCT - 30 SEP\", 173555.41], [\"Cash Transfers Jan - Dec\", 38858.32], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 155); +INSERT INTO [[schema]].hact_hacthistory VALUES (156, '2019-12-31 03:30:25.796439+00', '2019-12-31 03:30:25.820098+00', 2019, '"[[\"Implementing Partner\", \"COOPERATIVE ET GROUPEMENT C R A SALAMAT\"], [\"Vendor Number\", \"2500236701\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 11837.51], [\"Liquidations 1 OCT - 30 SEP\", 11837.51], [\"Cash Transfers Jan - Dec\", 11837.51], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 422); +INSERT INTO [[schema]].hact_hacthistory VALUES (157, '2019-12-31 03:30:25.895548+00', '2019-12-31 03:30:25.909716+00', 2019, '"[[\"Implementing Partner\", \"COORDINATION PREVENTION DE LA TRANSMISSI MERE ET ENFANT\"], [\"Vendor Number\", \"2500213987\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 249612.6], [\"Liquidations 1 OCT - 30 SEP\", 253074.98], [\"Cash Transfers Jan - Dec\", 203831.56], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 124); +INSERT INTO [[schema]].hact_hacthistory VALUES (158, '2019-12-31 03:30:25.940043+00', '2019-12-31 03:30:25.951407+00', 2019, '"[[\"Implementing Partner\", \"COORDINATION PRINCIPALE PROGRAMME EDUCATION\"], [\"Vendor Number\", \"2500213988\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 1347403.57], [\"Liquidations 1 OCT - 30 SEP\", 561707.42], [\"Cash Transfers Jan - Dec\", 1422135.34], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 4], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 125); +INSERT INTO [[schema]].hact_hacthistory VALUES (159, '2019-12-31 03:30:26.040047+00', '2019-12-31 03:30:26.05215+00', 2019, '"[[\"Implementing Partner\", \"CROIX ROUGE DU TCHAD\"], [\"Vendor Number\", \"2500221169\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", -56.79], [\"Liquidations 1 OCT - 30 SEP\", 448560.05], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 162); +INSERT INTO [[schema]].hact_hacthistory VALUES (160, '2019-12-31 03:30:26.124776+00', '2019-12-31 03:30:26.137424+00', 2019, '"[[\"Implementing Partner\", \"CSJEFOD\"], [\"Vendor Number\", \"2500219686\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 0.0], [\"Liquidations 1 OCT - 30 SEP\", 33718.43], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 141); +INSERT INTO [[schema]].hact_hacthistory VALUES (161, '2019-12-31 03:30:26.200401+00', '2019-12-31 03:30:26.212348+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION PROVINCIALE DE L ACTION SOCIALE ABECHE\"], [\"Vendor Number\", \"2500222557\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 34358.39], [\"Liquidations 1 OCT - 30 SEP\", 9976.97], [\"Cash Transfers Jan - Dec\", 52815.29], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 180); +INSERT INTO [[schema]].hact_hacthistory VALUES (162, '2019-12-31 03:30:26.268005+00', '2019-12-31 03:30:26.280457+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION PROVINCIALE DE L ACTION SOCIALE DE KOUMRA\"], [\"Vendor Number\", \"2500235430\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 21646.9], [\"Liquidations 1 OCT - 30 SEP\", 62041.74], [\"Cash Transfers Jan - Dec\", 77796.65], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 398); +INSERT INTO [[schema]].hact_hacthistory VALUES (163, '2019-12-31 03:30:26.306516+00', '2019-12-31 03:30:26.318118+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION PROVINCIALE DE L ACTION SOCIALE DE LAI\"], [\"Vendor Number\", \"2500234944\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 29566.72], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 29566.72], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 396); +INSERT INTO [[schema]].hact_hacthistory VALUES (164, '2019-12-31 03:30:26.370491+00', '2019-12-31 03:30:26.382903+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION PROVINCIALE DE L ACTION SOCIALE DU LAC\"], [\"Vendor Number\", \"2500226137\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 152628.94], [\"Liquidations 1 OCT - 30 SEP\", 136663.16], [\"Cash Transfers Jan - Dec\", 186254.7], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 246); +INSERT INTO [[schema]].hact_hacthistory VALUES (165, '2019-12-31 03:30:26.410572+00', '2019-12-31 03:30:26.425167+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION PROVINCIALE DE L ACTION SOCIALE GUERA\"], [\"Vendor Number\", \"2500229979\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 52656.24], [\"Liquidations 1 OCT - 30 SEP\", 15157.64], [\"Cash Transfers Jan - Dec\", 125923.48], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 315); +INSERT INTO [[schema]].hact_hacthistory VALUES (166, '2019-12-31 03:30:26.452976+00', '2019-12-31 03:30:26.469077+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION PROVINCIALE DE L ACTION SOCIALE MOUNDOU\"], [\"Vendor Number\", \"2500228145\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 37166.37], [\"Liquidations 1 OCT - 30 SEP\", 8638.14], [\"Cash Transfers Jan - Dec\", 28528.23], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 306); +INSERT INTO [[schema]].hact_hacthistory VALUES (167, '2019-12-31 03:30:26.495491+00', '2019-12-31 03:30:26.508684+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION REG DE LEDUCATION NAT DU LAC\"], [\"Vendor Number\", \"2500232251\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 425803.3], [\"Liquidations 1 OCT - 30 SEP\", 246428.7], [\"Cash Transfers Jan - Dec\", 445543.2], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 344); +INSERT INTO [[schema]].hact_hacthistory VALUES (168, '2019-12-31 03:30:26.599961+00', '2019-12-31 03:30:26.612297+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION REGIONALE DE HADJAR LAMIS\"], [\"Vendor Number\", \"2500238482\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 4415.14], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 53062.29], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 449); +INSERT INTO [[schema]].hact_hacthistory VALUES (169, '2019-12-31 03:30:26.764111+00', '2019-12-31 03:30:26.776414+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION REGIONALE DE LA SANTE WADI FIRA\"], [\"Vendor Number\", \"2500214003\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 83900.57], [\"Liquidations 1 OCT - 30 SEP\", 97438.57], [\"Cash Transfers Jan - Dec\", 124569.45], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 45); +INSERT INTO [[schema]].hact_hacthistory VALUES (170, '2019-12-31 03:30:26.884423+00', '2019-12-31 03:30:26.896863+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION REGIONALE SANITAIRE DU LAC\"], [\"Vendor Number\", \"2500214005\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 284679.73], [\"Liquidations 1 OCT - 30 SEP\", 374258.4], [\"Cash Transfers Jan - Dec\", 212506.84], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 47); +INSERT INTO [[schema]].hact_hacthistory VALUES (171, '2019-12-31 03:30:26.924162+00', '2019-12-31 03:30:26.936123+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION REG SANITAIRE DU MOYEN CHARI\"], [\"Vendor Number\", \"2500222990\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 38222.89], [\"Liquidations 1 OCT - 30 SEP\", 21985.22], [\"Cash Transfers Jan - Dec\", 38222.89], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 177); +INSERT INTO [[schema]].hact_hacthistory VALUES (172, '2019-12-31 03:30:26.984528+00', '2019-12-31 03:30:27.006963+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION REG SANITAIRE GUERA\"], [\"Vendor Number\", \"2500221849\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 362035.29], [\"Liquidations 1 OCT - 30 SEP\", 256279.73], [\"Cash Transfers Jan - Dec\", 431363.27], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 174); +INSERT INTO [[schema]].hact_hacthistory VALUES (173, '2019-12-31 03:30:27.050556+00', '2019-12-31 03:30:27.063184+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION REG SANITAIRE HADJER LAMIS\"], [\"Vendor Number\", \"2500226900\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 221600.88], [\"Liquidations 1 OCT - 30 SEP\", 74140.95], [\"Cash Transfers Jan - Dec\", 189746.9], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 268); +INSERT INTO [[schema]].hact_hacthistory VALUES (174, '2019-12-31 03:30:27.092508+00', '2019-12-31 03:30:27.104204+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION REG SANIT DU BARH EL GHAZAL\"], [\"Vendor Number\", \"2500214004\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 98913.59], [\"Liquidations 1 OCT - 30 SEP\", 94666.69], [\"Cash Transfers Jan - Dec\", 122265.51], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 46); +INSERT INTO [[schema]].hact_hacthistory VALUES (175, '2019-12-31 03:30:27.128969+00', '2019-12-31 03:30:27.140167+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE DE LA LOGONE OCCIDENTALE\"], [\"Vendor Number\", \"2500223368\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 66769.16], [\"Liquidations 1 OCT - 30 SEP\", 68381.62], [\"Cash Transfers Jan - Dec\", 102435.97], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 1], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 187); +INSERT INTO [[schema]].hact_hacthistory VALUES (176, '2019-12-31 03:30:27.167436+00', '2019-12-31 03:30:27.179377+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE DU MAYO K EST\"], [\"Vendor Number\", \"2500225289\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 81132.3], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 81132.3], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 206); +INSERT INTO [[schema]].hact_hacthistory VALUES (177, '2019-12-31 03:30:27.211605+00', '2019-12-31 03:30:27.223924+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE DU SALAMAT\"], [\"Vendor Number\", \"2500214000\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 121645.74], [\"Liquidations 1 OCT - 30 SEP\", 140752.45], [\"Cash Transfers Jan - Dec\", 230306.61], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 42); +INSERT INTO [[schema]].hact_hacthistory VALUES (178, '2019-12-31 03:30:27.252272+00', '2019-12-31 03:30:27.264036+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE REG DE LA TANDJILE\"], [\"Vendor Number\", \"2500227023\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 23275.83], [\"Liquidations 1 OCT - 30 SEP\", 30841.68], [\"Cash Transfers Jan - Dec\", 220310.56], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 1], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 266); +INSERT INTO [[schema]].hact_hacthistory VALUES (179, '2019-12-31 03:30:27.290135+00', '2019-12-31 03:30:27.301282+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE REG DU BATHA\"], [\"Vendor Number\", \"2500227966\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 65843.85], [\"Liquidations 1 OCT - 30 SEP\", 22168.97], [\"Cash Transfers Jan - Dec\", 102684.61], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 292); +INSERT INTO [[schema]].hact_hacthistory VALUES (180, '2019-12-31 03:30:27.33044+00', '2019-12-31 03:30:27.342293+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE REGI DU OUADDAI\"], [\"Vendor Number\", \"2500214007\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 117849.19], [\"Liquidations 1 OCT - 30 SEP\", 97051.91], [\"Cash Transfers Jan - Dec\", 123896.58], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 49); +INSERT INTO [[schema]].hact_hacthistory VALUES (181, '2019-12-31 03:30:27.368099+00', '2019-12-31 03:30:27.380245+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE REGIONAL DU KANEM\"], [\"Vendor Number\", \"2500214001\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 293761.16], [\"Liquidations 1 OCT - 30 SEP\", 282467.53], [\"Cash Transfers Jan - Dec\", 247028.63], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 43); +INSERT INTO [[schema]].hact_hacthistory VALUES (182, '2019-12-31 03:30:27.405931+00', '2019-12-31 03:30:27.417148+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE REGIONALE DE BORKOU\"], [\"Vendor Number\", \"2500240320\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 12067.73], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 12067.73], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 446); +INSERT INTO [[schema]].hact_hacthistory VALUES (183, '2019-12-31 03:30:27.443518+00', '2019-12-31 03:30:27.455019+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE REGIONALE DE L ENNEDI\"], [\"Vendor Number\", \"2500214002\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 25955.23], [\"Liquidations 1 OCT - 30 SEP\", 25955.23], [\"Cash Transfers Jan - Dec\", 32611.39], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 44); +INSERT INTO [[schema]].hact_hacthistory VALUES (184, '2019-12-31 03:30:27.486958+00', '2019-12-31 03:30:27.498362+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE REGIONALE DE NDJAMENA\"], [\"Vendor Number\", \"2500224907\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 111059.33], [\"Liquidations 1 OCT - 30 SEP\", 86373.84], [\"Cash Transfers Jan - Dec\", 163320.25], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 199); +INSERT INTO [[schema]].hact_hacthistory VALUES (185, '2019-12-31 03:30:27.522869+00', '2019-12-31 03:30:27.53582+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE REGIONALE DE SILA\"], [\"Vendor Number\", \"2500221009\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 33017.17], [\"Liquidations 1 OCT - 30 SEP\", 18282.59], [\"Cash Transfers Jan - Dec\", 64523.69], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 158); +INSERT INTO [[schema]].hact_hacthistory VALUES (186, '2019-12-31 03:30:27.575628+00', '2019-12-31 03:30:27.589+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE REGIONALE DU LOGONE ORIENTALE\"], [\"Vendor Number\", \"2500214006\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 51076.31], [\"Liquidations 1 OCT - 30 SEP\", 255827.33], [\"Cash Transfers Jan - Dec\", 87632.42], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 2], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 48); +INSERT INTO [[schema]].hact_hacthistory VALUES (187, '2019-12-31 03:30:27.613498+00', '2019-12-31 03:30:27.626817+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION SANITAIRE REGIONALE ENNEDI EST\"], [\"Vendor Number\", \"2500228140\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 16939.6], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 21933.8], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 272); +INSERT INTO [[schema]].hact_hacthistory VALUES (188, '2019-12-31 03:30:27.673132+00', '2019-12-31 03:30:27.689221+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION SANIT REG DU MANDOUL\"], [\"Vendor Number\", \"2500213999\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 68543.45], [\"Liquidations 1 OCT - 30 SEP\", 204937.47], [\"Cash Transfers Jan - Dec\", 155652.36], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 1], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 41); +INSERT INTO [[schema]].hact_hacthistory VALUES (189, '2019-12-31 03:30:27.736041+00', '2019-12-31 03:30:27.749703+00', 2019, '"[[\"Implementing Partner\", \"DELEGATION SANIT REG DU M KEBBI OUEST\"], [\"Vendor Number\", \"2500226068\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 72039.48], [\"Liquidations 1 OCT - 30 SEP\", 79095.54], [\"Cash Transfers Jan - Dec\", 88070.78], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 238); +INSERT INTO [[schema]].hact_hacthistory VALUES (190, '2019-12-31 03:30:27.898534+00', '2019-12-31 03:30:27.912489+00', 2019, '"[[\"Implementing Partner\", \"DIRECT DE LA NUTRI AND DE LA TECHNOLOGIE ALIMENTAIRE\"], [\"Vendor Number\", \"2500213970\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 750521.06], [\"Liquidations 1 OCT - 30 SEP\", 513896.23], [\"Cash Transfers Jan - Dec\", 1369949.83], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 120); +INSERT INTO [[schema]].hact_hacthistory VALUES (191, '2019-12-31 03:30:27.941711+00', '2019-12-31 03:30:27.957257+00', 2019, '"[[\"Implementing Partner\", \"DIRECT DE L ENFANCE COORD PROG VOLET\"], [\"Vendor Number\", \"2500237554\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 162450.96], [\"Liquidations 1 OCT - 30 SEP\", 248299.2], [\"Cash Transfers Jan - Dec\", 232562.2], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 420); +INSERT INTO [[schema]].hact_hacthistory VALUES (192, '2019-12-31 03:30:27.983578+00', '2019-12-31 03:30:27.995318+00', 2019, '"[[\"Implementing Partner\", \"DIRECTION DE LA LUTTE CONTRE LA MALADIE ET DE LA PROMOTION DE LA SANTE DLMPS\"], [\"Vendor Number\", \"2500235511\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 295595.59], [\"Liquidations 1 OCT - 30 SEP\", 271781.24], [\"Cash Transfers Jan - Dec\", 785319.21], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 405); +INSERT INTO [[schema]].hact_hacthistory VALUES (193, '2019-12-31 03:30:28.038638+00', '2019-12-31 03:30:28.055074+00', 2019, '"[[\"Implementing Partner\", \"DIRECTION DE LA VACCINATION ET DE LA SURVEILLANCE EPIDEMIOLOGIQUE DVSE\"], [\"Vendor Number\", \"2500212790\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", -19456.23], [\"Liquidations 1 OCT - 30 SEP\", 749851.09], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 112); +INSERT INTO [[schema]].hact_hacthistory VALUES (194, '2019-12-31 03:30:28.112495+00', '2019-12-31 03:30:28.124446+00', 2019, '"[[\"Implementing Partner\", \"DIRECTION DE L ORGANISATION DES SERVICES DE SANTE ET DES MECANISMES DE FINANCEMENT DOSSMF\"], [\"Vendor Number\", \"2500239012\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 73348.81], [\"Liquidations 1 OCT - 30 SEP\", 78410.32], [\"Cash Transfers Jan - Dec\", 243542.93], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 438); +INSERT INTO [[schema]].hact_hacthistory VALUES (195, '2019-12-31 03:30:28.168096+00', '2019-12-31 03:30:28.179263+00', 2019, '"[[\"Implementing Partner\", \"DIRECTION DE SANTE DE REPRODUCTION\"], [\"Vendor Number\", \"2500224271\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 118254.16], [\"Liquidations 1 OCT - 30 SEP\", 124699.41], [\"Cash Transfers Jan - Dec\", 118254.16], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 227); +INSERT INTO [[schema]].hact_hacthistory VALUES (196, '2019-12-31 03:30:28.204438+00', '2019-12-31 03:30:28.216278+00', 2019, '"[[\"Implementing Partner\", \"DIRECTION DES ETUDES ET DE PREVISION\"], [\"Vendor Number\", \"2500234840\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 135040.27], [\"Liquidations 1 OCT - 30 SEP\", 185279.87], [\"Cash Transfers Jan - Dec\", 110422.33], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 393); +INSERT INTO [[schema]].hact_hacthistory VALUES (197, '2019-12-31 03:30:28.267281+00', '2019-12-31 03:30:28.279497+00', 2019, '"[[\"Implementing Partner\", \"DIRECTION DES RESSOURCES HUMAINES\"], [\"Vendor Number\", \"2500239877\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 59940.24], [\"Liquidations 1 OCT - 30 SEP\", 59940.24], [\"Cash Transfers Jan - Dec\", 59940.24], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 442); +INSERT INTO [[schema]].hact_hacthistory VALUES (198, '2019-12-31 03:30:28.323492+00', '2019-12-31 03:30:28.334704+00', 2019, '"[[\"Implementing Partner\", \"DIRECTION GENERALE DES DROITS DE LHOMME\"], [\"Vendor Number\", \"2500238627\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 45358.89], [\"Liquidations 1 OCT - 30 SEP\", 35403.44], [\"Cash Transfers Jan - Dec\", 66575.24], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 443); +INSERT INTO [[schema]].hact_hacthistory VALUES (199, '2019-12-31 03:30:28.440528+00', '2019-12-31 03:30:28.452148+00', 2019, '"[[\"Implementing Partner\", \"DISTRICT SANITAIRE D AM DAM OUADDAI\"], [\"Vendor Number\", \"2500214026\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", -1737.0], [\"Liquidations 1 OCT - 30 SEP\", 1914.16], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 65); +INSERT INTO [[schema]].hact_hacthistory VALUES (200, '2019-12-31 03:30:28.533509+00', '2019-12-31 03:30:28.545448+00', 2019, '"[[\"Implementing Partner\", \"DISTRICT SANITAIRE DE BEDJONDO\"], [\"Vendor Number\", \"2500234500\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 0.0], [\"Liquidations 1 OCT - 30 SEP\", 13811.18], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 378); +INSERT INTO [[schema]].hact_hacthistory VALUES (201, '2019-12-31 03:30:28.680454+00', '2019-12-31 03:30:28.694112+00', 2019, '"[[\"Implementing Partner\", \"DISTRICT SANITAIRE DE KELO\"], [\"Vendor Number\", \"2500214022\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 0.0], [\"Liquidations 1 OCT - 30 SEP\", 22391.83], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 62); +INSERT INTO [[schema]].hact_hacthistory VALUES (202, '2019-12-31 03:30:28.924028+00', '2019-12-31 03:30:28.936044+00', 2019, '"[[\"Implementing Partner\", \"DISTRICT SANITAIRE DIRIBA\"], [\"Vendor Number\", \"2500229233\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 0.0], [\"Liquidations 1 OCT - 30 SEP\", 2220.7], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 304); +INSERT INTO [[schema]].hact_hacthistory VALUES (203, '2019-12-31 03:30:28.983669+00', '2019-12-31 03:30:28.995953+00', 2019, '"[[\"Implementing Partner\", \"DISTRICT SANITAIRE N DJAMENA SUD\"], [\"Vendor Number\", \"2500238341\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", -2052.61], [\"Liquidations 1 OCT - 30 SEP\", 9670.13], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 433); +INSERT INTO [[schema]].hact_hacthistory VALUES (204, '2019-12-31 03:30:29.136099+00', '2019-12-31 03:30:29.148522+00', 2019, '"[[\"Implementing Partner\", \"ECOLE SAINE MENAGE SAIN\"], [\"Vendor Number\", \"2500214062\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 122932.68], [\"Liquidations 1 OCT - 30 SEP\", 157240.09], [\"Cash Transfers Jan - Dec\", 194491.8], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 1], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 95); +INSERT INTO [[schema]].hact_hacthistory VALUES (205, '2019-12-31 03:30:29.315266+00', '2019-12-31 03:30:29.327446+00', 2019, '"[[\"Implementing Partner\", \"FM DAR BADJA\"], [\"Vendor Number\", \"2500228854\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 8071.49], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 8071.49], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 277); +INSERT INTO [[schema]].hact_hacthistory VALUES (206, '2019-12-31 03:30:29.512251+00', '2019-12-31 03:30:29.524312+00', 2019, '"[[\"Implementing Partner\", \"GROUPEMENT AL NADJA\"], [\"Vendor Number\", \"2500232213\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 0.0], [\"Liquidations 1 OCT - 30 SEP\", 30960.52], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 350); +INSERT INTO [[schema]].hact_hacthistory VALUES (207, '2019-12-31 03:30:29.688773+00', '2019-12-31 03:30:29.700631+00', 2019, '"[[\"Implementing Partner\", \"HAUTE AUTORITE DES MEDIAS ET DE L AUDIOVISUEL\"], [\"Vendor Number\", \"2500235258\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 18811.98], [\"Liquidations 1 OCT - 30 SEP\", 11635.96], [\"Cash Transfers Jan - Dec\", 13429.87], [\"Risk Rating\", \"Not Required\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 400); +INSERT INTO [[schema]].hact_hacthistory VALUES (208, '2019-12-31 03:30:29.729619+00', '2019-12-31 03:30:29.74278+00', 2019, '"[[\"Implementing Partner\", \"HOPITAL DE LA MERE ET DE L ENFANT\"], [\"Vendor Number\", \"2500224825\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 112996.87], [\"Liquidations 1 OCT - 30 SEP\", 103141.15], [\"Cash Transfers Jan - Dec\", 112463.28], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 208); +INSERT INTO [[schema]].hact_hacthistory VALUES (209, '2019-12-31 03:30:29.797592+00', '2019-12-31 03:30:29.809389+00', 2019, '"[[\"Implementing Partner\", \"IBCR\"], [\"Vendor Number\", \"2500233086\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Low Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 0.0], [\"Liquidations 1 OCT - 30 SEP\", 62868.47], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 357); +INSERT INTO [[schema]].hact_hacthistory VALUES (210, '2019-12-31 03:30:29.904695+00', '2019-12-31 03:30:29.918198+00', 2019, '"[[\"Implementing Partner\", \"INITIATIVE HUMANITAIRE POUR LE DEVELOPPEMENT LOCAL TCHAD\"], [\"Vendor Number\", \"2500228112\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", -6726.16], [\"Liquidations 1 OCT - 30 SEP\", 71687.58], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 298); +INSERT INTO [[schema]].hact_hacthistory VALUES (211, '2019-12-31 03:30:29.95965+00', '2019-12-31 03:30:29.97124+00', 2019, '"[[\"Implementing Partner\", \"INSTITUT NATIONAL DE STATISTIQUES DES ETUDES ECONOMIQUES ET DEMOGRAPHIQUES\"], [\"Vendor Number\", \"2500214083\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 2185801.34], [\"Liquidations 1 OCT - 30 SEP\", 1046872.89], [\"Cash Transfers Jan - Dec\", 1373256.39], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 4], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 5); +INSERT INTO [[schema]].hact_hacthistory VALUES (212, '2019-12-31 03:30:30.013311+00', '2019-12-31 03:30:30.025699+00', 2019, '"[[\"Implementing Partner\", \"INTERNATIONAL AID SERVICES\"], [\"Vendor Number\", \"2500214085\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 586156.77], [\"Liquidations 1 OCT - 30 SEP\", 915680.45], [\"Cash Transfers Jan - Dec\", 325230.18], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 7); +INSERT INTO [[schema]].hact_hacthistory VALUES (213, '2019-12-31 03:30:30.05713+00', '2019-12-31 03:30:30.070985+00', 2019, '"[[\"Implementing Partner\", \"INTERNATIONAL RESCUE COMMITTEE\"], [\"Vendor Number\", \"2500214088\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 75380.95], [\"Liquidations 1 OCT - 30 SEP\", 179208.79], [\"Cash Transfers Jan - Dec\", 75380.95], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 8); +INSERT INTO [[schema]].hact_hacthistory VALUES (214, '2019-12-31 03:30:30.103195+00', '2019-12-31 03:30:30.117141+00', 2019, '"[[\"Implementing Partner\", \"INTERSOS PROJET UNICEF\"], [\"Vendor Number\", \"2500218808\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 132127.75], [\"Liquidations 1 OCT - 30 SEP\", 36515.85], [\"Cash Transfers Jan - Dec\", 289377.26], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 139); +INSERT INTO [[schema]].hact_hacthistory VALUES (215, '2019-12-31 03:30:30.236535+00', '2019-12-31 03:30:30.248548+00', 2019, '"[[\"Implementing Partner\", \"JRS UNICEF\"], [\"Vendor Number\", \"2500213951\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 620953.1], [\"Liquidations 1 OCT - 30 SEP\", 745151.69], [\"Cash Transfers Jan - Dec\", 337599.58], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 53); +INSERT INTO [[schema]].hact_hacthistory VALUES (216, '2019-12-31 03:30:30.383448+00', '2019-12-31 03:30:30.395451+00', 2019, '"[[\"Implementing Partner\", \"MAISON DE CULTURE ALHADJ AHMAT PECOS\"], [\"Vendor Number\", \"2500238592\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 13347.68], [\"Liquidations 1 OCT - 30 SEP\", 16772.85], [\"Cash Transfers Jan - Dec\", 19902.1], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 437); +INSERT INTO [[schema]].hact_hacthistory VALUES (217, '2019-12-31 03:30:30.532016+00', '2019-12-31 03:30:30.550405+00', 2019, '"[[\"Implementing Partner\", \"MINISTERE DE LA DE LA JEUNESSE SPORTS ET LOISIRS\"], [\"Vendor Number\", \"2500212763\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 40973.89], [\"Liquidations 1 OCT - 30 SEP\", 26463.11], [\"Cash Transfers Jan - Dec\", 24062.61], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 51); +INSERT INTO [[schema]].hact_hacthistory VALUES (218, '2019-12-31 03:30:30.576558+00', '2019-12-31 03:30:30.588771+00', 2019, '"[[\"Implementing Partner\", \"MINISTERE DE L ADMINISTRATION DU TERRITOIRE ET DE LA GOUVERNANCE LOCAL\"], [\"Vendor Number\", \"2500214018\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 0.0], [\"Liquidations 1 OCT - 30 SEP\", 5722.14], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 60); +INSERT INTO [[schema]].hact_hacthistory VALUES (219, '2019-12-31 03:30:30.674998+00', '2019-12-31 03:30:30.687422+00', 2019, '"[[\"Implementing Partner\", \"MINISTERE DU PLAN DEVELOPPEMENT ET DE LA COOPERATION\"], [\"Vendor Number\", \"2500212777\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 69150.7], [\"Liquidations 1 OCT - 30 SEP\", 104900.34], [\"Cash Transfers Jan - Dec\", 120169.7], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 74); +INSERT INTO [[schema]].hact_hacthistory VALUES (220, '2019-12-31 03:30:30.742874+00', '2019-12-31 03:30:30.757793+00', 2019, '"[[\"Implementing Partner\", \"MSP FONDS MEDICAMENTS MPS APPUI A LA SANTE DES NOMADES\"], [\"Vendor Number\", \"2500238240\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 125416.2], [\"Liquidations 1 OCT - 30 SEP\", 66984.8], [\"Cash Transfers Jan - Dec\", 125416.2], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 430); +INSERT INTO [[schema]].hact_hacthistory VALUES (221, '2019-12-31 03:30:30.805052+00', '2019-12-31 03:30:30.821828+00', 2019, '"[[\"Implementing Partner\", \"ONG CONCERN WORLDWIDE\"], [\"Vendor Number\", \"2500215479\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 160247.03], [\"Liquidations 1 OCT - 30 SEP\", 204905.29], [\"Cash Transfers Jan - Dec\", 160247.03], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 18); +INSERT INTO [[schema]].hact_hacthistory VALUES (222, '2019-12-31 03:30:30.863106+00', '2019-12-31 03:30:30.88357+00', 2019, '"[[\"Implementing Partner\", \"ONG CROIX ROUGE FRANCAISE\"], [\"Vendor Number\", \"2500238161\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 407221.91], [\"Liquidations 1 OCT - 30 SEP\", 437540.28], [\"Cash Transfers Jan - Dec\", 271033.83], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 431); +INSERT INTO [[schema]].hact_hacthistory VALUES (223, '2019-12-31 03:30:31.033681+00', '2019-12-31 03:30:31.04661+00', 2019, '"[[\"Implementing Partner\", \"ORGANISATION DES PREMIERES DAMES D AFRIQUE CONTRE LE SIDA\"], [\"Vendor Number\", \"2500235894\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 97195.51], [\"Liquidations 1 OCT - 30 SEP\", 157678.61], [\"Cash Transfers Jan - Dec\", 11610.38], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 407); +INSERT INTO [[schema]].hact_hacthistory VALUES (224, '2019-12-31 03:30:31.174098+00', '2019-12-31 03:30:31.186046+00', 2019, '"[[\"Implementing Partner\", \"PROGRAMME CLAC\"], [\"Vendor Number\", \"2500227705\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 204268.12], [\"Liquidations 1 OCT - 30 SEP\", 367614.15], [\"Cash Transfers Jan - Dec\", 443438.74], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 270); +INSERT INTO [[schema]].hact_hacthistory VALUES (225, '2019-12-31 03:30:31.213093+00', '2019-12-31 03:30:31.224948+00', 2019, '"[[\"Implementing Partner\", \"PROGRAMME DE MASTER HYDROSIG\"], [\"Vendor Number\", \"2500236512\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", -547.65], [\"Liquidations 1 OCT - 30 SEP\", 7024.37], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"Not Required\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 410); +INSERT INTO [[schema]].hact_hacthistory VALUES (226, '2019-12-31 03:30:31.310082+00', '2019-12-31 03:30:31.321947+00', 2019, '"[[\"Implementing Partner\", \"PROGRAMME SANTE NUTRITION C C\"], [\"Vendor Number\", \"2500212797\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 142769.6], [\"Liquidations 1 OCT - 30 SEP\", 165981.24], [\"Cash Transfers Jan - Dec\", 102137.01], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 2], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 81); +INSERT INTO [[schema]].hact_hacthistory VALUES (227, '2019-12-31 03:30:31.353955+00', '2019-12-31 03:30:31.368089+00', 2019, '"[[\"Implementing Partner\", \"PROG SECTORIEL DE LUTTE CONTRE LE SIDA PSLS IST\"], [\"Vendor Number\", \"2500230798\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 37130.44], [\"Liquidations 1 OCT - 30 SEP\", 37130.44], [\"Cash Transfers Jan - Dec\", 2431.14], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", true], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 326); +INSERT INTO [[schema]].hact_hacthistory VALUES (228, '2019-12-31 03:30:31.454696+00', '2019-12-31 03:30:31.466698+00', 2019, '"[[\"Implementing Partner\", \"PROTECTION D ENFANTS AU MINISTERE DE LA DE LA DEFENSE\"], [\"Vendor Number\", \"2500237862\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 92065.87], [\"Liquidations 1 OCT - 30 SEP\", 45562.91], [\"Cash Transfers Jan - Dec\", 176872.74], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 425); +INSERT INTO [[schema]].hact_hacthistory VALUES (229, '2019-12-31 03:30:31.566307+00', '2019-12-31 03:30:31.578196+00', 2019, '"[[\"Implementing Partner\", \"RADIO COMMUNAUTAIRE DE MONGO\"], [\"Vendor Number\", \"2500215493\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 8071.49], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 8071.49], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 109); +INSERT INTO [[schema]].hact_hacthistory VALUES (230, '2019-12-31 03:30:32.000038+00', '2019-12-31 03:30:32.013191+00', 2019, '"[[\"Implementing Partner\", \"REFUGEE EDUCATION TRUST RET\"], [\"Vendor Number\", \"2500237473\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 654972.59], [\"Liquidations 1 OCT - 30 SEP\", 798061.89], [\"Cash Transfers Jan - Dec\", 400466.08], [\"Risk Rating\", \"Medium\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 424); +INSERT INTO [[schema]].hact_hacthistory VALUES (231, '2019-12-31 03:30:32.038434+00', '2019-12-31 03:30:32.050714+00', 2019, '"[[\"Implementing Partner\", \"REPOD RESEAU DES PARLEMENTAIRES POUR LA POUR LA POPULATION ET LE DEVELOPPEMENT\"], [\"Vendor Number\", \"2500236837\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 25142.26], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"Not Required\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 412); +INSERT INTO [[schema]].hact_hacthistory VALUES (232, '2019-12-31 03:30:32.092471+00', '2019-12-31 03:30:32.104603+00', 2019, '"[[\"Implementing Partner\", \"RESEAU DES JOURNALISTES TCHADIENS EN NUTRITION\"], [\"Vendor Number\", \"2500237900\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 65946.16], [\"Liquidations 1 OCT - 30 SEP\", 21266.11], [\"Cash Transfers Jan - Dec\", 79735.5], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 428); +INSERT INTO [[schema]].hact_hacthistory VALUES (233, '2019-12-31 03:30:32.190331+00', '2019-12-31 03:30:32.202379+00', 2019, '"[[\"Implementing Partner\", \"RESEAU NATIONAL TCHADIEN DES ASSOCIATIONS DES PERSONNES VIVANT AVEC LE VIH RNTAP\"], [\"Vendor Number\", \"2500221790\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 121581.73], [\"Liquidations 1 OCT - 30 SEP\", 107204.77], [\"Cash Transfers Jan - Dec\", 89334.89], [\"Risk Rating\", \"Significant\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 3], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 169); +INSERT INTO [[schema]].hact_hacthistory VALUES (234, '2019-12-31 03:30:32.244928+00', '2019-12-31 03:30:32.25666+00', 2019, '"[[\"Implementing Partner\", \"RTSE\"], [\"Vendor Number\", \"2500236515\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 0.0], [\"Liquidations 1 OCT - 30 SEP\", 1215.55], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 0], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 434); +INSERT INTO [[schema]].hact_hacthistory VALUES (235, '2019-12-31 03:30:32.324851+00', '2019-12-31 03:30:32.336682+00', 2019, '"[[\"Implementing Partner\", \"SECOURS ISLAMIQUE FRANCE PROJET WASH\"], [\"Vendor Number\", \"2500212820\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 636929.98], [\"Liquidations 1 OCT - 30 SEP\", 462876.68], [\"Cash Transfers Jan - Dec\", 636929.98], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 4], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 104); +INSERT INTO [[schema]].hact_hacthistory VALUES (236, '2019-12-31 03:30:32.391624+00', '2019-12-31 03:30:32.404162+00', 2019, '"[[\"Implementing Partner\", \"SOCIAL CHANGE FACTORY\"], [\"Vendor Number\", \"2500234927\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 19824.15], [\"Liquidations 1 OCT - 30 SEP\", 59427.49], [\"Cash Transfers Jan - Dec\", 7952.01], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 429); +INSERT INTO [[schema]].hact_hacthistory VALUES (237, '2019-12-31 03:30:32.431539+00', '2019-12-31 03:30:32.443755+00', 2019, '"[[\"Implementing Partner\", \"SOUS DIRECTION DE LA VACCINATION SDV\"], [\"Vendor Number\", \"2500239370\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 3162624.48], [\"Liquidations 1 OCT - 30 SEP\", 2241977.15], [\"Cash Transfers Jan - Dec\", 1429174.24], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 4], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 439); +INSERT INTO [[schema]].hact_hacthistory VALUES (238, '2019-12-31 03:30:32.533141+00', '2019-12-31 03:30:32.561625+00', 2019, '"[[\"Implementing Partner\", \"THE MENTOR INITIATIVE\"], [\"Vendor Number\", \"2500225653\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 180026.69], [\"Liquidations 1 OCT - 30 SEP\", 175632.33], [\"Cash Transfers Jan - Dec\", 180026.69], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 237); +INSERT INTO [[schema]].hact_hacthistory VALUES (239, '2019-12-31 03:30:32.642205+00', '2019-12-31 03:30:32.655565+00', 2019, '"[[\"Implementing Partner\", \"UNION DES ASSOCIATIONS FEMININES ARABAPHONES DU TCHAD\"], [\"Vendor Number\", \"2500234968\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 45144.28], [\"Liquidations 1 OCT - 30 SEP\", 32299.97], [\"Cash Transfers Jan - Dec\", 24014.32], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 401); +INSERT INTO [[schema]].hact_hacthistory VALUES (240, '2019-12-31 03:30:32.727669+00', '2019-12-31 03:30:32.740055+00', 2019, '"[[\"Implementing Partner\", \"UNION DES RADIOS PRIVEES DU TCHAD\"], [\"Vendor Number\", \"2500240733\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 30358.52], [\"Liquidations 1 OCT - 30 SEP\", 0.0], [\"Cash Transfers Jan - Dec\", 30358.52], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 0], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 448); +INSERT INTO [[schema]].hact_hacthistory VALUES (241, '2019-12-31 03:30:32.785526+00', '2019-12-31 03:30:32.800393+00', 2019, '"[[\"Implementing Partner\", \"UNITE DE GESTION DES PROJETS UGP\"], [\"Vendor Number\", \"2500238874\"], [\"Partner Type\", \"Government\"], [\"Shared IP\", null], [\"Assessment Type\", \"High Risk Assumed\"], [\"Cash Transfer 1 OCT - 30 SEP\", 34961.02], [\"Liquidations 1 OCT - 30 SEP\", 71411.48], [\"Cash Transfers Jan - Dec\", 0.0], [\"Risk Rating\", \"High\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 436); +INSERT INTO [[schema]].hact_hacthistory VALUES (242, '2019-12-31 03:30:32.926932+00', '2019-12-31 03:30:32.940647+00', 2019, '"[[\"Implementing Partner\", \"WORLD VISION\"], [\"Vendor Number\", \"2500237165\"], [\"Partner Type\", \"Civil Society Organization\"], [\"Shared IP\", null], [\"Assessment Type\", \"Micro Assessment\"], [\"Cash Transfer 1 OCT - 30 SEP\", 273118.64], [\"Liquidations 1 OCT - 30 SEP\", 435471.99], [\"Cash Transfers Jan - Dec\", 196992.17], [\"Risk Rating\", \"Low\"], [\"Expiring Threshold\", false], [\"Approach Threshold\", false], [\"Programmatic Visits Planned Q1\", 0], [\"Programmatic Visits Planned Q2\", 0], [\"Programmatic Visits Planned Q3\", 0], [\"Programmatic Visits Planned Q4\", 0], [\"Programmatic Visits M.R\", 1], [\"Programmatic Visits Completed Q1\", 0], [\"Programmatic Visits Completed Q2\", 0], [\"Programmatic Visits Completed Q3\", 0], [\"Programmatic Visits Completed Q4\", 0], [\"Spot Checks Planned Q1\", 0], [\"Spot Checks Planned Q2\", 0], [\"Spot Checks Planned Q3\", 0], [\"Spot Checks Planned Q4\", 0], [\"Spot Checks M.R\", 1], [\"Follow Up\", 0], [\"Spot Checks Completed Q1\", 0], [\"Spot Checks Completed Q2\", 0], [\"Spot Checks Completed Q3\", 0], [\"Spot Checks Completed Q4\", 0], [\"Audits M.R\", 0], [\"Audit Completed\", 0], [\"Audit Outstanding Findings\", 0]]"', 415); -- @@ -13593,12 +14553,44 @@ INSERT INTO [[schema]].locations_location VALUES (24, 'Wadi Fira', NULL, NULL, ' -- Data for Name: partners_agreement; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].partners_agreement VALUES (1, '2020-02-12 14:05:12.910533+00', '2020-02-12 14:51:33.923958+00', 'PCA', 'CHD/PCA20191', '', '2019-02-27', '2021-12-31', '2019-02-27', '2019-02-22', 169, 1, NULL, 'signed', 73, 2019, false); +INSERT INTO [[schema]].partners_agreement VALUES (3, '2020-02-17 10:49:33.678676+00', '2020-02-17 10:50:05.390915+00', 'PCA', 'CHD/PCA20193', '', '2019-05-31', '2021-12-31', '2019-05-31', '2019-05-31', 339, 3, NULL, 'signed', 73, 2019, false); +INSERT INTO [[schema]].partners_agreement VALUES (2, '2020-02-12 15:50:07.821971+00', '2020-02-12 15:50:26.878197+00', 'PCA', 'CHD/PCA20192', '', '2019-07-16', '2021-12-31', '2019-07-16', '2019-07-08', 182, 2, NULL, 'signed', 73, 2019, false); +INSERT INTO [[schema]].partners_agreement VALUES (4, '2020-02-17 14:08:25.245677+00', '2020-02-17 14:08:25.414858+00', 'PCA', 'CHD/PCA20194', '', '2019-05-31', '2021-12-31', '2019-05-31', '2019-05-31', 372, 4, NULL, 'signed', 73, 2019, false); +INSERT INTO [[schema]].partners_agreement VALUES (7, '2020-02-18 13:45:28.86857+00', '2020-02-18 14:01:04.340859+00', 'PCA', 'CHD/PCA20197', '', '2019-12-09', '2021-12-31', '2019-12-09', '2019-12-06', 448, 7, NULL, 'signed', 73, 2019, false); +INSERT INTO [[schema]].partners_agreement VALUES (5, '2020-02-17 14:58:56.222802+00', '2020-02-17 15:14:28.083257+00', 'SSFA', 'CHD/SSFA20195', '', '2019-12-15', '2020-05-30', NULL, NULL, 220, NULL, NULL, 'signed', NULL, 2019, false); +INSERT INTO [[schema]].partners_agreement VALUES (8, '2020-02-20 12:40:36.392621+00', '2020-02-20 12:51:44.006458+00', 'PCA', 'CHD/PCA20198', '', '2019-05-30', '2021-12-31', '2019-05-28', '2019-05-30', 130, 9, NULL, 'signed', 73, 2019, false); +INSERT INTO [[schema]].partners_agreement VALUES (6, '2020-02-17 15:39:47.046809+00', '2020-02-17 15:39:47.197947+00', 'PCA', 'CHD/PCA20186', '', '2018-12-28', '2021-12-31', '2018-12-20', '2018-12-28', 28, 6, NULL, 'signed', 73, 2018, false); +INSERT INTO [[schema]].partners_agreement VALUES (9, '2020-02-20 14:23:14.888492+00', '2020-02-20 14:23:15.052094+00', 'PCA', 'CHD/PCA20199', '', '2019-09-18', '2021-12-31', '2019-09-17', '2019-09-18', 450, 11, NULL, 'signed', 73, 2019, false); +INSERT INTO [[schema]].partners_agreement VALUES (11, '2020-02-25 13:27:47.278403+00', '2020-02-25 13:56:44.564263+00', 'SSFA', 'CHD/SSFA201911', '', '2019-10-01', '2020-04-30', NULL, NULL, 403, NULL, NULL, 'signed', NULL, 2019, false); +INSERT INTO [[schema]].partners_agreement VALUES (14, '2020-03-06 13:38:10.879559+00', '2020-03-06 13:38:11.058589+00', 'PCA', 'CHD/PCA201914', '', '2019-06-14', '2021-12-31', '2019-06-14', '2019-05-31', 139, 19, NULL, 'signed', 73, 2019, false); +INSERT INTO [[schema]].partners_agreement VALUES (10, '2020-02-20 16:11:42.037184+00', '2020-02-20 16:53:01.196306+00', 'PCA', 'CHD/PCA201910', '', '2019-06-21', '2021-12-31', '2019-06-17', '2019-06-21', 95, 14, NULL, 'signed', 73, 2019, false); +INSERT INTO [[schema]].partners_agreement VALUES (13, '2020-03-04 15:01:08.417554+00', '2020-03-04 15:03:53.315637+00', 'PCA', 'CHD/PCA201913', '', '2019-09-09', '2021-12-31', '2019-09-06', '2019-09-09', 261, 16, NULL, 'signed', 73, 2019, false); +INSERT INTO [[schema]].partners_agreement VALUES (18, '2020-04-16 09:57:21.583044+00', '2020-04-16 09:57:21.591774+00', 'PCA', 'CHD/PCA202018', '', '2020-04-14', '2021-12-31', '2020-04-14', '2020-04-14', 376, 23, NULL, 'draft', 73, 2020, false); +INSERT INTO [[schema]].partners_agreement VALUES (15, '2020-04-01 10:02:19.456903+00', '2020-04-01 10:03:50.689163+00', 'PCA', 'CHD/PCA201815', '', '2018-06-21', '2021-12-31', '2018-06-19', '2018-06-21', 237, 20, NULL, 'signed', 73, 2018, false); +INSERT INTO [[schema]].partners_agreement VALUES (19, '2020-04-21 13:20:21.394832+00', '2020-04-21 13:20:21.404795+00', 'PCA', 'CHD/PCA202019', '', NULL, '2021-12-31', NULL, NULL, 163, 22, NULL, 'draft', 73, 2020, false); -- -- Data for Name: partners_agreement_authorized_officers; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (1, 1, 1); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (2, 2, 2); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (3, 3, 3); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (4, 4, 4); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (5, 5, 5); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (6, 6, 6); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (7, 7, 7); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (8, 8, 8); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (9, 9, 11); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (10, 10, 14); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (11, 11, 15); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (12, 13, 16); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (13, 14, 19); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (14, 15, 20); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (17, 18, 23); +INSERT INTO [[schema]].partners_agreement_authorized_officers VALUES (18, 19, 22); -- @@ -13710,7 +14702,6 @@ INSERT INTO [[schema]].partners_corevaluesassessment VALUES (91, '2018-08-09 15: INSERT INTO [[schema]].partners_corevaluesassessment VALUES (92, '2018-08-09 15:50:42.894753+00', '2018-08-09 15:50:42.895238+00', '2013-07-10', '', false, 181); INSERT INTO [[schema]].partners_corevaluesassessment VALUES (93, '2018-08-09 15:50:42.898582+00', '2018-08-09 15:50:42.899005+00', '2013-07-10', '', false, 27); INSERT INTO [[schema]].partners_corevaluesassessment VALUES (94, '2018-08-09 15:50:42.902754+00', '2018-08-09 15:50:42.903091+00', NULL, '', false, 106); -INSERT INTO [[schema]].partners_corevaluesassessment VALUES (95, '2018-08-09 15:50:42.906649+00', '2018-08-09 15:50:42.90716+00', '2013-07-10', '', false, 163); INSERT INTO [[schema]].partners_corevaluesassessment VALUES (96, '2018-08-09 15:50:42.910938+00', '2018-08-09 15:50:42.911408+00', '2017-07-24', '', false, 293); INSERT INTO [[schema]].partners_corevaluesassessment VALUES (97, '2018-08-09 15:50:42.914876+00', '2018-08-09 15:50:42.915233+00', '2013-07-10', '', false, 16); INSERT INTO [[schema]].partners_corevaluesassessment VALUES (98, '2018-08-09 15:50:42.918915+00', '2018-08-09 15:50:42.919378+00', NULL, '', false, 157); @@ -14025,7 +15016,6 @@ INSERT INTO [[schema]].partners_corevaluesassessment VALUES (405, '2018-08-09 15 INSERT INTO [[schema]].partners_corevaluesassessment VALUES (406, '2018-08-09 15:50:44.143563+00', '2018-08-09 15:50:44.144018+00', NULL, '', false, 387); INSERT INTO [[schema]].partners_corevaluesassessment VALUES (407, '2018-08-09 15:50:44.146986+00', '2018-08-09 15:50:44.14742+00', NULL, '', false, 419); INSERT INTO [[schema]].partners_corevaluesassessment VALUES (408, '2018-08-09 15:50:44.150644+00', '2018-08-09 15:50:44.151007+00', '2016-04-19', '', false, 391); -INSERT INTO [[schema]].partners_corevaluesassessment VALUES (409, '2018-08-09 15:50:44.15446+00', '2018-08-09 15:50:44.154824+00', '2017-12-14', '', false, 169); INSERT INTO [[schema]].partners_corevaluesassessment VALUES (410, '2018-08-09 15:50:44.15797+00', '2018-08-09 15:50:44.158402+00', '2013-07-10', '', false, 354); INSERT INTO [[schema]].partners_corevaluesassessment VALUES (411, '2018-08-09 15:50:44.161785+00', '2018-08-09 15:50:44.162187+00', '2018-03-23', '', false, 434); INSERT INTO [[schema]].partners_corevaluesassessment VALUES (412, '2018-08-09 15:50:44.165402+00', '2018-08-09 15:50:44.165802+00', '2018-04-09', '', false, 234); @@ -14099,6 +15089,10 @@ INSERT INTO [[schema]].partners_corevaluesassessment VALUES (435, '2018-08-12 00 INSERT INTO [[schema]].partners_corevaluesassessment VALUES (480, '2019-11-12 15:01:58.227619+00', '2019-11-12 15:01:58.227619+00', NULL, '', false, 452); INSERT INTO [[schema]].partners_corevaluesassessment VALUES (481, '2019-11-12 15:01:58.569069+00', '2019-11-12 15:01:58.569069+00', NULL, '', false, 453); INSERT INTO [[schema]].partners_corevaluesassessment VALUES (482, '2019-11-12 15:02:08.41911+00', '2019-11-12 15:02:08.41911+00', NULL, '', false, 454); +INSERT INTO [[schema]].partners_corevaluesassessment VALUES (483, '2020-02-08 00:22:46.561965+00', '2020-02-08 00:22:46.561965+00', '2016-08-25', '', false, 455); +INSERT INTO [[schema]].partners_corevaluesassessment VALUES (409, '2018-08-09 15:50:44.15446+00', '2020-02-12 13:53:25.58166+00', '2017-12-14', '', false, 169); +INSERT INTO [[schema]].partners_corevaluesassessment VALUES (95, '2018-08-09 15:50:42.906649+00', '2018-08-09 15:50:42.90716+00', '2013-07-10', '', true, 163); +INSERT INTO [[schema]].partners_corevaluesassessment VALUES (484, '2020-04-15 03:41:56.783174+00', '2020-04-15 03:41:56.783174+00', '2018-11-13', '', false, 163); -- @@ -14124,60 +15118,402 @@ INSERT INTO [[schema]].partners_filetype VALUES (7, 'Other'); -- Data for Name: partners_intervention; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].partners_intervention VALUES (8, '2020-02-17 14:12:05.205285+00', '2020-02-24 13:36:21.085917+00', 'PD', 'CHD/PCA20194/PD20198', 'Appui au renforcement des capacités des membres des associations des parents d''élèves (APE/AME) en compétences de vie courante et à Bokoro, Mao et Moussoro', 'active', '2019-12-10', '2020-09-30', '2019-10-14', '2019-12-04', '2019-12-06', '', '2019-12-09', '2019-12-10', NULL, 4, 4, 8462, '', 73, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (11, '2020-02-18 14:12:42.832101+00', '2020-03-16 03:55:16.735192+00', 'PD', 'CHD/PCA20197/PD201911', 'Coordination et suivi des émissions radiophoniques dans les radios communautaires et l’encadrement des Jeunes Reporters Club (JRC)', 'ended', '2019-12-09', '2020-03-15', '2019-09-26', NULL, NULL, '', '2019-12-09', '2019-12-06', NULL, 7, 7, 8462, '', 73, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (13, '2020-02-20 14:27:40.015048+00', '2020-03-01 03:55:10.709231+00', 'HPD', 'CHD/PCA20199/HPD201913', 'Réponse Eau-Assainissement et Hygiène (WASH) à l’épidémie de Choléra dans les Délégations Sanitaires Provinciales de Mayo Kebbi Est et Mayo Kebbi Ouest et Mise en œuvre de l’ATPC dans 37 villages dans 2 zones de responsabilités dans le district sanitaire d', 'closed', '2019-09-18', '2020-02-29', '2019-08-20', NULL, NULL, '', '2019-09-17', '2019-09-18', NULL, 9, 11, 3701, '', 73, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (9, '2020-02-17 15:05:01.886085+00', '2020-02-17 15:29:21.490749+00', 'SSFA', 'CHD/SSFA20195', 'Promotion de l’engagement communautaire des jeunes Scouts à N’Djamena, Doba et Moundou', 'active', '2019-12-15', '2020-05-30', '2019-10-17', NULL, NULL, '', '2019-12-06', '2019-12-06', NULL, 5, 5, 8462, '', 73, false, '{}', false, NULL, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (7, '2020-02-17 11:04:22.988381+00', '2020-02-17 12:39:20.637506+00', 'PD', 'CHD/PCA20193/PD20197', 'Appui à l''amélioration de l''accès équitable aux services sociaux de qualité inclusifs pour les garçons et les filles au T[[schema]] dans les provinces du Hadjer Lamis et di=u Ouaddai', 'active', '2019-12-10', '2021-01-09', '2019-10-26', '2019-11-05', '2019-12-05', '', '2019-12-09', '2019-12-10', NULL, 3, 3, 8462, '', 73, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (10, '2020-02-17 15:53:15.687061+00', '2020-03-31 03:55:09.218529+00', 'PD', 'CHD/PCA20186/PD201810-2', 'Renforcer l’engagement communautaire des adolescentes et jeunes filles dans les régions de N’Djamena, du Moyen Chari, de la Tandjilé et du Logone Oriental', 'ended', '2018-12-28', '2020-03-30', '2018-09-27', '2018-10-03', '2018-10-10', '', '2018-12-20', '2018-12-28', NULL, 6, 6, 8462, '', 73, false, '{}', false, 2018, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (14, '2020-02-20 16:15:05.295029+00', '2020-02-20 16:54:18.769912+00', 'PD', 'CHD/PCA201910/PD201914', 'Renforcement de la résilience des communautés et des écoles du canton de Moito, district sanitaire de Bokoro, province de Hadjer-Lamis puis des écoles des districts sanitaires de Moussoro, Mao dans les provinces de Barh el gazal et du Kanem', 'active', '2019-12-10', '2021-01-31', '2019-10-25', NULL, NULL, '', '2019-12-09', '2019-12-10', NULL, 10, 14, 8462, '', 73, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (26, '2020-04-21 13:54:12.190781+00', '2020-04-21 13:54:12.201391+00', 'HPD', 'CHD/PCA202019/HPD202026', 'Appui à la réponse d’urgence par la surveillance, la prise en charge nutritionnelle et la prévention contre les maladies évitables par la vaccination des enfants réfugiés et autochtones affectés par la crise soudanaise, dans la situation de la pandémie de', 'draft', '2020-04-07', '2020-09-06', NULL, NULL, NULL, '', NULL, NULL, NULL, 19, NULL, NULL, '', 73, false, '{}', false, 2020, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (5, '2020-02-12 15:01:50.328238+00', '2020-02-12 15:44:26.758542+00', 'PD', 'CHD/PCA20191/PD20195', 'Appui a la mobilisation communautaire et plaidoyer', 'closed', '2019-02-27', '2019-11-24', '2018-12-23', '2019-01-07', '2019-01-14', '', '2019-02-27', '2019-02-22', NULL, 1, 1, 8462, '', 73, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (16, '2020-03-04 16:29:20.439742+00', '2020-04-20 12:23:12.861465+00', 'PD', 'CHD/PCA201913/PD201916-1', 'Renforcement du système de protection en faveur des enfants affectés par la crise de la Province du Lac, y compris les mouhadjirines.', 'active', '2019-09-17', '2020-05-04', '2019-09-03', NULL, NULL, '', '2019-09-06', '2019-09-09', NULL, 13, 16, 3701, '', 73, false, '{}', true, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (19, '2020-04-02 09:52:42.741507+00', '2020-04-07 10:21:07.170288+00', 'HPD', 'CHD/PCA201914/HPD202019', 'Appui à la prévention et au traitement de la malnutrition aigüe sévère à travers la mise en œuvre des activités WASH In Nut dans la province du Lac', 'active', '2020-04-01', '2020-08-31', '2020-02-20', NULL, NULL, '', '2020-03-25', '2020-03-25', NULL, 14, 19, 8462, '', 73, false, '{}', false, 2020, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (15, '2020-02-25 13:31:48.127664+00', '2020-02-25 13:56:44.57181+00', 'SSFA', 'CHD/SSFA201911', 'Mobilisation, participation et engagement des femmes et des jeunes filles pour les PFE, pour l’enregistrement de naissance, pour la scolarisation des filles et contre le mariage des enfants', 'active', '2019-10-01', '2020-04-30', '2019-09-03', NULL, NULL, '', '2019-09-24', '2019-09-26', NULL, 11, 15, 8462, '', 73, false, '{}', false, NULL, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (23, '2020-04-07 12:17:08.776373+00', '2020-04-07 12:29:32.037559+00', 'PD', 'CHD/PCA20191/PD202023', 'Appui à la mobilisation communautaire, plaidoyer en faveur de l''accès et l’utilisation des services de prévention et de soins de qualité chez les femmes enceintes, allaitantes et la lutte contre la stigmatisation et la discrimination des personnes vivant a', 'draft', '2020-04-27', '2021-04-26', NULL, NULL, NULL, '', NULL, NULL, NULL, 1, NULL, NULL, '', 73, false, '{}', false, 2020, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (6, '2020-02-12 15:53:45.824933+00', '2020-02-12 16:29:05.476508+00', 'PD', 'CHD/PCA20192/PD20196', 'Appui a la prevention et au traitement de la malnutrition aigue severe a travers la mise en oeuvre des activites WASH-In-Nut dans les provinces Sila, Ouaddai et Wadi Fira', 'ended', '2019-07-16', '2020-02-09', '2019-05-15', '2019-05-20', '2019-05-27', '', '2019-07-16', '2019-07-08', NULL, 2, 2, 8462, '', 73, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (18, '2020-03-06 14:05:34.772354+00', '2020-03-06 15:47:49.062081+00', 'HPD', 'CHD/PCA201914/HPD201918-1', 'Renforcement de la réponse de protection de l’enfance pour les enfants affectés par la crise centrafricaine', 'ended', '2019-06-14', '2020-01-31', '2019-02-11', '2019-02-11', NULL, '', '2019-05-21', '2019-05-21', NULL, 14, 19, 8462, '', 73, false, '{}', false, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (21, '2020-04-02 17:33:25.545105+00', '2020-04-15 10:04:37.008501+00', 'PD', 'CHD/PCA201815/PD202021', 'Phase III du Programme pour l’amélioration de l’accès aux soins par la mise en œuvre de la prise en charge intégrée des maladies de l’enfant (PCIME-C/ PEC-C) au niveau communautaire dans les districts sanitaires de Goré, de Béssao et de Baïbokoum (Logone O', 'active', '2020-04-02', '2021-03-01', '2020-02-20', '2020-02-24', '2020-03-11', '', '2020-03-31', '2020-04-02', NULL, 15, 20, 8462, '', 73, false, '{}', false, 2020, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (22, '2020-04-06 08:23:55.841784+00', '2020-04-07 10:33:26.22977+00', 'PD', 'CHD/PCA20193/PD202022', 'Appui à la participation citoyenne des jeunes et des femmes à la gouvernance locale et à la consolidation de la paix dans les communes de N’Djamena, Moundou, les départements de Bol, Bagassola et Liwa.', 'active', '2020-04-01', '2021-06-30', '2020-01-31', '2020-03-13', '2020-03-18', '', '2020-04-01', '2020-04-01', NULL, 3, 3, 8462, '', 73, false, '{}', false, 2020, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (12, '2020-02-20 12:56:19.168636+00', '2020-04-15 12:29:07.653139+00', 'PD', 'CHD/PCA20198/PD201912-1', 'Appui à la prévention et au traitement de la malnutrition aigüe sévère à travers la mise en œuvre des activités WASH In Nut dans les provinces de Bahr El ghazel et Kanem.', 'active', '2019-06-01', '2020-06-30', '2019-02-28', '2019-03-25', '2019-04-10', '', '2019-05-28', '2019-05-30', NULL, 8, 8, 8462, '', 73, false, '{}', true, 2019, '', '', ''); +INSERT INTO [[schema]].partners_intervention VALUES (25, '2020-04-16 10:06:29.877477+00', '2020-04-16 11:55:23.996086+00', 'HPD', 'CHD/PCA202018/HPD202025', 'Contribuer à l’amélioration de l’accès à l’eau, à l’assainissement et aux bonnes pratiques d’hygiène en faveur des réfugiés soudanais à Moura dans la province du Ouaddai pour alleger les tache des femmes et des filles déjà vulnérables', 'draft', '2020-04-14', '2020-08-13', '2020-03-27', NULL, NULL, '', '2020-04-14', '2020-04-14', NULL, 18, 23, 8462, '', 73, false, '{}', false, 2020, '', '', ''); -- -- Data for Name: partners_intervention_flat_locations; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (44, 7, 8); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (45, 7, 19); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (46, 8, 18); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (47, 8, 19); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (48, 8, 15); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (49, 9, 12); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (50, 9, 4); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (51, 9, 22); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (52, 10, 12); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (53, 10, 4); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (54, 10, 14); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (55, 10, 7); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (56, 11, 5); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (57, 11, 7); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (58, 11, 8); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (59, 11, 12); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (60, 11, 14); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (61, 11, 17); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (62, 11, 21); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (63, 11, 22); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (64, 11, 23); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (65, 11, 59); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (66, 12, 18); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (67, 12, 15); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (68, 13, 5); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (69, 13, 6); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (70, 14, 18); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (71, 14, 19); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (72, 14, 15); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (73, 15, 21); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (31, 5, 4); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (32, 5, 6); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (33, 5, 7); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (34, 5, 8); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (35, 5, 12); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (36, 5, 14); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (37, 5, 21); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (38, 5, 22); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (39, 5, 23); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (40, 5, 24); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (41, 6, 8); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (42, 6, 24); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (43, 6, 10); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (74, 16, 21); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (77, 19, 21); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (76, 18, 4); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (101, 26, 82); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (100, 25, 82); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (80, 21, 68); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (81, 21, 69); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (82, 22, 27); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (83, 22, 60); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (84, 22, 21); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (86, 23, 3); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (87, 23, 4); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (88, 23, 6); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (89, 23, 7); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (90, 23, 8); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (91, 23, 14); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (92, 23, 47); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (93, 23, 19); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (94, 23, 21); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (95, 23, 22); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (96, 23, 23); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (97, 23, 87); +INSERT INTO [[schema]].partners_intervention_flat_locations VALUES (98, 23, 24); -- -- Data for Name: partners_intervention_offices; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].partners_intervention_offices VALUES (7, 7, 387); +INSERT INTO [[schema]].partners_intervention_offices VALUES (8, 8, 387); +INSERT INTO [[schema]].partners_intervention_offices VALUES (9, 9, 387); +INSERT INTO [[schema]].partners_intervention_offices VALUES (10, 10, 387); +INSERT INTO [[schema]].partners_intervention_offices VALUES (5, 5, 387); +INSERT INTO [[schema]].partners_intervention_offices VALUES (6, 6, 387); +INSERT INTO [[schema]].partners_intervention_offices VALUES (11, 11, 387); +INSERT INTO [[schema]].partners_intervention_offices VALUES (12, 12, 387); +INSERT INTO [[schema]].partners_intervention_offices VALUES (13, 13, 387); +INSERT INTO [[schema]].partners_intervention_offices VALUES (14, 14, 387); +INSERT INTO [[schema]].partners_intervention_offices VALUES (15, 15, 387); +INSERT INTO [[schema]].partners_intervention_offices VALUES (16, 16, 387); +INSERT INTO [[schema]].partners_intervention_offices VALUES (17, 16, 389); +INSERT INTO [[schema]].partners_intervention_offices VALUES (20, 19, 387); +INSERT INTO [[schema]].partners_intervention_offices VALUES (19, 18, 387); +INSERT INTO [[schema]].partners_intervention_offices VALUES (21, 19, 389); +INSERT INTO [[schema]].partners_intervention_offices VALUES (33, 26, 387); +INSERT INTO [[schema]].partners_intervention_offices VALUES (31, 25, 387); +INSERT INTO [[schema]].partners_intervention_offices VALUES (24, 21, 387); +INSERT INTO [[schema]].partners_intervention_offices VALUES (25, 21, 391); +INSERT INTO [[schema]].partners_intervention_offices VALUES (26, 22, 387); +INSERT INTO [[schema]].partners_intervention_offices VALUES (27, 22, 389); +INSERT INTO [[schema]].partners_intervention_offices VALUES (28, 22, 391); +INSERT INTO [[schema]].partners_intervention_offices VALUES (29, 23, 387); +INSERT INTO [[schema]].partners_intervention_offices VALUES (32, 25, 388); +INSERT INTO [[schema]].partners_intervention_offices VALUES (34, 26, 388); -- -- Data for Name: partners_intervention_partner_focal_points; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (7, 7, 3); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (8, 8, 4); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (9, 9, 5); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (10, 10, 6); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (5, 5, 1); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (6, 6, 2); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (11, 11, 7); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (12, 12, 8); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (13, 13, 11); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (14, 14, 14); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (15, 15, 15); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (16, 16, 16); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (19, 19, 18); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (18, 18, 19); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (26, 26, 22); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (21, 21, 21); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (22, 22, 3); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (23, 23, 1); +INSERT INTO [[schema]].partners_intervention_partner_focal_points VALUES (25, 25, 23); -- -- Data for Name: partners_intervention_sections; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].partners_intervention_sections VALUES (7, 7, 9); +INSERT INTO [[schema]].partners_intervention_sections VALUES (8, 7, 2); +INSERT INTO [[schema]].partners_intervention_sections VALUES (9, 7, 7); +INSERT INTO [[schema]].partners_intervention_sections VALUES (10, 7, 8); +INSERT INTO [[schema]].partners_intervention_sections VALUES (5, 5, 7); +INSERT INTO [[schema]].partners_intervention_sections VALUES (6, 6, 8); +INSERT INTO [[schema]].partners_intervention_sections VALUES (11, 8, 9); +INSERT INTO [[schema]].partners_intervention_sections VALUES (12, 9, 2); +INSERT INTO [[schema]].partners_intervention_sections VALUES (13, 10, 2); +INSERT INTO [[schema]].partners_intervention_sections VALUES (14, 11, 2); +INSERT INTO [[schema]].partners_intervention_sections VALUES (15, 12, 8); +INSERT INTO [[schema]].partners_intervention_sections VALUES (16, 13, 8); +INSERT INTO [[schema]].partners_intervention_sections VALUES (17, 14, 8); +INSERT INTO [[schema]].partners_intervention_sections VALUES (18, 15, 2); +INSERT INTO [[schema]].partners_intervention_sections VALUES (19, 16, 10); +INSERT INTO [[schema]].partners_intervention_sections VALUES (22, 19, 8); +INSERT INTO [[schema]].partners_intervention_sections VALUES (21, 18, 10); +INSERT INTO [[schema]].partners_intervention_sections VALUES (31, 26, 7); +INSERT INTO [[schema]].partners_intervention_sections VALUES (24, 21, 7); +INSERT INTO [[schema]].partners_intervention_sections VALUES (25, 22, 9); +INSERT INTO [[schema]].partners_intervention_sections VALUES (26, 22, 2); +INSERT INTO [[schema]].partners_intervention_sections VALUES (27, 22, 3); +INSERT INTO [[schema]].partners_intervention_sections VALUES (28, 23, 7); +INSERT INTO [[schema]].partners_intervention_sections VALUES (30, 25, 8); -- -- Data for Name: partners_intervention_unicef_focal_points; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (7, 7, 14044); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (8, 8, 14044); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (9, 9, 12058); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (10, 10, 12058); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (5, 5, 12023); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (6, 6, 9032); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (11, 11, 5056); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (12, 12, 9148); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (13, 13, 9032); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (14, 14, 14239); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (15, 15, 5056); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (16, 16, 20384); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (17, 16, 24195); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (20, 19, 24425); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (19, 18, 5053); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (21, 19, 9148); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (29, 26, 12954); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (23, 21, 11344); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (24, 22, 14044); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (25, 23, 12023); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (27, 25, 9032); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (28, 25, 8140); +INSERT INTO [[schema]].partners_intervention_unicef_focal_points VALUES (30, 26, 13371); -- -- Data for Name: partners_interventionamendment; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].partners_interventionamendment VALUES (1, '2020-02-19 13:02:08.067106+00', '2020-02-19 13:02:08.067106+00', '2019-07-16', 1, '', 10, '{no_cost}', NULL); +INSERT INTO [[schema]].partners_interventionamendment VALUES (2, '2020-02-19 13:12:29.013675+00', '2020-02-19 13:12:29.013675+00', '2019-12-07', 2, '', 10, '{no_cost}', NULL); +INSERT INTO [[schema]].partners_interventionamendment VALUES (3, '2020-03-06 15:37:25.029113+00', '2020-03-06 15:37:25.029113+00', '2019-09-20', 1, '', 18, '{budget_lte_20}', NULL); +INSERT INTO [[schema]].partners_interventionamendment VALUES (4, '2020-04-15 12:26:08.712704+00', '2020-04-15 12:26:08.712704+00', '2020-04-07', 1, '', 12, '{no_cost}', NULL); +INSERT INTO [[schema]].partners_interventionamendment VALUES (5, '2020-04-20 12:13:11.958125+00', '2020-04-20 12:13:11.958125+00', '2020-02-25', 1, '', 16, '{no_cost}', NULL); -- -- Data for Name: partners_interventionattachment; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].partners_interventionattachment VALUES (1, '', 5, 7, '2020-02-12 15:11:27.631899+00', '2020-02-12 15:11:27.631899+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (2, '', 5, 7, '2020-02-12 15:11:48.01215+00', '2020-02-12 15:11:48.01215+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (3, '', 5, 7, '2020-02-12 15:12:12.752675+00', '2020-02-12 15:12:12.752675+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (4, '', 5, 7, '2020-02-12 15:12:28.771631+00', '2020-02-12 15:12:28.771631+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (5, '', 5, 7, '2020-02-12 15:12:59.701315+00', '2020-02-12 15:12:59.701315+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (6, '', 5, 7, '2020-02-12 15:13:19.45255+00', '2020-02-12 15:13:19.45255+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (7, '', 5, 7, '2020-02-12 15:13:34.226908+00', '2020-02-12 15:13:34.226908+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (8, '', 5, 7, '2020-02-12 15:14:57.618601+00', '2020-02-12 15:14:57.618601+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (9, '', 5, 7, '2020-02-12 15:15:09.413096+00', '2020-02-12 15:15:09.413096+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (10, '', 5, 1, '2020-02-12 15:18:53.920715+00', '2020-02-12 15:18:53.920715+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (11, '', 5, 1, '2020-02-12 15:19:46.680994+00', '2020-02-12 15:19:46.680994+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (12, '', 5, 2, '2020-02-12 15:20:13.366115+00', '2020-02-12 15:20:13.366115+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (13, '', 6, 7, '2020-02-12 16:24:09.936636+00', '2020-02-12 16:24:09.936636+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (14, '', 6, 6, '2020-02-12 16:24:41.893011+00', '2020-02-12 16:24:41.893011+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (15, '', 6, 7, '2020-02-12 16:25:02.205232+00', '2020-02-12 16:25:02.205232+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (16, '', 6, 7, '2020-02-12 16:25:19.098229+00', '2020-02-12 16:25:19.098229+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (17, '', 6, 7, '2020-02-12 16:25:33.469535+00', '2020-02-12 16:25:33.469535+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (18, '', 6, 7, '2020-02-12 16:25:53.13649+00', '2020-02-12 16:25:53.13649+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (19, '', 6, 7, '2020-02-12 16:26:08.331197+00', '2020-02-12 16:26:08.331197+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (20, '', 6, 7, '2020-02-12 16:26:28.654479+00', '2020-02-12 16:26:28.654479+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (21, '', 6, 7, '2020-02-12 16:27:08.105265+00', '2020-02-12 16:27:08.105265+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (22, '', 7, 1, '2020-02-17 12:37:06.587973+00', '2020-02-17 12:37:06.587973+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (23, '', 7, 7, '2020-02-17 12:37:22.126797+00', '2020-02-17 12:37:22.126797+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (24, '', 7, 7, '2020-02-17 12:37:42.85638+00', '2020-02-17 12:37:42.85638+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (25, '', 7, 7, '2020-02-17 12:37:59.871519+00', '2020-02-17 12:37:59.871519+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (26, '', 7, 7, '2020-02-17 12:38:16.542939+00', '2020-02-17 12:38:16.542939+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (27, '', 7, 7, '2020-02-17 12:38:43.680595+00', '2020-02-17 12:38:43.680595+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (28, '', 7, 7, '2020-02-17 12:39:00.537017+00', '2020-02-17 12:39:00.537017+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (29, '', 8, 7, '2020-02-17 14:32:56.31134+00', '2020-02-17 14:32:56.31134+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (30, '', 8, 7, '2020-02-17 14:33:12.873129+00', '2020-02-17 14:33:12.873129+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (31, '', 8, 7, '2020-02-17 14:33:32.337318+00', '2020-02-17 14:33:32.337318+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (32, '', 8, 7, '2020-02-17 14:33:57.49882+00', '2020-02-17 14:33:57.49882+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (33, '', 8, 7, '2020-02-17 14:34:19.741856+00', '2020-02-17 14:34:19.741856+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (34, '', 8, 7, '2020-02-17 14:34:40.332481+00', '2020-02-17 14:34:40.332481+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (35, '', 8, 5, '2020-02-17 14:37:32.266749+00', '2020-02-17 14:37:32.266749+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (36, '', 8, 5, '2020-02-17 14:37:49.26148+00', '2020-02-17 14:37:49.26148+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (37, '', 9, 7, '2020-02-17 15:27:26.557144+00', '2020-02-17 15:27:26.557144+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (38, '', 9, 1, '2020-02-17 15:29:16.483372+00', '2020-02-17 15:29:16.483372+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (39, '', 10, 1, '2020-02-17 16:28:38.154276+00', '2020-02-17 16:28:38.154276+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (40, '', 10, 1, '2020-02-17 16:28:56.460484+00', '2020-02-17 16:28:56.460484+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (41, '', 10, 7, '2020-02-17 16:29:34.45918+00', '2020-02-17 16:29:34.45918+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (42, '', 10, 7, '2020-02-17 16:29:50.0257+00', '2020-02-17 16:29:50.0257+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (43, '', 10, 7, '2020-02-17 16:30:05.473846+00', '2020-02-17 16:30:05.473846+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (44, '', 10, 7, '2020-02-17 16:30:21.539744+00', '2020-02-17 16:30:21.539744+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (45, '', 10, 7, '2020-02-17 16:30:59.672371+00', '2020-02-17 16:30:59.672371+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (46, '', 10, 7, '2020-02-17 16:31:21.707246+00', '2020-02-17 16:31:21.707246+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (47, '', 10, 7, '2020-02-17 16:31:38.555196+00', '2020-02-17 16:31:38.555196+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (48, '', 10, 7, '2020-02-17 16:31:51.551555+00', '2020-02-17 16:31:51.551555+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (49, '', 10, 7, '2020-02-17 16:32:21.127007+00', '2020-02-17 16:32:21.127007+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (50, '', 10, 7, '2020-02-17 16:32:40.084603+00', '2020-02-17 16:32:40.084603+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (51, '', 10, 7, '2020-02-17 16:36:07.037712+00', '2020-02-17 16:36:07.037712+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (52, '', 11, 7, '2020-02-18 14:36:23.26581+00', '2020-02-18 14:36:23.26581+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (53, '', 11, 7, '2020-02-18 14:36:43.792413+00', '2020-02-18 14:36:43.792413+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (54, '', 11, 7, '2020-02-18 14:38:46.220572+00', '2020-02-18 14:38:46.220572+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (55, '', 11, 7, '2020-02-18 14:39:29.995887+00', '2020-02-18 14:39:29.995887+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (56, '', 11, 7, '2020-02-18 14:39:51.491714+00', '2020-02-18 14:39:51.491714+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (60, '', 10, 7, '2020-02-19 13:05:54.188275+00', '2020-02-19 13:05:54.188275+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (58, '', 11, 1, '2020-02-18 14:43:57.65784+00', '2020-02-18 14:43:57.65784+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (59, '', 11, 1, '2020-02-18 14:44:25.149499+00', '2020-02-18 14:44:25.149499+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (61, '', 12, 7, '2020-02-20 14:01:38.313996+00', '2020-02-20 14:01:38.313996+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (62, '', 12, 7, '2020-02-20 14:01:59.187033+00', '2020-02-20 14:01:59.187033+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (63, '', 12, 7, '2020-02-20 14:02:14.962072+00', '2020-02-20 14:02:14.962072+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (64, '', 12, 7, '2020-02-20 14:02:28.461474+00', '2020-02-20 14:02:28.461474+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (65, '', 12, 7, '2020-02-20 14:02:46.928266+00', '2020-02-20 14:02:46.928266+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (66, '', 12, 7, '2020-02-20 14:03:15.541429+00', '2020-02-20 14:03:15.541429+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (67, '', 12, 7, '2020-02-20 14:03:33.518958+00', '2020-02-20 14:03:33.518958+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (68, '', 12, 7, '2020-02-20 14:03:47.425096+00', '2020-02-20 14:03:47.425096+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (69, '', 12, 7, '2020-02-20 14:04:05.966794+00', '2020-02-20 14:04:05.966794+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (70, '', 12, 1, '2020-02-20 14:04:34.756934+00', '2020-02-20 14:04:34.756934+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (71, '', 12, 1, '2020-02-20 14:04:52.184972+00', '2020-02-20 14:04:52.184972+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (72, '', 12, 1, '2020-02-20 14:05:10.324915+00', '2020-02-20 14:05:10.324915+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (73, '', 13, 7, '2020-02-20 14:49:50.231844+00', '2020-02-20 14:49:50.231844+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (74, '', 13, 7, '2020-02-20 14:50:05.718473+00', '2020-02-20 14:50:05.718473+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (75, '', 13, 7, '2020-02-20 14:50:18.773021+00', '2020-02-20 14:50:18.773021+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (76, '', 13, 7, '2020-02-20 14:50:35.481446+00', '2020-02-20 14:50:35.481446+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (77, '', 13, 7, '2020-02-20 14:50:59.516804+00', '2020-02-20 14:50:59.516804+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (78, '', 13, 7, '2020-02-20 14:51:12.090122+00', '2020-02-20 14:51:12.090122+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (79, '', 13, 7, '2020-02-20 14:51:23.948997+00', '2020-02-20 14:51:23.948997+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (80, '', 13, 7, '2020-02-20 14:51:48.048576+00', '2020-02-20 14:51:48.048576+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (81, '', 13, 7, '2020-02-20 14:52:23.200764+00', '2020-02-20 14:52:23.200764+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (82, '', 13, 7, '2020-02-20 14:52:38.216114+00', '2020-02-20 14:52:38.216114+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (83, '', 13, 7, '2020-02-20 14:53:08.241652+00', '2020-02-20 14:53:08.241652+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (84, '', 13, 7, '2020-02-20 14:53:22.031333+00', '2020-02-20 14:53:22.031333+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (85, '', 13, 1, '2020-02-20 14:53:46.712111+00', '2020-02-20 14:53:46.712111+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (86, '', 13, 1, '2020-02-20 14:55:12.965344+00', '2020-02-20 14:55:12.965344+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (87, '', 13, 1, '2020-02-20 14:55:30.482409+00', '2020-02-20 14:55:30.482409+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (88, '', 14, 7, '2020-02-20 16:47:08.60965+00', '2020-02-20 16:47:08.60965+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (89, '', 14, 7, '2020-02-20 16:47:24.698238+00', '2020-02-20 16:47:24.698238+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (90, '', 14, 7, '2020-02-20 16:47:39.43894+00', '2020-02-20 16:47:39.43894+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (91, '', 14, 7, '2020-02-20 16:48:05.405704+00', '2020-02-20 16:48:05.405704+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (92, '', 14, 7, '2020-02-20 16:48:23.895613+00', '2020-02-20 16:48:23.895613+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (93, '', 14, 7, '2020-02-20 16:48:40.509437+00', '2020-02-20 16:48:40.509437+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (94, '', 14, 7, '2020-02-20 16:48:54.816889+00', '2020-02-20 16:48:54.816889+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (95, '', 14, 7, '2020-02-20 16:49:11.573234+00', '2020-02-20 16:49:11.573234+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (96, '', 14, 7, '2020-02-20 16:49:24.972905+00', '2020-02-20 16:49:24.972905+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (97, '', 14, 1, '2020-02-20 16:49:54.119461+00', '2020-02-20 16:49:54.119461+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (98, '', 15, 7, '2020-02-25 13:51:07.856276+00', '2020-02-25 13:51:07.856276+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (101, '', 16, 7, '2020-03-05 16:31:28.616528+00', '2020-03-05 16:31:28.616528+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (100, '', 15, 1, '2020-02-25 15:49:17.062566+00', '2020-02-25 15:49:17.062566+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (102, '', 16, 1, '2020-03-05 16:32:38.770478+00', '2020-03-05 16:32:38.770478+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (103, '', 18, 7, '2020-03-06 14:37:26.821659+00', '2020-03-06 14:37:26.821659+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (104, '', 18, 7, '2020-03-06 14:37:43.8197+00', '2020-03-06 14:37:43.8197+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (105, '', 18, 7, '2020-03-06 14:38:04.235203+00', '2020-03-06 14:38:04.235203+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (106, '', 18, 7, '2020-03-06 14:38:17.978295+00', '2020-03-06 14:38:17.978295+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (123, '', 22, 7, '2020-04-07 08:44:02.72386+00', '2020-04-07 08:44:02.72386+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (108, '', 18, 7, '2020-03-06 14:38:58.563092+00', '2020-03-06 14:38:58.563092+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (109, '', 18, 7, '2020-03-06 14:39:15.42285+00', '2020-03-06 14:39:15.42285+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (110, '', 18, 7, '2020-03-06 14:39:30.563719+00', '2020-03-06 14:39:30.563719+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (111, '', 18, 7, '2020-03-06 14:39:42.924479+00', '2020-03-06 14:39:42.924479+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (112, '', 18, 7, '2020-03-06 14:39:55.97208+00', '2020-03-06 14:39:55.97208+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (113, '', 18, 7, '2020-03-06 14:40:13.190377+00', '2020-03-06 14:40:13.190377+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (114, '', 18, 7, '2020-03-06 14:40:27.904416+00', '2020-03-06 14:40:27.904416+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (115, '', 18, 7, '2020-03-06 14:40:39.180076+00', '2020-03-06 14:40:39.180076+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (116, '', 18, 7, '2020-03-06 14:40:50.88034+00', '2020-03-06 14:40:50.88034+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (117, '', 18, 7, '2020-03-06 14:41:07.424669+00', '2020-03-06 14:41:07.424669+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (118, '', 18, 7, '2020-03-06 14:42:04.30248+00', '2020-03-06 14:42:04.30248+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (119, '', 18, 7, '2020-03-06 14:42:16.537234+00', '2020-03-06 14:42:16.537234+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (120, '', 18, 7, '2020-03-06 15:35:11.790458+00', '2020-03-06 15:35:11.790458+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (121, '', 18, 7, '2020-03-06 15:36:06.725105+00', '2020-03-06 15:36:06.725105+00', true); +INSERT INTO [[schema]].partners_interventionattachment VALUES (122, '', 18, 5, '2020-03-06 15:47:06.9133+00', '2020-03-06 15:47:06.9133+00', true); -- -- Data for Name: partners_interventionbudget; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].partners_interventionbudget VALUES (7, '2020-02-17 11:04:23.283863+00', '2020-02-17 12:02:35.508312+00', 0.00, 0.00, 0.00, 9562800.00, 244151200.00, 52388316.00, 0.00, 7, 306102316.00, 'XAF'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (8, '2020-02-17 14:12:05.492009+00', '2020-02-17 14:25:51.724482+00', 0.00, 0.00, 0.00, 4303750.00, 54884950.00, 0.00, 0.00, 8, 59188700.00, 'XAF'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (5, '2020-02-12 15:01:50.711206+00', '2020-02-12 15:20:29.340133+00', 0.00, 0.00, 0.00, 3675000.00, 50108750.00, 0.00, 0.00, 5, 53783750.00, 'XAF'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (6, '2020-02-12 15:53:46.040919+00', '2020-02-12 16:23:37.992753+00', 0.00, 0.00, 0.00, 18263420.00, 81763500.00, 33968142.00, 0.00, 6, 133995062.00, 'XAF'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (9, '2020-02-17 15:05:02.26294+00', '2020-02-17 15:08:33.274837+00', 0.00, 0.00, 0.00, 0.00, 14820000.00, 0.00, 0.00, 9, 14820000.00, 'XAF'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (10, '2020-02-17 15:53:15.947777+00', '2020-02-17 16:06:46.624748+00', 0.00, 0.00, 0.00, 2425000.00, 31142000.00, 0.00, 0.00, 10, 33567000.00, 'XAF'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (11, '2020-02-18 14:12:43.163799+00', '2020-02-18 14:45:39.186355+00', 0.00, 0.00, 0.00, 0.00, 34080000.00, 0.00, 0.00, 11, 34080000.00, 'XAF'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (12, '2020-02-20 12:56:19.410405+00', '2020-02-20 13:39:27.059944+00', 0.00, 0.00, 0.00, 48226827.00, 378515658.00, 89680280.00, 0.00, 12, 516422765.00, 'XAF'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (13, '2020-02-20 14:27:40.31069+00', '2020-02-20 15:06:28.221527+00', 0.00, 0.00, 0.00, 9369300.00, 77129600.00, 19705000.00, 0.00, 13, 106203900.00, 'XAF'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (14, '2020-02-20 16:15:05.635914+00', '2020-02-20 16:17:06.185147+00', 0.00, 0.00, 0.00, 15497000.00, 166791300.00, 34136609.00, 0.00, 14, 216424909.00, 'XAF'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (15, '2020-02-25 13:31:48.339307+00', '2020-02-25 13:35:00.595445+00', 0.00, 0.00, 0.00, 0.00, 15777000.00, 0.00, 0.00, 15, 15777000.00, 'XAF'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (16, '2020-03-04 16:29:20.726083+00', '2020-03-04 16:51:23.50871+00', 0.00, 0.00, 0.00, 0.00, 75515000.00, 0.00, 0.00, 16, 75515000.00, 'XAF'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (18, '2020-03-06 14:05:35.05072+00', '2020-03-06 14:33:20.392368+00', 0.00, 0.00, 0.00, 18574740.00, 168263618.00, 0.00, 0.00, 18, 186838358.00, 'XAF'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (19, '2020-04-02 09:52:43.01896+00', '2020-04-02 10:49:38.292185+00', 0.00, 0.00, 0.00, 17419678.00, 101938444.00, 9062024.00, 0.00, 19, 128420146.00, 'XAF'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (26, '2020-04-21 13:54:12.508871+00', '2020-04-21 13:54:12.508871+00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 26, 0.00, 'XAF'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (21, '2020-04-02 17:33:25.785468+00', '2020-04-02 19:13:29.7113+00', 0.00, 0.00, 0.00, 66654000.00, 171541838.00, 115399576.00, 0.00, 21, 353595414.00, 'XAF'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (22, '2020-04-06 08:23:56.142716+00', '2020-04-06 19:24:46.913888+00', 0.00, 0.00, 0.00, 6759000.00, 165027675.00, 12396712.00, 0.00, 22, 184183387.00, 'XAF'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (23, '2020-04-07 12:17:09.147683+00', '2020-04-07 12:29:32.338197+00', 0.00, 0.00, 0.00, 6180000.00, 87716550.00, 0.00, 0.00, 23, 93896550.00, 'XAF'); +INSERT INTO [[schema]].partners_interventionbudget VALUES (25, '2020-04-16 10:06:30.115475+00', '2020-04-16 10:37:27.709131+00', 0.00, 0.00, 0.00, 10860000.00, 46645300.00, 16425000.00, 0.00, 25, 73930300.00, 'XAF'); -- -- Data for Name: partners_interventionplannedvisits; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (1, 2020, 0, 7, '2020-02-17 12:02:35.561134+00', '2020-02-17 12:02:35.561134+00', 1, 1, 1); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (2, 2020, 0, 8, '2020-02-17 14:25:51.775513+00', '2020-02-17 14:25:51.775513+00', 2, 1, 0); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (3, 2020, 0, 9, '2020-02-17 15:08:33.326011+00', '2020-02-17 15:08:33.326011+00', 1, 0, 0); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (4, 2019, 0, 10, '2020-02-17 16:06:46.675969+00', '2020-02-17 16:06:46.675969+00', 1, 1, 1); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (5, 2019, 1, 11, '2020-02-18 14:45:39.236478+00', '2020-02-18 14:45:39.236478+00', 0, 0, 0); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (6, 2020, 0, 11, '2020-02-18 14:45:39.284729+00', '2020-02-18 14:45:39.284729+00', 1, 0, 0); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (7, 2019, 1, 12, '2020-02-20 13:40:23.3997+00', '2020-02-20 13:40:23.3997+00', 0, 0, 1); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (8, 2020, 0, 12, '2020-02-20 13:40:23.449155+00', '2020-02-20 13:40:23.449155+00', 0, 1, 0); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (9, 2019, 2, 13, '2020-02-20 14:58:59.40354+00', '2020-02-20 14:58:59.40354+00', 0, 0, 0); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (10, 2020, 0, 13, '2020-02-20 14:58:59.452497+00', '2020-02-20 14:58:59.452497+00', 1, 0, 0); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (11, 2020, 1, 14, '2020-02-20 16:17:06.24545+00', '2020-02-20 16:17:06.24545+00', 1, 1, 1); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (12, 2019, 1, 15, '2020-02-25 13:35:00.647482+00', '2020-02-25 13:35:00.647482+00', 0, 0, 0); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (13, 2020, 0, 15, '2020-02-25 13:35:00.698322+00', '2020-02-25 13:35:00.698322+00', 1, 0, 0); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (14, 2019, 1, 16, '2020-03-04 16:55:41.583411+00', '2020-03-04 16:55:41.583411+00', 0, 0, 1); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (15, 2019, 1, 18, '2020-03-06 14:33:20.440864+00', '2020-03-06 14:33:20.440864+00', 0, 0, 1); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (16, 2020, 0, 19, '2020-04-02 10:50:01.781265+00', '2020-04-02 10:50:01.781265+00', 0, 1, 1); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (17, 2020, 1, 21, '2020-04-02 19:13:29.761081+00', '2020-04-02 19:13:29.761081+00', 0, 1, 1); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (18, 2020, 1, 22, '2020-04-06 19:24:46.965314+00', '2020-04-06 19:24:46.965314+00', 0, 1, 1); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (19, 2020, 0, 23, '2020-04-07 12:29:32.388127+00', '2020-04-07 12:29:32.388127+00', 0, 1, 1); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (20, 2021, 0, 23, '2020-04-07 12:29:32.437056+00', '2020-04-07 12:29:32.437056+00', 1, 0, 0); +INSERT INTO [[schema]].partners_interventionplannedvisits VALUES (21, 2020, 0, 25, '2020-04-16 10:37:27.760055+00', '2020-04-16 10:37:27.760055+00', 0, 2, 2); -- @@ -14190,471 +15526,555 @@ INSERT INTO [[schema]].partners_filetype VALUES (7, 'Other'); -- Data for Name: partners_interventionresultlink; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].partners_interventionresultlink VALUES (1, 45, 5, '2020-02-12 15:24:40.41892+00', '2020-02-12 15:24:40.41892+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (2, 46, 5, '2020-02-12 15:25:15.464237+00', '2020-02-12 15:25:15.464237+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (3, 41, 6, '2020-02-12 15:57:59.106264+00', '2020-02-12 15:57:59.106264+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (4, 40, 6, '2020-02-12 16:04:41.274098+00', '2020-02-12 16:04:41.274098+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (5, 20, 7, '2020-02-17 11:07:49.317418+00', '2020-02-17 11:07:49.317418+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (6, 23, 7, '2020-02-17 11:11:07.692276+00', '2020-02-17 11:11:07.692276+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (7, 31, 7, '2020-02-17 11:12:17.02887+00', '2020-02-17 11:12:17.02887+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (8, 41, 7, '2020-02-17 11:13:26.187314+00', '2020-02-17 11:13:26.187314+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (9, 40, 7, '2020-02-17 11:14:26.015059+00', '2020-02-17 11:14:26.015059+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (10, 20, 8, '2020-02-17 14:13:06.96963+00', '2020-02-17 14:13:06.96963+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (11, 33, 8, '2020-02-17 14:13:58.274725+00', '2020-02-17 14:13:58.274725+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (14, 36, 11, '2020-02-18 14:20:49.947453+00', '2020-02-18 14:20:49.947453+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (12, 36, 9, '2020-02-17 15:06:45.764042+00', '2020-02-17 15:07:48.914792+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (13, 36, 10, '2020-02-17 15:54:15.121862+00', '2020-02-17 15:54:15.121862+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (22, 23, 15, '2020-02-25 13:33:58.336521+00', '2020-02-25 13:33:58.336521+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (16, 41, 12, '2020-02-20 13:20:18.506299+00', '2020-02-20 13:20:18.506299+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (17, 38, 12, '2020-02-20 13:20:37.080718+00', '2020-02-20 13:20:37.080718+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (18, 41, 13, '2020-02-20 14:30:04.568249+00', '2020-02-20 14:30:04.568249+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (19, 38, 13, '2020-02-20 14:30:59.932156+00', '2020-02-20 14:30:59.932156+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (20, 41, 14, '2020-02-20 16:19:51.622003+00', '2020-02-20 16:19:51.622003+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (21, 40, 14, '2020-02-20 16:20:34.535139+00', '2020-02-20 16:20:34.535139+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (23, 52, 16, '2020-03-04 16:35:38.035188+00', '2020-03-04 16:35:38.035188+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (24, 52, 18, '2020-03-06 14:11:07.946933+00', '2020-03-06 14:11:07.946933+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (26, 38, 19, '2020-04-02 10:01:35.009566+00', '2020-04-02 10:05:33.917655+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (27, 28, 21, '2020-04-02 17:40:27.271609+00', '2020-04-02 17:40:27.271609+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (28, 22, 22, '2020-04-06 09:08:06.374187+00', '2020-04-06 09:08:53.563643+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (30, 36, 22, '2020-04-06 18:47:31.413108+00', '2020-04-06 18:47:31.413108+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (31, 20, 22, '2020-04-06 18:57:28.694612+00', '2020-04-06 18:58:00.573099+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (32, 12, 22, '2020-04-06 19:04:21.724312+00', '2020-04-06 19:04:21.724312+00'); +INSERT INTO [[schema]].partners_interventionresultlink VALUES (36, 38, 25, '2020-04-16 10:27:33.644765+00', '2020-04-16 10:27:33.644765+00'); -- -- Data for Name: partners_interventionresultlink_ram_indicators; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (1, 1, 163); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (2, 2, 202); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (3, 2, 203); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (4, 3, 162); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (5, 3, 174); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (6, 4, 200); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (7, 4, 97); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (8, 5, 29); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (9, 5, 142); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (10, 6, 36); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (11, 7, 208); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (12, 8, 15); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (13, 9, 97); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (14, 10, 29); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (15, 10, 142); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (16, 11, 137); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (17, 12, 89); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (18, 12, 127); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (19, 12, 128); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (20, 12, 107); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (21, 13, 128); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (22, 13, 89); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (23, 13, 107); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (24, 13, 127); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (25, 14, 128); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (26, 14, 89); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (27, 14, 127); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (41, 22, 131); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (42, 22, 36); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (30, 16, 162); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (31, 17, 193); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (32, 18, 162); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (33, 18, 174); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (34, 19, 79); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (35, 20, 9); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (36, 20, 162); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (37, 20, 174); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (38, 20, 15); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (39, 21, 200); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (40, 21, 97); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (43, 22, 37); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (44, 23, 19); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (45, 23, 99); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (46, 24, 19); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (47, 24, 99); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (52, 28, 198); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (49, 26, 193); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (50, 27, 210); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (51, 27, 189); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (54, 30, 107); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (55, 31, 229); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (56, 32, 144); +INSERT INTO [[schema]].partners_interventionresultlink_ram_indicators VALUES (62, 36, 224); -- -- Data for Name: partners_partnerorganization; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].partners_partnerorganization VALUES (232, 'Civil Society Organization', 'Community Based Organization', 'Partner232', '', '', 'Address232', 'email232@nowhere.org', '232', '232', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 232.00, 232.00, true, 'City 232', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.368682+00', 232.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (228, 'Civil Society Organization', 'National', 'Partner228', '', '', 'Address228', 'email228@nowhere.org', '228', '228', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 228.00, 228.00, true, 'City 228', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.37096+00', 228.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (305, 'Civil Society Organization', 'National', 'Partner305', '', '', 'Address305', 'email305@nowhere.org', '305', '305', NULL, '', 'Significant', 'Micro Assessment', '2013-09-15', '2013-09-15', true, true, false, 305.00, 305.00, true, 'City 305', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.373268+00', 305.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (320, 'Civil Society Organization', 'National', 'Partner320', '', '', 'Address320', 'email320@nowhere.org', '320', '320', NULL, '', 'Not Required', '', NULL, NULL, true, true, false, 320.00, 320.00, true, 'City 320', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.375539+00', 320.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (26, 'Civil Society Organization', 'International', 'Partner26', '', '', 'Address26', 'email26@nowhere.org', '26', '26', NULL, '', '', '', NULL, NULL, true, true, true, 26.00, 26.00, true, 'City 26', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.37781+00', 26.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (148, 'Civil Society Organization', 'International', 'Partner148', '', '', 'Address148', 'email148@nowhere.org', '148', '148', NULL, '', 'Not Required', 'Micro Assessment', '2017-08-09', '2015-12-18', true, true, true, 148.00, 148.00, true, 'City 148', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.380445+00', 148.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (294, 'Civil Society Organization', 'National', 'Partner294', '', '', 'Address294', 'email294@nowhere.org', '294', '294', NULL, '', 'Low', 'Micro Assessment', '2014-10-31', '2016-04-15', true, false, false, 294.00, 294.00, false, 'City 294', '081', '353', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.382736+00', 294.00, 80531.75, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (370, 'Civil Society Organization', 'International', 'Partner370', '', '', 'Address370', 'email370@nowhere.org', '370', '370', NULL, '', 'Medium', 'Micro Assessment', '2017-08-01', '2019-05-29', true, false, false, 370.00, 370.00, false, 'City 370', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.385035+00', 370.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (183, 'Civil Society Organization', 'National', 'Partner183', '', '', 'Address183', 'email183@nowhere.org', '183', '183', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', '2013-07-20', true, false, false, 183.00, 183.00, false, 'City 183', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.387526+00', 183.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (447, 'Government', NULL, 'Partner447', '', '', 'Address447', 'email447@nowhere.org', '447', '447', NULL, NULL, 'High', 'High Risk Assumed', '2019-08-07', NULL, true, false, false, 447.00, 447.00, false, 'City 447', '081', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-09-14 00:04:44.669899+00', '2020-04-02 16:57:42.390231+00', 447.00, 0.00, 146219.94, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (285, 'Civil Society Organization', 'International', 'Partner285', '', '', 'Address285', 'email285@nowhere.org', '285', '285', NULL, '', 'Low', 'Micro Assessment', '2013-09-30', '2019-03-19', true, true, false, 285.00, 285.00, true, 'City 285', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.393544+00', 285.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (161, 'Civil Society Organization', 'International', 'Partner161', '', '', 'Address161', 'email161@nowhere.org', '161', '161', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', NULL, true, true, false, 161.00, 161.00, true, 'City 161', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.398964+00', 161.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (296, 'Civil Society Organization', 'Community Based Organization', 'Partner296', '', '', 'Address296', 'email296@nowhere.org', '296', '296', NULL, '', 'Low', 'Micro Assessment', '2017-08-01', '2016-09-20', true, false, false, 296.00, 296.00, false, 'City 296', '081', '235', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.404063+00', 296.00, 51698.99, 42121.54, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (450, 'Civil Society Organization', 'Community Based Organization', 'Partner450', '', '', 'Address450', 'email450@nowhere.org', '450', '450', NULL, NULL, 'Not Required', 'Micro Assessment', '2019-08-27', '2019-08-26', true, false, false, 450.00, 450.00, false, 'City 450', '081', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-10-01 14:41:45.499882+00', '2020-04-02 16:57:42.409133+00', 450.00, 0.00, 96909.53, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (409, 'Civil Society Organization', 'National', 'Partner409', '', '', 'Address409', 'email409@nowhere.org', '409', '409', NULL, '', 'High', 'High Risk Assumed', '2016-12-14', '2016-12-14', true, false, false, 409.00, 409.00, false, 'City 409', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.414234+00', 409.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (254, 'Civil Society Organization', 'National', 'Partner254', '', '', 'Address254', 'email254@nowhere.org', '254', '254', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 254.00, 254.00, true, 'City 254', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.419281+00', 254.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (383, 'Civil Society Organization', 'National', 'Partner383', '', '', 'Address383', 'email383@nowhere.org', '383', '383', NULL, '', 'Significant', 'Micro Assessment', '2016-02-01', '2016-02-29', true, false, false, 383.00, 383.00, false, 'City 383', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.424308+00', 383.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (257, 'Civil Society Organization', NULL, 'Partner257', '', '', 'Address257', 'email257@nowhere.org', '257', '257', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 257.00, 257.00, true, 'City 257', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.429286+00', 257.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (261, 'Civil Society Organization', 'National', 'Partner261', '', '', 'Address261', 'email261@nowhere.org', '261', '261', NULL, '', 'Medium', 'Micro Assessment', '2017-12-31', '2017-12-31', true, false, false, 261.00, 261.00, false, 'City 261', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.434255+00', 261.00, 48202.15, 127153.95, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (205, 'Civil Society Organization', 'National', 'Partner205', '', '', 'Address205', 'email205@nowhere.org', '205', '205', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 205.00, 205.00, true, 'City 205', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.439351+00', 205.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (435, 'Civil Society Organization', 'National', 'Partner435', '', '', 'Address435', 'email435@nowhere.org', '435', '435', NULL, NULL, 'High', 'High Risk Assumed', '2018-03-20', '2018-02-15', true, false, false, 435.00, 435.00, false, 'City 435', '081', '235', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-06-10 00:04:32.626951+00', '2020-04-02 16:57:42.444334+00', 435.00, 250369.64, 319466.27, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (368, 'Civil Society Organization', 'National', 'Partner368', '', '', 'Address368', 'email368@nowhere.org', '368', '368', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 368.00, 368.00, true, 'City 368', '081', '0235', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.4544+00', 368.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (321, 'Civil Society Organization', 'National', 'Partner321', '', '', 'Address321', 'email321@nowhere.org', '321', '321', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 321.00, 321.00, true, 'City 321', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.459522+00', 321.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (381, 'Civil Society Organization', 'National', 'Partner381', '', '', 'Address381', 'email381@nowhere.org', '381', '381', NULL, '', 'High', 'High Risk Assumed', '2016-04-07', '2016-04-07', true, false, false, 381.00, 381.00, false, 'City 381', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.464493+00', 381.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (366, 'Civil Society Organization', 'National', 'Partner366', '', '', 'Address366', 'email366@nowhere.org', '366', '366', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 366.00, 366.00, true, 'City 366', '081', '1146', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.469587+00', 366.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (248, 'Civil Society Organization', NULL, 'Partner248', '', '', 'Address248', 'email248@nowhere.org', '248', '248', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 248.00, 248.00, true, 'City 248', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.474529+00', 248.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (123, 'Civil Society Organization', 'International', 'Partner123', '', '', 'Address123', 'email123@nowhere.org', '123', '123', NULL, '', 'Low', 'Micro Assessment', '2017-05-18', '2018-04-09', true, false, false, 123.00, 123.00, false, 'City 123', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.479566+00', 123.00, 692748.43, 75704.07, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (173, 'Civil Society Organization', 'National', 'Partner173', '', '', 'Address173', 'email173@nowhere.org', '173', '173', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 173.00, 173.00, true, 'City 173', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.484619+00', 173.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (358, 'Civil Society Organization', 'National', 'Partner358', '', '', 'Address358', 'email358@nowhere.org', '358', '358', NULL, '', 'Not Required', 'Micro Assessment', '2015-12-31', '2016-03-04', true, false, false, 358.00, 358.00, false, 'City 358', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.489693+00', 358.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (221, 'Civil Society Organization', 'National', 'Partner221', '', '', 'Address221', 'email221@nowhere.org', '221', '221', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, false, 221.00, 221.00, true, 'City 221', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.494668+00', 221.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (423, 'Government', NULL, 'Partner423', '', '', 'Address423', 'email423@nowhere.org', '423', '423', NULL, '', 'High', 'High Risk Assumed', '2017-04-27', NULL, true, false, false, 423.00, 423.00, false, 'City 423', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.499725+00', 423.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (98, 'Civil Society Organization', 'International', 'Partner98', '', '', 'Address98', 'email98@nowhere.org', '98', '98', NULL, '', '', '', NULL, NULL, true, true, true, 98.00, 98.00, true, 'City 98', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.504713+00', 98.00, 0.00, 0.00, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (373, 'Civil Society Organization', 'National', 'Partner373', '', '', 'Address373', 'email373@nowhere.org', '373', '373', NULL, '', 'High', 'High Risk Assumed', '2016-01-20', '2016-01-20', true, false, false, 373.00, 373.00, false, 'City 373', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.509658+00', 373.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (403, 'Civil Society Organization', 'National', 'Partner403', '', '', 'Address403', 'email403@nowhere.org', '403', '403', NULL, '', 'High', 'High Risk Assumed', '2016-08-10', '2016-06-15', true, false, false, 403.00, 403.00, false, 'City 403', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.514809+00', 403.00, 19629.27, 24392.93, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (258, 'Civil Society Organization', 'National', 'Partner258', '', '', 'Address258', 'email258@nowhere.org', '258', '258', NULL, '', 'High', 'Micro Assessment', '2018-10-15', '2018-10-15', true, false, false, 258.00, 258.00, false, 'City 258', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.51992+00', 258.00, 21416.34, 22967.39, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (182, 'Civil Society Organization', 'National', 'Partner182', '', '', 'Address182', 'email182@nowhere.org', '182', '182', NULL, '', 'Significant', 'Micro Assessment', '2015-07-20', '2019-07-08', true, false, false, 182.00, 182.00, false, 'City 182', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.524891+00', 182.00, 0.00, 71060.43, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (28, 'Civil Society Organization', 'National', 'Partner28', '', '', 'Address28', 'email28@nowhere.org', '28', '28', NULL, '', 'High', 'High Risk Assumed', '2019-06-26', '2019-06-26', true, false, false, 28.00, 28.00, false, 'City 28', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.530015+00', 28.00, 19814.48, 36737.18, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (309, 'Civil Society Organization', 'National', 'Partner309', '', '', 'Address309', 'email309@nowhere.org', '309', '309', NULL, '', 'High', 'High Risk Assumed', '2015-06-30', '2015-06-30', true, false, false, 309.00, 309.00, false, 'City 309', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.534987+00', 309.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (375, 'Civil Society Organization', 'National', 'Partner375', '', '', 'Address375', 'email375@nowhere.org', '375', '375', NULL, '', 'High', 'High Risk Assumed', '2016-04-07', '2016-04-07', true, false, false, 375.00, 375.00, false, 'City 375', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.540026+00', 375.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (374, 'Civil Society Organization', 'National', 'Partner374', '', '', 'Address374', 'email374@nowhere.org', '374', '374', NULL, '', 'High', 'High Risk Assumed', '2016-04-07', '2016-04-07', true, false, false, 374.00, 374.00, false, 'City 374', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.545014+00', 374.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (342, 'Civil Society Organization', 'National', 'Partner342', '', '', 'Address342', 'email342@nowhere.org', '342', '342', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-07-10', true, false, false, 342.00, 342.00, false, 'City 342', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.550079+00', 342.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (217, 'Civil Society Organization', 'National', 'Partner217', '', '', 'Address217', 'email217@nowhere.org', '217', '217', NULL, '', 'Not Required', 'Micro Assessment', '2017-07-24', '2017-07-24', true, true, false, 217.00, 217.00, true, 'City 217', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.555017+00', 217.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (289, 'Civil Society Organization', 'National', 'Partner289', '', '', 'Address289', 'email289@nowhere.org', '289', '289', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 289.00, 289.00, true, 'City 289', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.560051+00', 289.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (220, 'Civil Society Organization', 'International', 'Partner220', '', '', 'Address220', 'email220@nowhere.org', '220', '220', NULL, '', 'High', 'High Risk Assumed', '2017-10-24', '2016-05-18', true, false, false, 220.00, 220.00, false, 'City 220', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.565018+00', 220.00, 22368.07, 9187.31, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (346, 'Civil Society Organization', 'National', 'Partner346', '', '', 'Address346', 'email346@nowhere.org', '346', '346', NULL, '', 'Not Required', 'Micro Assessment', '2016-02-01', '2016-04-25', true, false, false, 346.00, 346.00, false, 'City 346', '081', '0235', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.570229+00', 346.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (77, 'Civil Society Organization', 'Community Based Organization', 'Partner77', '', '', 'Address77', 'email77@nowhere.org', '77', '77', NULL, '', 'Medium', 'Micro Assessment', '2016-06-21', '2016-06-21', true, false, false, 77.00, 77.00, false, 'City 77', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.580602+00', 77.00, 33353.03, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (170, 'Civil Society Organization', 'National', 'Partner170', '', '', 'Address170', 'email170@nowhere.org', '170', '170', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, true, 170.00, 170.00, true, 'City 170', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.585653+00', 170.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (310, 'Civil Society Organization', 'National', 'Partner310', '', '', 'Address310', 'email310@nowhere.org', '310', '310', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 310.00, 310.00, true, 'City 310', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.590717+00', 310.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (256, 'Civil Society Organization', NULL, 'Partner256', '', '', 'Address256', 'email256@nowhere.org', '256', '256', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 256.00, 256.00, true, 'City 256', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.595721+00', 256.00, 0.00, 0.00, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (212, 'Civil Society Organization', 'National', 'Partner212', '', '', 'Address212', 'email212@nowhere.org', '212', '212', NULL, '', 'Not Required', 'Micro Assessment', '2018-04-24', '2018-04-24', true, false, false, 212.00, 212.00, false, 'City 212', '081', 'BP. 07', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.600708+00', 212.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (87, 'Civil Society Organization', 'International', 'Partner87', '', '', 'Address87', 'email87@nowhere.org', '87', '87', NULL, '', 'Medium', 'Others', '2017-01-12', '2017-09-05', true, false, false, 87.00, 87.00, false, 'City 87', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.606176+00', 87.00, 0.00, 0.00, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (324, 'Civil Society Organization', 'National', 'Partner324', '', '', 'Address324', 'email324@nowhere.org', '324', '324', NULL, '', 'Not Required', '', NULL, NULL, true, true, true, 324.00, 324.00, true, 'City 324', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.611144+00', 324.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (389, 'Civil Society Organization', 'National', 'Partner389', '', '', 'Address389', 'email389@nowhere.org', '389', '389', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, false, false, 389.00, 389.00, false, 'City 389', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.616162+00', 389.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (376, 'Civil Society Organization', 'National', 'Partner376', '', '', 'Address376', 'email376@nowhere.org', '376', '376', NULL, '', 'High', 'High Risk Assumed', '2015-12-01', '2015-12-01', true, false, false, 376.00, 376.00, false, 'City 376', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.621125+00', 376.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (312, 'Civil Society Organization', 'National', 'Partner312', '', '', 'Address312', 'email312@nowhere.org', '312', '312', NULL, '', 'Not Required', 'Micro Assessment', '2015-12-31', '2016-01-28', true, false, false, 312.00, 312.00, false, 'City 312', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.631256+00', 312.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (29, 'Civil Society Organization', 'National', 'Partner29', '', '', 'Address29', 'email29@nowhere.org', '29', '29', NULL, '', '', '', NULL, NULL, true, true, true, 29.00, 29.00, true, 'City 29', '081', '136', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.636307+00', 29.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (290, 'Civil Society Organization', 'National', 'Partner290', '', '', 'Address290', 'email290@nowhere.org', '290', '290', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, false, 290.00, 290.00, true, 'City 290', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.641261+00', 290.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (427, 'Civil Society Organization', 'National', 'Partner427', '', '', 'Address427', 'email427@nowhere.org', '427', '427', NULL, '', 'High', 'High Risk Assumed', '2017-11-23', '2017-11-14', true, false, false, 427.00, 427.00, false, 'City 427', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.646388+00', 427.00, 8342.27, 24015.54, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (222, 'Civil Society Organization', 'National', 'Partner222', '', '', 'Address222', 'email222@nowhere.org', '222', '222', NULL, '', 'High', 'High Risk Assumed', '2015-03-30', '2016-01-20', true, false, false, 222.00, 222.00, false, 'City 222', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.651379+00', 222.00, 0.00, 5062.93, '', false, 5062.93, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (32, 'Civil Society Organization', 'National', 'Partner32', '', '', 'Address32', 'email32@nowhere.org', '32', '32', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', '2013-07-10', true, false, false, 32.00, 32.00, false, 'City 32', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.656448+00', 32.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (99, 'Civil Society Organization', 'National', 'Partner99', '', '', 'Address99', 'email99@nowhere.org', '99', '99', NULL, '', '', '', NULL, NULL, true, true, true, 99.00, 99.00, true, 'City 99', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.661453+00', 99.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (30, 'Civil Society Organization', 'National', 'Partner30', '', '', 'Address30', 'email30@nowhere.org', '30', '30', NULL, '', 'Medium', 'Micro Assessment', '2017-01-08', '2017-01-08', true, false, false, 30.00, 30.00, false, 'City 30', '081', '4037', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.666454+00', 30.00, 11685.18, 117567.28, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (97, 'Civil Society Organization', 'National', 'Partner97', '', '', 'Address97', 'email97@nowhere.org', '97', '97', NULL, '', 'Low', '', '2014-09-30', NULL, true, true, true, 97.00, 97.00, true, 'City 97', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.67152+00', 97.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (128, 'Civil Society Organization', 'National', 'Partner128', '', '', 'Address128', 'email128@nowhere.org', '128', '128', NULL, '', 'Medium', 'Micro Assessment', '2017-08-01', '2013-07-10', true, false, false, 128.00, 128.00, false, 'City 128', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.676571+00', 128.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (15, 'Civil Society Organization', 'National', 'Partner15', '', '', 'Address15', 'email15@nowhere.org', '15', '15', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 15.00, 15.00, true, 'City 15', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.681694+00', 15.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (235, 'Civil Society Organization', 'National', 'Partner235', '', '', 'Address235', 'email235@nowhere.org', '235', '235', NULL, '', 'Significant', 'Micro Assessment', '2015-12-31', '2016-02-29', true, false, false, 235.00, 235.00, false, 'City 235', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.686702+00', 235.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (168, 'Civil Society Organization', 'National', 'Partner168', '', '', 'Address168', 'email168@nowhere.org', '168', '168', NULL, '', 'Significant', 'Micro Assessment', '2014-10-31', '2013-07-10', true, true, false, 168.00, 168.00, true, 'City 168', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.691746+00', 168.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (360, 'Civil Society Organization', 'National', 'Partner360', '', '', 'Address360', 'email360@nowhere.org', '360', '360', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2015-08-31', true, false, false, 360.00, 360.00, false, 'City 360', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.696789+00', 360.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (282, 'Government', NULL, 'Partner282', '', '', 'Address282', 'email282@nowhere.org', '282', '282', NULL, '', NULL, NULL, NULL, NULL, true, true, true, 282.00, 282.00, true, 'City 282', '081', NULL, NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.701804+00', 282.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (330, 'Civil Society Organization', 'National', 'Partner330', '', '', 'Address330', 'email330@nowhere.org', '330', '330', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 330.00, 330.00, true, 'City 330', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.70674+00', 330.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (364, 'Civil Society Organization', 'National', 'Partner364', '', '', 'Address364', 'email364@nowhere.org', '364', '364', NULL, '', 'Medium', 'Micro Assessment', '2015-05-30', '2015-05-30', true, false, false, 364.00, 364.00, false, 'City 364', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.711732+00', 364.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (219, 'Civil Society Organization', 'National', 'Partner219', '', '', 'Address219', 'email219@nowhere.org', '219', '219', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, true, 219.00, 219.00, true, 'City 219', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.716766+00', 219.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (80, 'Civil Society Organization', 'International', 'Partner80', '', '', 'Address80', 'email80@nowhere.org', '80', '80', NULL, '', 'Low', 'Micro Assessment', '2018-04-03', '2018-04-03', true, false, false, 80.00, 80.00, false, 'City 80', '081', '235', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.721728+00', 80.00, 115184.89, 115185.21, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (444, 'Civil Society Organization', 'National', 'Partner444', '', '', 'Address444', 'email444@nowhere.org', '444', '444', NULL, NULL, 'High', 'High Risk Assumed', '2019-05-14', '2019-04-24', true, false, false, 444.00, 444.00, false, 'City 444', '081', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-05-24 00:03:59.21872+00', '2020-04-02 16:57:42.726776+00', 444.00, 0.00, 26940.57, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (300, 'Civil Society Organization', 'National', 'Partner300', '', '', 'Address300', 'email300@nowhere.org', '300', '300', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 300.00, 300.00, true, 'City 300', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.731811+00', 300.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (319, 'Civil Society Organization', 'National', 'Partner319', '', '', 'Address319', 'email319@nowhere.org', '319', '319', NULL, '', 'Not Required', '', NULL, NULL, true, true, false, 319.00, 319.00, true, 'City 319', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.736979+00', 319.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (165, 'Civil Society Organization', 'National', 'Partner165', '', '', 'Address165', 'email165@nowhere.org', '165', '165', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, true, 165.00, 165.00, true, 'City 165', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.741916+00', 165.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (426, 'Civil Society Organization', 'National', 'Partner426', '', '', 'Address426', 'email426@nowhere.org', '426', '426', NULL, '', 'High', 'High Risk Assumed', '2017-11-23', '2017-11-23', true, false, false, 426.00, 426.00, false, 'City 426', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.746932+00', 426.00, 11784.12, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (31, 'Civil Society Organization', 'National', 'Partner31', '', '', 'Address31', 'email31@nowhere.org', '31', '31', NULL, '', 'High', 'High Risk Assumed', '2016-04-18', '2016-04-18', true, true, false, 31.00, 31.00, true, 'City 31', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.751922+00', 31.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (265, 'Civil Society Organization', 'National', 'Partner265', '', '', 'Address265', 'email265@nowhere.org', '265', '265', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, false, 265.00, 265.00, true, 'City 265', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.756991+00', 265.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (181, 'Civil Society Organization', 'Academic Institution', 'Partner181', '', '', 'Address181', 'email181@nowhere.org', '181', '181', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', '2013-07-10', true, false, false, 181.00, 181.00, false, 'City 181', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.761964+00', 181.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (27, 'Civil Society Organization', 'National', 'Partner27', '', '', 'Address27', 'email27@nowhere.org', '27', '27', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, false, 27.00, 27.00, true, 'City 27', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.767031+00', 27.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (106, 'Civil Society Organization', 'International', 'Partner106', '', '', 'Address106', 'email106@nowhere.org', '106', '106', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 106.00, 106.00, true, 'City 106', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.772014+00', 106.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (163, 'Civil Society Organization', 'National', 'Partner163', '', '', 'Address163', 'email163@nowhere.org', '163', '163', NULL, '', 'High', 'Micro Assessment', '2013-10-10', '2013-07-10', true, false, false, 163.00, 163.00, false, 'City 163', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.776984+00', 163.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (293, 'Civil Society Organization', 'National', 'Partner293', '', '', 'Address293', 'email293@nowhere.org', '293', '293', NULL, '', 'Not Required', 'Micro Assessment', '2017-07-24', '2017-07-24', true, true, false, 293.00, 293.00, true, 'City 293', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.781992+00', 293.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (16, 'Civil Society Organization', 'National', 'Partner16', '', '', 'Address16', 'email16@nowhere.org', '16', '16', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, false, 16.00, 16.00, true, 'City 16', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.787024+00', 16.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (157, 'Civil Society Organization', NULL, 'Partner157', '', '', 'Address157', 'email157@nowhere.org', '157', '157', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 157.00, 157.00, true, 'City 157', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.792104+00', 157.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (116, 'Government', NULL, 'Partner116', '', '', 'Address116', 'email116@nowhere.org', '116', '116', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 116.00, 116.00, true, 'City 116', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.797064+00', 116.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (146, 'Government', NULL, 'Partner146', '', '', 'Address146', 'email146@nowhere.org', '146', '146', NULL, '', 'High', '', '2014-09-30', NULL, true, true, true, 146.00, 146.00, true, 'City 146', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.806942+00', 146.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (117, 'Civil Society Organization', 'International', 'Partner117', '', '', 'Address117', 'email117@nowhere.org', '117', '117', NULL, '', 'Low', 'Micro Assessment', '2013-09-30', '2018-03-22', true, true, false, 117.00, 117.00, true, 'City 117', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.811863+00', 117.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (283, 'Civil Society Organization', 'National', 'Partner283', '', '', 'Address283', 'email283@nowhere.org', '283', '283', NULL, '', 'High', '', NULL, NULL, true, true, false, 283.00, 283.00, true, 'City 283', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.816839+00', 283.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (54, 'Civil Society Organization', 'International', 'Partner54', '', '', 'Address54', 'email54@nowhere.org', '54', '54', NULL, '', 'Low', 'Micro Assessment', '2017-08-01', '2016-09-16', true, false, false, 54.00, 54.00, false, 'City 54', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.82195+00', 54.00, 122579.84, 85342.23, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (279, 'Civil Society Organization', NULL, 'Partner279', '', '', 'Address279', 'email279@nowhere.org', '279', '279', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 279.00, 279.00, true, 'City 279', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.82699+00', 279.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (343, 'Civil Society Organization', 'National', 'Partner343', '', '', 'Address343', 'email343@nowhere.org', '343', '343', NULL, '', 'High', 'High Risk Assumed', '2015-06-30', '2015-06-30', true, false, false, 343.00, 343.00, false, 'City 343', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.831892+00', 343.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (349, 'Civil Society Organization', 'National', 'Partner349', '', '', 'Address349', 'email349@nowhere.org', '349', '349', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, false, false, 349.00, 349.00, false, 'City 349', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.836924+00', 349.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (247, 'Civil Society Organization', 'National', 'Partner247', '', '', 'Address247', 'email247@nowhere.org', '247', '247', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, true, 247.00, 247.00, true, 'City 247', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.841875+00', 247.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (334, 'Civil Society Organization', 'National', 'Partner334', '', '', 'Address334', 'email334@nowhere.org', '334', '334', NULL, '', 'Not Required', 'Micro Assessment', '2015-12-31', '2016-03-04', true, false, false, 334.00, 334.00, false, 'City 334', '081', '0235', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.847023+00', 334.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (325, 'Government', NULL, 'Partner325', '', '', 'Address325', 'email325@nowhere.org', '325', '325', NULL, '', 'High', 'High Risk Assumed', '2013-06-13', NULL, true, false, false, 325.00, 325.00, false, 'City 325', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.85204+00', 325.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (55, 'Government', NULL, 'Partner55', '', '', 'Address55', 'email55@nowhere.org', '55', '55', NULL, '', 'Significant', 'Micro Assessment', '2013-10-10', NULL, true, false, false, 55.00, 55.00, false, 'City 55', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.85705+00', 55.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (56, 'Civil Society Organization', 'National', 'Partner56', '', '', 'Address56', 'email56@nowhere.org', '56', '56', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 56.00, 56.00, true, 'City 56', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.862013+00', 56.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (137, 'Civil Society Organization', 'National', 'Partner137', '', '', 'Address137', 'email137@nowhere.org', '137', '137', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', '2013-07-10', true, false, false, 137.00, 137.00, false, 'City 137', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.867028+00', 137.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (339, 'Civil Society Organization', 'National', 'Partner339', '', '', 'Address339', 'email339@nowhere.org', '339', '339', NULL, '', 'Medium', 'Micro Assessment', '2018-07-31', '2017-09-10', true, false, false, 339.00, 339.00, false, 'City 339', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.872031+00', 339.00, 231105.65, 152749.34, '', false, 33691.93, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (281, 'Civil Society Organization', 'National', 'Partner281', '', '', 'Address281', 'email281@nowhere.org', '281', '281', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 281.00, 281.00, true, 'City 281', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.877106+00', 281.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (17, 'Civil Society Organization', 'National', 'Partner17', '', '', 'Address17', 'email17@nowhere.org', '17', '17', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 17.00, 17.00, true, 'City 17', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.882073+00', 17.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (156, 'Government', NULL, 'Partner156', '', '', 'Address156', 'email156@nowhere.org', '156', '156', NULL, '', 'High', 'High Risk Assumed', '2019-11-11', NULL, true, false, false, 156.00, 156.00, false, 'City 156', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.887111+00', 156.00, 19006.79, 0.00, '', false, 0.00, 516.30); -INSERT INTO [[schema]].partners_partnerorganization VALUES (118, 'Civil Society Organization', 'National', 'Partner118', '', '', 'Address118', 'email118@nowhere.org', '118', '118', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 118.00, 118.00, true, 'City 118', '081', '456', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.892104+00', 118.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (198, 'Civil Society Organization', 'International', 'Partner198', '', '', 'Address198', 'email198@nowhere.org', '198', '198', NULL, '', 'Medium', 'Micro Assessment', '2014-09-30', '2016-10-25', true, true, true, 198.00, 198.00, true, 'City 198', '081', 'BP 972', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.897127+00', 198.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (10, 'Civil Society Organization', 'International', 'Partner10', '', '', 'Address10', 'email10@nowhere.org', '10', '10', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', '2016-10-25', true, true, true, 10.00, 10.00, true, 'City 10', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.90225+00', 10.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (119, 'Civil Society Organization', 'National', 'Partner119', '', '', 'Address119', 'email119@nowhere.org', '119', '119', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 119.00, 119.00, true, 'City 119', '081', '972', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.907322+00', 119.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (107, 'Civil Society Organization', 'National', 'Partner107', '', '', 'Address107', 'email107@nowhere.org', '107', '107', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, false, 107.00, 107.00, true, 'City 107', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.91253+00', 107.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (251, 'Civil Society Organization', 'National', 'Partner251', '', '', 'Address251', 'email251@nowhere.org', '251', '251', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 251.00, 251.00, true, 'City 251', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.917596+00', 251.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (216, 'Civil Society Organization', 'Community Based Organization', 'Partner216', '', '', 'Address216', 'email216@nowhere.org', '216', '216', NULL, '', 'High', 'Micro Assessment', '2016-03-03', '2013-01-01', true, false, false, 216.00, 216.00, false, 'City 216', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.922581+00', 216.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (3, 'Government', NULL, 'Partner3', '', '', 'Address3', 'email3@nowhere.org', '3', '3', NULL, '', 'Medium', 'Micro Assessment', '2014-09-30', NULL, true, false, false, 3.00, 3.00, false, 'City 3', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.927646+00', 3.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (136, 'Government', NULL, 'Partner136', '', '', 'Address136', 'email136@nowhere.org', '136', '136', NULL, '', 'High', 'High Risk Assumed', '2014-09-30', NULL, true, true, true, 136.00, 136.00, true, 'City 136', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.93261+00', 136.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (57, 'Civil Society Organization', 'National', 'Partner57', '', '', 'Address57', 'email57@nowhere.org', '57', '57', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 57.00, 57.00, true, 'City 57', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.93762+00', 57.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (151, 'Civil Society Organization', 'National', 'Partner151', '', '', 'Address151', 'email151@nowhere.org', '151', '151', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', '2013-07-10', true, false, false, 151.00, 151.00, false, 'City 151', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.942569+00', 151.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (1, 'Civil Society Organization', 'International', 'Partner1', '', '', 'Address1', 'email1@nowhere.org', '1', '1', NULL, '', 'Low', 'Micro Assessment', '2015-05-31', NULL, true, true, true, 1.00, 1.00, true, 'City 1', '453', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.947586+00', 1.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (388, 'Civil Society Organization', 'National', 'Partner388', '', '', 'Address388', 'email388@nowhere.org', '388', '388', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2016-04-20', true, false, false, 388.00, 388.00, false, 'City 388', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.952533+00', 388.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (204, 'Civil Society Organization', 'National', 'Partner204', '', '', 'Address204', 'email204@nowhere.org', '204', '204', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2014-01-01', true, true, true, 204.00, 204.00, true, 'City 204', '081', 'BP 1146', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.957696+00', 204.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (262, 'Government', NULL, 'Partner262', '', '', 'Address262', 'email262@nowhere.org', '262', '262', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 262.00, 262.00, false, 'City 262', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.962716+00', 262.00, 241957.06, 112938.87, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (332, 'Civil Society Organization', 'National', 'Partner332', '', '', 'Address332', 'email332@nowhere.org', '332', '332', NULL, '', 'Not Required', 'Micro Assessment', '2017-07-24', '2017-07-24', true, true, true, 332.00, 332.00, true, 'City 332', '081', '0235', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.967665+00', 332.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (58, 'Civil Society Organization', 'Community Based Organization', 'Partner58', '', '', 'Address58', 'email58@nowhere.org', '58', '58', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 58.00, 58.00, true, 'City 58', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.972688+00', 58.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (372, 'Civil Society Organization', 'National', 'Partner372', '', '', 'Address372', 'email372@nowhere.org', '372', '372', NULL, '', 'High', 'High Risk Assumed', '2015-09-30', '2015-09-30', true, false, false, 372.00, 372.00, false, 'City 372', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.982565+00', 372.00, 92468.06, 28814.46, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (445, 'Civil Society Organization', 'Community Based Organization', 'Partner445', '', '', 'Address445', 'email445@nowhere.org', '445', '445', NULL, NULL, 'High', 'High Risk Assumed', '2019-06-04', '2019-05-20', true, false, false, 445.00, 445.00, false, 'City 445', '081', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-06-20 00:08:18.705259+00', '2020-04-02 16:57:42.987587+00', 445.00, 0.00, 23754.68, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (335, 'Government', NULL, 'Partner335', '', '', 'Address335', 'email335@nowhere.org', '335', '335', NULL, '', 'Not Required', 'Micro Assessment', '2019-10-07', NULL, true, false, false, 335.00, 335.00, false, 'City 335', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.992595+00', 335.00, 0.00, 13644.33, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (302, 'Government', NULL, 'Partner302', '', '', 'Address302', 'email302@nowhere.org', '302', '302', NULL, '', 'Not Required', 'Micro Assessment', '2019-10-28', NULL, true, false, false, 302.00, 302.00, false, 'City 302', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.997585+00', 302.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (164, 'Civil Society Organization', 'National', 'Partner164', '', '', 'Address164', 'email164@nowhere.org', '164', '164', NULL, '', 'High', 'Micro Assessment', '2014-09-30', '2014-09-30', true, false, false, 164.00, 164.00, false, 'City 164', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.002504+00', 164.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (243, 'Civil Society Organization', NULL, 'Partner243', '', '', 'Address243', 'email243@nowhere.org', '243', '243', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 243.00, 243.00, true, 'City 243', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.007533+00', 243.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (392, 'Government', NULL, 'Partner392', '', '', 'Address392', 'email392@nowhere.org', '392', '392', NULL, '', 'High', 'High Risk Assumed', '2016-02-08', NULL, true, false, false, 392.00, 392.00, false, 'City 392', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.012594+00', 392.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (286, 'Government', NULL, 'Partner286', '', '', 'Address286', 'email286@nowhere.org', '286', '286', NULL, '', 'High', 'High Risk Assumed', '2013-10-10', NULL, true, true, false, 286.00, 286.00, true, 'City 286', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.017604+00', 286.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (280, 'Government', NULL, 'Partner280', '', '', 'Address280', 'email280@nowhere.org', '280', '280', NULL, '', 'Not Required', 'Micro Assessment', '2019-10-10', NULL, true, false, false, 280.00, 280.00, false, 'City 280', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.022681+00', 280.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (269, 'Civil Society Organization', 'National', 'Partner269', '', '', 'Address269', 'email269@nowhere.org', '269', '269', NULL, '', 'Not Required', 'Micro Assessment', '2015-12-31', '2016-03-08', true, false, false, 269.00, 269.00, false, 'City 269', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.027688+00', 269.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (134, 'Civil Society Organization', 'National', 'Partner134', '', '', 'Address134', 'email134@nowhere.org', '134', '134', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 134.00, 134.00, true, 'City 134', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.032804+00', 134.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (135, 'Civil Society Organization', 'National', 'Partner135', '', '', 'Address135', 'email135@nowhere.org', '135', '135', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 135.00, 135.00, true, 'City 135', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.037774+00', 135.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (155, 'Government', NULL, 'Partner155', '', '', 'Address155', 'email155@nowhere.org', '155', '155', NULL, '', 'Low', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 155.00, 155.00, false, 'City 155', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.047657+00', 155.00, 173555.41, 21404.98, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (122, 'Government', NULL, 'Partner122', '', '', 'Address122', 'email122@nowhere.org', '122', '122', NULL, '', 'Significant', 'Micro Assessment', '2013-09-27', NULL, true, true, true, 122.00, 122.00, true, 'City 122', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.052716+00', 122.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (215, 'Government', NULL, 'Partner215', '', '', 'Address215', 'email215@nowhere.org', '215', '215', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', NULL, true, true, true, 215.00, 215.00, true, 'City 215', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.057704+00', 215.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (19, 'Civil Society Organization', 'National', 'Partner19', '', '', 'Address19', 'email19@nowhere.org', '19', '19', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2014-01-01', true, true, true, 19.00, 19.00, true, 'City 19', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.062729+00', 19.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (144, 'Civil Society Organization', 'National', 'Partner144', '', '', 'Address144', 'email144@nowhere.org', '144', '144', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 144.00, 144.00, true, 'City 144', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.067762+00', 144.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (184, 'Civil Society Organization', 'National', 'Partner184', '', '', 'Address184', 'email184@nowhere.org', '184', '184', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2015-08-31', true, true, true, 184.00, 184.00, true, 'City 184', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.072932+00', 184.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (214, 'Civil Society Organization', 'National', 'Partner214', '', '', 'Address214', 'email214@nowhere.org', '214', '214', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, true, 214.00, 214.00, true, 'City 214', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.077951+00', 214.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (355, 'Civil Society Organization', 'National', 'Partner355', '', '', 'Address355', 'email355@nowhere.org', '355', '355', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, true, 355.00, 355.00, true, 'City 355', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.083101+00', 355.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (288, 'Government', NULL, 'Partner288', '', '', 'Address288', 'email288@nowhere.org', '288', '288', NULL, '', 'Low', 'Micro Assessment', '2014-10-31', NULL, true, true, false, 288.00, 288.00, true, 'City 288', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.088181+00', 288.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (422, 'Government', NULL, 'Partner422', '', '', 'Address422', 'email422@nowhere.org', '422', '422', NULL, '', 'High', 'High Risk Assumed', '2017-04-27', NULL, true, false, false, 422.00, 422.00, false, 'City 422', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.093287+00', 422.00, 11837.51, 11837.51, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (125, 'Government', NULL, 'Partner125', '', '', 'Address125', 'email125@nowhere.org', '125', '125', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 125.00, 125.00, false, 'City 125', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.118485+00', 125.00, 561707.42, 1081053.10, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (126, 'Government', NULL, 'Partner126', '', '', 'Address126', 'email126@nowhere.org', '126', '126', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 126.00, 126.00, true, 'City 126', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.123456+00', 126.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (194, 'Government', NULL, 'Partner194', '', '', 'Address194', 'email194@nowhere.org', '194', '194', NULL, '', 'Not Required', 'Micro Assessment', '2017-08-10', NULL, true, true, false, 194.00, 194.00, true, 'City 194', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.128512+00', 194.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (295, 'Civil Society Organization', 'National', 'Partner295', '', '', 'Address295', 'email295@nowhere.org', '295', '295', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 295.00, 295.00, true, 'City 295', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.133539+00', 295.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (408, 'Civil Society Organization', 'National', 'Partner408', '', '', 'Address408', 'email408@nowhere.org', '408', '408', NULL, '', 'Low', 'Micro Assessment', '2013-09-30', '2013-07-10', true, false, false, 408.00, 408.00, false, 'City 408', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.138466+00', 408.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (162, 'Civil Society Organization', 'National', 'Partner162', '', '', 'Address162', 'email162@nowhere.org', '162', '162', NULL, '', 'Low', 'Micro Assessment', '2013-09-30', '2013-07-10', true, false, false, 162.00, 162.00, false, 'City 162', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.143464+00', 162.00, 448560.05, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (127, 'Civil Society Organization', 'National', 'Partner127', '', '', 'Address127', 'email127@nowhere.org', '127', '127', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 127.00, 127.00, true, 'City 127', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.148428+00', 127.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (284, 'Civil Society Organization', 'National', 'Partner284', '', '', 'Address284', 'email284@nowhere.org', '284', '284', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, true, 284.00, 284.00, true, 'City 284', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.153407+00', 284.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (35, 'Civil Society Organization', 'National', 'Partner35', '', '', 'Address35', 'email35@nowhere.org', '35', '35', NULL, '', 'High', 'High Risk Assumed', '2015-12-29', '2015-12-01', true, true, true, 35.00, 35.00, true, 'City 35', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.15836+00', 35.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (141, 'Civil Society Organization', 'National', 'Partner141', '', '', 'Address141', 'email141@nowhere.org', '141', '141', NULL, '', 'High', 'High Risk Assumed', '2016-10-26', '2016-03-01', true, false, false, 141.00, 141.00, false, 'City 141', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.163384+00', 141.00, 33718.43, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (37, 'Government', NULL, 'Partner37', '', '', 'Address37', 'email37@nowhere.org', '37', '37', NULL, '', 'Medium', 'Micro Assessment', '2013-09-27', NULL, true, true, false, 37.00, 37.00, true, 'City 37', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.168316+00', 37.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (38, 'Government', NULL, 'Partner38', '', '', 'Address38', 'email38@nowhere.org', '38', '38', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 38.00, 38.00, true, 'City 38', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.173313+00', 38.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (167, 'Government', NULL, 'Partner167', '', '', 'Address167', 'email167@nowhere.org', '167', '167', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', NULL, true, true, true, 167.00, 167.00, true, 'City 167', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.23328+00', 167.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (180, 'Government', NULL, 'Partner180', '', '', 'Address180', 'email180@nowhere.org', '180', '180', NULL, '', 'Medium', 'Micro Assessment', '2017-12-31', NULL, true, false, false, 180.00, 180.00, false, 'City 180', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.178199+00', 180.00, 9976.97, 52815.29, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (454, 'Government', NULL, 'Partner454', '', '', 'Address454', 'email454@nowhere.org', '454', '454', NULL, NULL, 'High', 'High Risk Assumed', '2019-10-25', NULL, true, false, false, 454.00, 454.00, false, 'City 454', '081', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-11-12 15:02:08.343722+00', '2020-04-02 16:57:43.183359+00', 454.00, 0.00, 4666.59, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (452, 'Government', NULL, 'Partner452', '', '', 'Address452', 'email452@nowhere.org', '452', '452', NULL, NULL, 'Medium', 'Micro Assessment', '2018-12-31', NULL, true, false, false, 452.00, 452.00, false, 'City 452', '081', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-11-12 15:01:58.132239+00', '2020-04-02 16:57:43.188279+00', 452.00, 0.00, 7230.72, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (398, 'Government', NULL, 'Partner398', '', '', 'Address398', 'email398@nowhere.org', '398', '398', NULL, '', 'High', 'High Risk Assumed', '2017-12-31', NULL, true, false, false, 398.00, 398.00, false, 'City 398', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.193317+00', 398.00, 62041.74, 33588.29, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (396, 'Government', NULL, 'Partner396', '', '', 'Address396', 'email396@nowhere.org', '396', '396', NULL, '', 'High', 'High Risk Assumed', '2017-12-31', NULL, true, false, false, 396.00, 396.00, false, 'City 396', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.198274+00', 396.00, 0.00, 29566.72, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (453, 'Government', NULL, 'Partner453', '', '', 'Address453', 'email453@nowhere.org', '453', '453', NULL, NULL, 'High', 'High Risk Assumed', '2019-10-22', NULL, true, false, false, 453.00, 453.00, false, 'City 453', '081', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-11-12 15:01:58.50703+00', '2020-04-02 16:57:43.203335+00', 453.00, 0.00, 32843.15, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (246, 'Government', NULL, 'Partner246', '', '', 'Address246', 'email246@nowhere.org', '246', '246', NULL, '', 'High', 'High Risk Assumed', '2016-10-26', NULL, true, false, false, 246.00, 246.00, false, 'City 246', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.208281+00', 246.00, 136663.16, 175320.06, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (315, 'Government', NULL, 'Partner315', '', '', 'Address315', 'email315@nowhere.org', '315', '315', NULL, '', 'High', 'High Risk Assumed', '2019-10-18', NULL, true, false, false, 315.00, 315.00, false, 'City 315', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.213333+00', 315.00, 15157.64, 125923.48, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (306, 'Government', NULL, 'Partner306', '', '', 'Address306', 'email306@nowhere.org', '306', '306', NULL, '', 'Medium', 'Micro Assessment', '2017-12-31', NULL, true, false, false, 306.00, 306.00, false, 'City 306', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.218307+00', 306.00, 8638.14, 28528.23, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (344, 'Government', NULL, 'Partner344', '', '', 'Address344', 'email344@nowhere.org', '344', '344', NULL, '', 'High', 'High Risk Assumed', '2016-01-25', NULL, true, false, false, 344.00, 344.00, false, 'City 344', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.223331+00', 344.00, 246428.70, 404650.70, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (236, 'Government', NULL, 'Partner236', '', '', 'Address236', 'email236@nowhere.org', '236', '236', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 236.00, 236.00, true, 'City 236', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.228263+00', 236.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (36, 'Government', NULL, 'Partner36', '', '', 'Address36', 'email36@nowhere.org', '36', '36', NULL, '', 'Medium', 'Micro Assessment', '2014-10-31', NULL, true, true, false, 36.00, 36.00, true, 'City 36', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.23825+00', 36.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (233, 'Government', NULL, 'Partner233', '', '', 'Address233', 'email233@nowhere.org', '233', '233', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, false, 233.00, 233.00, true, 'City 233', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.243381+00', 233.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (449, 'Government', NULL, 'Partner449', '', '', 'Address449', 'email449@nowhere.org', '449', '449', NULL, NULL, 'High', 'High Risk Assumed', '2017-01-01', NULL, true, false, false, 449.00, 449.00, false, 'City 449', '081', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-10-01 14:41:37.682362+00', '2020-04-02 16:57:43.248332+00', 449.00, 0.00, 29343.58, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (311, 'Government', NULL, 'Partner311', '', '', 'Address311', 'email311@nowhere.org', '311', '311', NULL, '', 'Medium', 'Micro Assessment', '2015-07-23', NULL, true, false, false, 311.00, 311.00, false, 'City 311', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.253354+00', 311.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (179, 'Government', NULL, 'Partner179', '', '', 'Address179', 'email179@nowhere.org', '179', '179', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 179.00, 179.00, true, 'City 179', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.258317+00', 179.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (241, 'Government', NULL, 'Partner241', '', '', 'Address241', 'email241@nowhere.org', '241', '241', NULL, '', 'Significant', 'Micro Assessment', '2014-10-31', NULL, true, false, false, 241.00, 241.00, false, 'City 241', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.26824+00', 241.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (352, 'Government', NULL, 'Partner352', '', '', 'Address352', 'email352@nowhere.org', '352', '352', NULL, '', 'Medium', 'Others', '2016-01-01', NULL, true, false, false, 352.00, 352.00, false, 'City 352', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.273297+00', 352.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (39, 'Government', NULL, 'Partner39', '', '', 'Address39', 'email39@nowhere.org', '39', '39', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', NULL, true, true, false, 39.00, 39.00, true, 'City 39', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.278254+00', 39.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (45, 'Government', NULL, 'Partner45', '', '', 'Address45', 'email45@nowhere.org', '45', '45', NULL, '', 'Significant', 'Micro Assessment', '2017-09-30', NULL, true, false, false, 45.00, 45.00, false, 'City 45', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.283274+00', 45.00, 97438.57, 118105.41, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (316, 'Government', NULL, 'Partner316', '', '', 'Address316', 'email316@nowhere.org', '316', '316', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 316.00, 316.00, true, 'City 316', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.288237+00', 316.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (267, 'Government', NULL, 'Partner267', '', '', 'Address267', 'email267@nowhere.org', '267', '267', NULL, '', 'High', 'High Risk Assumed', '2014-09-30', NULL, true, false, false, 267.00, 267.00, false, 'City 267', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.293294+00', 267.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (40, 'Government', NULL, 'Partner40', '', '', 'Address40', 'email40@nowhere.org', '40', '40', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', NULL, true, true, true, 40.00, 40.00, true, 'City 40', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.298351+00', 40.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (239, 'Government', NULL, 'Partner239', '', '', 'Address239', 'email239@nowhere.org', '239', '239', NULL, '', 'Significant', '', '2014-09-30', NULL, true, true, true, 239.00, 239.00, true, 'City 239', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.303375+00', 239.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (47, 'Government', NULL, 'Partner47', '', '', 'Address47', 'email47@nowhere.org', '47', '47', NULL, '', 'Medium', 'Micro Assessment', '2015-08-01', NULL, true, false, false, 47.00, 47.00, false, 'City 47', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.308402+00', 47.00, 374258.40, 170500.03, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (177, 'Government', NULL, 'Partner177', '', '', 'Address177', 'email177@nowhere.org', '177', '177', NULL, '', 'Medium', 'Micro Assessment', '2014-09-30', NULL, true, false, false, 177.00, 177.00, false, 'City 177', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.313418+00', 177.00, 21985.22, 38222.89, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (174, 'Government', NULL, 'Partner174', '', '', 'Address174', 'email174@nowhere.org', '174', '174', NULL, '', 'High', 'High Risk Assumed', '2018-10-16', NULL, true, false, false, 174.00, 174.00, false, 'City 174', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.318383+00', 174.00, 256279.73, 154785.06, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (268, 'Government', NULL, 'Partner268', '', '', 'Address268', 'email268@nowhere.org', '268', '268', NULL, '', 'High', 'High Risk Assumed', '2017-11-20', NULL, true, false, false, 268.00, 268.00, false, 'City 268', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.323391+00', 268.00, 74140.95, 189746.90, '', false, 12055.48, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (46, 'Government', NULL, 'Partner46', '', '', 'Address46', 'email46@nowhere.org', '46', '46', NULL, '', 'High', 'High Risk Assumed', '2016-12-15', NULL, true, false, false, 46.00, 46.00, false, 'City 46', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.328442+00', 46.00, 94666.69, 80045.27, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (187, 'Government', NULL, 'Partner187', '', '', 'Address187', 'email187@nowhere.org', '187', '187', NULL, '', 'Significant', 'Micro Assessment', '2017-08-16', NULL, true, false, false, 187.00, 187.00, false, 'City 187', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"partial\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 1, \"total\": 1}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.333458+00', 187.00, 68381.62, 77032.90, '', false, 30749.37, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (206, 'Government', NULL, 'Partner206', '', '', 'Address206', 'email206@nowhere.org', '206', '206', NULL, '', 'High', 'High Risk Assumed', '2019-04-22', NULL, true, false, false, 206.00, 206.00, false, 'City 206', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.338471+00', 206.00, 0.00, 81132.30, '', false, 38074.45, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (42, 'Government', NULL, 'Partner42', '', '', 'Address42', 'email42@nowhere.org', '42', '42', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 42.00, 42.00, false, 'City 42', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.343489+00', 42.00, 140752.45, 159247.19, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (266, 'Government', NULL, 'Partner266', '', '', 'Address266', 'email266@nowhere.org', '266', '266', NULL, '', 'Medium', 'Micro Assessment', '2015-10-08', NULL, true, false, false, 266.00, 266.00, false, 'City 266', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"complete\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 1, \"total\": 1}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.348682+00', 266.00, 30841.68, 57072.26, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (292, 'Government', NULL, 'Partner292', '', '', 'Address292', 'email292@nowhere.org', '292', '292', NULL, '', 'High', 'High Risk Assumed', '2017-12-04', NULL, true, false, false, 292.00, 292.00, false, 'City 292', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.353826+00', 292.00, 22168.97, 65843.85, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (49, 'Government', NULL, 'Partner49', '', '', 'Address49', 'email49@nowhere.org', '49', '49', NULL, '', 'Medium', 'Micro Assessment', '2015-08-01', NULL, true, false, false, 49.00, 49.00, false, 'City 49', '081', '235', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.358808+00', 49.00, 97051.91, 123896.58, '', false, 3641.63, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (43, 'Government', NULL, 'Partner43', '', '', 'Address43', 'email43@nowhere.org', '43', '43', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 43.00, 43.00, false, 'City 43', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.363866+00', 43.00, 282467.53, 145583.94, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (446, 'Government', NULL, 'Partner446', '', '', 'Address446', 'email446@nowhere.org', '446', '446', NULL, NULL, 'High', 'High Risk Assumed', '2019-06-21', NULL, true, false, false, 446.00, 446.00, false, 'City 446', '081', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-07-17 00:06:24.461695+00', '2020-04-02 16:57:43.368848+00', 446.00, 0.00, 12067.73, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (44, 'Government', NULL, 'Partner44', '', '', 'Address44', 'email44@nowhere.org', '44', '44', NULL, '', 'High', 'High Risk Assumed', '2019-06-06', NULL, true, false, false, 44.00, 44.00, false, 'City 44', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.373849+00', 44.00, 25955.23, 32611.39, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (199, 'Government', NULL, 'Partner199', '', '', 'Address199', 'email199@nowhere.org', '199', '199', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 199.00, 199.00, false, 'City 199', '081', '235', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.378851+00', 199.00, 86373.84, 111219.28, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (158, 'Government', NULL, 'Partner158', '', '', 'Address158', 'email158@nowhere.org', '158', '158', NULL, '', 'High', 'High Risk Assumed', '2017-09-30', NULL, true, false, false, 158.00, 158.00, false, 'City 158', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.383939+00', 158.00, 18282.59, 64523.69, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (313, 'Government', NULL, 'Partner313', '', '', 'Address313', 'email313@nowhere.org', '313', '313', NULL, '', 'High', 'High Risk Assumed', '2019-08-30', NULL, true, false, false, 313.00, 313.00, false, 'City 313', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.388944+00', 313.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (48, 'Government', NULL, 'Partner48', '', '', 'Address48', 'email48@nowhere.org', '48', '48', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 48.00, 48.00, false, 'City 48', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"partial\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 2, \"total\": 2}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.393978+00', 48.00, 255827.33, 51076.31, '', false, 49138.18, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (272, 'Government', NULL, 'Partner272', '', '', 'Address272', 'email272@nowhere.org', '272', '272', NULL, '', 'High', 'High Risk Assumed', '2018-05-03', NULL, true, false, false, 272.00, 272.00, false, 'City 272', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.398983+00', 272.00, 0.00, 21933.80, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (176, 'Government', NULL, 'Partner176', '', '', 'Address176', 'email176@nowhere.org', '176', '176', NULL, '', 'Not Required', 'Micro Assessment', '2014-09-30', NULL, true, false, false, 176.00, 176.00, false, 'City 176', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.403987+00', 176.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (41, 'Government', NULL, 'Partner41', '', '', 'Address41', 'email41@nowhere.org', '41', '41', NULL, '', 'Medium', 'Micro Assessment', '2015-05-31', NULL, true, false, false, 41.00, 41.00, false, 'City 41', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"partial\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 1, \"total\": 1}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.409072+00', 41.00, 204937.47, 68543.45, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (238, 'Government', NULL, 'Partner238', '', '', 'Address238', 'email238@nowhere.org', '238', '238', NULL, '', 'High', 'High Risk Assumed', '2017-10-04', NULL, true, false, false, 238.00, 238.00, false, 'City 238', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.41411+00', 238.00, 79095.54, 88070.78, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (259, 'Government', NULL, 'Partner259', '', '', 'Address259', 'email259@nowhere.org', '259', '259', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 259.00, 259.00, true, 'City 259', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.419101+00', 259.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (327, 'Government', NULL, 'Partner327', '', '', 'Address327', 'email327@nowhere.org', '327', '327', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 327.00, 327.00, true, 'City 327', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.424096+00', 327.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (271, 'Government', NULL, 'Partner271', '', '', 'Address271', 'email271@nowhere.org', '271', '271', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, false, false, 271.00, 271.00, false, 'City 271', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.429003+00', 271.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (186, 'Government', NULL, 'Partner186', '', '', 'Address186', 'email186@nowhere.org', '186', '186', NULL, '', 'High', 'High Risk Assumed', '2014-09-30', NULL, true, false, false, 186.00, 186.00, false, 'City 186', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.433975+00', 186.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (287, 'Civil Society Organization', 'National', 'Partner287', '', '', 'Address287', 'email287@nowhere.org', '287', '287', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 287.00, 287.00, true, 'City 287', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.438941+00', 287.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (397, 'Civil Society Organization', 'National', 'Partner397', '', '', 'Address397', 'email397@nowhere.org', '397', '397', NULL, '', 'Not Required', 'Micro Assessment', '2016-01-01', '2016-06-01', true, false, false, 397.00, 397.00, false, 'City 397', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.443901+00', 397.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (299, 'Civil Society Organization', 'National', 'Partner299', '', '', 'Address299', 'email299@nowhere.org', '299', '299', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, false, 299.00, 299.00, true, 'City 299', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.448901+00', 299.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (120, 'Government', NULL, 'Partner120', '', '', 'Address120', 'email120@nowhere.org', '120', '120', NULL, '', 'Medium', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 120.00, 120.00, false, 'City 120', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.454203+00', 120.00, 513896.23, 753107.36, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (420, 'Government', NULL, 'Partner420', '', '', 'Address420', 'email420@nowhere.org', '420', '420', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 420.00, 420.00, false, 'City 420', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.459193+00', 420.00, 248299.20, 171839.86, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (405, 'Government', NULL, 'Partner405', '', '', 'Address405', 'email405@nowhere.org', '405', '405', NULL, '', 'High', 'High Risk Assumed', '2019-06-06', NULL, true, false, false, 405.00, 405.00, false, 'City 405', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.464306+00', 405.00, 271781.24, 300732.44, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (50, 'Government', NULL, 'Partner50', '', '', 'Address50', 'email50@nowhere.org', '50', '50', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, false, 50.00, 50.00, true, 'City 50', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.469284+00', 50.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (112, 'Government', NULL, 'Partner112', '', '', 'Address112', 'email112@nowhere.org', '112', '112', NULL, '', 'High', 'High Risk Assumed', '2018-08-14', NULL, true, false, false, 112.00, 112.00, false, 'City 112', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.474282+00', 112.00, 749851.09, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (59, 'Government', NULL, 'Partner59', '', '', 'Address59', 'email59@nowhere.org', '59', '59', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, false, 59.00, 59.00, true, 'City 59', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.479358+00', 59.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (438, 'Government', NULL, 'Partner438', '', '', 'Address438', 'email438@nowhere.org', '438', '438', NULL, NULL, 'High', 'High Risk Assumed', '2018-08-21', NULL, true, false, false, 438.00, 438.00, false, 'City 438', '081', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-09-02 00:04:57.797288+00', '2020-04-02 16:57:43.484342+00', 438.00, 78410.32, 242275.05, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (451, 'Government', NULL, 'Partner451', '', '', 'Address451', 'email451@nowhere.org', '451', '451', NULL, NULL, 'Medium', 'Micro Assessment', '2017-11-10', NULL, true, false, false, 451.00, 451.00, false, 'City 451', '081', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-10-08 00:10:59.850314+00', '2020-04-02 16:57:43.489341+00', 451.00, 0.00, 41710.65, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (227, 'Government', NULL, 'Partner227', '', '', 'Address227', 'email227@nowhere.org', '227', '227', NULL, '', 'High', 'High Risk Assumed', '2016-10-20', NULL, true, false, false, 227.00, 227.00, false, 'City 227', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.494314+00', 227.00, 124699.41, 118254.16, '', false, 4989.82, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (393, 'Government', NULL, 'Partner393', '', '', 'Address393', 'email393@nowhere.org', '393', '393', NULL, '', 'High', 'High Risk Assumed', '2018-10-22', NULL, true, false, false, 393.00, 393.00, false, 'City 393', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.49938+00', 393.00, 185279.87, 110422.33, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (329, 'Government', NULL, 'Partner329', '', '', 'Address329', 'email329@nowhere.org', '329', '329', NULL, '', 'High', 'High Risk Assumed', '2015-06-08', NULL, true, false, false, 329.00, 329.00, false, 'City 329', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.504681+00', 329.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (442, 'Government', NULL, 'Partner442', '', '', 'Address442', 'email442@nowhere.org', '442', '442', NULL, NULL, 'High', 'High Risk Assumed', '2019-02-28', NULL, true, false, false, 442.00, 442.00, false, 'City 442', '081', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-03-15 13:43:06.061872+00', '2020-04-02 16:57:43.509751+00', 442.00, 59940.24, 59940.24, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (417, 'Government', NULL, 'Partner417', '', '', 'Address417', 'email417@nowhere.org', '417', '417', NULL, '', 'High', 'High Risk Assumed', '2019-10-21', NULL, true, false, false, 417.00, 417.00, false, 'City 417', '081', '446', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.514699+00', 417.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (443, 'Government', NULL, 'Partner443', '', '', 'Address443', 'email443@nowhere.org', '443', '443', NULL, NULL, 'High', 'High Risk Assumed', '2018-06-14', NULL, true, false, false, 443.00, 443.00, false, 'City 443', '081', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-04-04 00:04:57.534627+00', '2020-04-02 16:57:43.519811+00', 443.00, 35403.44, 45358.89, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (61, 'Government', NULL, 'Partner61', '', '', 'Address61', 'email61@nowhere.org', '61', '61', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 61.00, 61.00, true, 'City 61', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.524749+00', 61.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (225, 'Government', NULL, 'Partner225', '', '', 'Address225', 'email225@nowhere.org', '225', '225', NULL, '', 'High', 'High Risk Assumed', '2015-12-29', NULL, true, false, false, 225.00, 225.00, false, 'City 225', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.529741+00', 225.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (63, 'Government', NULL, 'Partner63', '', '', 'Address63', 'email63@nowhere.org', '63', '63', NULL, '', 'High', 'High Risk Assumed', '2016-12-16', NULL, true, false, false, 63.00, 63.00, false, 'City 63', '081', '1146', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.534722+00', 63.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (363, 'Government', NULL, 'Partner363', '', '', 'Address363', 'email363@nowhere.org', '363', '363', NULL, '', 'High', 'High Risk Assumed', '2016-12-16', NULL, true, false, false, 363.00, 363.00, false, 'City 363', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.539769+00', 363.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (64, 'Government', NULL, 'Partner64', '', '', 'Address64', 'email64@nowhere.org', '64', '64', NULL, '', 'Not Required', 'Micro Assessment', '2016-01-01', NULL, true, false, false, 64.00, 64.00, false, 'City 64', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.544751+00', 64.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (65, 'Government', NULL, 'Partner65', '', '', 'Address65', 'email65@nowhere.org', '65', '65', NULL, '', 'High', 'Micro Assessment', '2015-12-31', NULL, true, false, false, 65.00, 65.00, false, 'City 65', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.549782+00', 65.00, 1914.16, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (67, 'Government', NULL, 'Partner67', '', '', 'Address67', 'email67@nowhere.org', '67', '67', NULL, '', 'High', 'High Risk Assumed', '2014-09-30', NULL, true, true, true, 67.00, 67.00, true, 'City 67', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.554756+00', 67.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (68, 'Government', NULL, 'Partner68', '', '', 'Address68', 'email68@nowhere.org', '68', '68', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 68.00, 68.00, true, 'City 68', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.559805+00', 68.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (338, 'Government', NULL, 'Partner338', '', '', 'Address338', 'email338@nowhere.org', '338', '338', NULL, '', 'High', 'High Risk Assumed', '2015-12-29', NULL, true, false, false, 338.00, 338.00, false, 'City 338', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.564756+00', 338.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (378, 'Government', NULL, 'Partner378', '', '', 'Address378', 'email378@nowhere.org', '378', '378', NULL, '', 'High', 'High Risk Assumed', '2016-04-07', NULL, true, false, false, 378.00, 378.00, false, 'City 378', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.569796+00', 378.00, 13811.18, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (371, 'Government', NULL, 'Partner371', '', '', 'Address371', 'email371@nowhere.org', '371', '371', NULL, '', 'High', 'High Risk Assumed', '2016-04-07', NULL, true, false, false, 371.00, 371.00, false, 'City 371', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.574778+00', 371.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (69, 'Government', NULL, 'Partner69', '', '', 'Address69', 'email69@nowhere.org', '69', '69', NULL, '', 'Medium', 'Micro Assessment', '2014-10-31', NULL, true, false, false, 69.00, 69.00, false, 'City 69', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.579926+00', 69.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (70, 'Government', NULL, 'Partner70', '', '', 'Address70', 'email70@nowhere.org', '70', '70', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, false, false, 70.00, 70.00, false, 'City 70', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.58488+00', 70.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (336, 'Government', NULL, 'Partner336', '', '', 'Address336', 'email336@nowhere.org', '336', '336', NULL, '', 'High', 'High Risk Assumed', '2015-12-29', NULL, true, false, false, 336.00, 336.00, false, 'City 336', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.590031+00', 336.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (78, 'Government', NULL, 'Partner78', '', '', 'Address78', 'email78@nowhere.org', '78', '78', NULL, '', 'Medium', 'Micro Assessment', '2015-05-30', NULL, true, false, false, 78.00, 78.00, false, 'City 78', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.595154+00', 78.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (89, 'Government', NULL, 'Partner89', '', '', 'Address89', 'email89@nowhere.org', '89', '89', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, false, false, 89.00, 89.00, false, 'City 89', '081', '14', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.600233+00', 89.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (90, 'Government', NULL, 'Partner90', '', '', 'Address90', 'email90@nowhere.org', '90', '90', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 90.00, 90.00, true, 'City 90', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.605213+00', 90.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (62, 'Government', NULL, 'Partner62', '', '', 'Address62', 'email62@nowhere.org', '62', '62', NULL, '', 'High', 'High Risk Assumed', '2014-09-30', NULL, true, false, false, 62.00, 62.00, false, 'City 62', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.610258+00', 62.00, 22391.83, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (340, 'Government', NULL, 'Partner340', '', '', 'Address340', 'email340@nowhere.org', '340', '340', NULL, '', 'High', 'High Risk Assumed', '2015-12-29', NULL, true, false, false, 340.00, 340.00, false, 'City 340', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.615244+00', 340.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (362, 'Government', NULL, 'Partner362', '', '', 'Address362', 'email362@nowhere.org', '362', '362', NULL, '', 'High', 'High Risk Assumed', '2015-12-29', NULL, true, false, false, 362.00, 362.00, false, 'City 362', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.618831+00', 362.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (91, 'Government', NULL, 'Partner91', '', '', 'Address91', 'email91@nowhere.org', '91', '91', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 91.00, 91.00, true, 'City 91', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.621923+00', 91.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (347, 'Civil Society Organization', 'National', 'Partner347', '', '', 'Address347', 'email347@nowhere.org', '347', '347', NULL, '', 'High', 'High Risk Assumed', '2016-01-01', '2016-05-04', true, true, true, 347.00, 347.00, true, 'City 347', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.624978+00', 347.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (367, 'Government', NULL, 'Partner367', '', '', 'Address367', 'email367@nowhere.org', '367', '367', NULL, '', 'High', 'High Risk Assumed', '2016-04-07', NULL, true, false, false, 367.00, 367.00, false, 'City 367', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.62793+00', 367.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (382, 'Government', NULL, 'Partner382', '', '', 'Address382', 'email382@nowhere.org', '382', '382', NULL, '', 'Not Required', 'Micro Assessment', '2014-09-30', NULL, true, false, false, 382.00, 382.00, false, 'City 382', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.630641+00', 382.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (66, 'Government', NULL, 'Partner66', '', '', 'Address66', 'email66@nowhere.org', '66', '66', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, false, false, 66.00, 66.00, false, 'City 66', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.633237+00', 66.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (92, 'Government', NULL, 'Partner92', '', '', 'Address92', 'email92@nowhere.org', '92', '92', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 92.00, 92.00, true, 'City 92', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.635768+00', 92.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (93, 'Government', NULL, 'Partner93', '', '', 'Address93', 'email93@nowhere.org', '93', '93', NULL, '', 'High', 'High Risk Assumed', '2014-09-30', NULL, true, false, false, 93.00, 93.00, false, 'City 93', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.638318+00', 93.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (304, 'Government', NULL, 'Partner304', '', '', 'Address304', 'email304@nowhere.org', '304', '304', NULL, '', 'High', 'High Risk Assumed', '2016-12-16', NULL, true, false, false, 304.00, 304.00, false, 'City 304', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.640904+00', 304.00, 2220.70, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (411, 'Government', NULL, 'Partner411', '', '', 'Address411', 'email411@nowhere.org', '411', '411', NULL, '', 'High', 'High Risk Assumed', '2017-01-12', NULL, true, false, false, 411.00, 411.00, false, 'City 411', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.643491+00', 411.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (433, 'Government', NULL, 'Partner433', '', '', 'Address433', 'email433@nowhere.org', '433', '433', NULL, NULL, 'High', 'High Risk Assumed', '2018-03-20', NULL, true, false, false, 433.00, 433.00, false, 'City 433', '081', '235', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-05-17 16:22:25.912153+00', '2020-04-02 16:57:43.646068+00', 433.00, 9670.13, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (94, 'Government', NULL, 'Partner94', '', '', 'Address94', 'email94@nowhere.org', '94', '94', NULL, '', 'High', 'Micro Assessment', '2013-09-30', NULL, true, false, false, 94.00, 94.00, false, 'City 94', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.648591+00', 94.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (33, 'Civil Society Organization', 'International', 'Partner33', '', '', 'Address33', 'email33@nowhere.org', '33', '33', NULL, '', '', '', NULL, NULL, true, true, true, 33.00, 33.00, true, 'City 33', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.651135+00', 33.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (138, 'Government', NULL, 'Partner138', '', '', 'Address138', 'email138@nowhere.org', '138', '138', NULL, '', 'Medium', 'Micro Assessment', '2016-07-14', NULL, true, false, false, 138.00, 138.00, false, 'City 138', '069', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.653735+00', 138.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (394, 'Government', NULL, 'Partner394', '', '', 'Address394', 'email394@nowhere.org', '394', '394', NULL, '', 'High', 'Micro Assessment', '2012-01-01', NULL, true, false, false, 394.00, 394.00, false, 'City 394', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.656265+00', 394.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (264, 'Government', NULL, 'Partner264', '', '', 'Address264', 'email264@nowhere.org', '264', '264', NULL, '', 'High', 'High Risk Assumed', '2014-09-30', NULL, true, true, false, 264.00, 264.00, true, 'City 264', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.65878+00', 264.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (260, 'Government', NULL, 'Partner260', '', '', 'Address260', 'email260@nowhere.org', '260', '260', NULL, '', 'Not Required', 'Micro Assessment', '2017-07-24', NULL, true, true, false, 260.00, 260.00, true, 'City 260', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.661326+00', 260.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (131, 'Government', NULL, 'Partner131', '', '', 'Address131', 'email131@nowhere.org', '131', '131', NULL, '', 'Medium', 'Micro Assessment', '2016-07-14', NULL, true, false, false, 131.00, 131.00, false, 'City 131', '069', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.663591+00', 131.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (95, 'Civil Society Organization', 'National', 'Partner95', '', '', 'Address95', 'email95@nowhere.org', '95', '95', NULL, '', 'Medium', 'Micro Assessment', '2018-08-28', '2018-08-28', true, false, false, 95.00, 95.00, false, 'City 95', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.665799+00', 95.00, 157240.09, 71224.63, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (185, 'Civil Society Organization', 'National', 'Partner185', '', '', 'Address185', 'email185@nowhere.org', '185', '185', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 185.00, 185.00, true, 'City 185', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.668317+00', 185.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (333, 'Civil Society Organization', 'National', 'Partner333', '', '', 'Address333', 'email333@nowhere.org', '333', '333', NULL, '', 'Not Required', 'Micro Assessment', '2015-12-31', '2016-03-04', true, true, true, 333.00, 333.00, true, 'City 333', '081', '0235', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.67094+00', 333.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (384, 'Civil Society Organization', 'National', 'Partner384', '', '', 'Address384', 'email384@nowhere.org', '384', '384', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, true, 384.00, 384.00, true, 'City 384', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.67354+00', 384.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (404, 'Civil Society Organization', 'National', 'Partner404', '', '', 'Address404', 'email404@nowhere.org', '404', '404', NULL, '', 'Low', 'Low Risk Assumed', '2016-01-01', '2016-04-19', true, false, false, 404.00, 404.00, false, 'City 404', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.676109+00', 404.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (115, 'Civil Society Organization', 'National', 'Partner115', '', '', 'Address115', 'email115@nowhere.org', '115', '115', NULL, '', '', '', NULL, NULL, true, true, true, 115.00, 115.00, true, 'City 115', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.678674+00', 115.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (14, 'Civil Society Organization', 'National', 'Partner14', '', '', 'Address14', 'email14@nowhere.org', '14', '14', NULL, '', 'High', 'Micro Assessment', '2017-01-12', '2017-01-12', true, false, false, 14.00, 14.00, false, 'City 14', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.681177+00', 14.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (277, 'Civil Society Organization', 'National', 'Partner277', '', '', 'Address277', 'email277@nowhere.org', '277', '277', NULL, '', 'High', 'High Risk Assumed', '2019-05-16', '2019-03-26', true, false, false, 277.00, 277.00, false, 'City 277', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.684126+00', 277.00, 0.00, 8071.49, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (406, 'Civil Society Organization', 'National', 'Partner406', '', '', 'Address406', 'email406@nowhere.org', '406', '406', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, false, false, 406.00, 406.00, false, 'City 406', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.689212+00', 406.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (242, 'Civil Society Organization', 'National', 'Partner242', '', '', 'Address242', 'email242@nowhere.org', '242', '242', NULL, '', 'Medium', 'Micro Assessment', '2014-10-31', '2013-07-10', true, true, false, 242.00, 242.00, true, 'City 242', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.694457+00', 242.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (263, 'Civil Society Organization', 'International', 'Partner263', '', '', 'Address263', 'email263@nowhere.org', '263', '263', NULL, '', 'Low', '', '2013-10-10', '2018-04-09', true, true, true, 263.00, 263.00, true, 'City 263', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.699575+00', 263.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (211, 'Civil Society Organization', 'National', 'Partner211', '', '', 'Address211', 'email211@nowhere.org', '211', '211', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 211.00, 211.00, true, 'City 211', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.704611+00', 211.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (307, 'Government', NULL, 'Partner307', '', '', 'Address307', 'email307@nowhere.org', '307', '307', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, false, 307.00, 307.00, true, 'City 307', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.709657+00', 307.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (413, 'Civil Society Organization', 'National', 'Partner413', '', '', 'Address413', 'email413@nowhere.org', '413', '413', NULL, '', 'High', 'Micro Assessment', '2017-05-19', '2017-05-15', true, false, false, 413.00, 413.00, false, 'City 413', '081', 'BP 1195', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.714648+00', 413.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (395, 'Civil Society Organization', 'National', 'Partner395', '', '', 'Address395', 'email395@nowhere.org', '395', '395', NULL, '', 'High', 'High Risk Assumed', '2016-04-19', '2015-09-30', true, false, false, 395.00, 395.00, false, 'City 395', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.719721+00', 395.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (350, 'Civil Society Organization', 'Community Based Organization', 'Partner350', '', '', 'Address350', 'email350@nowhere.org', '350', '350', NULL, '', 'High', 'Micro Assessment', '2016-03-02', '2018-02-06', true, false, false, 350.00, 350.00, false, 'City 350', '081', '235', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.724721+00', 350.00, 30960.52, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (231, 'Civil Society Organization', 'National', 'Partner231', '', '', 'Address231', 'email231@nowhere.org', '231', '231', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 231.00, 231.00, true, 'City 231', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.729774+00', 231.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (356, 'Civil Society Organization', 'National', 'Partner356', '', '', 'Address356', 'email356@nowhere.org', '356', '356', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-07-10', true, false, false, 356.00, 356.00, false, 'City 356', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.734861+00', 356.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (399, 'Civil Society Organization', 'National', 'Partner399', '', '', 'Address399', 'email399@nowhere.org', '399', '399', NULL, '', 'High', 'High Risk Assumed', '2016-04-14', '2016-04-14', true, false, false, 399.00, 399.00, false, 'City 399', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.739963+00', 399.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (377, 'Civil Society Organization', 'National', 'Partner377', '', '', 'Address377', 'email377@nowhere.org', '377', '377', NULL, '', 'Not Required', 'Micro Assessment', '2016-04-07', '2016-04-07', true, false, false, 377.00, 377.00, false, 'City 377', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.745338+00', 377.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (341, 'Civil Society Organization', 'National', 'Partner341', '', '', 'Address341', 'email341@nowhere.org', '341', '341', NULL, '', 'High', 'High Risk Assumed', '2016-04-23', '2016-04-23', true, false, false, 341.00, 341.00, false, 'City 341', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.750582+00', 341.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (365, 'Civil Society Organization', 'International', 'Partner365', '', '', 'Address365', 'email365@nowhere.org', '365', '365', NULL, '', 'High', 'High Risk Assumed', '2016-03-04', '2015-12-30', true, false, false, 365.00, 365.00, false, 'City 365', '276', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.755614+00', 365.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (224, 'Government', NULL, 'Partner224', '', '', 'Address224', 'email224@nowhere.org', '224', '224', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 224.00, 224.00, true, 'City 224', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.760728+00', 224.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (369, 'Civil Society Organization', 'International', 'Partner369', '', '', 'Address369', 'email369@nowhere.org', '369', '369', NULL, '', 'Low', 'Micro Assessment', '2017-08-01', '2019-05-16', true, false, false, 369.00, 369.00, false, 'City 369', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.765733+00', 369.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (196, 'Government', NULL, 'Partner196', '', '', 'Address196', 'email196@nowhere.org', '196', '196', NULL, '', 'Not Required', 'Micro Assessment', '2012-01-01', NULL, true, true, true, 196.00, 196.00, true, 'City 196', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.770812+00', 196.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (400, 'Government', NULL, 'Partner400', '', '', 'Address400', 'email400@nowhere.org', '400', '400', NULL, '', 'Not Required', 'Micro Assessment', '2016-08-05', NULL, true, false, false, 400.00, 400.00, false, 'City 400', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.77591+00', 400.00, 11635.96, 13429.87, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (208, 'Government', NULL, 'Partner208', '', '', 'Address208', 'email208@nowhere.org', '208', '208', NULL, '', 'Medium', 'Micro Assessment', '2018-07-31', NULL, true, false, false, 208.00, 208.00, false, 'City 208', '081', 'BP 6667', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.781034+00', 208.00, 103141.15, 91284.12, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (274, 'Civil Society Organization', 'National', 'Partner274', '', '', 'Address274', 'email274@nowhere.org', '274', '274', NULL, '', 'Not Required', 'Micro Assessment', '2017-11-29', '2017-11-29', true, true, true, 274.00, 274.00, true, 'City 274', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.786298+00', 274.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (291, 'Government', NULL, 'Partner291', '', '', 'Address291', 'email291@nowhere.org', '291', '291', NULL, '', 'Not Required', 'Micro Assessment', '2015-12-31', NULL, true, false, false, 291.00, 291.00, false, 'City 291', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.791612+00', 291.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (255, 'Government', NULL, 'Partner255', '', '', 'Address255', 'email255@nowhere.org', '255', '255', NULL, '', 'Not Required', 'Micro Assessment', '2015-12-29', NULL, true, true, true, 255.00, 255.00, true, 'City 255', '072', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.796955+00', 255.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (357, 'Civil Society Organization', 'International', 'Partner357', '', '', 'Address357', 'email357@nowhere.org', '357', '357', NULL, '', 'Low', 'Low Risk Assumed', '2018-01-22', '2015-12-14', true, false, false, 357.00, 357.00, false, 'City 357', '072', 'H3B 4L2', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.802141+00', 357.00, 62868.47, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (345, 'Civil Society Organization', 'National', 'Partner345', '', '', 'Address345', 'email345@nowhere.org', '345', '345', NULL, '', 'High', 'High Risk Assumed', '2015-09-30', '2015-09-30', true, false, false, 345.00, 345.00, false, 'City 345', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.807335+00', 345.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (4, 'Civil Society Organization', 'International', 'Partner4', '', '', 'Address4', 'email4@nowhere.org', '4', '4', NULL, '', 'Not Required', 'Micro Assessment', NULL, '2018-04-09', true, true, false, 4.00, 4.00, true, 'City 4', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.81237+00', 4.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (298, 'Civil Society Organization', 'National', 'Partner298', '', '', 'Address298', 'email298@nowhere.org', '298', '298', NULL, '', 'Medium', 'Micro Assessment', '2017-04-18', '2017-04-18', true, false, false, 298.00, 298.00, false, 'City 298', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.817372+00', 298.00, 71687.58, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (318, 'Government', NULL, 'Partner318', '', '', 'Address318', 'email318@nowhere.org', '318', '318', NULL, '', 'Not Required', 'Micro Assessment', '2017-08-10', NULL, true, true, false, 318.00, 318.00, true, 'City 318', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.822365+00', 318.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (5, 'Government', NULL, 'Partner5', '', '', 'Address5', 'email5@nowhere.org', '5', '5', NULL, '', 'High', 'High Risk Assumed', '2018-10-22', NULL, true, false, false, 5.00, 5.00, false, 'City 5', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.827355+00', 5.00, 1046872.89, 1204217.18, '', false, 1173210.68, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (6, 'Civil Society Organization', 'International', 'Partner6', '', '', 'Address6', 'email6@nowhere.org', '6', '6', NULL, '', 'Low', '', '2013-10-10', '2015-12-30', true, true, true, 6.00, 6.00, true, 'City 6', '081', '5166', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.831838+00', 6.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (7, 'Civil Society Organization', 'International', 'Partner7', '', '', 'Address7', 'email7@nowhere.org', '7', '7', NULL, '', 'Low', 'Micro Assessment', '2018-07-31', '2019-08-28', true, false, false, 7.00, 7.00, false, 'City 7', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.8344+00', 7.00, 915680.45, 325230.18, '', false, 193540.60, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (8, 'Civil Society Organization', 'International', 'Partner8', '', '', 'Address8', 'email8@nowhere.org', '8', '8', NULL, '', 'Low', 'Micro Assessment', '2019-09-30', '2018-01-10', true, false, false, 8.00, 8.00, false, 'City 8', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.836683+00', 8.00, 179208.79, 75380.95, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (139, 'Civil Society Organization', 'International', 'Partner139', '', '', 'Address139', 'email139@nowhere.org', '139', '139', NULL, '', 'Low', 'Micro Assessment', '2015-12-08', '2019-03-26', true, false, false, 139.00, 139.00, false, 'City 139', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.838929+00', 139.00, 36515.85, 289377.26, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (9, 'Civil Society Organization', 'International', 'Partner9', '', '', 'Address9', 'email9@nowhere.org', '9', '9', NULL, '', 'High', 'High Risk Assumed', '2017-05-04', '2018-04-09', true, false, false, 9.00, 9.00, false, 'City 9', '081', '5666', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.841265+00', 9.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (314, 'Civil Society Organization', 'National', 'Partner314', '', '', 'Address314', 'email314@nowhere.org', '314', '314', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-07-10', true, false, false, 314.00, 314.00, false, 'City 314', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.845752+00', 314.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (193, 'Civil Society Organization', NULL, 'Partner193', '', '', 'Address193', 'email193@nowhere.org', '193', '193', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 193.00, 193.00, true, 'City 193', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.848145+00', 193.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (11, 'Government', NULL, 'Partner11', '', '', 'Address11', 'email11@nowhere.org', '11', '11', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 11.00, 11.00, true, 'City 11', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.850405+00', 11.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (142, 'Civil Society Organization', 'National', 'Partner142', '', '', 'Address142', 'email142@nowhere.org', '142', '142', NULL, '', '', '', NULL, NULL, true, true, true, 142.00, 142.00, true, 'City 142', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.852652+00', 142.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (53, 'Civil Society Organization', 'International', 'Partner53', '', '', 'Address53', 'email53@nowhere.org', '53', '53', NULL, '', 'Medium', 'Micro Assessment', '2018-07-31', '2019-06-11', true, false, false, 53.00, 53.00, false, 'City 53', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.854859+00', 53.00, 745151.69, 318813.93, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (13, 'Civil Society Organization', 'National', 'Partner13', '', '', 'Address13', 'email13@nowhere.org', '13', '13', NULL, '', '', '', NULL, NULL, true, true, false, 13.00, 13.00, true, 'City 13', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.85717+00', 13.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (203, 'Civil Society Organization', 'National', 'Partner203', '', '', 'Address203', 'email203@nowhere.org', '203', '203', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, false, 203.00, 203.00, true, 'City 203', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.859425+00', 203.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (273, 'Civil Society Organization', NULL, 'Partner273', '', '', 'Address273', 'email273@nowhere.org', '273', '273', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 273.00, 273.00, true, 'City 273', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.861671+00', 273.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (275, 'Civil Society Organization', NULL, 'Partner275', '', '', 'Address275', 'email275@nowhere.org', '275', '275', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 275.00, 275.00, true, 'City 275', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.863907+00', 275.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (12, 'Civil Society Organization', 'International', 'Partner12', '', '', 'Address12', 'email12@nowhere.org', '12', '12', NULL, '', '', '', NULL, NULL, true, true, true, 12.00, 12.00, true, 'City 12', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.843545+00', 12.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (75, 'Government', NULL, 'Partner75', '', '', 'Address75', 'email75@nowhere.org', '75', '75', NULL, '', '', '', NULL, NULL, true, true, true, 75.00, 75.00, true, 'City 75', '081', '440', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.866148+00', 75.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (71, 'Government', NULL, 'Partner71', '', '', 'Address71', 'email71@nowhere.org', '71', '71', NULL, '', '', '', NULL, NULL, true, true, true, 71.00, 71.00, true, 'City 71', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.868351+00', 71.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (76, 'Government', NULL, 'Partner76', '', '', 'Address76', 'email76@nowhere.org', '76', '76', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 76.00, 76.00, false, 'City 76', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.895722+00', 76.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (437, 'Government', NULL, 'Partner437', '', '', 'Address437', 'email437@nowhere.org', '437', '437', NULL, NULL, 'High', 'High Risk Assumed', '2018-06-08', NULL, true, false, false, 437.00, 437.00, false, 'City 437', '081', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-08-28 13:22:24.164472+00', '2020-04-02 16:57:43.870585+00', 437.00, 16772.85, 19902.10, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (323, 'Civil Society Organization', 'National', 'Partner323', '', '', 'Address323', 'email323@nowhere.org', '323', '323', NULL, '', 'High', 'High Risk Assumed', '2016-04-19', '2016-04-19', true, false, false, 323.00, 323.00, false, 'City 323', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.872957+00', 323.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (166, 'Civil Society Organization', 'International', 'Partner166', '', '', 'Address166', 'email166@nowhere.org', '166', '166', NULL, '', 'Low', 'Micro Assessment', '2013-09-30', '2019-06-28', true, true, false, 166.00, 166.00, true, 'City 166', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.875391+00', 166.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (195, 'Civil Society Organization', 'International', 'Partner195', '', '', 'Address195', 'email195@nowhere.org', '195', '195', NULL, '', 'Low', 'Micro Assessment', '2013-09-30', '2013-07-19', true, true, false, 195.00, 195.00, true, 'City 195', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.877656+00', 195.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (34, 'Government', NULL, 'Partner34', '', '', 'Address34', 'email34@nowhere.org', '34', '34', NULL, '', 'Not Required', 'Micro Assessment', '2017-07-24', NULL, true, true, false, 34.00, 34.00, true, 'City 34', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.879935+00', 34.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (72, 'Government', NULL, 'Partner72', '', '', 'Address72', 'email72@nowhere.org', '72', '72', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 72.00, 72.00, true, 'City 72', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.882186+00', 72.00, 0.00, 0.00, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (250, 'Civil Society Organization', 'National', 'Partner250', '', '', 'Address250', 'email250@nowhere.org', '250', '250', NULL, '', 'Not Required', 'Micro Assessment', '2017-07-24', '2017-07-24', true, true, false, 250.00, 250.00, true, 'City 250', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.354407+00', 250.00, 0.00, 0.00, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (102, 'Government', NULL, 'Partner102', '', '', 'Address102', 'email102@nowhere.org', '102', '102', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 102.00, 102.00, true, 'City 102', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.884436+00', 102.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (101, 'Government', NULL, 'Partner101', '', '', 'Address101', 'email101@nowhere.org', '101', '101', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 101.00, 101.00, false, 'City 101', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.886708+00', 101.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (51, 'Government', NULL, 'Partner51', '', '', 'Address51', 'email51@nowhere.org', '51', '51', NULL, '', 'High', 'High Risk Assumed', '2016-12-01', NULL, true, false, false, 51.00, 51.00, false, 'City 51', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.888937+00', 51.00, 26463.11, 24062.61, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (60, 'Government', NULL, 'Partner60', '', '', 'Address60', 'email60@nowhere.org', '60', '60', NULL, '', 'High', 'High Risk Assumed', '2016-10-17', NULL, true, false, false, 60.00, 60.00, false, 'City 60', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.891207+00', 60.00, 5722.14, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (100, 'Government', NULL, 'Partner100', '', '', 'Address100', 'email100@nowhere.org', '100', '100', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 100.00, 100.00, false, 'City 100', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.893495+00', 100.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (140, 'Government', NULL, 'Partner140', '', '', 'Address140', 'email140@nowhere.org', '140', '140', NULL, '', 'High', 'High Risk Assumed', '2017-02-09', NULL, true, true, true, 140.00, 140.00, true, 'City 140', '081', '235', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.897992+00', 140.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (73, 'Government', NULL, 'Partner73', '', '', 'Address73', 'email73@nowhere.org', '73', '73', NULL, '', 'High', 'High Risk Assumed', '2015-05-30', NULL, true, false, false, 73.00, 73.00, false, 'City 73', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.900369+00', 73.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (74, 'Government', NULL, 'Partner74', '', '', 'Address74', 'email74@nowhere.org', '74', '74', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 74.00, 74.00, false, 'City 74', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.902692+00', 74.00, 104900.34, 84989.55, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (331, 'Government', NULL, 'Partner331', '', '', 'Address331', 'email331@nowhere.org', '331', '331', NULL, '', 'Medium', '', '2013-06-13', NULL, true, true, true, 331.00, 331.00, true, 'City 331', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.905237+00', 331.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (52, 'Civil Society Organization', 'Community Based Organization', 'Partner52', '', '', 'Address52', 'email52@nowhere.org', '52', '52', NULL, '', '', '', NULL, NULL, true, true, true, 52.00, 52.00, true, 'City 52', '081', '-235', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.907811+00', 52.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (430, 'Government', NULL, 'Partner430', '', '', 'Address430', 'email430@nowhere.org', '430', '430', NULL, '', 'High', 'High Risk Assumed', '2018-03-09', NULL, true, false, false, 430.00, 430.00, false, 'City 430', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-04-12 00:06:07.095026+00', '2020-04-02 16:57:43.910407+00', 430.00, 66984.80, 125416.20, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (361, 'Government', NULL, 'Partner361', '', '', 'Address361', 'email361@nowhere.org', '361', '361', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 361.00, 361.00, true, 'City 361', '081', '1146', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.912997+00', 361.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (18, 'Civil Society Organization', 'International', 'Partner18', '', '', 'Address18', 'email18@nowhere.org', '18', '18', NULL, '', 'Low', 'Micro Assessment', '2018-07-31', '2019-04-01', true, false, false, 18.00, 18.00, false, 'City 18', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.915514+00', 18.00, 204905.29, 160247.03, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (154, '', NULL, 'Partner154', '', '', 'Address154', 'email154@nowhere.org', '154', '154', NULL, '', '', '', NULL, NULL, false, true, true, 154.00, 154.00, true, 'City 154', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.338282+00', 154.00, NULL, NULL, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (431, 'Civil Society Organization', 'International', 'Partner431', '', '', 'Address431', 'email431@nowhere.org', '431', '431', NULL, '', 'Medium', 'Micro Assessment', '2019-08-30', '2018-03-06', true, false, false, 431.00, 431.00, false, 'City 431', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-04-25 14:14:27.430202+00', '2020-04-02 16:57:43.918107+00', 431.00, 437540.28, 242946.24, '', false, 0.00, 24357.58); -INSERT INTO [[schema]].partners_partnerorganization VALUES (297, 'Civil Society Organization', NULL, 'Partner297', '', '', 'Address297', 'email297@nowhere.org', '297', '297', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 297.00, 297.00, true, 'City 297', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.92069+00', 297.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (209, 'Government', NULL, 'Partner209', '', '', 'Address209', 'email209@nowhere.org', '209', '209', NULL, '', 'High', 'High Risk Assumed', '2017-04-07', NULL, true, true, true, 209.00, 209.00, true, 'City 209', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.923364+00', 209.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (359, 'Government', NULL, 'Partner359', '', '', 'Address359', 'email359@nowhere.org', '359', '359', NULL, '', 'Not Required', 'Micro Assessment', '2015-12-31', NULL, true, false, false, 359.00, 359.00, false, 'City 359', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.926424+00', 359.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (207, 'Government', NULL, 'Partner207', '', '', 'Address207', 'email207@nowhere.org', '207', '207', NULL, '', 'Not Required', 'Micro Assessment', '2017-07-24', NULL, true, true, false, 207.00, 207.00, true, 'City 207', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.929575+00', 207.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (20, 'Government', NULL, 'Partner20', '', '', 'Address20', 'email20@nowhere.org', '20', '20', NULL, '', 'Not Required', '', NULL, NULL, true, true, false, 20.00, 20.00, true, 'City 20', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.935625+00', 20.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (79, 'Civil Society Organization', 'National', 'Partner79', '', '', 'Address79', 'email79@nowhere.org', '79', '79', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, true, 79.00, 79.00, true, 'City 79', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.938668+00', 79.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (407, 'Government', NULL, 'Partner407', '', '', 'Address407', 'email407@nowhere.org', '407', '407', NULL, '', 'High', 'High Risk Assumed', '2016-06-21', NULL, true, false, false, 407.00, 407.00, false, 'City 407', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.941735+00', 407.00, 157678.61, 11610.38, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (130, 'Civil Society Organization', 'International', 'Partner130', '', '', 'Address130', 'email130@nowhere.org', '130', '130', NULL, '', 'Low', 'Micro Assessment', '2017-08-01', '2018-07-15', true, false, false, 130.00, 130.00, false, 'City 130', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.356848+00', 130.00, 146536.86, 615659.32, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (153, 'Civil Society Organization', 'International', 'Partner153', '', '', 'Address153', 'email153@nowhere.org', '153', '153', NULL, '', '', '', NULL, '2019-04-18', true, true, true, 153.00, 153.00, true, 'City 153', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.944794+00', 153.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (380, 'Civil Society Organization', 'Community Based Organization', 'Partner380', '', '', 'Address380', 'email380@nowhere.org', '380', '380', NULL, '', 'High', 'High Risk Assumed', '2016-11-11', '2013-10-07', true, true, true, 380.00, 380.00, true, 'City 380', '081', '0235', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.947839+00', 380.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (160, 'Government', NULL, 'Partner160', '', '', 'Address160', 'email160@nowhere.org', '160', '160', NULL, '', 'Significant', 'Micro Assessment', '2014-09-30', NULL, true, true, true, 160.00, 160.00, true, 'City 160', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.95093+00', 160.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (147, 'Government', NULL, 'Partner147', '', '', 'Address147', 'email147@nowhere.org', '147', '147', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', NULL, true, true, true, 147.00, 147.00, true, 'City 147', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.953994+00', 147.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (96, 'Government', NULL, 'Partner96', '', '', 'Address96', 'email96@nowhere.org', '96', '96', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 96.00, 96.00, true, 'City 96', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.957059+00', 96.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (270, 'Government', NULL, 'Partner270', '', '', 'Address270', 'email270@nowhere.org', '270', '270', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 270.00, 270.00, false, 'City 270', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.960115+00', 270.00, 367614.15, 239562.56, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (410, 'Government', NULL, 'Partner410', '', '', 'Address410', 'email410@nowhere.org', '410', '410', NULL, '', 'Not Required', 'Micro Assessment', '2017-01-21', NULL, true, false, false, 410.00, 410.00, false, 'City 410', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.963205+00', 410.00, 7024.37, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (172, 'Government', NULL, 'Partner172', '', '', 'Address172', 'email172@nowhere.org', '172', '172', NULL, '', 'High', '', '2014-09-30', NULL, true, true, true, 172.00, 172.00, true, 'City 172', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.966355+00', 172.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (230, 'Government', NULL, 'Partner230', '', '', 'Address230', 'email230@nowhere.org', '230', '230', NULL, '', 'Medium', 'Micro Assessment', '2014-09-30', NULL, true, false, false, 230.00, 230.00, false, 'City 230', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.969409+00', 230.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (441, 'UN Agency', NULL, 'Partner441', '', '', 'Address441', 'email441@nowhere.org', '441', '441', NULL, NULL, '', '', NULL, NULL, true, true, true, 441.00, 441.00, true, 'City 441', '081', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-01-12 00:02:19.870977+00', '2020-04-02 16:57:43.972456+00', 441.00, 0.00, 0.00, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (159, 'Government', NULL, 'Partner159', '', '', 'Address159', 'email159@nowhere.org', '159', '159', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 159.00, 159.00, true, 'City 159', '081', '1146', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.975436+00', 159.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (81, 'Government', NULL, 'Partner81', '', '', 'Address81', 'email81@nowhere.org', '81', '81', NULL, '', 'Medium', 'Micro Assessment', '2019-08-28', NULL, true, false, false, 81.00, 81.00, false, 'City 81', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.978465+00', 81.00, 165981.24, 96820.63, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (326, 'Government', NULL, 'Partner326', '', '', 'Address326', 'email326@nowhere.org', '326', '326', NULL, '', 'Low', 'Micro Assessment', '2015-06-30', NULL, true, false, false, 326.00, 326.00, false, 'City 326', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.981524+00', 326.00, 37130.44, 2431.14, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (171, 'Government', NULL, 'Partner171', '', '', 'Address171', 'email171@nowhere.org', '171', '171', NULL, '', 'High', '', '2015-04-09', NULL, true, true, false, 171.00, 171.00, true, 'City 171', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.984596+00', 171.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (301, 'Government', NULL, 'Partner301', '', '', 'Address301', 'email301@nowhere.org', '301', '301', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 301.00, 301.00, true, 'City 301', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.987667+00', 301.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (189, 'Government', NULL, 'Partner189', '', '', 'Address189', 'email189@nowhere.org', '189', '189', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 189.00, 189.00, false, 'City 189', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.990879+00', 189.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (421, 'Civil Society Organization', 'National', 'Partner421', '', '', 'Address421', 'email421@nowhere.org', '421', '421', NULL, '', 'High', 'High Risk Assumed', '2017-03-03', '2017-03-01', true, false, false, 421.00, 421.00, false, 'City 421', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.993975+00', 421.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (425, 'Government', NULL, 'Partner425', '', '', 'Address425', 'email425@nowhere.org', '425', '425', NULL, '', 'High', 'High Risk Assumed', '2017-01-01', NULL, true, false, false, 425.00, 425.00, false, 'City 425', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.997061+00', 425.00, 45562.91, 72036.84, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (202, 'Government', NULL, 'Partner202', '', '', 'Address202', 'email202@nowhere.org', '202', '202', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 202.00, 202.00, true, 'City 202', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.000239+00', 202.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (252, 'Civil Society Organization', 'National', 'Partner252', '', '', 'Address252', 'email252@nowhere.org', '252', '252', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 252.00, 252.00, true, 'City 252', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.003314+00', 252.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (201, 'Government', NULL, 'Partner201', '', '', 'Address201', 'email201@nowhere.org', '201', '201', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 201.00, 201.00, true, 'City 201', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.006355+00', 201.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (192, 'Government', NULL, 'Partner192', '', '', 'Address192', 'email192@nowhere.org', '192', '192', NULL, '', 'Not Required', 'Micro Assessment', '2016-07-25', NULL, true, true, true, 192.00, 192.00, true, 'City 192', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.0094+00', 192.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (82, 'Civil Society Organization', 'National', 'Partner82', '', '', 'Address82', 'email82@nowhere.org', '82', '82', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 82.00, 82.00, true, 'City 82', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.01242+00', 82.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (109, 'Civil Society Organization', 'National', 'Partner109', '', '', 'Address109', 'email109@nowhere.org', '109', '109', NULL, '', 'High', 'High Risk Assumed', '2019-05-16', '2019-03-18', true, false, false, 109.00, 109.00, false, 'City 109', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.015496+00', 109.00, 0.00, 8071.49, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (21, 'Civil Society Organization', 'Community Based Organization', 'Partner21', '', '', 'Address21', 'email21@nowhere.org', '21', '21', NULL, '', 'Not Required', 'Micro Assessment', '2017-07-24', '2017-07-24', true, true, false, 21.00, 21.00, true, 'City 21', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.018576+00', 21.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (22, 'Government', NULL, 'Partner22', '', '', 'Address22', 'email22@nowhere.org', '22', '22', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 22.00, 22.00, true, 'City 22', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.02165+00', 22.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (23, 'Government', NULL, 'Partner23', '', '', 'Address23', 'email23@nowhere.org', '23', '23', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 23.00, 23.00, true, 'City 23', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.024723+00', 23.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (110, 'Civil Society Organization', 'Community Based Organization', 'Partner110', '', '', 'Address110', 'email110@nowhere.org', '110', '110', NULL, '', '', '', NULL, NULL, true, true, true, 110.00, 110.00, true, 'City 110', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.02777+00', 110.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (83, 'Government', NULL, 'Partner83', '', '', 'Address83', 'email83@nowhere.org', '83', '83', NULL, '', 'Not Required', 'Micro Assessment', '2016-07-25', NULL, true, true, true, 83.00, 83.00, true, 'City 83', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.030817+00', 83.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (200, 'Civil Society Organization', 'National', 'Partner200', '', '', 'Address200', 'email200@nowhere.org', '200', '200', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2015-08-31', true, true, true, 200.00, 200.00, true, 'City 200', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.034006+00', 200.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (113, 'Government', NULL, 'Partner113', '', '', 'Address113', 'email113@nowhere.org', '113', '113', NULL, '', 'Low', 'Micro Assessment', '2015-06-08', NULL, true, true, true, 113.00, 113.00, true, 'City 113', '081', '0235', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.037304+00', 113.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (337, 'Civil Society Organization', 'National', 'Partner337', '', '', 'Address337', 'email337@nowhere.org', '337', '337', NULL, '', 'High', 'High Risk Assumed', '2017-05-01', '2015-07-06', true, false, false, 337.00, 337.00, false, 'City 337', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.040419+00', 337.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (143, 'Civil Society Organization', 'National', 'Partner143', '', '', 'Address143', 'email143@nowhere.org', '143', '143', NULL, '', 'High', 'High Risk Assumed', '2013-10-29', '2013-09-30', true, false, false, 143.00, 143.00, false, 'City 143', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.043504+00', 143.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (278, 'Civil Society Organization', 'National', 'Partner278', '', '', 'Address278', 'email278@nowhere.org', '278', '278', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2015-08-31', true, true, true, 278.00, 278.00, true, 'City 278', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.046586+00', 278.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (84, 'Civil Society Organization', 'National', 'Partner84', '', '', 'Address84', 'email84@nowhere.org', '84', '84', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 84.00, 84.00, true, 'City 84', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.049635+00', 84.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (210, 'Government', NULL, 'Partner210', '', '', 'Address210', 'email210@nowhere.org', '210', '210', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 210.00, 210.00, true, 'City 210', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.05269+00', 210.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (390, 'Civil Society Organization', 'National', 'Partner390', '', '', 'Address390', 'email390@nowhere.org', '390', '390', NULL, '', 'Not Required', 'Micro Assessment', '2016-04-17', '2016-04-17', true, false, false, 390.00, 390.00, false, 'City 390', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.055733+00', 390.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (418, 'Government', NULL, 'Partner418', '', '', 'Address418', 'email418@nowhere.org', '418', '418', NULL, '', 'High', 'Micro Assessment', '2017-04-05', NULL, true, false, false, 418.00, 418.00, false, 'City 418', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.361506+00', 418.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (152, 'Civil Society Organization', 'Community Based Organization', 'Partner152', '', '', 'Address152', 'email152@nowhere.org', '152', '152', NULL, '', 'High', 'High Risk Assumed', '2019-02-08', '2018-12-31', true, false, false, 152.00, 152.00, false, 'City 152', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.058811+00', 152.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (85, 'Government', NULL, 'Partner85', '', '', 'Address85', 'email85@nowhere.org', '85', '85', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 85.00, 85.00, true, 'City 85', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.061903+00', 85.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (253, 'Government', NULL, 'Partner253', '', '', 'Address253', 'email253@nowhere.org', '253', '253', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 253.00, 253.00, true, 'City 253', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.064997+00', 253.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (103, 'Civil Society Organization', 'National', 'Partner103', '', '', 'Address103', 'email103@nowhere.org', '103', '103', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2015-08-31', true, true, true, 103.00, 103.00, true, 'City 103', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.068038+00', 103.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (353, 'Civil Society Organization', 'National', 'Partner353', '', '', 'Address353', 'email353@nowhere.org', '353', '353', NULL, '', 'Not Required', 'Micro Assessment', '2015-12-31', '2016-02-25', true, true, true, 353.00, 353.00, true, 'City 353', '081', '0235', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.071198+00', 353.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (24, 'Government', NULL, 'Partner24', '', '', 'Address24', 'email24@nowhere.org', '24', '24', NULL, '', 'Not Required', 'Micro Assessment', '2016-07-25', NULL, true, true, true, 24.00, 24.00, true, 'City 24', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.074301+00', 24.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (111, 'Government', NULL, 'Partner111', '', '', 'Address111', 'email111@nowhere.org', '111', '111', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 111.00, 111.00, true, 'City 111', '081', '0235', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.077368+00', 111.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (86, 'Civil Society Organization', 'Community Based Organization', 'Partner86', '', '', 'Address86', 'email86@nowhere.org', '86', '86', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, false, false, 86.00, 86.00, false, 'City 86', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.080476+00', 86.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (178, 'Civil Society Organization', 'International', 'Partner178', '', '', 'Address178', 'email178@nowhere.org', '178', '178', NULL, '', 'Low', 'Micro Assessment', '2014-09-30', '2019-03-19', true, true, true, 178.00, 178.00, true, 'City 178', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.359188+00', 178.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (191, 'Government', NULL, 'Partner191', '', '', 'Address191', 'email191@nowhere.org', '191', '191', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 191.00, 191.00, true, 'City 191', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.083577+00', 191.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (379, 'Civil Society Organization', 'National', 'Partner379', '', '', 'Address379', 'email379@nowhere.org', '379', '379', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, false, false, 379.00, 379.00, false, 'City 379', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.086663+00', 379.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (218, 'Civil Society Organization', NULL, 'Partner218', '', '', 'Address218', 'email218@nowhere.org', '218', '218', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 218.00, 218.00, true, 'City 218', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.089775+00', 218.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (213, 'Civil Society Organization', 'National', 'Partner213', '', '', 'Address213', 'email213@nowhere.org', '213', '213', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 213.00, 213.00, true, 'City 213', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.092817+00', 213.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (424, 'Civil Society Organization', 'International', 'Partner424', '', '', 'Address424', 'email424@nowhere.org', '424', '424', NULL, '', 'Medium', 'Micro Assessment', '2018-07-31', '2016-02-16', true, false, false, 424.00, 424.00, false, 'City 424', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.095852+00', 424.00, 798061.89, 380541.78, '', false, 84238.50, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (412, 'Government', NULL, 'Partner412', '', '', 'Address412', 'email412@nowhere.org', '412', '412', NULL, '', 'Not Required', 'Micro Assessment', '2017-05-23', NULL, true, false, false, 412.00, 412.00, false, 'City 412', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.098988+00', 412.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (328, 'Civil Society Organization', 'National', 'Partner328', '', '', 'Address328', 'email328@nowhere.org', '328', '328', NULL, '', 'High', '', '2015-06-08', NULL, true, true, true, 328.00, 328.00, true, 'City 328', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.102091+00', 328.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (428, 'Civil Society Organization', 'National', 'Partner428', '', '', 'Address428', 'email428@nowhere.org', '428', '428', NULL, '', 'High', 'High Risk Assumed', '2017-11-24', '2017-10-01', true, false, false, 428.00, 428.00, false, 'City 428', '081', '235', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.105466+00', 428.00, 21266.11, 79735.50, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (322, 'Civil Society Organization', 'National', 'Partner322', '', '', 'Address322', 'email322@nowhere.org', '322', '322', NULL, '', 'Not Required', 'Micro Assessment', '2014-12-31', '2016-04-19', true, false, false, 322.00, 322.00, false, 'City 322', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.107947+00', 322.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (387, 'Government', NULL, 'Partner387', '', '', 'Address387', 'email387@nowhere.org', '387', '387', NULL, '', 'High', 'High Risk Assumed', '2016-11-07', NULL, true, false, false, 387.00, 387.00, false, 'City 387', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.110453+00', 387.00, 0.00, 1078.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (419, 'Government', NULL, 'Partner419', '', '', 'Address419', 'email419@nowhere.org', '419', '419', NULL, '', 'High', 'High Risk Assumed', '2016-03-03', NULL, true, false, false, 419.00, 419.00, false, 'City 419', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.112839+00', 419.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (391, 'Civil Society Organization', 'National', 'Partner391', '', '', 'Address391', 'email391@nowhere.org', '391', '391', NULL, '', 'Low', 'Micro Assessment', '2016-01-01', '2016-04-19', true, false, false, 391.00, 391.00, false, 'City 391', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.115244+00', 391.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (169, 'Civil Society Organization', 'National', 'Partner169', '', '', 'Address169', 'email169@nowhere.org', '169', '169', NULL, '', 'Significant', 'Micro Assessment', '2017-09-30', '2017-12-14', true, false, false, 169.00, 169.00, false, 'City 169', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.11748+00', 169.00, 107204.77, 89334.89, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (354, 'Civil Society Organization', 'National', 'Partner354', '', '', 'Address354', 'email354@nowhere.org', '354', '354', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-07-10', true, false, false, 354.00, 354.00, false, 'City 354', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.119678+00', 354.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (434, 'Civil Society Organization', 'National', 'Partner434', '', '', 'Address434', 'email434@nowhere.org', '434', '434', NULL, NULL, 'High', 'Micro Assessment', '2018-03-23', '2018-03-23', true, false, false, 434.00, 434.00, false, 'City 434', '081', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-06-02 00:02:50.051123+00', '2020-04-02 16:57:44.121854+00', 434.00, 1215.55, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (234, 'Civil Society Organization', 'International', 'Partner234', '', '', 'Address234', 'email234@nowhere.org', '234', '234', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', '2018-04-09', true, false, false, 234.00, 234.00, false, 'City 234', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.124062+00', 234.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (88, 'Civil Society Organization', 'National', 'Partner88', '', '', 'Address88', 'email88@nowhere.org', '88', '88', NULL, '', 'Low', 'Micro Assessment', '2017-08-01', '2013-07-10', true, false, false, 88.00, 88.00, false, 'City 88', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.12627+00', 88.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (104, 'Civil Society Organization', 'International', 'Partner104', '', '', 'Address104', 'email104@nowhere.org', '104', '104', NULL, '', 'High', 'High Risk Assumed', '2019-02-27', '2019-04-02', true, false, false, 104.00, 104.00, false, 'City 104', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.128634+00', 104.00, 462876.68, 636929.98, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (223, 'Civil Society Organization', 'International', 'Partner223', '', '', 'Address223', 'email223@nowhere.org', '223', '223', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', '2019-04-02', true, false, false, 223.00, 223.00, false, 'City 223', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.131103+00', 223.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (429, 'Civil Society Organization', 'National', 'Partner429', '', '', 'Address429', 'email429@nowhere.org', '429', '429', NULL, '', 'High', 'High Risk Assumed', '2017-01-21', '2017-01-21', true, false, false, 429.00, 429.00, false, 'City 429', '381', 'BP', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-04-01 00:05:29.689486+00', '2020-04-02 16:57:44.133469+00', 429.00, 59427.49, 7952.01, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (439, 'Government', NULL, 'Partner439', '', '', 'Address439', 'email439@nowhere.org', '439', '439', NULL, NULL, 'High', 'High Risk Assumed', '2018-10-16', NULL, true, false, false, 439.00, 439.00, false, 'City 439', '081', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-10-30 14:21:57.294887+00', '2020-04-02 16:57:44.135827+00', 439.00, 2241977.15, 954311.07, '', false, 24984.81, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (226, 'Civil Society Organization', 'National', 'Partner226', '', '', 'Address226', 'email226@nowhere.org', '226', '226', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 226.00, 226.00, true, 'City 226', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.138005+00', 226.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (245, 'Civil Society Organization', NULL, 'Partner245', '', '', 'Address245', 'email245@nowhere.org', '245', '245', NULL, '', NULL, NULL, NULL, NULL, true, true, true, 245.00, 245.00, true, 'City 245', '081', NULL, NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.140145+00', 245.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (317, 'Civil Society Organization', 'National', 'Partner317', '', '', 'Address317', 'email317@nowhere.org', '317', '317', NULL, '', 'High', 'High Risk Assumed', '2017-01-01', '2013-01-01', true, false, false, 317.00, 317.00, false, 'City 317', '081', '65', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.142283+00', 317.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (105, 'Civil Society Organization', 'National', 'Partner105', '', '', 'Address105', 'email105@nowhere.org', '105', '105', NULL, '', 'Medium', 'Micro Assessment', '2017-08-01', '2016-04-19', true, false, false, 105.00, 105.00, false, 'City 105', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.144666+00', 105.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (237, 'Civil Society Organization', 'International', 'Partner237', '', '', 'Address237', 'email237@nowhere.org', '237', '237', NULL, '', 'Low', 'Micro Assessment', '2018-04-23', '2019-10-08', true, false, false, 237.00, 237.00, false, 'City 237', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.146903+00', 237.00, 175632.33, 180026.69, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (348, 'Civil Society Organization', 'National', 'Partner348', '', '', 'Address348', 'email348@nowhere.org', '348', '348', NULL, '', 'Not Required', '', NULL, NULL, true, true, true, 348.00, 348.00, true, 'City 348', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.149065+00', 348.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (308, 'Government', NULL, 'Partner308', '', '', 'Address308', 'email308@nowhere.org', '308', '308', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 308.00, 308.00, true, 'City 308', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.151224+00', 308.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (351, 'Civil Society Organization', 'National', 'Partner351', '', '', 'Address351', 'email351@nowhere.org', '351', '351', NULL, '', 'Not Required', '', NULL, NULL, true, true, true, 351.00, 351.00, true, 'City 351', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.153365+00', 351.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (401, 'Civil Society Organization', 'National', 'Partner401', '', '', 'Address401', 'email401@nowhere.org', '401', '401', NULL, '', 'Low', 'Micro Assessment', '2016-01-01', '2016-04-19', true, false, false, 401.00, 401.00, false, 'City 401', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.155545+00', 401.00, 32299.97, 12844.31, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (303, 'Civil Society Organization', 'National', 'Partner303', '', '', 'Address303', 'email303@nowhere.org', '303', '303', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-07-10', true, false, false, 303.00, 303.00, false, 'City 303', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.157642+00', 303.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (385, 'Civil Society Organization', 'National', 'Partner385', '', '', 'Address385', 'email385@nowhere.org', '385', '385', NULL, '', 'High', 'High Risk Assumed', '2016-04-11', '2016-04-11', true, false, false, 385.00, 385.00, false, 'City 385', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.159683+00', 385.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (448, 'Civil Society Organization', 'National', 'Partner448', '', '', 'Address448', 'email448@nowhere.org', '448', '448', NULL, NULL, 'High', 'High Risk Assumed', '2019-09-11', '2019-09-10', true, false, false, 448.00, 448.00, false, 'City 448', '081', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-10-01 14:41:36.085102+00', '2020-04-02 16:57:44.161728+00', 448.00, 0.00, 30358.52, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (276, 'Civil Society Organization', 'National', 'Partner276', '', '', 'Address276', 'email276@nowhere.org', '276', '276', NULL, '', 'High', 'High Risk Assumed', '2014-09-30', '2014-09-30', true, false, false, 276.00, 276.00, false, 'City 276', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.164093+00', 276.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (436, 'Government', NULL, 'Partner436', '', '', 'Address436', 'email436@nowhere.org', '436', '436', NULL, NULL, 'High', 'High Risk Assumed', '2018-07-25', NULL, true, false, false, 436.00, 436.00, false, 'City 436', '081', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-08-28 13:22:09.488479+00', '2020-04-02 16:57:44.166445+00', 436.00, 71411.48, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (132, 'Government', NULL, 'Partner132', '', '', 'Address132', 'email132@nowhere.org', '132', '132', NULL, '', '', '', NULL, NULL, true, true, true, 132.00, 132.00, true, 'City 132', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.16857+00', 132.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (190, 'Civil Society Organization', 'Academic Institution', 'Partner190', '', '', 'Address190', 'email190@nowhere.org', '190', '190', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 190.00, 190.00, true, 'City 190', '081', '1364', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.170731+00', 190.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (249, 'Civil Society Organization', NULL, 'Partner249', '', '', 'Address249', 'email249@nowhere.org', '249', '249', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 249.00, 249.00, true, 'City 249', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.172878+00', 249.00, 0.00, 0.00, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (402, 'Civil Society Organization', 'National', 'Partner402', '', '', 'Address402', 'email402@nowhere.org', '402', '402', NULL, '', 'High', 'High Risk Assumed', '2017-07-06', '2017-07-06', true, false, false, 402.00, 402.00, false, 'City 402', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.17496+00', 402.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (414, 'Government', NULL, 'Partner414', '', '', 'Address414', 'email414@nowhere.org', '414', '414', NULL, '', 'High', 'High Risk Assumed', '2017-04-06', NULL, true, false, false, 414.00, 414.00, false, 'City 414', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.363915+00', 414.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (114, 'Government', NULL, 'Partner114', '', '', 'Address114', 'email114@nowhere.org', '114', '114', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 114.00, 114.00, true, 'City 114', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.449434+00', 114.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (229, '', NULL, 'Partner229', '', '', 'Address229', 'email229@nowhere.org', '229', '229', NULL, '', '', '', NULL, NULL, false, true, true, 229.00, 229.00, true, 'City 229', '', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.341813+00', 229.00, NULL, NULL, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (121, 'Government', NULL, 'Partner121', '', '', 'Address121', 'email121@nowhere.org', '121', '121', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 121.00, 121.00, true, 'City 121', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.042813+00', 121.00, 0.00, 0.00, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (2, 'Civil Society Organization', 'International', 'Partner2', '', '', 'Address2', 'email2@nowhere.org', '2', '2', NULL, '', '', '', NULL, NULL, true, true, false, 2.00, 2.00, true, 'City 2', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.344301+00', 2.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (416, 'Civil Society Organization', 'International', 'Partner416', '', '', 'Address416', 'email416@nowhere.org', '416', '416', NULL, '', 'Medium', 'Micro Assessment', '2018-07-31', '2018-04-09', true, false, false, 416.00, 416.00, false, 'City 416', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.347246+00', 416.00, 1777033.94, 569650.90, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (25, 'Civil Society Organization', 'International', 'Partner25', '', '', 'Address25', 'email25@nowhere.org', '25', '25', NULL, '', 'Low', 'Micro Assessment', '2017-08-01', '2018-04-09', true, false, false, 25.00, 25.00, false, 'City 25', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.366246+00', 25.00, 373784.85, 92716.55, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (244, 'Civil Society Organization', 'National', 'Partner244', '', '', 'Address244', 'email244@nowhere.org', '244', '244', NULL, '', 'High', 'High Risk Assumed', '2015-12-29', '2015-09-30', true, false, false, 244.00, 244.00, false, 'City 244', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.575251+00', 244.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (386, 'Civil Society Organization', 'National', 'Partner386', '', '', 'Address386', 'email386@nowhere.org', '386', '386', NULL, '', 'High', 'High Risk Assumed', '2015-12-29', '2015-12-29', true, false, false, 386.00, 386.00, false, 'City 386', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.626286+00', 386.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (188, 'Civil Society Organization', 'National', 'Partner188', '', '', 'Address188', 'email188@nowhere.org', '188', '188', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 188.00, 188.00, true, 'City 188', '081', '01146', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.801964+00', 188.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (150, 'Civil Society Organization', 'National', 'Partner150', '', '', 'Address150', 'email150@nowhere.org', '150', '150', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 150.00, 150.00, true, 'City 150', '081', '01146', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.977636+00', 150.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (145, 'Civil Society Organization', 'National', 'Partner145', '', '', 'Address145', 'email145@nowhere.org', '145', '145', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 145.00, 145.00, true, 'City 145', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.098287+00', 145.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (149, 'Civil Society Organization', 'National', 'Partner149', '', '', 'Address149', 'email149@nowhere.org', '149', '149', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 149.00, 149.00, true, 'City 149', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.103501+00', 149.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (133, 'Civil Society Organization', 'National', 'Partner133', '', '', 'Address133', 'email133@nowhere.org', '133', '133', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, false, 133.00, 133.00, true, 'City 133', '081', '01146', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.108518+00', 133.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (124, 'Government', NULL, 'Partner124', '', '', 'Address124', 'email124@nowhere.org', '124', '124', NULL, '', 'Medium', 'Micro Assessment', '2015-07-23', NULL, true, false, false, 124.00, 124.00, false, 'City 124', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.113521+00', 124.00, 253074.98, 89603.63, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (197, 'Government', NULL, 'Partner197', '', '', 'Address197', 'email197@nowhere.org', '197', '197', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 197.00, 197.00, true, 'City 197', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.932597+00', 197.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (129, 'Civil Society Organization', 'International', 'Partner129', '', '', 'Address129', 'email129@nowhere.org', '129', '129', NULL, '', 'Low', 'Micro Assessment', '2013-09-30', '2018-04-09', true, true, false, 129.00, 129.00, true, 'City 129', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.34981+00', 129.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (175, 'Civil Society Organization', 'National', 'Partner175', '', '', 'Address175', 'email175@nowhere.org', '175', '175', NULL, '', 'Low', 'Micro Assessment', '2017-08-01', '2017-08-01', true, true, true, 175.00, 175.00, true, 'City 175', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:42.352082+00', 175.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (108, 'Government', NULL, 'Partner108', '', '', 'Address108', 'email108@nowhere.org', '108', '108', NULL, '', NULL, NULL, NULL, NULL, true, true, false, 108.00, 108.00, true, 'City 108', '081', NULL, NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:43.26333+00', 108.00, 0.00, 0.00, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (440, 'UN Agency', NULL, 'Partner440', '', '', 'Address440', 'email440@nowhere.org', '440', '440', NULL, NULL, '', '', NULL, NULL, true, true, true, 440.00, 440.00, true, 'City 440', '081', '', NULL, NULL, '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2019-01-12 00:02:12.877132+00', '2020-04-02 16:57:44.177035+00', 440.00, 0.00, 0.00, '', false, NULL, NULL); -INSERT INTO [[schema]].partners_partnerorganization VALUES (415, 'Civil Society Organization', 'International', 'Partner415', '', '', 'Address415', 'email415@nowhere.org', '415', '415', NULL, '', 'Low', 'Micro Assessment', '2017-03-03', '2018-01-23', true, false, false, 415.00, 415.00, false, 'City 415', '081', '1108', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.179051+00', 415.00, 435471.99, 189976.17, '', false, 0.00, 0.00); -INSERT INTO [[schema]].partners_partnerorganization VALUES (240, 'Civil Society Organization', NULL, 'Partner240', '', '', 'Address240', 'email240@nowhere.org', '240', '240', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 240.00, 240.00, true, 'City 240', '081', '', NULL, '', '"{\"audits\": {\"completed\": 0, \"minimum_requirements\": null}, \"spot_checks\": {\"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"follow_up_required\": 0, \"minimum_requirements\": null}, \"assurance_coverage\": \"void\", \"programmatic_visits\": {\"planned\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"completed\": {\"q1\": 0, \"q2\": 0, \"q3\": 0, \"q4\": 0, \"total\": 0}, \"minimum_requirements\": null}, \"outstanding_findings\": 0}"', '2018-03-15 16:10:20.992169+00', '2020-04-02 16:57:44.18112+00', 240.00, 0.00, 0.00, '', false, 0.00, 0.00); +INSERT INTO [[schema]].partners_partnerorganization VALUES (134, 'Civil Society Organization', 'National', 'Partner134', '', '', 'Address134', 'email134@nowhere.org', '134', '134', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 134.00, 134.00, true, 'City 134', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.952035+00', 134.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (245, 'Civil Society Organization', NULL, 'Partner245', '', '', 'Address245', 'email245@nowhere.org', '245', '245', NULL, '', NULL, NULL, NULL, NULL, true, true, true, 245.00, 245.00, true, 'City 245', '081', NULL, NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.050797+00', 245.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (229, '', NULL, 'Partner229', '', '', 'Address229', 'email229@nowhere.org', '229', '229', NULL, '', '', '', NULL, NULL, false, true, true, 229.00, 229.00, true, 'City 229', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.609969+00', 229.00, NULL, NULL, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (132, 'Government', NULL, 'Partner132', '', '', 'Address132', 'email132@nowhere.org', '132', '132', NULL, '', '', '', NULL, NULL, true, true, true, 132.00, 132.00, true, 'City 132', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.650056+00', 132.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (140, 'Government', NULL, 'Partner140', '', '', 'Address140', 'email140@nowhere.org', '140', '140', NULL, '', 'High', 'High Risk Assumed', '2017-02-09', NULL, true, true, true, 140.00, 140.00, true, 'City 140', '081', '235', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.917082+00', 140.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (120, 'Government', NULL, 'Partner120', '', '', 'Address120', 'email120@nowhere.org', '120', '120', NULL, '', 'Medium', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 120.00, 120.00, false, 'City 120', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 3}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:33.035649+00', 120.00, 684523.95, 26535.55, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (367, 'Government', NULL, 'Partner367', '', '', 'Address367', 'email367@nowhere.org', '367', '367', NULL, '', 'High', 'High Risk Assumed', '2016-04-07', NULL, true, false, false, 367.00, 367.00, false, 'City 367', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.228999+00', 367.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (112, 'Government', NULL, 'Partner112', '', '', 'Address112', 'email112@nowhere.org', '112', '112', NULL, '', 'High', 'High Risk Assumed', '2018-08-14', NULL, true, false, false, 112.00, 112.00, false, 'City 112', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.31663+00', 112.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (177, 'Government', NULL, 'Partner177', '', '', 'Address177', 'email177@nowhere.org', '177', '177', NULL, '', 'Medium', 'Micro Assessment', '2015-05-31', NULL, true, false, false, 177.00, 177.00, false, 'City 177', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:29.872972+00', 177.00, 38222.89, 44202.76, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (222, 'Civil Society Organization', 'National', 'Partner222', '', '', 'Address222', 'email222@nowhere.org', '222', '222', NULL, '', 'High', 'High Risk Assumed', '2015-03-30', '2016-01-20', true, false, false, 222.00, 222.00, false, 'City 222', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:25.863192+00', 222.00, 5062.93, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (452, 'Government', NULL, 'Partner452', '', '', 'Address452', 'email452@nowhere.org', '452', '452', NULL, NULL, 'Medium', 'Micro Assessment', '2018-12-31', NULL, true, false, false, 452.00, 452.00, false, 'City 452', '081', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2019-11-12 15:01:58.132239+00', '2020-04-21 12:50:28.261298+00', 452.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (48, 'Government', NULL, 'Partner48', '', '', 'Address48', 'email48@nowhere.org', '48', '48', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 48.00, 48.00, false, 'City 48', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:32.20185+00', 48.00, 49138.18, 18869.88, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (216, 'Civil Society Organization', 'Community Based Organization', 'Partner216', '', '', 'Address216', 'email216@nowhere.org', '216', '216', NULL, '', 'High', 'Micro Assessment', '2016-03-03', '2013-01-01', true, false, false, 216.00, 216.00, false, 'City 216', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.732018+00', 216.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (146, 'Government', NULL, 'Partner146', '', '', 'Address146', 'email146@nowhere.org', '146', '146', NULL, '', 'High', '', '2014-09-30', NULL, true, true, true, 146.00, 146.00, true, 'City 146', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.351506+00', 146.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (19, 'Civil Society Organization', 'National', 'Partner19', '', '', 'Address19', 'email19@nowhere.org', '19', '19', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2014-01-01', true, true, true, 19.00, 19.00, true, 'City 19', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.70558+00', 19.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (191, 'Government', NULL, 'Partner191', '', '', 'Address191', 'email191@nowhere.org', '191', '191', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 191.00, 191.00, true, 'City 191', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.306089+00', 191.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (46, 'Government', NULL, 'Partner46', '', '', 'Address46', 'email46@nowhere.org', '46', '46', NULL, '', 'High', 'High Risk Assumed', '2016-12-15', NULL, true, false, false, 46.00, 46.00, false, 'City 46', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:30.30331+00', 46.00, 47392.31, 10239.32, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (183, 'Civil Society Organization', 'National', 'Partner183', '', '', 'Address183', 'email183@nowhere.org', '183', '183', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', '2013-07-20', true, false, false, 183.00, 183.00, false, 'City 183', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.064744+00', 183.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (147, 'Government', NULL, 'Partner147', '', '', 'Address147', 'email147@nowhere.org', '147', '147', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', NULL, true, true, true, 147.00, 147.00, true, 'City 147', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.272249+00', 147.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (280, 'Government', NULL, 'Partner280', '', '', 'Address280', 'email280@nowhere.org', '280', '280', NULL, '', 'Not Required', 'Micro Assessment', '2019-10-10', NULL, true, false, false, 280.00, 280.00, false, 'City 280', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.352533+00', 280.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (43, 'Government', NULL, 'Partner43', '', '', 'Address43', 'email43@nowhere.org', '43', '43', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 43.00, 43.00, false, 'City 43', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 3}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:31.314076+00', 43.00, 0.00, 11210.97, '', false, 145583.94, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (95, 'Civil Society Organization', 'National', 'Partner95', '', '', 'Address95', 'email95@nowhere.org', '95', '95', NULL, '', 'Medium', 'Micro Assessment', '2018-08-28', '2018-08-28', true, false, false, 95.00, 95.00, false, 'City 95', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "partial", "programmatic_visits": {"planned": {"q1": 1, "q2": 1, "q3": 1, "q4": 1, "total": 4}, "completed": {"q1": 2, "q2": 0, "q3": 0, "q4": 0, "total": 2}, "minimum_requirements": 2}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:33.945711+00', 95.00, 72822.16, 24901.63, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (184, 'Civil Society Organization', 'National', 'Partner184', '', '', 'Address184', 'email184@nowhere.org', '184', '184', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2015-08-31', true, true, true, 184.00, 184.00, true, 'City 184', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.921522+00', 184.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (407, 'Government', NULL, 'Partner407', '', '', 'Address407', 'email407@nowhere.org', '407', '407', NULL, '', 'High', 'High Risk Assumed', '2016-06-21', NULL, true, false, false, 407.00, 407.00, false, 'City 407', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.938892+00', 407.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (162, 'Civil Society Organization', 'National', 'Partner162', '', '', 'Address162', 'email162@nowhere.org', '162', '162', NULL, '', 'Low', 'Micro Assessment', '2013-09-30', '2013-07-10', true, false, false, 162.00, 162.00, false, 'City 162', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 1, "q2": 0, "q3": 0, "q4": 0, "total": 1}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.525457+00', 162.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (420, 'Government', NULL, 'Partner420', '', '', 'Address420', 'email420@nowhere.org', '420', '420', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 420.00, 420.00, false, 'City 420', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 3}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:32.760027+00', 420.00, 121848.51, 160745.13, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (156, 'Government', NULL, 'Partner156', '', '', 'Address156', 'email156@nowhere.org', '156', '156', NULL, '', 'High', 'High Risk Assumed', '2019-11-11', NULL, true, false, false, 156.00, 156.00, false, 'City 156', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.386389+00', 156.00, 0.00, 0.00, '', false, 0.00, 516.30, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (223, 'Civil Society Organization', 'International', 'Partner223', '', '', 'Address223', 'email223@nowhere.org', '223', '223', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', '2019-04-02', true, false, false, 223.00, 223.00, false, 'City 223', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.365865+00', 223.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (291, 'Government', NULL, 'Partner291', '', '', 'Address291', 'email291@nowhere.org', '291', '291', NULL, '', 'Not Required', 'Micro Assessment', '2015-12-31', NULL, true, false, false, 291.00, 291.00, false, 'City 291', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.679196+00', 291.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (80, 'Civil Society Organization', 'International', 'Partner80', '', '', 'Address80', 'email80@nowhere.org', '80', '80', NULL, '', 'Low', 'Micro Assessment', '2018-04-03', '2018-04-03', true, false, false, 80.00, 80.00, false, 'City 80', '081', '235', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:26.074154+00', 80.00, 4838.02, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (344, 'Government', NULL, 'Partner344', '', '', 'Address344', 'email344@nowhere.org', '344', '344', NULL, '', 'High', 'High Risk Assumed', '2016-01-25', NULL, true, false, false, 344.00, 344.00, false, 'City 344', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:29.274884+00', 344.00, 194746.01, 23038.22, '', false, 3919.77, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (104, 'Civil Society Organization', 'International', 'Partner104', '', '', 'Address104', 'email104@nowhere.org', '104', '104', NULL, '', 'High', 'High Risk Assumed', '2019-02-27', '2019-04-02', true, false, false, 104.00, 104.00, false, 'City 104', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:37.478274+00', 104.00, 302510.78, 97822.67, '', false, 96162.98, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (109, 'Civil Society Organization', 'National', 'Partner109', '', '', 'Address109', 'email109@nowhere.org', '109', '109', NULL, '', 'High', 'High Risk Assumed', '2019-05-16', '2019-03-18', true, false, false, 109.00, 109.00, false, 'City 109', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:36.588351+00', 109.00, 8071.49, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (83, 'Government', NULL, 'Partner83', '', '', 'Address83', 'email83@nowhere.org', '83', '83', NULL, '', 'Not Required', 'Micro Assessment', '2016-07-25', NULL, true, true, true, 83.00, 83.00, true, 'City 83', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.983151+00', 83.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (304, 'Government', NULL, 'Partner304', '', '', 'Address304', 'email304@nowhere.org', '304', '304', NULL, '', 'High', 'High Risk Assumed', '2016-12-16', NULL, true, false, false, 304.00, 304.00, false, 'City 304', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.224457+00', 304.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (175, 'Civil Society Organization', 'National', 'Partner175', '', '', 'Address175', 'email175@nowhere.org', '175', '175', NULL, '', 'Low', 'Micro Assessment', '2017-08-01', '2017-08-01', true, true, true, 175.00, 175.00, true, 'City 175', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.289217+00', 175.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (303, 'Civil Society Organization', 'National', 'Partner303', '', '', 'Address303', 'email303@nowhere.org', '303', '303', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-07-10', true, true, true, 303.00, 303.00, true, 'City 303', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.450098+00', 303.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (450, 'Civil Society Organization', 'Community Based Organization', 'Partner450', '', '', 'Address450', 'email450@nowhere.org', '450', '450', NULL, NULL, 'Not Required', 'Micro Assessment', '2019-08-27', '2019-08-26', true, false, false, 450.00, 450.00, false, 'City 450', '081', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "partial", "programmatic_visits": {"planned": {"q1": 1, "q2": 0, "q3": 0, "q4": 0, "total": 1}, "completed": {"q1": 2, "q2": 0, "q3": 0, "q4": 0, "total": 2}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2019-10-01 14:41:45.499882+00', '2020-04-21 12:50:24.351954+00', 450.00, 109222.05, 30175.43, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (267, 'Government', NULL, 'Partner267', '', '', 'Address267', 'email267@nowhere.org', '267', '267', NULL, '', 'High', 'High Risk Assumed', '2014-09-30', NULL, true, false, false, 267.00, 267.00, false, 'City 267', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.812994+00', 267.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (123, 'Civil Society Organization', 'International', 'Partner123', '', '', 'Address123', 'email123@nowhere.org', '123', '123', NULL, '', 'Low', 'Micro Assessment', '2015-12-08', '2018-04-09', true, false, false, 123.00, 123.00, false, 'City 123', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:24.81637+00', 123.00, 0.00, 83561.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (28, 'Civil Society Organization', 'National', 'Partner28', '', '', 'Address28', 'email28@nowhere.org', '28', '28', NULL, '', 'High', 'High Risk Assumed', '2019-06-26', '2019-06-26', true, false, false, 28.00, 28.00, false, 'City 28', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:25.403486+00', 28.00, 16735.12, 16850.72, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (265, 'Civil Society Organization', 'National', 'Partner265', '', '', 'Address265', 'email265@nowhere.org', '265', '265', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, true, 265.00, 265.00, true, 'City 265', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.746519+00', 265.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (351, 'Civil Society Organization', 'National', 'Partner351', '', '', 'Address351', 'email351@nowhere.org', '351', '351', NULL, '', 'Not Required', '', NULL, NULL, true, true, true, 351.00, 351.00, true, 'City 351', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.144624+00', 351.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (188, 'Civil Society Organization', 'National', 'Partner188', '', '', 'Address188', 'email188@nowhere.org', '188', '188', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 188.00, 188.00, true, 'City 188', '081', '01146', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.566013+00', 188.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (359, 'Government', NULL, 'Partner359', '', '', 'Address359', 'email359@nowhere.org', '359', '359', NULL, '', 'Not Required', 'Micro Assessment', '2015-12-31', NULL, true, true, true, 359.00, 359.00, true, 'City 359', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.651672+00', 359.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (412, 'Government', NULL, 'Partner412', '', '', 'Address412', 'email412@nowhere.org', '412', '412', NULL, '', 'Not Required', 'Micro Assessment', '2017-05-23', NULL, true, false, false, 412.00, 412.00, false, 'City 412', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:36.872019+00', 412.00, 23098.25, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (335, 'Government', NULL, 'Partner335', '', '', 'Address335', 'email335@nowhere.org', '335', '335', NULL, '', 'Not Required', 'Micro Assessment', '2019-10-07', NULL, true, false, false, 335.00, 335.00, false, 'City 335', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 1, "q2": 0, "q3": 0, "q4": 0, "total": 1}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:27.137655+00', 335.00, 0.00, 0.00, '', false, 3137.95, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (341, 'Civil Society Organization', 'National', 'Partner341', '', '', 'Address341', 'email341@nowhere.org', '341', '341', NULL, '', 'High', 'High Risk Assumed', '2016-04-23', '2016-04-23', true, true, true, 341.00, 341.00, true, 'City 341', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.74845+00', 341.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (157, 'Civil Society Organization', NULL, 'Partner157', '', '', 'Address157', 'email157@nowhere.org', '157', '157', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 157.00, 157.00, true, 'City 157', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.765626+00', 157.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (423, 'Government', NULL, 'Partner423', '', '', 'Address423', 'email423@nowhere.org', '423', '423', NULL, '', 'High', 'High Risk Assumed', '2017-04-27', NULL, true, false, false, 423.00, 423.00, false, 'City 423', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.903841+00', 423.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (396, 'Government', NULL, 'Partner396', '', '', 'Address396', 'email396@nowhere.org', '396', '396', NULL, '', 'High', 'High Risk Assumed', '2017-12-31', NULL, true, false, false, 396.00, 396.00, false, 'City 396', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:28.541309+00', 396.00, 29566.72, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (67, 'Government', NULL, 'Partner67', '', '', 'Address67', 'email67@nowhere.org', '67', '67', NULL, '', 'High', 'High Risk Assumed', '2014-09-30', NULL, true, true, true, 67.00, 67.00, true, 'City 67', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.705897+00', 67.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (210, 'Government', NULL, 'Partner210', '', '', 'Address210', 'email210@nowhere.org', '210', '210', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 210.00, 210.00, true, 'City 210', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.414447+00', 210.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (319, 'Civil Society Organization', 'National', 'Partner319', '', '', 'Address319', 'email319@nowhere.org', '319', '319', NULL, '', 'Not Required', '', NULL, NULL, true, true, true, 319.00, 319.00, true, 'City 319', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.816213+00', 319.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (69, 'Government', NULL, 'Partner69', '', '', 'Address69', 'email69@nowhere.org', '69', '69', NULL, '', 'Medium', 'Micro Assessment', '2014-10-31', NULL, true, true, true, 69.00, 69.00, true, 'City 69', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.517336+00', 69.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (165, 'Civil Society Organization', 'National', 'Partner165', '', '', 'Address165', 'email165@nowhere.org', '165', '165', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, true, 165.00, 165.00, true, 'City 165', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.176148+00', 165.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (139, 'Civil Society Organization', 'International', 'Partner139', '', '', 'Address139', 'email139@nowhere.org', '139', '139', NULL, '', 'Low', 'Micro Assessment', '2015-12-08', '2019-03-26', true, false, false, 139.00, 139.00, false, 'City 139', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "partial", "programmatic_visits": {"planned": {"q1": 0, "q2": 1, "q3": 1, "q4": 0, "total": 2}, "completed": {"q1": 1, "q2": 0, "q3": 0, "q4": 0, "total": 1}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:35.06741+00', 139.00, 95611.90, 146075.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (170, 'Civil Society Organization', 'National', 'Partner170', '', '', 'Address170', 'email170@nowhere.org', '170', '170', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, true, 170.00, 170.00, true, 'City 170', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.929939+00', 170.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (190, 'Civil Society Organization', 'Academic Institution', 'Partner190', '', '', 'Address190', 'email190@nowhere.org', '190', '190', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 190.00, 190.00, true, 'City 190', '081', '1364', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.00983+00', 190.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (376, 'Civil Society Organization', 'National', 'Partner376', '', '', 'Address376', 'email376@nowhere.org', '376', '376', NULL, '', 'High', 'High Risk Assumed', '2020-04-14', '2015-12-01', true, false, false, 376.00, 376.00, false, 'City 376', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.322578+00', 376.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (221, 'Civil Society Organization', 'National', 'Partner221', '', '', 'Address221', 'email221@nowhere.org', '221', '221', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, true, 221.00, 221.00, true, 'City 221', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.569156+00', 221.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (196, 'Government', NULL, 'Partner196', '', '', 'Address196', 'email196@nowhere.org', '196', '196', NULL, '', 'Not Required', 'Micro Assessment', '2012-01-01', NULL, true, true, true, 196.00, 196.00, true, 'City 196', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.024939+00', 196.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (176, 'Government', NULL, 'Partner176', '', '', 'Address176', 'email176@nowhere.org', '176', '176', NULL, '', 'Not Required', 'Micro Assessment', '2014-09-30', NULL, true, true, true, 176.00, 176.00, true, 'City 176', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.404151+00', 176.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (231, 'Civil Society Organization', 'National', 'Partner231', '', '', 'Address231', 'email231@nowhere.org', '231', '231', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 231.00, 231.00, true, 'City 231', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.486913+00', 231.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (447, 'Government', NULL, 'Partner447', '', '', 'Address447', 'email447@nowhere.org', '447', '447', NULL, NULL, 'High', 'High Risk Assumed', '2019-08-07', NULL, true, false, false, 447.00, 447.00, false, 'City 447', '081', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 3}, "outstanding_findings": 0}', '2019-09-14 00:04:44.669899+00', '2020-04-21 12:50:24.069366+00', 447.00, 146219.94, 328206.37, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (410, 'Government', NULL, 'Partner410', '', '', 'Address410', 'email410@nowhere.org', '410', '410', NULL, '', 'Not Required', 'Micro Assessment', '2017-01-21', NULL, true, false, false, 410.00, 410.00, false, 'City 410', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.964255+00', 410.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (79, 'Civil Society Organization', 'National', 'Partner79', '', '', 'Address79', 'email79@nowhere.org', '79', '79', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, true, 79.00, 79.00, true, 'City 79', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.559788+00', 79.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (113, 'Government', NULL, 'Partner113', '', '', 'Address113', 'email113@nowhere.org', '113', '113', NULL, '', 'Low', 'Micro Assessment', '2015-06-08', NULL, true, true, true, 113.00, 113.00, true, 'City 113', '081', '0235', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.038643+00', 113.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (263, 'Civil Society Organization', 'International', 'Partner263', '', '', 'Address263', 'email263@nowhere.org', '263', '263', NULL, '', 'Low', '', '2013-10-10', '2018-04-09', true, true, true, 263.00, 263.00, true, 'City 263', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.220449+00', 263.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (402, 'Civil Society Organization', 'National', 'Partner402', '', '', 'Address402', 'email402@nowhere.org', '402', '402', NULL, '', 'High', 'High Risk Assumed', '2017-07-06', '2017-07-06', true, false, false, 402.00, 402.00, false, 'City 402', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.669081+00', 402.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (150, 'Civil Society Organization', 'National', 'Partner150', '', '', 'Address150', 'email150@nowhere.org', '150', '150', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 150.00, 150.00, true, 'City 150', '081', '01146', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.04742+00', 150.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (135, 'Civil Society Organization', 'National', 'Partner135', '', '', 'Address135', 'email135@nowhere.org', '135', '135', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 135.00, 135.00, true, 'City 135', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.161404+00', 135.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (31, 'Civil Society Organization', 'National', 'Partner31', '', '', 'Address31', 'email31@nowhere.org', '31', '31', NULL, '', 'High', 'High Risk Assumed', '2016-04-18', '2016-04-18', true, true, true, 31.00, 31.00, true, 'City 31', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.068626+00', 31.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (405, 'Government', NULL, 'Partner405', '', '', 'Address405', 'email405@nowhere.org', '405', '405', NULL, '', 'High', 'High Risk Assumed', '2019-06-06', NULL, true, false, false, 405.00, 405.00, false, 'City 405', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 3}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:32.894911+00', 405.00, 0.00, 0.00, '', false, 25800.90, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (403, 'Civil Society Organization', 'National', 'Partner403', '', '', 'Address403', 'email403@nowhere.org', '403', '403', NULL, '', 'High', 'High Risk Assumed', '2016-08-10', '2016-06-15', true, false, false, 403.00, 403.00, false, 'City 403', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 1, "q2": 0, "q3": 0, "q4": 0, "total": 1}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:24.958462+00', 403.00, 16155.91, 10237.63, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (161, 'Civil Society Organization', 'International', 'Partner161', '', '', 'Address161', 'email161@nowhere.org', '161', '161', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', NULL, true, true, true, 161.00, 161.00, true, 'City 161', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.95116+00', 161.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (252, 'Civil Society Organization', 'National', 'Partner252', '', '', 'Address252', 'email252@nowhere.org', '252', '252', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 252.00, 252.00, true, 'City 252', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.968582+00', 252.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (364, 'Civil Society Organization', 'National', 'Partner364', '', '', 'Address364', 'email364@nowhere.org', '364', '364', NULL, '', 'Medium', 'Micro Assessment', '2015-05-30', '2015-05-30', true, true, true, 364.00, 364.00, true, 'City 364', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.9865+00', 364.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (349, 'Civil Society Organization', 'National', 'Partner349', '', '', 'Address349', 'email349@nowhere.org', '349', '349', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, true, 349.00, 349.00, true, 'City 349', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.280546+00', 349.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (65, 'Government', NULL, 'Partner65', '', '', 'Address65', 'email65@nowhere.org', '65', '65', NULL, '', 'High', 'Micro Assessment', '2015-12-31', NULL, true, false, false, 65.00, 65.00, false, 'City 65', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.633446+00', 65.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (348, 'Civil Society Organization', 'National', 'Partner348', '', '', 'Address348', 'email348@nowhere.org', '348', '348', NULL, '', 'Not Required', '', NULL, NULL, true, true, true, 348.00, 348.00, true, 'City 348', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.17253+00', 348.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (141, 'Civil Society Organization', 'National', 'Partner141', '', '', 'Address141', 'email141@nowhere.org', '141', '141', NULL, '', 'High', 'High Risk Assumed', '2016-10-26', '2016-03-01', true, false, false, 141.00, 141.00, false, 'City 141', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.343872+00', 141.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (389, 'Civil Society Organization', 'National', 'Partner389', '', '', 'Address389', 'email389@nowhere.org', '389', '389', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, true, 389.00, 389.00, true, 'City 389', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.395365+00', 389.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (193, 'Civil Society Organization', NULL, 'Partner193', '', '', 'Address193', 'email193@nowhere.org', '193', '193', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 193.00, 193.00, true, 'City 193', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.994555+00', 193.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (76, 'Government', NULL, 'Partner76', '', '', 'Address76', 'email76@nowhere.org', '76', '76', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 76.00, 76.00, false, 'City 76', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.616147+00', 76.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (171, 'Government', NULL, 'Partner171', '', '', 'Address171', 'email171@nowhere.org', '171', '171', NULL, '', 'High', '', '2015-04-09', NULL, true, true, true, 171.00, 171.00, true, 'City 171', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.076228+00', 171.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (50, 'Government', NULL, 'Partner50', '', '', 'Address50', 'email50@nowhere.org', '50', '50', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 50.00, 50.00, true, 'City 50', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.087729+00', 50.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (290, 'Civil Society Organization', 'National', 'Partner290', '', '', 'Address290', 'email290@nowhere.org', '290', '290', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, true, 290.00, 290.00, true, 'City 290', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.215796+00', 290.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (34, 'Government', NULL, 'Partner34', '', '', 'Address34', 'email34@nowhere.org', '34', '34', NULL, '', 'Not Required', 'Micro Assessment', '2017-07-24', NULL, true, true, true, 34.00, 34.00, true, 'City 34', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.501181+00', 34.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (289, 'Civil Society Organization', 'National', 'Partner289', '', '', 'Address289', 'email289@nowhere.org', '289', '289', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 289.00, 289.00, true, 'City 289', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.960129+00', 289.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (386, 'Civil Society Organization', 'National', 'Partner386', '', '', 'Address386', 'email386@nowhere.org', '386', '386', NULL, '', 'High', 'High Risk Assumed', '2015-12-29', '2015-12-29', true, true, true, 386.00, 386.00, true, 'City 386', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.257761+00', 386.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (66, 'Government', NULL, 'Partner66', '', '', 'Address66', 'email66@nowhere.org', '66', '66', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 66.00, 66.00, true, 'City 66', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.293297+00', 66.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (16, 'Civil Society Organization', 'National', 'Partner16', '', '', 'Address16', 'email16@nowhere.org', '16', '16', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, true, 16.00, 16.00, true, 'City 16', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.099071+00', 16.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (368, 'Civil Society Organization', 'National', 'Partner368', '', '', 'Address368', 'email368@nowhere.org', '368', '368', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 368.00, 368.00, true, 'City 368', '081', '0235', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.474389+00', 368.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (312, 'Civil Society Organization', 'National', 'Partner312', '', '', 'Address312', 'email312@nowhere.org', '312', '312', NULL, '', 'Not Required', 'Micro Assessment', '2015-12-31', '2016-01-28', true, true, true, 312.00, 312.00, true, 'City 312', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.635823+00', 312.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (277, 'Civil Society Organization', 'National', 'Partner277', '', '', 'Address277', 'email277@nowhere.org', '277', '277', NULL, '', 'High', 'High Risk Assumed', '2019-05-16', '2019-03-26', true, false, false, 277.00, 277.00, false, 'City 277', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:34.103462+00', 277.00, 8071.49, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (24, 'Government', NULL, 'Partner24', '', '', 'Address24', 'email24@nowhere.org', '24', '24', NULL, '', 'Not Required', 'Micro Assessment', '2016-07-25', NULL, true, true, true, 24.00, 24.00, true, 'City 24', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.492396+00', 24.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (275, 'Civil Society Organization', NULL, 'Partner275', '', '', 'Address275', 'email275@nowhere.org', '275', '275', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 275.00, 275.00, true, 'City 275', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.159375+00', 275.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (343, 'Civil Society Organization', 'National', 'Partner343', '', '', 'Address343', 'email343@nowhere.org', '343', '343', NULL, '', 'High', 'High Risk Assumed', '2015-06-30', '2015-06-30', true, true, true, 343.00, 343.00, true, 'City 343', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.860211+00', 343.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (138, 'Government', NULL, 'Partner138', '', '', 'Address138', 'email138@nowhere.org', '138', '138', NULL, '', 'Medium', 'Micro Assessment', '2016-07-14', NULL, true, false, false, 138.00, 138.00, false, 'City 138', '069', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.381968+00', 138.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (97, 'Civil Society Organization', 'National', 'Partner97', '', '', 'Address97', 'email97@nowhere.org', '97', '97', NULL, '', 'Low', '', '2014-09-30', NULL, true, true, true, 97.00, 97.00, true, 'City 97', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.427937+00', 97.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (57, 'Civil Society Organization', 'National', 'Partner57', '', '', 'Address57', 'email57@nowhere.org', '57', '57', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 57.00, 57.00, true, 'City 57', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.547489+00', 57.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (251, 'Civil Society Organization', 'National', 'Partner251', '', '', 'Address251', 'email251@nowhere.org', '251', '251', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 251.00, 251.00, true, 'City 251', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.162937+00', 251.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (38, 'Government', NULL, 'Partner38', '', '', 'Address38', 'email38@nowhere.org', '38', '38', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 38.00, 38.00, true, 'City 38', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.065242+00', 38.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (374, 'Civil Society Organization', 'National', 'Partner374', '', '', 'Address374', 'email374@nowhere.org', '374', '374', NULL, '', 'High', 'High Risk Assumed', '2016-04-07', '2016-04-07', true, true, true, 374.00, 374.00, true, 'City 374', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.464424+00', 374.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (380, 'Civil Society Organization', 'Community Based Organization', 'Partner380', '', '', 'Address380', 'email380@nowhere.org', '380', '380', NULL, '', 'High', 'High Risk Assumed', '2016-11-11', '2013-10-07', true, true, true, 380.00, 380.00, true, 'City 380', '081', '0235', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.493057+00', 380.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (413, 'Civil Society Organization', 'National', 'Partner413', '', '', 'Address413', 'email413@nowhere.org', '413', '413', NULL, '', 'High', 'Micro Assessment', '2017-05-19', '2017-05-15', true, false, false, 413.00, 413.00, false, 'City 413', '081', 'BP 1195', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.807548+00', 413.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (143, 'Civil Society Organization', 'National', 'Partner143', '', '', 'Address143', 'email143@nowhere.org', '143', '143', NULL, '', 'High', 'High Risk Assumed', '2013-10-29', '2013-09-30', true, true, true, 143.00, 143.00, true, 'City 143', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.196468+00', 143.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (318, 'Government', NULL, 'Partner318', '', '', 'Address318', 'email318@nowhere.org', '318', '318', NULL, '', 'Not Required', 'Micro Assessment', '2017-08-10', NULL, true, true, true, 318.00, 318.00, true, 'City 318', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.508711+00', 318.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (103, 'Civil Society Organization', 'National', 'Partner103', '', '', 'Address103', 'email103@nowhere.org', '103', '103', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2015-08-31', true, true, true, 103.00, 103.00, true, 'City 103', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.008944+00', 103.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (243, 'Civil Society Organization', NULL, 'Partner243', '', '', 'Address243', 'email243@nowhere.org', '243', '243', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 243.00, 243.00, true, 'City 243', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.041802+00', 243.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (300, 'Civil Society Organization', 'National', 'Partner300', '', '', 'Address300', 'email300@nowhere.org', '300', '300', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 300.00, 300.00, true, 'City 300', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.420678+00', 300.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (316, 'Government', NULL, 'Partner316', '', '', 'Address316', 'email316@nowhere.org', '316', '316', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 316.00, 316.00, true, 'City 316', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.814884+00', 316.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (212, 'Civil Society Organization', 'National', 'Partner212', '', '', 'Address212', 'email212@nowhere.org', '212', '212', NULL, '', 'Not Required', 'Micro Assessment', '2018-04-24', '2018-04-24', true, true, true, 212.00, 212.00, true, 'City 212', '081', 'BP. 07', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.496141+00', 212.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (4, 'Civil Society Organization', 'International', 'Partner4', '', '', 'Address4', 'email4@nowhere.org', '4', '4', NULL, '', 'Not Required', 'Micro Assessment', NULL, '2018-04-09', true, true, true, 4.00, 4.00, true, 'City 4', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.529849+00', 4.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (211, 'Civil Society Organization', 'National', 'Partner211', '', '', 'Address211', 'email211@nowhere.org', '211', '211', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 211.00, 211.00, true, 'City 211', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.721787+00', 211.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (336, 'Government', NULL, 'Partner336', '', '', 'Address336', 'email336@nowhere.org', '336', '336', NULL, '', 'High', 'High Risk Assumed', '2015-12-29', NULL, true, true, true, 336.00, 336.00, true, 'City 336', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.521425+00', 336.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (443, 'Government', NULL, 'Partner443', '', '', 'Address443', 'email443@nowhere.org', '443', '443', NULL, NULL, 'High', 'High Risk Assumed', '2018-06-14', NULL, true, false, false, 443.00, 443.00, false, 'City 443', '081', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2019-04-04 00:04:57.534627+00', '2020-04-21 12:50:33.793293+00', 443.00, 9955.45, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (288, 'Government', NULL, 'Partner288', '', '', 'Address288', 'email288@nowhere.org', '288', '288', NULL, '', 'Low', 'Micro Assessment', '2014-10-31', NULL, true, true, true, 288.00, 288.00, true, 'City 288', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.290408+00', 288.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (385, 'Civil Society Organization', 'National', 'Partner385', '', '', 'Address385', 'email385@nowhere.org', '385', '385', NULL, '', 'High', 'High Risk Assumed', '2016-04-11', '2016-04-11', true, true, true, 385.00, 385.00, true, 'City 385', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.456361+00', 385.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (314, 'Civil Society Organization', 'National', 'Partner314', '', '', 'Address314', 'email314@nowhere.org', '314', '314', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-07-10', true, true, true, 314.00, 314.00, true, 'City 314', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.706206+00', 314.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (84, 'Civil Society Organization', 'National', 'Partner84', '', '', 'Address84', 'email84@nowhere.org', '84', '84', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 84.00, 84.00, true, 'City 84', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.449453+00', 84.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (205, 'Civil Society Organization', 'National', 'Partner205', '', '', 'Address205', 'email205@nowhere.org', '205', '205', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 205.00, 205.00, true, 'City 205', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.908201+00', 205.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (73, 'Government', NULL, 'Partner73', '', '', 'Address73', 'email73@nowhere.org', '73', '73', NULL, '', 'High', 'High Risk Assumed', '2015-05-30', NULL, true, false, false, 73.00, 73.00, false, 'City 73', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.689271+00', 73.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (305, 'Civil Society Organization', 'National', 'Partner305', '', '', 'Address305', 'email305@nowhere.org', '305', '305', NULL, '', 'Significant', 'Micro Assessment', '2013-09-15', '2013-09-15', true, true, true, 305.00, 305.00, true, 'City 305', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.779911+00', 305.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (93, 'Government', NULL, 'Partner93', '', '', 'Address93', 'email93@nowhere.org', '93', '93', NULL, '', 'High', 'High Risk Assumed', '2014-09-30', NULL, true, true, true, 93.00, 93.00, true, 'City 93', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.178525+00', 93.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (266, 'Government', NULL, 'Partner266', '', '', 'Address266', 'email266@nowhere.org', '266', '266', NULL, '', 'Medium', 'Micro Assessment', '2015-10-08', NULL, true, false, false, 266.00, 266.00, false, 'City 266', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "partial", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 1, "q2": 0, "q3": 0, "q4": 0, "total": 1}, "minimum_requirements": 2}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:30.857391+00', 266.00, 23275.83, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (357, 'Civil Society Organization', 'International', 'Partner357', '', '', 'Address357', 'email357@nowhere.org', '357', '357', NULL, '', 'Low', 'Low Risk Assumed', '2018-01-22', '2015-12-14', true, false, false, 357.00, 357.00, false, 'City 357', '072', 'H3B 4L2', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.557385+00', 357.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (421, 'Civil Society Organization', 'National', 'Partner421', '', '', 'Address421', 'email421@nowhere.org', '421', '421', NULL, '', 'High', 'High Risk Assumed', '2017-03-03', '2017-03-01', true, false, false, 421.00, 421.00, false, 'City 421', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.60383+00', 421.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (355, 'Civil Society Organization', 'National', 'Partner355', '', '', 'Address355', 'email355@nowhere.org', '355', '355', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, true, 355.00, 355.00, true, 'City 355', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.230459+00', 355.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (309, 'Civil Society Organization', 'National', 'Partner309', '', '', 'Address309', 'email309@nowhere.org', '309', '309', NULL, '', 'High', 'High Risk Assumed', '2015-06-30', '2015-06-30', true, true, true, 309.00, 309.00, true, 'City 309', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.221858+00', 309.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (371, 'Government', NULL, 'Partner371', '', '', 'Address371', 'email371@nowhere.org', '371', '371', NULL, '', 'High', 'High Risk Assumed', '2016-04-07', NULL, true, true, true, 371.00, 371.00, true, 'City 371', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.248522+00', 371.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (378, 'Government', NULL, 'Partner378', '', '', 'Address378', 'email378@nowhere.org', '378', '378', NULL, '', 'High', 'High Risk Assumed', '2016-04-07', NULL, true, false, false, 378.00, 378.00, false, 'City 378', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.335416+00', 378.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (426, 'Civil Society Organization', 'National', 'Partner426', '', '', 'Address426', 'email426@nowhere.org', '426', '426', NULL, '', 'High', 'High Risk Assumed', '2017-11-23', '2017-11-23', true, false, false, 426.00, 426.00, false, 'City 426', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.696573+00', 426.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (60, 'Government', NULL, 'Partner60', '', '', 'Address60', 'email60@nowhere.org', '60', '60', NULL, '', 'High', 'High Risk Assumed', '2016-10-17', NULL, true, false, false, 60.00, 60.00, false, 'City 60', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.529389+00', 60.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (17, 'Civil Society Organization', 'National', 'Partner17', '', '', 'Address17', 'email17@nowhere.org', '17', '17', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 17.00, 17.00, true, 'City 17', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.86896+00', 17.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (388, 'Civil Society Organization', 'National', 'Partner388', '', '', 'Address388', 'email388@nowhere.org', '388', '388', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2016-04-20', true, true, true, 388.00, 388.00, true, 'City 388', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.238742+00', 388.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (228, 'Civil Society Organization', 'National', 'Partner228', '', '', 'Address228', 'email228@nowhere.org', '228', '228', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 228.00, 228.00, true, 'City 228', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.625036+00', 228.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (68, 'Government', NULL, 'Partner68', '', '', 'Address68', 'email68@nowhere.org', '68', '68', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 68.00, 68.00, true, 'City 68', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.04755+00', 68.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (444, 'Civil Society Organization', 'National', 'Partner444', '', '', 'Address444', 'email444@nowhere.org', '444', '444', NULL, NULL, 'High', 'High Risk Assumed', '2019-05-14', '2019-04-24', true, false, false, 444.00, 444.00, false, 'City 444', '081', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 1, "q2": 0, "q3": 0, "q4": 0, "total": 1}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2019-05-24 00:03:59.21872+00', '2020-04-21 12:50:26.250966+00', 444.00, 37127.84, 31480.85, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (92, 'Government', NULL, 'Partner92', '', '', 'Address92', 'email92@nowhere.org', '92', '92', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 92.00, 92.00, true, 'City 92', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.934367+00', 92.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (82, 'Civil Society Organization', 'National', 'Partner82', '', '', 'Address82', 'email82@nowhere.org', '82', '82', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 82.00, 82.00, true, 'City 82', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.017219+00', 82.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (12, 'Civil Society Organization', 'International', 'Partner12', '', '', 'Address12', 'email12@nowhere.org', '12', '12', NULL, '', '', '', NULL, NULL, true, true, true, 12.00, 12.00, true, 'City 12', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.245897+00', 12.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (342, 'Civil Society Organization', 'National', 'Partner342', '', '', 'Address342', 'email342@nowhere.org', '342', '342', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-07-10', true, true, true, 342.00, 342.00, true, 'City 342', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.938432+00', 342.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (383, 'Civil Society Organization', 'National', 'Partner383', '', '', 'Address383', 'email383@nowhere.org', '383', '383', NULL, '', 'Significant', 'Micro Assessment', '2016-02-01', '2016-02-29', true, true, true, 383.00, 383.00, true, 'City 383', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.9726+00', 383.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (281, 'Civil Society Organization', 'National', 'Partner281', '', '', 'Address281', 'email281@nowhere.org', '281', '281', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 281.00, 281.00, true, 'City 281', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.989156+00', 281.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (307, 'Government', NULL, 'Partner307', '', '', 'Address307', 'email307@nowhere.org', '307', '307', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 307.00, 307.00, true, 'City 307', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.877761+00', 307.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (58, 'Civil Society Organization', 'Community Based Organization', 'Partner58', '', '', 'Address58', 'email58@nowhere.org', '58', '58', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 58.00, 58.00, true, 'City 58', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.773858+00', 58.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (286, 'Government', NULL, 'Partner286', '', '', 'Address286', 'email286@nowhere.org', '286', '286', NULL, '', 'High', 'High Risk Assumed', '2013-10-10', NULL, true, true, true, 286.00, 286.00, true, 'City 286', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.892707+00', 286.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (2, 'Civil Society Organization', 'International', 'Partner2', '', '', 'Address2', 'email2@nowhere.org', '2', '2', NULL, '', '', '', NULL, NULL, true, true, true, 2.00, 2.00, true, 'City 2', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.298141+00', 2.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (167, 'Government', NULL, 'Partner167', '', '', 'Address167', 'email167@nowhere.org', '167', '167', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', NULL, true, true, true, 167.00, 167.00, true, 'City 167', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.823233+00', 167.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (61, 'Government', NULL, 'Partner61', '', '', 'Address61', 'email61@nowhere.org', '61', '61', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 61.00, 61.00, true, 'City 61', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.115945+00', 61.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (436, 'Government', NULL, 'Partner436', '', '', 'Address436', 'email436@nowhere.org', '436', '436', NULL, NULL, 'High', 'High Risk Assumed', '2018-07-25', NULL, true, false, false, 436.00, 436.00, false, 'City 436', '081', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-08-28 13:22:09.488479+00', '2020-04-21 01:15:07.114593+00', 436.00, -708.14, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (96, 'Government', NULL, 'Partner96', '', '', 'Address96', 'email96@nowhere.org', '96', '96', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 96.00, 96.00, true, 'City 96', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.187301+00', 96.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (454, 'Government', NULL, 'Partner454', '', '', 'Address454', 'email454@nowhere.org', '454', '454', NULL, NULL, 'High', 'High Risk Assumed', '2019-10-25', NULL, true, false, false, 454.00, 454.00, false, 'City 454', '081', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2019-11-12 15:02:08.343722+00', '2020-04-21 12:50:28.115383+00', 454.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (285, 'Civil Society Organization', 'International', 'Partner285', '', '', 'Address285', 'email285@nowhere.org', '285', '285', NULL, '', 'Low', 'Micro Assessment', '2013-09-30', '2019-03-19', true, true, true, 285.00, 285.00, true, 'City 285', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.512901+00', 285.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (240, 'Civil Society Organization', NULL, 'Partner240', '', '', 'Address240', 'email240@nowhere.org', '240', '240', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 240.00, 240.00, true, 'City 240', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.077005+00', 240.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (328, 'Civil Society Organization', 'National', 'Partner328', '', '', 'Address328', 'email328@nowhere.org', '328', '328', NULL, '', 'High', '', '2015-06-08', NULL, true, true, true, 328.00, 328.00, true, 'City 328', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.895253+00', 328.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (91, 'Government', NULL, 'Partner91', '', '', 'Address91', 'email91@nowhere.org', '91', '91', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 91.00, 91.00, true, 'City 91', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.410372+00', 91.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (442, 'Government', NULL, 'Partner442', '', '', 'Address442', 'email442@nowhere.org', '442', '442', NULL, NULL, 'High', 'High Risk Assumed', '2019-02-28', NULL, true, false, false, 442.00, 442.00, false, 'City 442', '081', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2019-03-15 13:43:06.061872+00', '2020-04-21 01:15:04.744793+00', 442.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (131, 'Government', NULL, 'Partner131', '', '', 'Address131', 'email131@nowhere.org', '131', '131', NULL, '', 'Medium', 'Micro Assessment', '2016-07-14', NULL, true, false, false, 131.00, 131.00, false, 'City 131', '069', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.804377+00', 131.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (226, 'Civil Society Organization', 'National', 'Partner226', '', '', 'Address226', 'email226@nowhere.org', '226', '226', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 226.00, 226.00, true, 'City 226', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.594328+00', 226.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (324, 'Civil Society Organization', 'National', 'Partner324', '', '', 'Address324', 'email324@nowhere.org', '324', '324', NULL, '', 'Not Required', '', NULL, NULL, true, true, true, 324.00, 324.00, true, 'City 324', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.929379+00', 324.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (192, 'Government', NULL, 'Partner192', '', '', 'Address192', 'email192@nowhere.org', '192', '192', NULL, '', 'Not Required', 'Micro Assessment', '2016-07-25', NULL, true, true, true, 192.00, 192.00, true, 'City 192', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.547247+00', 192.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (130, 'Civil Society Organization', 'International', 'Partner130', '', '', 'Address130', 'email130@nowhere.org', '130', '130', NULL, '', 'Low', 'Micro Assessment', '2017-08-01', '2018-07-15', true, false, false, 130.00, 130.00, false, 'City 130', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 1, "q3": 0, "q4": 0, "total": 1}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:23.763692+00', 130.00, 563110.62, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (431, 'Civil Society Organization', 'International', 'Partner431', '', '', 'Address431', 'email431@nowhere.org', '431', '431', NULL, '', 'Medium', 'Micro Assessment', '2019-08-30', '2018-03-06', true, false, false, 431.00, 431.00, false, 'City 431', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-04-25 14:14:27.430202+00', '2020-04-21 12:50:35.961999+00', 431.00, 285982.11, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (247, 'Civil Society Organization', 'National', 'Partner247', '', '', 'Address247', 'email247@nowhere.org', '247', '247', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, true, 247.00, 247.00, true, 'City 247', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.005925+00', 247.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (253, 'Government', NULL, 'Partner253', '', '', 'Address253', 'email253@nowhere.org', '253', '253', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 253.00, 253.00, true, 'City 253', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.981412+00', 253.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (430, 'Government', NULL, 'Partner430', '', '', 'Address430', 'email430@nowhere.org', '430', '430', NULL, '', 'High', 'High Risk Assumed', '2018-03-09', NULL, true, false, false, 430.00, 430.00, false, 'City 430', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-04-12 00:06:07.095026+00', '2020-04-21 12:50:35.802689+00', 430.00, 122951.03, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (248, 'Civil Society Organization', NULL, 'Partner248', '', '', 'Address248', 'email248@nowhere.org', '248', '248', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 248.00, 248.00, true, 'City 248', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.014718+00', 248.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (178, 'Civil Society Organization', 'International', 'Partner178', '', '', 'Address178', 'email178@nowhere.org', '178', '178', NULL, '', 'Low', 'Micro Assessment', '2014-09-30', '2019-03-19', true, true, true, 178.00, 178.00, true, 'City 178', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.193277+00', 178.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (365, 'Civil Society Organization', 'International', 'Partner365', '', '', 'Address365', 'email365@nowhere.org', '365', '365', NULL, '', 'High', 'High Risk Assumed', '2016-03-04', '2015-12-30', true, true, true, 365.00, 365.00, true, 'City 365', '276', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.677705+00', 365.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (152, 'Civil Society Organization', 'Community Based Organization', 'Partner152', '', '', 'Address152', 'email152@nowhere.org', '152', '152', NULL, '', 'High', 'High Risk Assumed', '2019-02-08', '2018-12-31', true, false, false, 152.00, 152.00, false, 'City 152', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.432364+00', 152.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (375, 'Civil Society Organization', 'National', 'Partner375', '', '', 'Address375', 'email375@nowhere.org', '375', '375', NULL, '', 'High', 'High Risk Assumed', '2016-04-07', '2016-04-07', true, true, true, 375.00, 375.00, true, 'City 375', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.438639+00', 375.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (224, 'Government', NULL, 'Partner224', '', '', 'Address224', 'email224@nowhere.org', '224', '224', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 224.00, 224.00, true, 'City 224', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.555855+00', 224.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (254, 'Civil Society Organization', 'National', 'Partner254', '', '', 'Address254', 'email254@nowhere.org', '254', '254', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 254.00, 254.00, true, 'City 254', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.737965+00', 254.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (145, 'Civil Society Organization', 'National', 'Partner145', '', '', 'Address145', 'email145@nowhere.org', '145', '145', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 145.00, 145.00, true, 'City 145', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.035776+00', 145.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (127, 'Civil Society Organization', 'National', 'Partner127', '', '', 'Address127', 'email127@nowhere.org', '127', '127', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 127.00, 127.00, true, 'City 127', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.194269+00', 127.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (218, 'Civil Society Organization', NULL, 'Partner218', '', '', 'Address218', 'email218@nowhere.org', '218', '218', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 218.00, 218.00, true, 'City 218', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.789845+00', 218.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (411, 'Government', NULL, 'Partner411', '', '', 'Address411', 'email411@nowhere.org', '411', '411', NULL, '', 'High', 'High Risk Assumed', '2017-01-12', NULL, true, false, false, 411.00, 411.00, false, 'City 411', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.123+00', 411.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (63, 'Government', NULL, 'Partner63', '', '', 'Address63', 'email63@nowhere.org', '63', '63', NULL, '', 'High', 'High Risk Assumed', '2016-12-16', NULL, true, true, true, 63.00, 63.00, true, 'City 63', '081', '1146', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.220759+00', 63.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (56, 'Civil Society Organization', 'National', 'Partner56', '', '', 'Address56', 'email56@nowhere.org', '56', '56', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 56.00, 56.00, true, 'City 56', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.08552+00', 56.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (295, 'Civil Society Organization', 'National', 'Partner295', '', '', 'Address295', 'email295@nowhere.org', '295', '295', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 295.00, 295.00, true, 'City 295', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.344291+00', 295.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (441, 'UN Agency', NULL, 'Partner441', '', '', 'Address441', 'email441@nowhere.org', '441', '441', NULL, NULL, '', '', NULL, NULL, true, true, true, 441.00, 441.00, true, 'City 441', '081', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2019-01-12 00:02:19.870977+00', '2020-04-21 01:10:52.952728+00', 441.00, 0.00, 0.00, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (408, 'Civil Society Organization', 'National', 'Partner408', '', '', 'Address408', 'email408@nowhere.org', '408', '408', NULL, '', 'Low', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, true, 408.00, 408.00, true, 'City 408', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.361195+00', 408.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (427, 'Civil Society Organization', 'National', 'Partner427', '', '', 'Address427', 'email427@nowhere.org', '427', '427', NULL, '', 'High', 'High Risk Assumed', '2017-11-23', '2017-11-14', true, false, false, 427.00, 427.00, false, 'City 427', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:25.718634+00', 427.00, 16856.75, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (220, 'Civil Society Organization', 'National', 'Partner220', '', '', 'Address220', 'email220@nowhere.org', '220', '220', NULL, '', 'High', 'High Risk Assumed', '2017-10-24', '2016-05-18', true, false, false, 220.00, 220.00, false, 'City 220', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 1, "q2": 0, "q3": 0, "q4": 0, "total": 1}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:25.559762+00', 220.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (261, 'Civil Society Organization', 'National', 'Partner261', '', '', 'Address261', 'email261@nowhere.org', '261', '261', NULL, '', 'Medium', 'Micro Assessment', '2017-12-31', '2017-12-31', true, false, false, 261.00, 261.00, false, 'City 261', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:24.497062+00', 261.00, 0.00, 0.00, '', false, 78269.50, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (52, 'Civil Society Organization', 'Community Based Organization', 'Partner52', '', '', 'Address52', 'email52@nowhere.org', '52', '52', NULL, '', '', '', NULL, NULL, true, true, true, 52.00, 52.00, true, 'City 52', '081', '-235', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.765188+00', 52.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (110, 'Civil Society Organization', 'Community Based Organization', 'Partner110', '', '', 'Address110', 'email110@nowhere.org', '110', '110', NULL, '', '', '', NULL, NULL, true, true, true, 110.00, 110.00, true, 'City 110', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.538068+00', 110.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (433, 'Government', NULL, 'Partner433', '', '', 'Address433', 'email433@nowhere.org', '433', '433', NULL, NULL, 'High', 'High Risk Assumed', '2018-03-20', NULL, true, false, false, 433.00, 433.00, false, 'City 433', '081', '235', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 1, "q2": 0, "q3": 0, "q4": 0, "total": 1}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-05-17 16:22:25.912153+00', '2020-04-21 01:15:07.13172+00', 433.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (419, 'Government', NULL, 'Partner419', '', '', 'Address419', 'email419@nowhere.org', '419', '419', NULL, '', 'High', 'High Risk Assumed', '2016-03-03', NULL, true, false, false, 419.00, 419.00, false, 'City 419', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.105964+00', 419.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (47, 'Government', NULL, 'Partner47', '', '', 'Address47', 'email47@nowhere.org', '47', '47', NULL, '', 'Medium', 'Micro Assessment', '2015-08-01', NULL, true, false, false, 47.00, 47.00, false, 'City 47', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:29.730986+00', 47.00, 51640.73, 41238.19, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (381, 'Civil Society Organization', 'National', 'Partner381', '', '', 'Address381', 'email381@nowhere.org', '381', '381', NULL, '', 'High', 'High Risk Assumed', '2016-04-07', '2016-04-07', true, true, true, 381.00, 381.00, true, 'City 381', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.50918+00', 381.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (149, 'Civil Society Organization', 'National', 'Partner149', '', '', 'Address149', 'email149@nowhere.org', '149', '149', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 149.00, 149.00, true, 'City 149', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.578246+00', 149.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (451, 'Government', NULL, 'Partner451', '', '', 'Address451', 'email451@nowhere.org', '451', '451', NULL, NULL, 'Medium', 'Micro Assessment', '2017-11-10', NULL, true, false, false, 451.00, 451.00, false, 'City 451', '081', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 2}, "outstanding_findings": 0}', '2019-10-08 00:10:59.850314+00', '2020-04-21 12:50:33.336258+00', 451.00, 117619.65, 0.00, '', false, 41710.65, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (14, 'Civil Society Organization', 'National', 'Partner14', '', '', 'Address14', 'email14@nowhere.org', '14', '14', NULL, '', 'High', 'Micro Assessment', '2017-01-12', '2017-01-12', true, false, false, 14.00, 14.00, false, 'City 14', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.271313+00', 14.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (26, 'Civil Society Organization', 'International', 'Partner26', '', '', 'Address26', 'email26@nowhere.org', '26', '26', NULL, '', '', '', NULL, NULL, true, true, true, 26.00, 26.00, true, 'City 26', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.996473+00', 26.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (142, 'Civil Society Organization', 'National', 'Partner142', '', '', 'Address142', 'email142@nowhere.org', '142', '142', NULL, '', '', '', NULL, NULL, true, true, true, 142.00, 142.00, true, 'City 142', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.029927+00', 142.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (238, 'Government', NULL, 'Partner238', '', '', 'Address238', 'email238@nowhere.org', '238', '238', NULL, '', 'High', 'High Risk Assumed', '2017-10-04', NULL, true, false, false, 238.00, 238.00, false, 'City 238', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:32.614386+00', 238.00, 37774.20, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (144, 'Civil Society Organization', 'National', 'Partner144', '', '', 'Address144', 'email144@nowhere.org', '144', '144', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 144.00, 144.00, true, 'City 144', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.081123+00', 144.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (237, 'Civil Society Organization', 'International', 'Partner237', '', '', 'Address237', 'email237@nowhere.org', '237', '237', NULL, '', 'Low', 'Micro Assessment', '2018-04-23', '2019-10-08', true, false, false, 237.00, 237.00, false, 'City 237', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "partial", "programmatic_visits": {"planned": {"q1": 0, "q2": 1, "q3": 1, "q4": 1, "total": 3}, "completed": {"q1": 3, "q2": 0, "q3": 0, "q4": 0, "total": 3}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:37.914345+00', 237.00, 200673.43, 140116.37, '', false, 16877.71, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (445, 'Civil Society Organization', 'Community Based Organization', 'Partner445', '', '', 'Address445', 'email445@nowhere.org', '445', '445', NULL, NULL, 'High', 'High Risk Assumed', '2019-06-04', '2019-05-20', true, false, false, 445.00, 445.00, false, 'City 445', '081', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2019-06-20 00:08:18.705259+00', '2020-04-21 12:50:26.986334+00', 445.00, 62015.66, 50636.84, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (166, 'Civil Society Organization', 'International', 'Partner166', '', '', 'Address166', 'email166@nowhere.org', '166', '166', NULL, '', 'Low', 'Micro Assessment', '2013-09-30', '2019-06-28', true, true, true, 166.00, 166.00, true, 'City 166', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.943379+00', 166.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (168, 'Civil Society Organization', 'National', 'Partner168', '', '', 'Address168', 'email168@nowhere.org', '168', '168', NULL, '', 'Significant', 'Micro Assessment', '2014-10-31', '2013-07-10', true, true, true, 168.00, 168.00, true, 'City 168', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.393788+00', 168.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (27, 'Civil Society Organization', 'National', 'Partner27', '', '', 'Address27', 'email27@nowhere.org', '27', '27', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, true, 27.00, 27.00, true, 'City 27', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.089079+00', 27.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (21, 'Civil Society Organization', 'Community Based Organization', 'Partner21', '', '', 'Address21', 'email21@nowhere.org', '21', '21', NULL, '', 'Not Required', 'Micro Assessment', '2017-07-24', '2017-07-24', true, true, true, 21.00, 21.00, true, 'City 21', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.478647+00', 21.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (71, 'Government', NULL, 'Partner71', '', '', 'Address71', 'email71@nowhere.org', '71', '71', NULL, '', '', '', NULL, NULL, true, true, true, 71.00, 71.00, true, 'City 71', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.310011+00', 71.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (185, 'Civil Society Organization', 'National', 'Partner185', '', '', 'Address185', 'email185@nowhere.org', '185', '185', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 185.00, 185.00, true, 'City 185', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.912904+00', 185.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (302, 'Government', NULL, 'Partner302', '', '', 'Address302', 'email302@nowhere.org', '302', '302', NULL, '', 'Not Required', 'Micro Assessment', '2019-10-28', NULL, true, false, false, 302.00, 302.00, false, 'City 302', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.662862+00', 302.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (179, 'Government', NULL, 'Partner179', '', '', 'Address179', 'email179@nowhere.org', '179', '179', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 179.00, 179.00, true, 'City 179', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.713874+00', 179.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (392, 'Government', NULL, 'Partner392', '', '', 'Address392', 'email392@nowhere.org', '392', '392', NULL, '', 'High', 'High Risk Assumed', '2016-02-08', NULL, true, true, true, 392.00, 392.00, true, 'City 392', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.739742+00', 392.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (75, 'Government', NULL, 'Partner75', '', '', 'Address75', 'email75@nowhere.org', '75', '75', NULL, '', '', '', NULL, NULL, true, true, true, 75.00, 75.00, true, 'City 75', '081', '440', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.920796+00', 75.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (200, 'Civil Society Organization', 'National', 'Partner200', '', '', 'Address200', 'email200@nowhere.org', '200', '200', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2015-08-31', true, true, true, 200.00, 200.00, true, 'City 200', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.368992+00', 200.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (201, 'Government', NULL, 'Partner201', '', '', 'Address201', 'email201@nowhere.org', '201', '201', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 201.00, 201.00, true, 'City 201', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.593619+00', 201.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (33, 'Civil Society Organization', 'International', 'Partner33', '', '', 'Address33', 'email33@nowhere.org', '33', '33', NULL, '', '', '', NULL, NULL, true, true, true, 33.00, 33.00, true, 'City 33', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.901155+00', 33.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (199, 'Government', NULL, 'Partner199', '', '', 'Address199', 'email199@nowhere.org', '199', '199', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 199.00, 199.00, false, 'City 199', '081', '235', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:31.756208+00', 199.00, 65487.48, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (398, 'Government', NULL, 'Partner398', '', '', 'Address398', 'email398@nowhere.org', '398', '398', NULL, '', 'High', 'High Risk Assumed', '2017-12-31', NULL, true, false, false, 398.00, 398.00, false, 'City 398', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:28.404471+00', 398.00, 21646.90, 0.00, '', false, 11941.39, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (414, 'Government', NULL, 'Partner414', '', '', 'Address414', 'email414@nowhere.org', '414', '414', NULL, '', 'High', 'High Risk Assumed', '2017-04-06', NULL, true, false, false, 414.00, 414.00, false, 'City 414', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.5176+00', 414.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (453, 'Government', NULL, 'Partner453', '', '', 'Address453', 'email453@nowhere.org', '453', '453', NULL, NULL, 'High', 'High Risk Assumed', '2019-10-22', NULL, true, false, false, 453.00, 453.00, false, 'City 453', '081', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2019-11-12 15:01:58.50703+00', '2020-04-21 12:50:28.672936+00', 453.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (119, 'Civil Society Organization', 'National', 'Partner119', '', '', 'Address119', 'email119@nowhere.org', '119', '119', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 119.00, 119.00, true, 'City 119', '081', '972', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.791577+00', 119.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (455, 'Civil Society Organization', 'Academic Institution', 'Partner455', '', '', 'Address455', 'email455@nowhere.org', '455', '455', NULL, NULL, 'Not Required', 'Micro Assessment', '2016-08-25', '2016-08-25', true, false, false, 455.00, 455.00, false, 'City 455', '147', '13572', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2020-02-08 00:22:46.505661+00', '2020-04-21 01:10:46.294777+00', 455.00, 0.00, 0.00, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (422, 'Government', NULL, 'Partner422', '', '', 'Address422', 'email422@nowhere.org', '422', '422', NULL, '', 'High', 'High Risk Assumed', '2017-04-27', NULL, true, false, false, 422.00, 422.00, false, 'City 422', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.841485+00', 422.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (122, 'Government', NULL, 'Partner122', '', '', 'Address122', 'email122@nowhere.org', '122', '122', NULL, '', 'Significant', 'Micro Assessment', '2013-09-27', NULL, true, true, true, 122.00, 122.00, true, 'City 122', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.925813+00', 122.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (126, 'Government', NULL, 'Partner126', '', '', 'Address126', 'email126@nowhere.org', '126', '126', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 126.00, 126.00, true, 'City 126', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.688385+00', 126.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (282, 'Government', NULL, 'Partner282', '', '', 'Address282', 'email282@nowhere.org', '282', '282', NULL, '', NULL, NULL, NULL, NULL, true, true, true, 282.00, 282.00, true, 'City 282', '081', NULL, NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.136379+00', 282.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (273, 'Civil Society Organization', NULL, 'Partner273', '', '', 'Address273', 'email273@nowhere.org', '273', '273', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 273.00, 273.00, true, 'City 273', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.318453+00', 273.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (29, 'Civil Society Organization', 'National', 'Partner29', '', '', 'Address29', 'email29@nowhere.org', '29', '29', NULL, '', '', '', NULL, NULL, true, true, true, 29.00, 29.00, true, 'City 29', '081', '136', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.251984+00', 29.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (438, 'Government', NULL, 'Partner438', '', '', 'Address438', 'email438@nowhere.org', '438', '438', NULL, NULL, 'High', 'High Risk Assumed', '2018-08-21', NULL, true, false, false, 438.00, 438.00, false, 'City 438', '081', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-09-02 00:04:57.797288+00', '2020-04-21 12:50:33.176647+00', 438.00, 1267.88, 0.00, '', false, 0.00, 238488.22, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (225, 'Government', NULL, 'Partner225', '', '', 'Address225', 'email225@nowhere.org', '225', '225', NULL, '', 'High', 'High Risk Assumed', '2015-12-29', NULL, true, true, true, 225.00, 225.00, true, 'City 225', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.17797+00', 225.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (169, 'Civil Society Organization', 'National', 'Partner169', '', '', 'Address169', 'email169@nowhere.org', '169', '169', NULL, '', 'Significant', 'Micro Assessment', '2017-09-30', '2017-12-14', true, false, false, 169.00, 169.00, false, 'City 169', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:37.330633+00', 169.00, 38956.25, 5723.65, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (59, 'Government', NULL, 'Partner59', '', '', 'Address59', 'email59@nowhere.org', '59', '59', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 59.00, 59.00, true, 'City 59', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.056294+00', 59.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (350, 'Civil Society Organization', 'Community Based Organization', 'Partner350', '', '', 'Address350', 'email350@nowhere.org', '350', '350', NULL, '', 'High', 'Micro Assessment', '2016-03-02', '2018-02-06', true, false, false, 350.00, 350.00, false, 'City 350', '081', '235', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.968273+00', 350.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (5, 'Government', NULL, 'Partner5', '', '', 'Address5', 'email5@nowhere.org', '5', '5', NULL, '', 'High', 'High Risk Assumed', '2018-10-22', NULL, true, false, false, 5.00, 5.00, false, 'City 5', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:34.596281+00', 5.00, 1027760.95, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (306, 'Government', NULL, 'Partner306', '', '', 'Address306', 'email306@nowhere.org', '306', '306', NULL, '', 'Medium', 'Micro Assessment', '2017-12-31', NULL, true, false, false, 306.00, 306.00, false, 'City 306', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:29.130267+00', 306.00, 28528.23, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (180, 'Government', NULL, 'Partner180', '', '', 'Address180', 'email180@nowhere.org', '180', '180', NULL, '', 'Medium', 'Micro Assessment', '2017-12-31', NULL, true, false, false, 180.00, 180.00, false, 'City 180', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:27.715886+00', 180.00, 34358.39, 8338.04, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (202, 'Government', NULL, 'Partner202', '', '', 'Address202', 'email202@nowhere.org', '202', '202', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 202.00, 202.00, true, 'City 202', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.530056+00', 202.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (209, 'Government', NULL, 'Partner209', '', '', 'Address209', 'email209@nowhere.org', '209', '209', NULL, '', 'High', 'High Risk Assumed', '2017-04-07', NULL, true, true, true, 209.00, 209.00, true, 'City 209', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.585138+00', 209.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (409, 'Civil Society Organization', 'National', 'Partner409', '', '', 'Address409', 'email409@nowhere.org', '409', '409', NULL, '', 'High', 'High Risk Assumed', '2016-12-14', '2016-12-14', true, false, false, 409.00, 409.00, false, 'City 409', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.798641+00', 409.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (439, 'Government', NULL, 'Partner439', '', '', 'Address439', 'email439@nowhere.org', '439', '439', NULL, NULL, 'High', 'High Risk Assumed', '2018-10-16', NULL, true, false, false, 439.00, 439.00, false, 'City 439', '081', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 4}, "outstanding_findings": 0}', '2018-10-30 14:21:57.294887+00', '2020-04-21 12:50:37.615977+00', 439.00, 891167.70, 253667.15, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (435, 'Civil Society Organization', 'National', 'Partner435', '', '', 'Address435', 'email435@nowhere.org', '435', '435', NULL, NULL, 'High', 'High Risk Assumed', '2018-03-20', '2018-02-15', true, false, false, 435.00, 435.00, false, 'City 435', '081', '235', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 3}, "outstanding_findings": 0}', '2018-06-10 00:04:32.626951+00', '2020-04-21 12:50:24.670754+00', 435.00, 197974.59, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (197, 'Government', NULL, 'Partner197', '', '', 'Address197', 'email197@nowhere.org', '197', '197', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 197.00, 197.00, true, 'City 197', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.538668+00', 197.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (174, 'Government', NULL, 'Partner174', '', '', 'Address174', 'email174@nowhere.org', '174', '174', NULL, '', 'High', 'High Risk Assumed', '2018-10-16', NULL, true, false, false, 174.00, 174.00, false, 'City 174', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 3}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:30.021724+00', 174.00, 158751.73, 15864.31, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (270, 'Government', NULL, 'Partner270', '', '', 'Address270', 'email270@nowhere.org', '270', '270', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 270.00, 270.00, false, 'City 270', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 3}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:36.132405+00', 270.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (107, 'Civil Society Organization', 'National', 'Partner107', '', '', 'Address107', 'email107@nowhere.org', '107', '107', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, true, 107.00, 107.00, true, 'City 107', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.262517+00', 107.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (296, 'Civil Society Organization', 'Community Based Organization', 'Partner296', '', '', 'Address296', 'email296@nowhere.org', '296', '296', NULL, '', 'Low', 'Micro Assessment', '2017-08-01', '2016-09-20', true, false, false, 296.00, 296.00, false, 'City 296', '081', '235', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:24.208088+00', 296.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (292, 'Government', NULL, 'Partner292', '', '', 'Address292', 'email292@nowhere.org', '292', '292', NULL, '', 'High', 'High Risk Assumed', '2017-12-04', NULL, true, false, false, 292.00, 292.00, false, 'City 292', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:30.997754+00', 292.00, 65843.85, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (41, 'Government', NULL, 'Partner41', '', '', 'Address41', 'email41@nowhere.org', '41', '41', NULL, '', 'Medium', 'Micro Assessment', '2015-05-31', NULL, true, false, false, 41.00, 41.00, false, 'City 41', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:32.47607+00', 41.00, 0.00, 9249.51, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (297, 'Civil Society Organization', NULL, 'Partner297', '', '', 'Address297', 'email297@nowhere.org', '297', '297', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 297.00, 297.00, true, 'City 297', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.782489+00', 297.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (278, 'Civil Society Organization', 'National', 'Partner278', '', '', 'Address278', 'email278@nowhere.org', '278', '278', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2015-08-31', true, true, true, 278.00, 278.00, true, 'City 278', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.440958+00', 278.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (298, 'Civil Society Organization', 'National', 'Partner298', '', '', 'Address298', 'email298@nowhere.org', '298', '298', NULL, '', 'Medium', 'Micro Assessment', '2017-04-18', '2017-04-18', true, false, false, 298.00, 298.00, false, 'City 298', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.671333+00', 298.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (448, 'Civil Society Organization', 'National', 'Partner448', '', '', 'Address448', 'email448@nowhere.org', '448', '448', NULL, NULL, 'High', 'High Risk Assumed', '2019-09-11', '2019-09-10', true, false, false, 448.00, 448.00, false, 'City 448', '081', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 1, "q2": 0, "q3": 0, "q4": 0, "total": 1}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2019-10-01 14:41:36.085102+00', '2020-04-21 12:50:38.2161+00', 448.00, 29524.16, 26317.76, '', false, 834.36, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (30, 'Civil Society Organization', 'National', 'Partner30', '', '', 'Address30', 'email30@nowhere.org', '30', '30', NULL, '', 'Medium', 'Micro Assessment', '2017-01-08', '2017-01-08', true, false, false, 30.00, 30.00, false, 'City 30', '081', '4037', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.688503+00', 30.00, 0.00, 0.00, '', false, 0.00, 39681.80, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (37, 'Government', NULL, 'Partner37', '', '', 'Address37', 'email37@nowhere.org', '37', '37', NULL, '', 'Medium', 'Micro Assessment', '2013-09-27', NULL, true, true, true, 37.00, 37.00, true, 'City 37', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.585791+00', 37.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (53, 'Civil Society Organization', 'International', 'Partner53', '', '', 'Address53', 'email53@nowhere.org', '53', '53', NULL, '', 'Medium', 'Micro Assessment', '2018-07-31', '2019-06-11', true, false, false, 53.00, 53.00, false, 'City 53', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:35.22852+00', 53.00, 236381.59, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (268, 'Government', NULL, 'Partner268', '', '', 'Address268', 'email268@nowhere.org', '268', '268', NULL, '', 'High', 'High Risk Assumed', '2017-11-20', NULL, true, false, false, 268.00, 268.00, false, 'City 268', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:30.171236+00', 268.00, 92650.55, 0.00, '', false, 41701.00, 40303.83, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (416, 'Civil Society Organization', 'International', 'Partner416', '', '', 'Address416', 'email416@nowhere.org', '416', '416', NULL, '', 'Medium', 'Micro Assessment', '2018-07-31', '2018-04-09', true, false, false, 416.00, 416.00, false, 'City 416', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:23.610325+00', 416.00, 188986.98, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (258, 'Civil Society Organization', 'National', 'Partner258', '', '', 'Address258', 'email258@nowhere.org', '258', '258', NULL, '', 'High', 'Micro Assessment', '2018-10-15', '2018-10-15', true, false, false, 258.00, 258.00, false, 'City 258', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:25.112659+00', 258.00, 6604.58, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (182, 'Civil Society Organization', 'National', 'Partner182', '', '', 'Address182', 'email182@nowhere.org', '182', '182', NULL, '', 'Significant', 'Micro Assessment', '2015-07-20', '2019-07-08', true, false, false, 182.00, 182.00, false, 'City 182', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:25.259763+00', 182.00, 71060.43, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (208, 'Government', NULL, 'Partner208', '', '', 'Address208', 'email208@nowhere.org', '208', '208', NULL, '', 'Medium', 'Micro Assessment', '2018-07-31', NULL, true, false, false, 208.00, 208.00, false, 'City 208', '081', 'BP 6667', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:34.465374+00', 208.00, 42462.27, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (352, 'Government', NULL, 'Partner352', '', '', 'Address352', 'email352@nowhere.org', '352', '352', NULL, '', 'Medium', 'Others', '2016-01-01', NULL, true, false, false, 352.00, 352.00, false, 'City 352', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.645813+00', 352.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (339, 'Civil Society Organization', 'National', 'Partner339', '', '', 'Address339', 'email339@nowhere.org', '339', '339', NULL, '', 'Medium', 'Micro Assessment', '2018-07-31', '2017-09-10', true, false, false, 339.00, 339.00, false, 'City 339', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 1, "q2": 2, "q3": 2, "q4": 1, "total": 6}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 2}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:26.562502+00', 339.00, 91619.30, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (194, 'Government', NULL, 'Partner194', '', '', 'Address194', 'email194@nowhere.org', '194', '194', NULL, '', 'Not Required', 'Micro Assessment', '2017-08-10', NULL, true, true, true, 194.00, 194.00, true, 'City 194', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.280237+00', 194.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (337, 'Civil Society Organization', 'National', 'Partner337', '', '', 'Address337', 'email337@nowhere.org', '337', '337', NULL, '', 'High', 'High Risk Assumed', '2017-05-01', '2015-07-06', true, false, false, 337.00, 337.00, false, 'City 337', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.633544+00', 337.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (373, 'Civil Society Organization', 'National', 'Partner373', '', '', 'Address373', 'email373@nowhere.org', '373', '373', NULL, '', 'High', 'High Risk Assumed', '2016-01-20', '2016-01-20', true, false, false, 373.00, 373.00, false, 'City 373', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.576024+00', 373.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (370, 'Civil Society Organization', 'International', 'Partner370', '', '', 'Address370', 'email370@nowhere.org', '370', '370', NULL, '', 'Medium', 'Micro Assessment', '2017-08-01', '2019-05-29', true, false, false, 370.00, 370.00, false, 'City 370', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.654726+00', 370.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (387, 'Government', NULL, 'Partner387', '', '', 'Address387', 'email387@nowhere.org', '387', '387', NULL, '', 'High', 'High Risk Assumed', '2016-11-07', NULL, true, false, false, 387.00, 387.00, false, 'City 387', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:37.159634+00', 387.00, 2428.56, 1350.56, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (369, 'Civil Society Organization', 'International', 'Partner369', '', '', 'Address369', 'email369@nowhere.org', '369', '369', NULL, '', 'Low', 'Micro Assessment', '2017-08-01', '2019-05-16', true, false, false, 369.00, 369.00, false, 'City 369', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.270119+00', 369.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (425, 'Government', NULL, 'Partner425', '', '', 'Address425', 'email425@nowhere.org', '425', '425', NULL, '', 'High', 'High Risk Assumed', '2017-01-01', NULL, true, false, false, 425.00, 425.00, false, 'City 425', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 3}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:36.436093+00', 425.00, 52050.21, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (424, 'Civil Society Organization', 'International', 'Partner424', '', '', 'Address424', 'email424@nowhere.org', '424', '424', NULL, '', 'Medium', 'Micro Assessment', '2018-07-31', '2016-02-16', true, false, false, 424.00, 424.00, false, 'City 424', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:36.731025+00', 424.00, 167895.69, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (428, 'Civil Society Organization', 'National', 'Partner428', '', '', 'Address428', 'email428@nowhere.org', '428', '428', NULL, '', 'High', 'High Risk Assumed', '2017-11-24', '2017-10-01', true, false, false, 428.00, 428.00, false, 'City 428', '081', '235', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:37.017558+00', 428.00, 49451.97, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (434, 'Civil Society Organization', 'National', 'Partner434', '', '', 'Address434', 'email434@nowhere.org', '434', '434', NULL, NULL, 'High', 'Micro Assessment', '2018-03-23', '2018-03-23', true, false, false, 434.00, 434.00, false, 'City 434', '081', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-06-02 00:02:50.051123+00', '2020-04-21 01:15:07.021551+00', 434.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (151, 'Civil Society Organization', 'National', 'Partner151', '', '', 'Address151', 'email151@nowhere.org', '151', '151', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, true, 151.00, 151.00, true, 'City 151', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.696671+00', 151.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (160, 'Government', NULL, 'Partner160', '', '', 'Address160', 'email160@nowhere.org', '160', '160', NULL, '', 'Significant', 'Micro Assessment', '2014-09-30', NULL, true, true, true, 160.00, 160.00, true, 'City 160', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.298983+00', 160.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (213, 'Civil Society Organization', 'National', 'Partner213', '', '', 'Address213', 'email213@nowhere.org', '213', '213', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 213.00, 213.00, true, 'City 213', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.412113+00', 213.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (206, 'Government', NULL, 'Partner206', '', '', 'Address206', 'email206@nowhere.org', '206', '206', NULL, '', 'High', 'High Risk Assumed', '2019-04-22', NULL, true, false, false, 206.00, 206.00, false, 'City 206', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "partial", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 1, "q2": 0, "q3": 0, "q4": 0, "total": 1}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:30.568802+00', 206.00, 66527.84, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (6, 'Civil Society Organization', 'International', 'Partner6', '', '', 'Address6', 'email6@nowhere.org', '6', '6', NULL, '', 'Low', '', '2013-10-10', '2015-12-30', true, true, true, 6.00, 6.00, true, 'City 6', '081', '5166', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.38572+00', 6.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (136, 'Government', NULL, 'Partner136', '', '', 'Address136', 'email136@nowhere.org', '136', '136', NULL, '', 'High', 'High Risk Assumed', '2014-09-30', NULL, true, true, true, 136.00, 136.00, true, 'City 136', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.979551+00', 136.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (118, 'Civil Society Organization', 'National', 'Partner118', '', '', 'Address118', 'email118@nowhere.org', '118', '118', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 118.00, 118.00, true, 'City 118', '081', '456', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.186206+00', 118.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (10, 'Civil Society Organization', 'International', 'Partner10', '', '', 'Address10', 'email10@nowhere.org', '10', '10', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', '2016-10-25', true, true, true, 10.00, 10.00, true, 'City 10', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.377921+00', 10.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (400, 'Government', NULL, 'Partner400', '', '', 'Address400', 'email400@nowhere.org', '400', '400', NULL, '', 'Not Required', 'Micro Assessment', '2016-08-05', NULL, true, false, false, 400.00, 400.00, false, 'City 400', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:34.275744+00', 400.00, 13429.87, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (148, 'Civil Society Organization', 'International', 'Partner148', '', '', 'Address148', 'email148@nowhere.org', '148', '148', NULL, '', 'Not Required', 'Micro Assessment', '2017-08-09', '2015-12-18', true, true, true, 148.00, 148.00, true, 'City 148', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.576771+00', 148.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (219, 'Civil Society Organization', 'National', 'Partner219', '', '', 'Address219', 'email219@nowhere.org', '219', '219', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, true, 219.00, 219.00, true, 'City 219', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.658541+00', 219.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (327, 'Government', NULL, 'Partner327', '', '', 'Address327', 'email327@nowhere.org', '327', '327', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 327.00, 327.00, true, 'City 327', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.056561+00', 327.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (321, 'Civil Society Organization', 'National', 'Partner321', '', '', 'Address321', 'email321@nowhere.org', '321', '321', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 321.00, 321.00, true, 'City 321', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.242843+00', 321.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (198, 'Civil Society Organization', 'International', 'Partner198', '', '', 'Address198', 'email198@nowhere.org', '198', '198', NULL, '', 'Medium', 'Micro Assessment', '2014-09-30', '2016-10-25', true, true, true, 198.00, 198.00, true, 'City 198', '081', 'BP 972', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.313648+00', 198.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (259, 'Government', NULL, 'Partner259', '', '', 'Address259', 'email259@nowhere.org', '259', '259', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 259.00, 259.00, true, 'City 259', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.831934+00', 259.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (333, 'Civil Society Organization', 'National', 'Partner333', '', '', 'Address333', 'email333@nowhere.org', '333', '333', NULL, '', 'Not Required', 'Micro Assessment', '2015-12-31', '2016-03-04', true, true, true, 333.00, 333.00, true, 'City 333', '081', '0235', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.20511+00', 333.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (347, 'Civil Society Organization', 'National', 'Partner347', '', '', 'Address347', 'email347@nowhere.org', '347', '347', NULL, '', 'High', 'High Risk Assumed', '2016-01-01', '2016-05-04', true, true, true, 347.00, 347.00, true, 'City 347', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.213602+00', 347.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (332, 'Civil Society Organization', 'National', 'Partner332', '', '', 'Address332', 'email332@nowhere.org', '332', '332', NULL, '', 'Not Required', 'Micro Assessment', '2017-07-24', '2017-07-24', true, true, true, 332.00, 332.00, true, 'City 332', '081', '0235', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.301803+00', 332.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (366, 'Civil Society Organization', 'National', 'Partner366', '', '', 'Address366', 'email366@nowhere.org', '366', '366', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 366.00, 366.00, true, 'City 366', '081', '1146', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.373297+00', 366.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (301, 'Government', NULL, 'Partner301', '', '', 'Address301', 'email301@nowhere.org', '301', '301', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 301.00, 301.00, true, 'City 301', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.814597+00', 301.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (116, 'Government', NULL, 'Partner116', '', '', 'Address116', 'email116@nowhere.org', '116', '116', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 116.00, 116.00, true, 'City 116', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.060363+00', 116.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (189, 'Government', NULL, 'Partner189', '', '', 'Address189', 'email189@nowhere.org', '189', '189', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, true, true, 189.00, 189.00, true, 'City 189', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.650114+00', 189.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (308, 'Government', NULL, 'Partner308', '', '', 'Address308', 'email308@nowhere.org', '308', '308', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 308.00, 308.00, true, 'City 308', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.212234+00', 308.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (322, 'Civil Society Organization', 'National', 'Partner322', '', '', 'Address322', 'email322@nowhere.org', '322', '322', NULL, '', 'Not Required', 'Micro Assessment', '2014-12-31', '2016-04-19', true, false, false, 322.00, 322.00, false, 'City 322', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.407216+00', 322.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (323, 'Civil Society Organization', 'National', 'Partner323', '', '', 'Address323', 'email323@nowhere.org', '323', '323', NULL, '', 'High', 'High Risk Assumed', '2016-04-19', '2016-04-19', true, false, false, 323.00, 323.00, false, 'City 323', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.723474+00', 323.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (326, 'Government', NULL, 'Partner326', '', '', 'Address326', 'email326@nowhere.org', '326', '326', NULL, '', 'Low', 'Micro Assessment', '2015-06-30', NULL, true, false, false, 326.00, 326.00, false, 'City 326', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.116866+00', 326.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (124, 'Government', NULL, 'Partner124', '', '', 'Address124', 'email124@nowhere.org', '124', '124', NULL, '', 'Medium', 'Micro Assessment', '2015-07-23', NULL, true, false, false, 124.00, 124.00, false, 'City 124', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 2}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:27.424229+00', 124.00, 86487.64, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (372, 'Civil Society Organization', 'National', 'Partner372', '', '', 'Address372', 'email372@nowhere.org', '372', '372', NULL, '', 'High', 'High Risk Assumed', '2015-09-30', '2015-09-30', true, false, false, 372.00, 372.00, false, 'City 372', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 2, "q2": 1, "q3": 0, "q4": 0, "total": 3}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:26.841686+00', 372.00, 28814.46, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (155, 'Government', NULL, 'Partner155', '', '', 'Address155', 'email155@nowhere.org', '155', '155', NULL, '', 'Low', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 155.00, 155.00, false, 'City 155', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:27.287351+00', 155.00, 17453.34, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (401, 'Civil Society Organization', 'National', 'Partner401', '', '', 'Address401', 'email401@nowhere.org', '401', '401', NULL, '', 'Low', 'Micro Assessment', '2016-01-01', '2016-04-19', true, false, false, 401.00, 401.00, false, 'City 401', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:38.077754+00', 401.00, 24014.32, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (45, 'Government', NULL, 'Partner45', '', '', 'Address45', 'email45@nowhere.org', '45', '45', NULL, '', 'Significant', 'Micro Assessment', '2017-09-30', NULL, true, false, false, 45.00, 45.00, false, 'City 45', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:29.586173+00', 45.00, 62905.47, 0.00, '', false, 34204.84, 20995.10, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (8, 'Civil Society Organization', 'International', 'Partner8', '', '', 'Address8', 'email8@nowhere.org', '8', '8', NULL, '', 'Low', 'Micro Assessment', '2019-09-30', '2018-01-10', true, false, false, 8.00, 8.00, false, 'City 8', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:34.907743+00', 8.00, 235390.93, 235390.93, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (230, 'Government', NULL, 'Partner230', '', '', 'Address230', 'email230@nowhere.org', '230', '230', NULL, '', 'Medium', 'Micro Assessment', '2014-09-30', NULL, true, false, false, 230.00, 230.00, false, 'City 230', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.889176+00', 230.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (87, 'Civil Society Organization', 'International', 'Partner87', '', '', 'Address87', 'email87@nowhere.org', '87', '87', NULL, '', 'Medium', 'Others', '2017-01-12', '2017-09-05', true, false, false, 87.00, 87.00, false, 'City 87', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:10:46.576484+00', 87.00, 0.00, 0.00, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (437, 'Government', NULL, 'Partner437', '', '', 'Address437', 'email437@nowhere.org', '437', '437', NULL, NULL, 'High', 'High Risk Assumed', '2018-06-08', NULL, true, false, false, 437.00, 437.00, false, 'City 437', '081', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-08-28 13:22:24.164472+00', '2020-04-21 12:50:35.362986+00', 437.00, 19902.10, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (329, 'Government', NULL, 'Partner329', '', '', 'Address329', 'email329@nowhere.org', '329', '329', NULL, '', 'High', 'High Risk Assumed', '2015-06-08', NULL, true, false, false, 329.00, 329.00, false, 'City 329', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.72338+00', 329.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (158, 'Government', NULL, 'Partner158', '', '', 'Address158', 'email158@nowhere.org', '158', '158', NULL, '', 'High', 'High Risk Assumed', '2017-09-30', NULL, true, false, false, 158.00, 158.00, false, 'City 158', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:31.902922+00', 158.00, 47333.83, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (217, 'Civil Society Organization', 'National', 'Partner217', '', '', 'Address217', 'email217@nowhere.org', '217', '217', NULL, '', 'Not Required', 'Micro Assessment', '2017-07-24', '2017-07-24', true, true, true, 217.00, 217.00, true, 'City 217', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.340183+00', 217.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (236, 'Government', NULL, 'Partner236', '', '', 'Address236', 'email236@nowhere.org', '236', '236', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 236.00, 236.00, true, 'City 236', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.857743+00', 236.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (246, 'Government', NULL, 'Partner246', '', '', 'Address246', 'email246@nowhere.org', '246', '246', NULL, '', 'High', 'High Risk Assumed', '2016-10-26', NULL, true, false, false, 246.00, 246.00, false, 'City 246', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 3}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:28.81609+00', 246.00, 26900.42, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (313, 'Government', NULL, 'Partner313', '', '', 'Address313', 'email313@nowhere.org', '313', '313', NULL, '', 'High', 'High Risk Assumed', '2019-08-30', NULL, true, false, false, 313.00, 313.00, false, 'City 313', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:32.064838+00', 313.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (311, 'Government', NULL, 'Partner311', '', '', 'Address311', 'email311@nowhere.org', '311', '311', NULL, '', 'Medium', 'Micro Assessment', '2015-07-23', NULL, true, false, false, 311.00, 311.00, false, 'City 311', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 1, "total": 1}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.899888+00', 311.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (417, 'Government', NULL, 'Partner417', '', '', 'Address417', 'email417@nowhere.org', '417', '417', NULL, '', 'High', 'High Risk Assumed', '2019-10-21', NULL, true, false, false, 417.00, 417.00, false, 'City 417', '081', '446', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.43275+00', 417.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (186, 'Government', NULL, 'Partner186', '', '', 'Address186', 'email186@nowhere.org', '186', '186', NULL, '', 'High', 'High Risk Assumed', '2014-09-30', NULL, true, true, true, 186.00, 186.00, true, 'City 186', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.832862+00', 186.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (418, 'Government', NULL, 'Partner418', '', '', 'Address418', 'email418@nowhere.org', '418', '418', NULL, '', 'High', 'Micro Assessment', '2017-04-05', NULL, true, false, false, 418.00, 418.00, false, 'City 418', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.886417+00', 418.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (227, 'Government', NULL, 'Partner227', '', '', 'Address227', 'email227@nowhere.org', '227', '227', NULL, '', 'High', 'High Risk Assumed', '2016-10-20', NULL, true, false, false, 227.00, 227.00, false, 'City 227', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:33.480917+00', 227.00, 29000.48, 0.00, '', false, 89253.68, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (25, 'Civil Society Organization', 'International', 'Partner25', '', '', 'Address25', 'email25@nowhere.org', '25', '25', NULL, '', 'Low', 'Micro Assessment', '2017-08-01', '2018-04-09', true, false, false, 25.00, 25.00, false, 'City 25', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:23.935372+00', 25.00, 3638.09, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (117, 'Civil Society Organization', 'International', 'Partner117', '', '', 'Address117', 'email117@nowhere.org', '117', '117', NULL, '', 'Low', 'Micro Assessment', '2013-09-30', '2018-03-22', true, true, true, 117.00, 117.00, true, 'City 117', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.453169+00', 117.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (232, 'Civil Society Organization', 'Community Based Organization', 'Partner232', '', '', 'Address232', 'email232@nowhere.org', '232', '232', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 232.00, 232.00, true, 'City 232', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.616344+00', 232.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (32, 'Civil Society Organization', 'National', 'Partner32', '', '', 'Address32', 'email32@nowhere.org', '32', '32', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', '2013-07-10', true, false, false, 32.00, 32.00, false, 'City 32', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.832808+00', 32.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (40, 'Government', NULL, 'Partner40', '', '', 'Address40', 'email40@nowhere.org', '40', '40', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', NULL, true, true, true, 40.00, 40.00, true, 'City 40', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.5214+00', 40.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (234, 'Civil Society Organization', 'International', 'Partner234', '', '', 'Address234', 'email234@nowhere.org', '234', '234', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', '2018-04-09', true, true, true, 234.00, 234.00, true, 'City 234', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.22898+00', 234.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (42, 'Government', NULL, 'Partner42', '', '', 'Address42', 'email42@nowhere.org', '42', '42', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 42.00, 42.00, false, 'City 42', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 1, "q2": 0, "q3": 0, "q4": 0, "total": 1}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "partial", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:30.722704+00', 42.00, 126207.61, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (181, 'Civil Society Organization', 'Academic Institution', 'Partner181', '', '', 'Address181', 'email181@nowhere.org', '181', '181', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, true, 181.00, 181.00, true, 'City 181', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.500524+00', 181.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (36, 'Government', NULL, 'Partner36', '', '', 'Address36', 'email36@nowhere.org', '36', '36', NULL, '', 'Medium', 'Micro Assessment', '2014-10-31', NULL, true, true, true, 36.00, 36.00, true, 'City 36', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.419052+00', 36.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (39, 'Government', NULL, 'Partner39', '', '', 'Address39', 'email39@nowhere.org', '39', '39', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', NULL, true, true, true, 39.00, 39.00, true, 'City 39', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.461453+00', 39.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (1, 'Civil Society Organization', 'International', 'Partner1', '', '', 'Address1', 'email1@nowhere.org', '1', '1', NULL, '', 'Low', 'Micro Assessment', '2015-05-31', NULL, true, true, true, 1.00, 1.00, true, 'City 1', '453', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.23745+00', 1.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (320, 'Civil Society Organization', 'National', 'Partner320', '', '', 'Address320', 'email320@nowhere.org', '320', '320', NULL, '', 'Not Required', '', NULL, NULL, true, true, true, 320.00, 320.00, true, 'City 320', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.912563+00', 320.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (106, 'Civil Society Organization', 'International', 'Partner106', '', '', 'Address106', 'email106@nowhere.org', '106', '106', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 106.00, 106.00, true, 'City 106', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.916246+00', 106.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (108, 'Government', NULL, 'Partner108', '', '', 'Address108', 'email108@nowhere.org', '108', '108', NULL, '', '', '', NULL, NULL, true, true, true, 108.00, 108.00, true, 'City 108', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.193273+00', 108.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (99, 'Civil Society Organization', 'National', 'Partner99', '', '', 'Address99', 'email99@nowhere.org', '99', '99', NULL, '', '', '', NULL, NULL, true, true, true, 99.00, 99.00, true, 'City 99', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.806245+00', 99.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (15, 'Civil Society Organization', 'National', 'Partner15', '', '', 'Address15', 'email15@nowhere.org', '15', '15', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 15.00, 15.00, true, 'City 15', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.731702+00', 15.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (330, 'Civil Society Organization', 'National', 'Partner330', '', '', 'Address330', 'email330@nowhere.org', '330', '330', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 330.00, 330.00, true, 'City 330', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.43652+00', 330.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (331, 'Government', NULL, 'Partner331', '', '', 'Address331', 'email331@nowhere.org', '331', '331', NULL, '', 'Medium', '', '2013-06-13', NULL, true, true, true, 331.00, 331.00, true, 'City 331', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.608272+00', 331.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (13, 'Civil Society Organization', 'National', 'Partner13', '', '', 'Address13', 'email13@nowhere.org', '13', '13', NULL, '', '', '', NULL, NULL, true, true, true, 13.00, 13.00, true, 'City 13', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.977256+00', 13.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (272, 'Government', NULL, 'Partner272', '', '', 'Address272', 'email272@nowhere.org', '272', '272', NULL, '', 'High', 'High Risk Assumed', '2018-05-03', NULL, true, false, false, 272.00, 272.00, false, 'City 272', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:32.344718+00', 272.00, 21933.80, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (44, 'Government', NULL, 'Partner44', '', '', 'Address44', 'email44@nowhere.org', '44', '44', NULL, '', 'High', 'High Risk Assumed', '2019-06-06', NULL, true, false, false, 44.00, 44.00, false, 'City 44', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:31.587992+00', 44.00, 0.00, 0.00, '', false, 6656.16, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (164, 'Civil Society Organization', 'National', 'Partner164', '', '', 'Address164', 'email164@nowhere.org', '164', '164', NULL, '', 'High', 'Micro Assessment', '2014-09-30', '2014-09-30', true, true, true, 164.00, 164.00, true, 'City 164', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.924239+00', 164.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (274, 'Civil Society Organization', 'National', 'Partner274', '', '', 'Address274', 'email274@nowhere.org', '274', '274', NULL, '', 'Not Required', 'Micro Assessment', '2017-11-29', '2017-11-29', true, true, true, 274.00, 274.00, true, 'City 274', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.09736+00', 274.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (94, 'Government', NULL, 'Partner94', '', '', 'Address94', 'email94@nowhere.org', '94', '94', NULL, '', 'High', 'Micro Assessment', '2013-09-30', NULL, true, true, true, 94.00, 94.00, true, 'City 94', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.124186+00', 94.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (284, 'Civil Society Organization', 'National', 'Partner284', '', '', 'Address284', 'email284@nowhere.org', '284', '284', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, true, 284.00, 284.00, true, 'City 284', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.284486+00', 284.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (239, 'Government', NULL, 'Partner239', '', '', 'Address239', 'email239@nowhere.org', '239', '239', NULL, '', 'Significant', '', '2014-09-30', NULL, true, true, true, 239.00, 239.00, true, 'City 239', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.856575+00', 239.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (233, 'Government', NULL, 'Partner233', '', '', 'Address233', 'email233@nowhere.org', '233', '233', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 233.00, 233.00, true, 'City 233', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.875665+00', 233.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (449, 'Government', NULL, 'Partner449', '', '', 'Address449', 'email449@nowhere.org', '449', '449', NULL, NULL, 'High', 'High Risk Assumed', '2017-01-01', NULL, true, false, false, 449.00, 449.00, false, 'City 449', '081', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2019-10-01 14:41:37.682362+00', '2020-04-21 12:50:29.411457+00', 449.00, 0.00, 0.00, '', false, 4415.14, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (257, 'Civil Society Organization', NULL, 'Partner257', '', '', 'Address257', 'email257@nowhere.org', '257', '257', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 257.00, 257.00, true, 'City 257', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.848952+00', 257.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (294, 'Civil Society Organization', 'National', 'Partner294', '', '', 'Address294', 'email294@nowhere.org', '294', '294', NULL, '', 'Low', 'Micro Assessment', '2014-10-31', '2016-04-15', true, false, false, 294.00, 294.00, false, 'City 294', '081', '353', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.342917+00', 294.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (361, 'Government', NULL, 'Partner361', '', '', 'Address361', 'email361@nowhere.org', '361', '361', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 361.00, 361.00, true, 'City 361', '081', '1146', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.132418+00', 361.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (11, 'Government', NULL, 'Partner11', '', '', 'Address11', 'email11@nowhere.org', '11', '11', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 11.00, 11.00, true, 'City 11', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.618621+00', 11.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (173, 'Civil Society Organization', 'National', 'Partner173', '', '', 'Address173', 'email173@nowhere.org', '173', '173', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 173.00, 173.00, true, 'City 173', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.577367+00', 173.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (353, 'Civil Society Organization', 'National', 'Partner353', '', '', 'Address353', 'email353@nowhere.org', '353', '353', NULL, '', 'Not Required', 'Micro Assessment', '2015-12-31', '2016-02-25', true, true, true, 353.00, 353.00, true, 'City 353', '081', '0235', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.364311+00', 353.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (9, 'Civil Society Organization', 'International', 'Partner9', '', '', 'Address9', 'email9@nowhere.org', '9', '9', NULL, '', 'High', 'High Risk Assumed', '2017-05-04', '2018-04-09', true, false, false, 9.00, 9.00, false, 'City 9', '081', '5666', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.296261+00', 9.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (51, 'Government', NULL, 'Partner51', '', '', 'Address51', 'email51@nowhere.org', '51', '51', NULL, '', 'High', 'High Risk Assumed', '2016-12-01', NULL, true, false, false, 51.00, 51.00, false, 'City 51', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:35.509977+00', 51.00, 14510.78, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (115, 'Civil Society Organization', 'National', 'Partner115', '', '', 'Address115', 'email115@nowhere.org', '115', '115', NULL, '', '', '', NULL, NULL, true, true, true, 115.00, 115.00, true, 'City 115', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.391504+00', 115.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (74, 'Government', NULL, 'Partner74', '', '', 'Address74', 'email74@nowhere.org', '74', '74', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 74.00, 74.00, false, 'City 74', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 3}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:35.667157+00', 74.00, 98035.77, 70822.91, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (54, 'Civil Society Organization', 'International', 'Partner54', '', '', 'Address54', 'email54@nowhere.org', '54', '54', NULL, '', 'Low', 'Micro Assessment', '2017-08-01', '2016-09-16', true, false, false, 54.00, 54.00, false, 'City 54', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:26.400055+00', 54.00, 85342.23, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (88, 'Civil Society Organization', 'National', 'Partner88', '', '', 'Address88', 'email88@nowhere.org', '88', '88', NULL, '', 'Low', 'Micro Assessment', '2017-08-01', '2013-07-10', true, false, false, 88.00, 88.00, false, 'City 88', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.357691+00', 88.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (81, 'Government', NULL, 'Partner81', '', '', 'Address81', 'email81@nowhere.org', '81', '81', NULL, '', 'Medium', 'Micro Assessment', '2019-08-28', NULL, true, false, false, 81.00, 81.00, false, 'City 81', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:36.273989+00', 81.00, 44930.70, 9975.32, '', false, 9670.50, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (105, 'Civil Society Organization', 'National', 'Partner105', '', '', 'Address105', 'email105@nowhere.org', '105', '105', NULL, '', 'Medium', 'Micro Assessment', '2017-08-01', '2016-04-19', true, false, false, 105.00, 105.00, false, 'City 105', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:37.760333+00', 105.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (195, 'Civil Society Organization', 'International', 'Partner195', '', '', 'Address195', 'email195@nowhere.org', '195', '195', NULL, '', 'Low', 'Micro Assessment', '2013-09-30', '2013-07-19', true, true, true, 195.00, 195.00, true, 'City 195', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.254131+00', 195.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (111, 'Government', NULL, 'Partner111', '', '', 'Address111', 'email111@nowhere.org', '111', '111', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 111.00, 111.00, true, 'City 111', '081', '0235', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.047831+00', 111.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (20, 'Government', NULL, 'Partner20', '', '', 'Address20', 'email20@nowhere.org', '20', '20', NULL, '', 'Not Required', '', NULL, NULL, true, true, true, 20.00, 20.00, true, 'City 20', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.469818+00', 20.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (384, 'Civil Society Organization', 'National', 'Partner384', '', '', 'Address384', 'email384@nowhere.org', '384', '384', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, true, 384.00, 384.00, true, 'City 384', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.697881+00', 384.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (215, 'Government', NULL, 'Partner215', '', '', 'Address215', 'email215@nowhere.org', '215', '215', NULL, '', 'Significant', 'Micro Assessment', '2013-09-30', NULL, true, true, true, 215.00, 215.00, true, 'City 215', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.038264+00', 215.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (72, 'Government', NULL, 'Partner72', '', '', 'Address72', 'email72@nowhere.org', '72', '72', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 72.00, 72.00, true, 'City 72', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:10:44.350223+00', 72.00, 0.00, 0.00, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (23, 'Government', NULL, 'Partner23', '', '', 'Address23', 'email23@nowhere.org', '23', '23', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 23.00, 23.00, true, 'City 23', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.908157+00', 23.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (90, 'Government', NULL, 'Partner90', '', '', 'Address90', 'email90@nowhere.org', '90', '90', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 90.00, 90.00, true, 'City 90', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.254201+00', 90.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (22, 'Government', NULL, 'Partner22', '', '', 'Address22', 'email22@nowhere.org', '22', '22', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 22.00, 22.00, true, 'City 22', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.642219+00', 22.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (89, 'Government', NULL, 'Partner89', '', '', 'Address89', 'email89@nowhere.org', '89', '89', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 89.00, 89.00, true, 'City 89', '081', '14', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.612179+00', 89.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (78, 'Government', NULL, 'Partner78', '', '', 'Address78', 'email78@nowhere.org', '78', '78', NULL, '', 'Medium', 'Micro Assessment', '2015-05-30', NULL, true, true, true, 78.00, 78.00, true, 'City 78', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.630651+00', 78.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (70, 'Government', NULL, 'Partner70', '', '', 'Address70', 'email70@nowhere.org', '70', '70', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 70.00, 70.00, true, 'City 70', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.16193+00', 70.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (137, 'Civil Society Organization', 'National', 'Partner137', '', '', 'Address137', 'email137@nowhere.org', '137', '137', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, true, 137.00, 137.00, true, 'City 137', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.10773+00', 137.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (86, 'Civil Society Organization', 'Community Based Organization', 'Partner86', '', '', 'Address86', 'email86@nowhere.org', '86', '86', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, true, 86.00, 86.00, true, 'City 86', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.169821+00', 86.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (101, 'Government', NULL, 'Partner101', '', '', 'Address101', 'email101@nowhere.org', '101', '101', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, true, true, 101.00, 101.00, true, 'City 101', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.840927+00', 101.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (128, 'Civil Society Organization', 'National', 'Partner128', '', '', 'Address128', 'email128@nowhere.org', '128', '128', NULL, '', 'Medium', 'Micro Assessment', '2017-08-01', '2013-07-10', true, true, true, 128.00, 128.00, true, 'City 128', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.757039+00', 128.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (55, 'Government', NULL, 'Partner55', '', '', 'Address55', 'email55@nowhere.org', '55', '55', NULL, '', 'Significant', 'Micro Assessment', '2013-10-10', NULL, true, true, true, 55.00, 55.00, true, 'City 55', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.874375+00', 55.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (85, 'Government', NULL, 'Partner85', '', '', 'Address85', 'email85@nowhere.org', '85', '85', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 85.00, 85.00, true, 'City 85', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.667152+00', 85.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (397, 'Civil Society Organization', 'National', 'Partner397', '', '', 'Address397', 'email397@nowhere.org', '397', '397', NULL, '', 'Not Required', 'Micro Assessment', '2016-01-01', '2016-06-01', true, true, true, 397.00, 397.00, true, 'City 397', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.484461+00', 397.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (64, 'Government', NULL, 'Partner64', '', '', 'Address64', 'email64@nowhere.org', '64', '64', NULL, '', 'Not Required', 'Micro Assessment', '2016-01-01', NULL, true, true, true, 64.00, 64.00, true, 'City 64', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.167714+00', 64.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (260, 'Government', NULL, 'Partner260', '', '', 'Address260', 'email260@nowhere.org', '260', '260', NULL, '', 'Not Required', 'Micro Assessment', '2017-07-24', NULL, true, true, true, 260.00, 260.00, true, 'City 260', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.560122+00', 260.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (379, 'Civil Society Organization', 'National', 'Partner379', '', '', 'Address379', 'email379@nowhere.org', '379', '379', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, true, 379.00, 379.00, true, 'City 379', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.467607+00', 379.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (172, 'Government', NULL, 'Partner172', '', '', 'Address172', 'email172@nowhere.org', '172', '172', NULL, '', 'High', '', '2014-09-30', NULL, true, true, true, 172.00, 172.00, true, 'City 172', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.79021+00', 172.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (299, 'Civil Society Organization', 'National', 'Partner299', '', '', 'Address299', 'email299@nowhere.org', '299', '299', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, true, 299.00, 299.00, true, 'City 299', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.135445+00', 299.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (264, 'Government', NULL, 'Partner264', '', '', 'Address264', 'email264@nowhere.org', '264', '264', NULL, '', 'High', 'High Risk Assumed', '2014-09-30', NULL, true, true, true, 264.00, 264.00, true, 'City 264', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.504566+00', 264.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (255, 'Government', NULL, 'Partner255', '', '', 'Address255', 'email255@nowhere.org', '255', '255', NULL, '', 'Not Required', 'Micro Assessment', '2015-12-29', NULL, true, true, true, 255.00, 255.00, true, 'City 255', '072', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.389273+00', 255.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (204, 'Civil Society Organization', 'National', 'Partner204', '', '', 'Address204', 'email204@nowhere.org', '204', '204', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2014-01-01', true, true, true, 204.00, 204.00, true, 'City 204', '081', 'BP 1146', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.102633+00', 204.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (214, 'Civil Society Organization', 'National', 'Partner214', '', '', 'Address214', 'email214@nowhere.org', '214', '214', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, true, 214.00, 214.00, true, 'City 214', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.153773+00', 214.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (340, 'Government', NULL, 'Partner340', '', '', 'Address340', 'email340@nowhere.org', '340', '340', NULL, '', 'High', 'High Risk Assumed', '2015-12-29', NULL, true, true, true, 340.00, 340.00, true, 'City 340', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.334214+00', 340.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (358, 'Civil Society Organization', 'National', 'Partner358', '', '', 'Address358', 'email358@nowhere.org', '358', '358', NULL, '', 'Not Required', 'Micro Assessment', '2015-12-31', '2016-03-04', true, true, true, 358.00, 358.00, true, 'City 358', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.483748+00', 358.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (345, 'Civil Society Organization', 'National', 'Partner345', '', '', 'Address345', 'email345@nowhere.org', '345', '345', NULL, '', 'High', 'High Risk Assumed', '2015-09-30', '2015-09-30', true, true, true, 345.00, 345.00, true, 'City 345', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.680159+00', 345.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (356, 'Civil Society Organization', 'National', 'Partner356', '', '', 'Address356', 'email356@nowhere.org', '356', '356', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-07-10', true, true, true, 356.00, 356.00, true, 'City 356', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.096761+00', 356.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (269, 'Civil Society Organization', 'National', 'Partner269', '', '', 'Address269', 'email269@nowhere.org', '269', '269', NULL, '', 'Not Required', 'Micro Assessment', '2015-12-31', '2016-03-08', true, false, false, 269.00, 269.00, false, 'City 269', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.427323+00', 269.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (283, 'Civil Society Organization', 'National', 'Partner283', '', '', 'Address283', 'email283@nowhere.org', '283', '283', NULL, '', 'High', '', NULL, NULL, true, true, true, 283.00, 283.00, true, 'City 283', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.125159+00', 283.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (153, 'Civil Society Organization', 'International', 'Partner153', '', '', 'Address153', 'email153@nowhere.org', '153', '153', NULL, '', '', '', NULL, '2019-04-18', true, true, true, 153.00, 153.00, true, 'City 153', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.401729+00', 153.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (362, 'Government', NULL, 'Partner362', '', '', 'Address362', 'email362@nowhere.org', '362', '362', NULL, '', 'High', 'High Risk Assumed', '2015-12-29', NULL, true, true, true, 362.00, 362.00, true, 'City 362', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.60169+00', 362.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (360, 'Civil Society Organization', 'National', 'Partner360', '', '', 'Address360', 'email360@nowhere.org', '360', '360', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2015-08-31', true, true, true, 360.00, 360.00, true, 'City 360', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.119502+00', 360.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (338, 'Government', NULL, 'Partner338', '', '', 'Address338', 'email338@nowhere.org', '338', '338', NULL, '', 'High', 'High Risk Assumed', '2015-12-29', NULL, true, true, true, 338.00, 338.00, true, 'City 338', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.000707+00', 338.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (346, 'Civil Society Organization', 'National', 'Partner346', '', '', 'Address346', 'email346@nowhere.org', '346', '346', NULL, '', 'Not Required', 'Micro Assessment', '2016-02-01', '2016-04-25', true, true, true, 346.00, 346.00, true, 'City 346', '081', '0235', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.326647+00', 346.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (187, 'Government', NULL, 'Partner187', '', '', 'Address187', 'email187@nowhere.org', '187', '187', NULL, '', 'Significant', 'Micro Assessment', '2017-08-16', NULL, true, false, false, 187.00, 187.00, false, 'City 187', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:30.438806+00', 187.00, 34458.09, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (159, 'Government', NULL, 'Partner159', '', '', 'Address159', 'email159@nowhere.org', '159', '159', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 159.00, 159.00, true, 'City 159', '081', '1146', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.025843+00', 159.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (310, 'Civil Society Organization', 'National', 'Partner310', '', '', 'Address310', 'email310@nowhere.org', '310', '310', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 310.00, 310.00, true, 'City 310', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.072966+00', 310.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (293, 'Civil Society Organization', 'National', 'Partner293', '', '', 'Address293', 'email293@nowhere.org', '293', '293', NULL, '', 'Not Required', 'Micro Assessment', '2017-07-24', '2017-07-24', true, true, true, 293.00, 293.00, true, 'City 293', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.081027+00', 293.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (154, '', NULL, 'Partner154', '', '', 'Address154', 'email154@nowhere.org', '154', '154', NULL, '', '', '', NULL, NULL, false, true, true, 154.00, 154.00, true, 'City 154', '', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:10:47.904924+00', 154.00, NULL, NULL, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (129, 'Civil Society Organization', 'International', 'Partner129', '', '', 'Address129', 'email129@nowhere.org', '129', '129', NULL, '', 'Low', 'Micro Assessment', '2013-09-30', '2018-04-09', true, true, true, 129.00, 129.00, true, 'City 129', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.866455+00', 129.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (354, 'Civil Society Organization', 'National', 'Partner354', '', '', 'Address354', 'email354@nowhere.org', '354', '354', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-07-10', true, true, true, 354.00, 354.00, true, 'City 354', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.203753+00', 354.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (114, 'Government', NULL, 'Partner114', '', '', 'Address114', 'email114@nowhere.org', '114', '114', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 114.00, 114.00, true, 'City 114', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.203197+00', 114.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (102, 'Government', NULL, 'Partner102', '', '', 'Address102', 'email102@nowhere.org', '102', '102', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 102.00, 102.00, true, 'City 102', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.234008+00', 102.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (35, 'Civil Society Organization', 'National', 'Partner35', '', '', 'Address35', 'email35@nowhere.org', '35', '35', NULL, '', 'High', 'High Risk Assumed', '2015-12-29', '2015-12-01', true, true, true, 35.00, 35.00, true, 'City 35', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.056655+00', 35.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (334, 'Civil Society Organization', 'National', 'Partner334', '', '', 'Address334', 'email334@nowhere.org', '334', '334', NULL, '', 'Not Required', 'Micro Assessment', '2015-12-31', '2016-03-04', true, true, true, 334.00, 334.00, true, 'City 334', '081', '0235', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.447929+00', 334.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (241, 'Government', NULL, 'Partner241', '', '', 'Address241', 'email241@nowhere.org', '241', '241', NULL, '', 'Significant', 'Micro Assessment', '2014-10-31', NULL, true, true, true, 241.00, 241.00, true, 'City 241', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.882665+00', 241.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (244, 'Civil Society Organization', 'National', 'Partner244', '', '', 'Address244', 'email244@nowhere.org', '244', '244', NULL, '', 'High', 'High Risk Assumed', '2015-12-29', '2015-09-30', true, true, true, 244.00, 244.00, true, 'City 244', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.444844+00', 244.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (203, 'Civil Society Organization', 'National', 'Partner203', '', '', 'Address203', 'email203@nowhere.org', '203', '203', NULL, '', 'Medium', 'Micro Assessment', '2013-09-30', '2013-07-10', true, true, true, 203.00, 203.00, true, 'City 203', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.840455+00', 203.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (429, 'Civil Society Organization', 'National', 'Partner429', '', '', 'Address429', 'email429@nowhere.org', '429', '429', NULL, '', 'High', 'High Risk Assumed', '2017-01-21', '2017-01-21', true, false, false, 429.00, 429.00, false, 'City 429', '381', 'BP', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-04-01 00:05:29.689486+00', '2020-04-21 01:15:06.416054+00', 429.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (207, 'Government', NULL, 'Partner207', '', '', 'Address207', 'email207@nowhere.org', '207', '207', NULL, '', 'Not Required', 'Micro Assessment', '2017-07-24', NULL, true, true, true, 207.00, 207.00, true, 'City 207', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.378019+00', 207.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (271, 'Government', NULL, 'Partner271', '', '', 'Address271', 'email271@nowhere.org', '271', '271', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 271.00, 271.00, true, 'City 271', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.696503+00', 271.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (325, 'Government', NULL, 'Partner325', '', '', 'Address325', 'email325@nowhere.org', '325', '325', NULL, '', 'High', 'High Risk Assumed', '2013-06-13', NULL, true, true, true, 325.00, 325.00, true, 'City 325', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.823399+00', 325.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (391, 'Civil Society Organization', 'National', 'Partner391', '', '', 'Address391', 'email391@nowhere.org', '391', '391', NULL, '', 'Low', 'Micro Assessment', '2016-01-01', '2016-04-19', true, true, true, 391.00, 391.00, true, 'City 391', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.715029+00', 391.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (363, 'Government', NULL, 'Partner363', '', '', 'Address363', 'email363@nowhere.org', '363', '363', NULL, '', 'High', 'High Risk Assumed', '2016-12-16', NULL, true, true, true, 363.00, 363.00, true, 'City 363', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.201808+00', 363.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (256, 'Civil Society Organization', NULL, 'Partner256', '', '', 'Address256', 'email256@nowhere.org', '256', '256', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 256.00, 256.00, true, 'City 256', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:10:46.557242+00', 256.00, 0.00, 0.00, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (394, 'Government', NULL, 'Partner394', '', '', 'Address394', 'email394@nowhere.org', '394', '394', NULL, '', 'High', 'Micro Assessment', '2012-01-01', NULL, true, true, true, 394.00, 394.00, true, 'City 394', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.62131+00', 394.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (382, 'Government', NULL, 'Partner382', '', '', 'Address382', 'email382@nowhere.org', '382', '382', NULL, '', 'Not Required', 'Micro Assessment', '2014-09-30', NULL, true, true, true, 382.00, 382.00, true, 'City 382', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.140707+00', 382.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (377, 'Civil Society Organization', 'National', 'Partner377', '', '', 'Address377', 'email377@nowhere.org', '377', '377', NULL, '', 'Not Required', 'Micro Assessment', '2016-04-07', '2016-04-07', true, true, true, 377.00, 377.00, true, 'City 377', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.851315+00', 377.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (393, 'Government', NULL, 'Partner393', '', '', 'Address393', 'email393@nowhere.org', '393', '393', NULL, '', 'High', 'High Risk Assumed', '2018-10-22', NULL, true, false, false, 393.00, 393.00, false, 'City 393', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:33.625641+00', 393.00, 37595.27, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (100, 'Government', NULL, 'Partner100', '', '', 'Address100', 'email100@nowhere.org', '100', '100', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 100.00, 100.00, false, 'City 100', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.840086+00', 100.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (315, 'Government', NULL, 'Partner315', '', '', 'Address315', 'email315@nowhere.org', '315', '315', NULL, '', 'High', 'High Risk Assumed', '2019-10-18', NULL, true, false, false, 315.00, 315.00, false, 'City 315', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:28.976345+00', 315.00, 36306.33, 0.00, '', false, 424.68, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (235, 'Civil Society Organization', 'National', 'Partner235', '', '', 'Address235', 'email235@nowhere.org', '235', '235', NULL, '', 'Significant', 'Micro Assessment', '2015-12-31', '2016-02-29', true, true, true, 235.00, 235.00, true, 'City 235', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.67566+00', 235.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (249, 'Civil Society Organization', NULL, 'Partner249', '', '', 'Address249', 'email249@nowhere.org', '249', '249', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 249.00, 249.00, true, 'City 249', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:10:44.920206+00', 249.00, 0.00, 0.00, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (395, 'Civil Society Organization', 'National', 'Partner395', '', '', 'Address395', 'email395@nowhere.org', '395', '395', NULL, '', 'High', 'High Risk Assumed', '2016-04-19', '2015-09-30', true, true, true, 395.00, 395.00, true, 'City 395', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.170193+00', 395.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (399, 'Civil Society Organization', 'National', 'Partner399', '', '', 'Address399', 'email399@nowhere.org', '399', '399', NULL, '', 'High', 'High Risk Assumed', '2016-04-14', '2016-04-14', true, true, true, 399.00, 399.00, true, 'City 399', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.265879+00', 399.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (98, 'Civil Society Organization', 'International', 'Partner98', '', '', 'Address98', 'email98@nowhere.org', '98', '98', NULL, '', '', '', NULL, NULL, true, true, true, 98.00, 98.00, true, 'City 98', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:10:46.859413+00', 98.00, 0.00, 0.00, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (404, 'Civil Society Organization', 'National', 'Partner404', '', '', 'Address404', 'email404@nowhere.org', '404', '404', NULL, '', 'Low', 'Low Risk Assumed', '2016-01-01', '2016-04-19', true, true, true, 404.00, 404.00, true, 'City 404', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.475826+00', 404.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (276, 'Civil Society Organization', 'National', 'Partner276', '', '', 'Address276', 'email276@nowhere.org', '276', '276', NULL, '', 'High', 'High Risk Assumed', '2014-09-30', '2014-09-30', true, true, true, 276.00, 276.00, true, 'City 276', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.013306+00', 276.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (163, 'Civil Society Organization', 'National', 'Partner163', '', '', 'Address163', 'email163@nowhere.org', '163', '163', NULL, '', 'High', 'Micro Assessment', '2020-03-18', '2018-11-13', true, false, false, 163.00, 163.00, false, 'City 163', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.592606+00', 163.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (406, 'Civil Society Organization', 'National', 'Partner406', '', '', 'Address406', 'email406@nowhere.org', '406', '406', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', '2013-01-01', true, true, true, 406.00, 406.00, true, 'City 406', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.005129+00', 406.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (3, 'Government', NULL, 'Partner3', '', '', 'Address3', 'email3@nowhere.org', '3', '3', NULL, '', 'Medium', 'Micro Assessment', '2014-09-30', NULL, true, true, true, 3.00, 3.00, true, 'City 3', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:06.11103+00', 3.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (390, 'Civil Society Organization', 'National', 'Partner390', '', '', 'Address390', 'email390@nowhere.org', '390', '390', NULL, '', 'Not Required', 'Micro Assessment', '2016-04-17', '2016-04-17', true, true, true, 390.00, 390.00, true, 'City 390', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.353028+00', 390.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (133, 'Civil Society Organization', 'National', 'Partner133', '', '', 'Address133', 'email133@nowhere.org', '133', '133', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 133.00, 133.00, true, 'City 133', '081', '01146', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:04.149327+00', 133.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (77, 'Civil Society Organization', 'Community Based Organization', 'Partner77', '', '', 'Address77', 'email77@nowhere.org', '77', '77', NULL, '', 'Medium', 'Micro Assessment', '2016-06-21', '2016-06-21', true, false, false, 77.00, 77.00, false, 'City 77', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.261239+00', 77.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (125, 'Government', NULL, 'Partner125', '', '', 'Address125', 'email125@nowhere.org', '125', '125', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 125.00, 125.00, false, 'City 125', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 3}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:27.575206+00', 125.00, 864093.19, 20613.77, '', false, 74691.91, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (279, 'Civil Society Organization', NULL, 'Partner279', '', '', 'Address279', 'email279@nowhere.org', '279', '279', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 279.00, 279.00, true, 'City 279', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.143878+00', 279.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (62, 'Government', NULL, 'Partner62', '', '', 'Address62', 'email62@nowhere.org', '62', '62', NULL, '', 'High', 'High Risk Assumed', '2014-09-30', NULL, true, false, false, 62.00, 62.00, false, 'City 62', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 1, "q2": 0, "q3": 0, "q4": 0, "total": 1}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:07.275132+00', 62.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (262, 'Government', NULL, 'Partner262', '', '', 'Address262', 'email262@nowhere.org', '262', '262', NULL, '', 'Significant', 'Micro Assessment', '2017-08-01', NULL, true, false, false, 262.00, 262.00, false, 'City 262', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:26.694068+00', 262.00, 43948.66, 69229.80, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (287, 'Civil Society Organization', 'National', 'Partner287', '', '', 'Address287', 'email287@nowhere.org', '287', '287', NULL, '', 'Not Required', 'Micro Assessment', NULL, NULL, true, true, true, 287.00, 287.00, true, 'City 287', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.108265+00', 287.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (317, 'Civil Society Organization', 'National', 'Partner317', '', '', 'Address317', 'email317@nowhere.org', '317', '317', NULL, '', 'High', 'High Risk Assumed', '2017-01-01', '2013-01-01', true, false, false, 317.00, 317.00, false, 'City 317', '081', '65', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:03.774125+00', 317.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (49, 'Government', NULL, 'Partner49', '', '', 'Address49', 'email49@nowhere.org', '49', '49', NULL, '', 'Medium', 'Micro Assessment', '2015-08-01', NULL, true, false, false, 49.00, 49.00, false, 'City 49', '081', '235', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:31.170959+00', 49.00, 62153.58, 40308.35, '', false, 17565.97, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (415, 'Civil Society Organization', 'International', 'Partner415', '', '', 'Address415', 'email415@nowhere.org', '415', '415', NULL, '', 'Low', 'Micro Assessment', '2017-03-03', '2018-01-23', true, false, false, 415.00, 415.00, false, 'City 415', '081', '1108', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:38.364726+00', 415.00, 106688.81, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (242, 'Civil Society Organization', 'National', 'Partner242', '', '', 'Address242', 'email242@nowhere.org', '242', '242', NULL, '', 'Medium', 'Micro Assessment', '2014-10-31', '2013-07-10', true, true, true, 242.00, 242.00, true, 'City 242', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.8841+00', 242.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (446, 'Government', NULL, 'Partner446', '', '', 'Address446', 'email446@nowhere.org', '446', '446', NULL, NULL, 'High', 'High Risk Assumed', '2019-06-21', NULL, true, false, false, 446.00, 446.00, false, 'City 446', '081', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 1, "q2": 0, "q3": 0, "q4": 0, "total": 1}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2019-07-17 00:06:24.461695+00', '2020-04-21 12:50:31.452662+00', 446.00, 12067.73, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (440, 'UN Agency', NULL, 'Partner440', '', '', 'Address440', 'email440@nowhere.org', '440', '440', NULL, NULL, '', '', NULL, NULL, true, false, false, 440.00, 440.00, false, 'City 440', '081', '', NULL, NULL, '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2019-01-12 00:02:12.877132+00', '2020-04-21 01:10:44.721958+00', 440.00, 0.00, 0.00, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (250, 'Civil Society Organization', 'National', 'Partner250', '', '', 'Address250', 'email250@nowhere.org', '250', '250', NULL, '', 'Not Required', 'Micro Assessment', '2017-07-24', '2017-07-24', true, true, true, 250.00, 250.00, true, 'City 250', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:10:53.165694+00', 250.00, 0.00, 0.00, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (121, 'Government', NULL, 'Partner121', '', '', 'Address121', 'email121@nowhere.org', '121', '121', NULL, '', 'High', 'High Risk Assumed', '2012-01-01', NULL, true, true, true, 121.00, 121.00, true, 'City 121', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:10:52.89647+00', 121.00, 0.00, 0.00, '', false, NULL, NULL, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (18, 'Civil Society Organization', 'International', 'Partner18', '', '', 'Address18', 'email18@nowhere.org', '18', '18', NULL, '', 'Low', 'Micro Assessment', '2018-07-31', '2019-04-01', true, false, false, 18.00, 18.00, false, 'City 18', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 01:15:05.641922+00', 18.00, 0.00, 0.00, '', false, 0.00, 0.00, '', '', NULL, ''); +INSERT INTO [[schema]].partners_partnerorganization VALUES (7, 'Civil Society Organization', 'International', 'Partner7', '', '', 'Address7', 'email7@nowhere.org', '7', '7', NULL, '', 'Low', 'Micro Assessment', '2018-07-31', '2019-08-28', true, false, false, 7.00, 7.00, false, 'City 7', '081', '', NULL, '', '{"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}', '2018-03-15 16:10:20.992169+00', '2020-04-21 12:50:34.768619+00', 7.00, 264593.81, 12081.36, '', false, 0.00, 0.00, '', '', NULL, ''); -- @@ -14667,465 +16087,489 @@ INSERT INTO [[schema]].partners_partnerorganization VALUES (240, 'Civil Society -- Data for Name: partners_partnerstaffmember; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (1, 'President du Conseil d''Administration', 'Gabdoube', 'Ladiba', 'gabladiba@yahoo.fr', '66276004', true, 169, '2020-02-12 13:49:44.051159+00', '2020-11-03 18:53:27.630099+00', 279251); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (2, 'President du Conseil d''Administration', 'Mariam', 'Haggar', 'AFDITCHAD@YAHOO.FR', '66276959', true, 182, '2020-02-12 15:47:14.906707+00', '2020-11-03 18:53:27.635812+00', 279252); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (3, 'Presidente Nationale', 'Clarisse', 'NEHOUDAMADJI NAILAR', 'nehoudamadji@yahoo.fr', '', true, 339, '2020-02-17 10:45:49.826838+00', '2020-11-03 18:53:27.640334+00', 279253); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (4, 'Présidente', 'KHADIDJA', 'ABDRAMANE KOKO', 'khadidjaa038@gmail.com', '(+235) 66 03 72', true, 372, '2020-02-17 13:46:22.816764+00', '2020-11-03 18:53:27.645318+00', 279254); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (5, 'President du Conseil National', 'Laoukoule', 'Yondolegom', 'scout[[schema]]@yahoo.fr', '(+235)66302137', true, 220, '2020-02-17 14:57:44.590159+00', '2020-11-03 18:53:27.650982+00', 279255); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (6, 'Commissaire Generale', 'Irene', 'Lodene Mbaissain', 'guidesdut[[schema]]@yahoo.fr', '(+235)66873595', true, 28, '2020-02-17 15:35:43.246556+00', '2020-11-03 18:53:27.655806+00', 279256); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (7, 'President', 'Sony', 'Mekondo', 'MEKONDOSONY2@GMAIL.COM', '(+235)66295908', true, 448, '2020-02-18 13:40:05.178654+00', '2020-11-03 18:53:27.660573+00', 279257); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (8, 'Directeur Pays', 'Theodore', 'Kabore', 'cdm@td-actioncontrelafaim.org', '66619175', true, 130, '2020-02-20 12:31:49.202522+00', '2020-11-03 18:53:27.665618+00', 279258); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (15, 'Presidente', 'Waru', 'Zara', 'zarakellouwarou@gmail.com', '', true, 403, '2020-02-25 13:26:52.501966+00', '2020-11-03 18:53:27.670031+00', 279259); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (9, 'Directrice Pays', 'Dabagai', 'DABAGAI', 'dabagai@td-actioncontrelafaim.org', '66619175', true, 130, '2020-02-20 12:37:04.586613+00', '2020-11-03 18:53:27.674339+00', 279260); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (10, 'Responsable Finance', 'Alain', 'NGUESSAN', 'admin@td-actioncontrelafaim.org', '', true, 130, '2020-02-20 13:56:47.211213+00', '2020-11-03 18:53:27.679946+00', 279261); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (11, 'President du Conseil d''Administration', 'Seid', 'ZEBE', 'asd.ongt[[schema]]@gmail.com', '63225145', true, 450, '2020-02-20 14:08:00.606939+00', '2020-11-03 18:53:27.685267+00', 279262); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (12, 'Coordonateur National', 'Byanpambe', 'Danzoumbe', 'danzoumbebyan@gmail.com', '63273740', true, 450, '2020-02-20 14:19:47.721179+00', '2020-11-03 18:53:27.69004+00', 279263); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (13, 'Chef de Mission', 'Hassan', 'Issa', 'cdm@t[[schema]].alima-ngo.org', '', true, 296, '2020-02-20 15:11:47.397487+00', '2020-11-03 18:53:27.695267+00', 279264); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (14, 'Coordinatrice', 'Amina', 'Ramadane', 'ecolesaine@yahoo.fr', '66298271', true, 95, '2020-02-20 16:05:14.801589+00', '2020-11-03 18:53:27.700491+00', 279265); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (16, 'Country Director', 'Mahamat Ahmat', 'Younous', 'ongapselpabol2@gmail.com', '00235 66211210', true, 261, '2020-03-04 14:50:34.380183+00', '2020-11-03 18:53:27.705333+00', 279266); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (17, 'Project Manager', 'Oumar Abdou', 'Abbami', 'ongapselpa1@hotmail.fr', '0023565271899', true, 261, '2020-03-04 14:57:51.121296+00', '2020-11-03 18:53:27.70985+00', 279267); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (18, 'Chef de Mission', 'Papy', 'KABWE', 't[[schema]]@intersos.org', '98531745', true, 139, '2020-03-06 12:57:54.904583+00', '2020-11-03 18:53:27.715101+00', 279268); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (19, 'Chef de Mission', 'Rachid', 'Yacoubi', 'rachid.yacoubi@intersos.org', '', true, 139, '2020-03-06 12:59:34.550166+00', '2020-11-03 18:53:27.720221+00', 279269); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (20, 'Director', 'Richard', 'Allan', 'richard@mentor-initiative.net', '', true, 237, '2020-04-01 09:59:04.931861+00', '2020-11-03 18:53:27.725101+00', 279270); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (21, 'Programme Coordinator', 'Germain', 'Ehui Ablokoua', 'mc.[[schema]]@mentor-initiative.net', '', true, 237, '2020-04-01 10:26:32.429224+00', '2020-11-03 18:53:27.730024+00', 279271); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (22, 'Country directo', 'Manoufi', 'Dahab', 'manoufi.dahab@base-t[[schema]].org', '00235 63 49 50', true, 163, '2020-04-06 10:16:34.015567+00', '2020-11-03 18:53:27.734394+00', 279272); +INSERT INTO [[schema]].partners_partnerstaffmember VALUES (23, 'National Cordinator', 'Mahamat', 'Moussa', 'helpt[[schema]]2012@gmail.com', '00235 66262539', true, 376, '2020-04-16 09:55:08.782685+00', '2020-11-03 18:53:27.738904+00', 279273); -- -- Data for Name: partners_plannedengagement; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].partners_plannedengagement VALUES (439, '2019-01-12 00:02:12.94676+00', '2019-01-12 00:02:12.949429+00', 0, 0, 0, 0, false, false, 440, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (440, '2019-01-12 00:02:19.916648+00', '2019-01-12 00:02:19.917208+00', 0, 0, 0, 0, false, false, 441, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (441, '2019-03-15 13:43:06.118672+00', '2019-03-15 13:43:06.118995+00', 0, 0, 0, 0, false, false, 442, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (442, '2019-04-04 00:04:57.590259+00', '2019-04-04 00:04:57.590756+00', 0, 0, 0, 0, false, false, 443, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (443, '2019-05-24 00:03:59.276721+00', '2019-05-24 00:03:59.277073+00', 0, 0, 0, 0, false, false, 444, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (444, '2019-06-20 00:08:18.748713+00', '2019-06-20 00:08:18.74903+00', 0, 0, 0, 0, false, false, 445, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (445, '2019-07-17 00:06:24.521303+00', '2019-07-17 00:06:24.522266+00', 0, 0, 0, 0, false, false, 446, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (446, '2019-09-14 00:04:44.707676+00', '2019-09-14 00:04:44.707676+00', 0, 0, 0, 0, false, false, 447, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (447, '2019-10-01 14:41:36.131095+00', '2019-10-01 14:41:36.131095+00', 0, 0, 0, 0, false, false, 448, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (448, '2019-10-01 14:41:37.712526+00', '2019-10-01 14:41:37.712526+00', 0, 0, 0, 0, false, false, 449, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (449, '2019-10-01 14:41:45.535799+00', '2019-10-01 14:41:45.535799+00', 0, 0, 0, 0, false, false, 450, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (450, '2019-10-08 00:10:59.891196+00', '2019-10-08 00:10:59.891196+00', 0, 0, 0, 0, false, false, 451, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (451, '2019-11-12 15:01:58.173143+00', '2019-11-12 15:01:58.173143+00', 0, 0, 0, 0, false, false, 452, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (452, '2019-11-12 15:01:58.545032+00', '2019-11-12 15:01:58.545032+00', 0, 0, 0, 0, false, false, 453, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (453, '2019-11-12 15:02:08.39672+00', '2019-11-12 15:02:08.39672+00', 0, 0, 0, 0, false, false, 454, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (1, '2018-03-15 16:10:52.883243+00', '2018-12-31 13:05:18.422094+00', 0, 0, 0, 0, false, false, 154, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (2, '2018-03-15 16:10:52.90398+00', '2018-12-31 13:05:18.438226+00', 0, 0, 0, 0, false, false, 229, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (4, '2018-03-15 16:10:52.955144+00', '2018-12-31 13:05:18.452286+00', 0, 0, 0, 0, false, false, 2, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (5, '2018-03-15 16:10:52.975445+00', '2018-12-31 13:05:18.493408+00', 0, 0, 0, 0, false, false, 416, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (6, '2018-03-15 16:10:52.996438+00', '2018-12-31 13:05:18.507679+00', 0, 0, 0, 0, false, false, 129, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (7, '2018-03-15 16:10:53.016678+00', '2018-12-31 13:05:18.523711+00', 0, 0, 0, 0, false, false, 175, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (8, '2018-03-15 16:10:53.037584+00', '2018-12-31 13:05:18.538917+00', 0, 0, 0, 0, false, false, 250, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (9, '2018-03-15 16:10:53.057447+00', '2018-12-31 13:05:18.578147+00', 0, 0, 0, 0, false, false, 130, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (10, '2018-03-15 16:10:53.077232+00', '2018-12-31 13:05:18.593111+00', 0, 0, 0, 0, false, false, 178, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (11, '2018-03-15 16:10:53.097384+00', '2018-12-31 13:05:18.631119+00', 0, 0, 0, 0, false, false, 418, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (12, '2018-03-15 16:10:53.117023+00', '2018-12-31 13:05:18.669353+00', 0, 0, 0, 0, false, false, 414, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (13, '2018-03-15 16:10:53.137367+00', '2018-12-31 13:05:18.707049+00', 0, 0, 0, 0, false, false, 25, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (14, '2018-03-15 16:10:53.166388+00', '2018-12-31 13:05:18.721477+00', 0, 0, 0, 0, false, false, 232, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (15, '2018-03-15 16:10:53.185972+00', '2018-12-31 13:05:18.736267+00', 0, 0, 0, 0, false, false, 228, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (16, '2018-03-15 16:10:53.205336+00', '2018-12-31 13:05:18.751097+00', 0, 0, 0, 0, false, false, 305, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (17, '2018-03-15 16:10:53.224812+00', '2018-12-31 13:05:18.76527+00', 0, 0, 0, 0, false, false, 320, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (18, '2018-03-15 16:10:53.246412+00', '2018-12-31 13:05:18.781237+00', 0, 0, 0, 0, false, false, 26, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (19, '2018-03-15 16:10:53.270088+00', '2018-12-31 13:05:18.795209+00', 0, 0, 0, 0, false, false, 148, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (20, '2018-03-15 16:10:53.289891+00', '2018-12-31 13:05:18.833193+00', 0, 0, 0, 0, false, false, 294, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (21, '2018-03-15 16:10:53.315434+00', '2018-12-31 13:05:18.847411+00', 0, 0, 0, 0, false, false, 370, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (22, '2018-03-15 16:10:53.334865+00', '2018-12-31 13:05:18.886074+00', 0, 0, 0, 0, false, false, 183, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (23, '2018-03-15 16:10:53.35449+00', '2018-12-31 13:05:18.900386+00', 0, 0, 0, 0, false, false, 285, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (24, '2018-03-15 16:10:53.374756+00', '2018-12-31 13:05:18.917632+00', 0, 0, 0, 0, false, false, 161, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (25, '2018-03-15 16:10:53.394539+00', '2018-12-31 13:05:18.956159+00', 0, 0, 0, 0, false, false, 296, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (26, '2018-03-15 16:10:53.41561+00', '2018-12-31 13:05:18.994306+00', 0, 0, 0, 0, false, false, 409, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (27, '2018-03-15 16:10:53.435611+00', '2018-12-31 13:05:19.008316+00', 0, 0, 0, 0, false, false, 254, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (28, '2018-03-15 16:10:53.456409+00', '2018-12-31 13:05:19.023262+00', 0, 0, 0, 0, false, false, 383, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (29, '2018-03-15 16:10:53.476849+00', '2018-12-31 13:05:19.037268+00', 0, 0, 0, 0, false, false, 257, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (30, '2018-03-15 16:10:53.496941+00', '2018-12-31 13:05:19.056145+00', 0, 0, 0, 0, false, false, 261, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (31, '2018-03-15 16:10:53.517155+00', '2018-12-31 13:05:19.070373+00', 0, 0, 0, 0, false, false, 205, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (434, '2018-06-10 00:04:32.676456+00', '2018-12-31 13:05:19.108524+00', 0, 0, 0, 0, false, false, 435, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (32, '2018-03-15 16:10:53.536931+00', '2018-12-31 13:05:19.12256+00', 0, 0, 0, 0, false, false, 114, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (33, '2018-03-15 16:10:53.560123+00', '2018-12-31 13:05:19.137235+00', 0, 0, 0, 0, false, false, 368, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (34, '2018-03-15 16:10:53.579893+00', '2018-12-31 13:05:19.150888+00', 0, 0, 0, 0, false, false, 321, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (35, '2018-03-15 16:10:53.599773+00', '2018-12-31 13:05:19.165331+00', 0, 0, 0, 0, false, false, 381, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (36, '2018-03-15 16:10:53.619652+00', '2018-12-31 13:05:19.180422+00', 0, 0, 0, 0, false, false, 366, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (37, '2018-03-15 16:10:53.639885+00', '2018-12-31 13:05:19.194396+00', 0, 0, 0, 0, false, false, 248, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (38, '2018-03-15 16:10:53.660603+00', '2018-12-31 13:05:19.231371+00', 0, 0, 0, 0, false, false, 123, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (39, '2018-03-15 16:10:53.680039+00', '2018-12-31 13:05:19.246251+00', 0, 0, 0, 0, false, false, 173, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (40, '2018-03-15 16:10:53.70038+00', '2018-12-31 13:05:19.260225+00', 0, 0, 0, 0, false, false, 358, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (41, '2018-03-15 16:10:53.720606+00', '2018-12-31 13:05:19.273861+00', 0, 0, 0, 0, false, false, 221, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (42, '2018-03-15 16:10:53.74117+00', '2018-12-31 13:05:19.314479+00', 0, 0, 0, 0, false, false, 423, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (43, '2018-03-15 16:10:53.761063+00', '2018-12-31 13:05:19.331908+00', 0, 0, 0, 0, false, false, 98, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (44, '2018-03-15 16:10:53.781614+00', '2018-12-31 13:05:19.377724+00', 0, 0, 0, 0, false, false, 373, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (45, '2018-03-15 16:10:53.801891+00', '2018-12-31 13:05:19.39185+00', 0, 0, 0, 0, false, false, 403, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (46, '2018-03-15 16:10:53.821836+00', '2018-12-31 13:05:19.435916+00', 0, 0, 0, 0, false, false, 258, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (47, '2018-03-15 16:10:53.841793+00', '2018-12-31 13:05:19.450075+00', 0, 0, 0, 0, false, false, 182, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (48, '2018-03-15 16:10:53.861696+00', '2018-12-31 13:05:19.488349+00', 0, 0, 0, 0, false, false, 28, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (49, '2018-03-15 16:10:53.881798+00', '2018-12-31 13:05:19.50461+00', 0, 0, 0, 0, false, false, 309, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (50, '2018-03-15 16:10:53.901382+00', '2018-12-31 13:05:19.523023+00', 0, 0, 0, 0, false, false, 375, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (51, '2018-03-15 16:10:53.920815+00', '2018-12-31 13:05:19.53842+00', 0, 0, 0, 0, false, false, 374, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (52, '2018-03-15 16:10:53.940186+00', '2018-12-31 13:05:19.554276+00', 0, 0, 0, 0, false, false, 342, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (53, '2018-03-15 16:10:53.960095+00', '2018-12-31 13:05:19.568481+00', 0, 0, 0, 0, false, false, 217, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (54, '2018-03-15 16:10:53.979661+00', '2018-12-31 13:05:19.584433+00', 0, 0, 0, 0, false, false, 289, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (55, '2018-03-15 16:10:54.000589+00', '2018-12-31 13:05:19.623247+00', 0, 0, 0, 0, false, false, 220, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (56, '2018-03-15 16:10:54.020037+00', '2018-12-31 13:05:19.637623+00', 0, 0, 0, 0, false, false, 346, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (57, '2018-03-15 16:10:54.039061+00', '2018-12-31 13:05:19.652149+00', 0, 0, 0, 0, false, false, 244, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (58, '2018-03-15 16:10:54.05866+00', '2018-12-31 13:05:19.689583+00', 0, 0, 0, 0, false, false, 77, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (59, '2018-03-15 16:10:54.082405+00', '2018-12-31 13:05:19.704201+00', 0, 0, 0, 0, false, false, 170, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (60, '2018-03-15 16:10:54.10224+00', '2018-12-31 13:05:19.71946+00', 0, 0, 0, 0, false, false, 310, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (61, '2018-03-15 16:10:54.122436+00', '2018-12-31 13:05:19.733663+00', 0, 0, 0, 0, false, false, 256, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (62, '2018-03-15 16:10:54.142611+00', '2018-12-31 13:05:19.74921+00', 0, 0, 0, 0, false, false, 212, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (63, '2018-03-15 16:10:54.163133+00', '2018-12-31 13:05:19.786161+00', 0, 0, 0, 0, false, false, 87, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (64, '2018-03-15 16:10:54.183528+00', '2018-12-31 13:05:19.801642+00', 0, 0, 0, 0, false, false, 324, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (65, '2018-03-15 16:10:54.203331+00', '2018-12-31 13:05:19.815886+00', 0, 0, 0, 0, false, false, 389, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (66, '2018-03-15 16:10:54.223317+00', '2018-12-31 13:05:19.830631+00', 0, 0, 0, 0, false, false, 376, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (67, '2018-03-15 16:10:54.242516+00', '2018-12-31 13:05:19.851786+00', 0, 0, 0, 0, false, false, 386, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (68, '2018-03-15 16:10:54.262182+00', '2018-12-31 13:05:19.866527+00', 0, 0, 0, 0, false, false, 312, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (69, '2018-03-15 16:10:54.282141+00', '2018-12-31 13:05:19.881568+00', 0, 0, 0, 0, false, false, 29, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (70, '2018-03-15 16:10:54.302187+00', '2018-12-31 13:05:19.896146+00', 0, 0, 0, 0, false, false, 290, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (71, '2018-03-15 16:10:54.32219+00', '2018-12-31 13:05:19.93448+00', 0, 0, 0, 0, false, false, 427, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (72, '2018-03-15 16:10:54.342181+00', '2018-12-31 13:05:19.949232+00', 0, 0, 0, 0, false, false, 222, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (73, '2018-03-15 16:10:54.361756+00', '2018-12-31 13:05:19.988654+00', 0, 0, 0, 0, false, false, 32, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (74, '2018-03-15 16:10:54.380992+00', '2018-12-31 13:05:20.002744+00', 0, 0, 0, 0, false, false, 99, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (75, '2018-03-15 16:10:54.401108+00', '2018-12-31 13:05:20.017584+00', 0, 0, 0, 0, false, false, 97, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (76, '2018-03-15 16:10:54.420982+00', '2018-12-31 13:05:20.075108+00', 0, 0, 0, 0, false, false, 30, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (77, '2018-03-15 16:10:54.440751+00', '2018-12-31 13:05:20.093909+00', 0, 0, 0, 0, false, false, 128, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (78, '2018-03-15 16:10:54.459863+00', '2018-12-31 13:05:20.110038+00', 0, 0, 0, 0, false, false, 15, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (79, '2018-03-15 16:10:54.479098+00', '2018-12-31 13:05:20.127385+00', 0, 0, 0, 0, false, false, 235, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (80, '2018-03-15 16:10:54.498871+00', '2018-12-31 13:05:20.145585+00', 0, 0, 0, 0, false, false, 168, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (82, '2018-03-15 16:10:54.539295+00', '2018-12-31 13:05:20.161083+00', 0, 0, 0, 0, false, false, 282, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (81, '2018-03-15 16:10:54.519167+00', '2018-12-31 13:05:20.175478+00', 0, 0, 0, 0, false, false, 360, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (83, '2018-03-15 16:10:54.559139+00', '2018-12-31 13:05:20.190781+00', 0, 0, 0, 0, false, false, 330, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (84, '2018-03-15 16:10:54.579173+00', '2018-12-31 13:05:20.206719+00', 0, 0, 0, 0, false, false, 364, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (85, '2018-03-15 16:10:54.599712+00', '2018-12-31 13:05:20.221645+00', 0, 0, 0, 0, false, false, 219, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (86, '2018-03-15 16:10:54.619325+00', '2018-12-31 13:05:20.239618+00', 0, 0, 0, 0, false, false, 300, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (87, '2018-03-15 16:10:54.639333+00', '2018-12-31 13:05:20.253672+00', 0, 0, 0, 0, false, false, 319, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (88, '2018-03-15 16:10:54.659607+00', '2018-12-31 13:05:20.269799+00', 0, 0, 0, 0, false, false, 165, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (89, '2018-03-15 16:10:54.679218+00', '2018-12-31 13:05:20.308711+00', 0, 0, 0, 0, false, false, 426, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (90, '2018-03-15 16:10:54.69911+00', '2018-12-31 13:05:20.322812+00', 0, 0, 0, 0, false, false, 31, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (91, '2018-03-15 16:10:54.719731+00', '2018-12-31 13:05:20.337569+00', 0, 0, 0, 0, false, false, 265, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (92, '2018-03-15 16:10:54.739234+00', '2018-12-31 13:05:20.354217+00', 0, 0, 0, 0, false, false, 181, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (93, '2018-03-15 16:10:54.758908+00', '2018-12-31 13:05:20.368324+00', 0, 0, 0, 0, false, false, 27, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (94, '2018-03-15 16:10:54.778164+00', '2018-12-31 13:05:20.384478+00', 0, 0, 0, 0, false, false, 106, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (95, '2018-03-15 16:10:54.797637+00', '2018-12-31 13:05:20.399225+00', 0, 0, 0, 0, false, false, 163, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (96, '2018-03-15 16:10:54.817201+00', '2018-12-31 13:05:20.413035+00', 0, 0, 0, 0, false, false, 293, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (97, '2018-03-15 16:10:54.836969+00', '2018-12-31 13:05:20.427166+00', 0, 0, 0, 0, false, false, 16, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (98, '2018-03-15 16:10:54.856168+00', '2018-12-31 13:05:20.441869+00', 0, 0, 0, 0, false, false, 157, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (99, '2018-03-15 16:10:54.876319+00', '2018-12-31 13:05:20.456542+00', 0, 0, 0, 0, false, false, 116, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (100, '2018-03-15 16:10:54.896404+00', '2018-12-31 13:05:20.470787+00', 0, 0, 0, 0, false, false, 188, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (101, '2018-03-15 16:10:54.917472+00', '2018-12-31 13:05:20.485047+00', 0, 0, 0, 0, false, false, 146, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (102, '2018-03-15 16:10:54.93752+00', '2018-12-31 13:05:20.499029+00', 0, 0, 0, 0, false, false, 117, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (103, '2018-03-15 16:10:54.957198+00', '2018-12-31 13:05:20.512797+00', 0, 0, 0, 0, false, false, 283, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (104, '2018-03-15 16:10:54.977078+00', '2018-12-31 13:05:20.550632+00', 0, 0, 0, 0, false, false, 54, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (105, '2018-03-15 16:10:54.99711+00', '2018-12-31 13:05:20.565117+00', 0, 0, 0, 0, false, false, 279, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (106, '2018-03-15 16:10:55.016989+00', '2018-12-31 13:05:20.57883+00', 0, 0, 0, 0, false, false, 343, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (107, '2018-03-15 16:10:55.036919+00', '2018-12-31 13:05:20.593779+00', 0, 0, 0, 0, false, false, 349, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (108, '2018-03-15 16:10:55.056691+00', '2018-12-31 13:05:20.608453+00', 0, 0, 0, 0, false, false, 247, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (109, '2018-03-15 16:10:55.076648+00', '2018-12-31 13:05:20.623417+00', 0, 0, 0, 0, false, false, 334, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (110, '2018-03-15 16:10:55.096664+00', '2018-12-31 13:05:20.638559+00', 0, 0, 0, 0, false, false, 325, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (111, '2018-03-15 16:10:55.116959+00', '2018-12-31 13:05:20.653515+00', 0, 0, 0, 0, false, false, 55, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (112, '2018-03-15 16:10:55.137112+00', '2018-12-31 13:05:20.668566+00', 0, 0, 0, 0, false, false, 56, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (113, '2018-03-15 16:10:55.156616+00', '2018-12-31 13:05:20.684104+00', 0, 0, 0, 0, false, false, 137, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (114, '2018-03-15 16:10:55.176286+00', '2018-12-31 13:05:20.721908+00', 0, 0, 0, 0, false, false, 339, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (115, '2018-03-15 16:10:55.195907+00', '2018-12-31 13:05:20.736146+00', 0, 0, 0, 0, false, false, 281, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (116, '2018-03-15 16:10:55.215737+00', '2018-12-31 13:05:20.750627+00', 0, 0, 0, 0, false, false, 17, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (117, '2018-03-15 16:10:55.235207+00', '2018-12-31 13:05:20.793491+00', 0, 0, 0, 0, false, false, 156, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (118, '2018-03-15 16:10:55.260051+00', '2018-12-31 13:05:20.807233+00', 0, 0, 0, 0, false, false, 118, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (119, '2018-03-15 16:10:55.284792+00', '2018-12-31 13:05:20.821289+00', 0, 0, 0, 0, false, false, 198, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (120, '2018-03-15 16:10:55.304163+00', '2018-12-31 13:05:20.835468+00', 0, 0, 0, 0, false, false, 10, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (121, '2018-03-15 16:10:55.323705+00', '2018-12-31 13:05:20.849291+00', 0, 0, 0, 0, false, false, 119, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (122, '2018-03-15 16:10:55.343156+00', '2018-12-31 13:05:20.863443+00', 0, 0, 0, 0, false, false, 107, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (123, '2018-03-15 16:10:55.362663+00', '2018-12-31 13:05:20.877629+00', 0, 0, 0, 0, false, false, 251, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (124, '2018-03-15 16:10:55.383395+00', '2018-12-31 13:05:20.892106+00', 0, 0, 0, 0, false, false, 216, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (125, '2018-03-15 16:10:55.403085+00', '2018-12-31 13:05:20.929887+00', 0, 0, 0, 0, false, false, 3, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (126, '2018-03-15 16:10:55.422817+00', '2018-12-31 13:05:20.944127+00', 0, 0, 0, 0, false, false, 136, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (127, '2018-03-15 16:10:55.442588+00', '2018-12-31 13:05:20.958149+00', 0, 0, 0, 0, false, false, 57, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (128, '2018-03-15 16:10:55.461922+00', '2018-12-31 13:05:20.972813+00', 0, 0, 0, 0, false, false, 151, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (129, '2018-03-15 16:10:55.481882+00', '2018-12-31 13:05:20.987727+00', 0, 0, 0, 0, false, false, 1, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (130, '2018-03-15 16:10:55.504202+00', '2018-12-31 13:05:21.002486+00', 0, 0, 0, 0, false, false, 388, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (131, '2018-03-15 16:10:55.523899+00', '2018-12-31 13:05:21.017145+00', 0, 0, 0, 0, false, false, 204, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (132, '2018-03-15 16:10:55.543191+00', '2018-12-31 13:05:21.056505+00', 0, 0, 0, 0, false, false, 262, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (133, '2018-03-15 16:10:55.562752+00', '2018-12-31 13:05:21.070428+00', 0, 0, 0, 0, false, false, 332, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (134, '2018-03-15 16:10:55.582615+00', '2018-12-31 13:05:21.088092+00', 0, 0, 0, 0, false, false, 58, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (135, '2018-03-15 16:10:55.601982+00', '2018-12-31 13:05:21.103525+00', 0, 0, 0, 0, false, false, 150, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (136, '2018-03-15 16:10:55.621929+00', '2018-12-31 13:05:21.141813+00', 0, 0, 0, 0, false, false, 372, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (137, '2018-03-15 16:10:55.641612+00', '2018-12-31 13:05:21.156374+00', 0, 0, 0, 0, false, false, 335, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (138, '2018-03-15 16:10:55.662043+00', '2018-12-31 13:05:21.170288+00', 0, 0, 0, 0, false, false, 164, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (139, '2018-03-15 16:10:55.681749+00', '2018-12-31 13:05:21.184202+00', 0, 0, 0, 0, false, false, 243, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (140, '2018-03-15 16:10:55.70141+00', '2018-12-31 13:05:21.19812+00', 0, 0, 0, 0, false, false, 302, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (141, '2018-03-15 16:10:55.722488+00', '2018-12-31 13:05:21.212082+00', 0, 0, 0, 0, false, false, 392, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (142, '2018-03-15 16:10:55.742237+00', '2018-12-31 13:05:21.226379+00', 0, 0, 0, 0, false, false, 286, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (143, '2018-03-15 16:10:55.762609+00', '2018-12-31 13:05:21.240699+00', 0, 0, 0, 0, false, false, 280, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (144, '2018-03-15 16:10:55.78214+00', '2018-12-31 13:05:21.281135+00', 0, 0, 0, 0, false, false, 269, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (145, '2018-03-15 16:10:55.80161+00', '2018-12-31 13:05:21.294675+00', 0, 0, 0, 0, false, false, 134, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (146, '2018-03-15 16:10:55.821135+00', '2018-12-31 13:05:21.308667+00', 0, 0, 0, 0, false, false, 135, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (147, '2018-03-15 16:10:55.84084+00', '2018-12-31 13:05:21.322598+00', 0, 0, 0, 0, false, false, 121, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (149, '2018-03-15 16:10:55.879506+00', '2018-12-31 13:05:21.337499+00', 0, 0, 0, 0, false, false, 122, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (148, '2018-03-15 16:10:55.859984+00', '2018-12-31 13:05:21.380785+00', 0, 0, 0, 0, false, false, 155, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (150, '2018-03-15 16:10:55.899073+00', '2018-12-31 13:05:21.394909+00', 0, 0, 0, 0, false, false, 215, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (151, '2018-03-15 16:10:55.918531+00', '2018-12-31 13:05:21.40908+00', 0, 0, 0, 0, false, false, 19, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (152, '2018-03-15 16:10:55.93829+00', '2018-12-31 13:05:21.427237+00', 0, 0, 0, 0, false, false, 144, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (153, '2018-03-15 16:10:55.960884+00', '2018-12-31 13:05:21.441381+00', 0, 0, 0, 0, false, false, 184, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (154, '2018-03-15 16:10:55.984444+00', '2018-12-31 13:05:21.456578+00', 0, 0, 0, 0, false, false, 214, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (155, '2018-03-15 16:10:56.004437+00', '2018-12-31 13:05:21.470283+00', 0, 0, 0, 0, false, false, 355, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (156, '2018-03-15 16:10:56.024169+00', '2018-12-31 13:05:21.484587+00', 0, 0, 0, 0, false, false, 288, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (157, '2018-03-15 16:10:56.044355+00', '2018-12-31 13:05:21.525536+00', 0, 0, 0, 0, false, false, 422, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (158, '2018-03-15 16:10:56.064398+00', '2018-12-31 13:05:21.540674+00', 0, 0, 0, 0, false, false, 145, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (159, '2018-03-15 16:10:56.084457+00', '2018-12-31 13:05:21.554585+00', 0, 0, 0, 0, false, false, 149, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (160, '2018-03-15 16:10:56.104689+00', '2018-12-31 13:05:21.568226+00', 0, 0, 0, 0, false, false, 133, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (161, '2018-03-15 16:10:56.125355+00', '2018-12-31 13:05:21.605546+00', 0, 0, 0, 0, false, false, 124, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (162, '2018-03-15 16:10:56.144879+00', '2018-12-31 13:05:21.641925+00', 0, 0, 0, 0, false, false, 125, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (163, '2018-03-15 16:10:56.164161+00', '2018-12-31 13:05:21.655904+00', 0, 0, 0, 0, false, false, 126, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (164, '2018-03-15 16:10:56.184107+00', '2018-12-31 13:05:21.669831+00', 0, 0, 0, 0, false, false, 194, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (165, '2018-03-15 16:10:56.204041+00', '2018-12-31 13:05:21.685991+00', 0, 0, 0, 0, false, false, 295, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (166, '2018-03-15 16:10:56.223642+00', '2018-12-31 13:05:21.703107+00', 0, 0, 0, 0, false, false, 408, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (167, '2018-03-15 16:10:56.243183+00', '2018-12-31 13:05:21.743575+00', 0, 0, 0, 0, false, false, 162, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (168, '2018-03-15 16:10:56.263414+00', '2018-12-31 13:05:21.75896+00', 0, 0, 0, 0, false, false, 127, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (169, '2018-03-15 16:10:56.284115+00', '2018-12-31 13:05:21.773306+00', 0, 0, 0, 0, false, false, 284, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (170, '2018-03-15 16:10:56.303989+00', '2018-12-31 13:05:21.787222+00', 0, 0, 0, 0, false, false, 35, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (171, '2018-03-15 16:10:56.32409+00', '2018-12-31 13:05:21.824236+00', 0, 0, 0, 0, false, false, 141, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (172, '2018-03-15 16:10:56.344177+00', '2018-12-31 13:05:21.861901+00', 0, 0, 0, 0, false, false, 398, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (173, '2018-03-15 16:10:56.364116+00', '2018-12-31 13:05:21.876416+00', 0, 0, 0, 0, false, false, 37, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (174, '2018-03-15 16:10:56.384623+00', '2018-12-31 13:05:21.890028+00', 0, 0, 0, 0, false, false, 38, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (175, '2018-03-15 16:10:56.404282+00', '2018-12-31 13:05:21.928129+00', 0, 0, 0, 0, false, false, 180, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (176, '2018-03-15 16:10:56.427293+00', '2018-12-31 13:05:21.965447+00', 0, 0, 0, 0, false, false, 344, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (177, '2018-03-15 16:10:56.448314+00', '2018-12-31 13:05:21.979392+00', 0, 0, 0, 0, false, false, 236, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (178, '2018-03-15 16:10:56.468455+00', '2018-12-31 13:05:21.994536+00', 0, 0, 0, 0, false, false, 167, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (179, '2018-03-15 16:10:56.488896+00', '2018-12-31 13:05:22.008195+00', 0, 0, 0, 0, false, false, 36, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (180, '2018-03-15 16:10:56.509027+00', '2018-12-31 13:05:22.022199+00', 0, 0, 0, 0, false, false, 233, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (181, '2018-03-15 16:10:56.529182+00', '2018-12-31 13:05:22.064319+00', 0, 0, 0, 0, false, false, 246, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (182, '2018-03-15 16:10:56.550412+00', '2018-12-31 13:05:22.102574+00', 0, 0, 0, 0, false, false, 315, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (183, '2018-03-15 16:10:56.570217+00', '2018-12-31 13:05:22.141035+00', 0, 0, 0, 0, false, false, 311, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (184, '2018-03-15 16:10:56.589899+00', '2018-12-31 13:05:22.155474+00', 0, 0, 0, 0, false, false, 306, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (185, '2018-03-15 16:10:56.609676+00', '2018-12-31 13:05:22.193652+00', 0, 0, 0, 0, false, false, 396, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (186, '2018-03-15 16:10:56.629941+00', '2018-12-31 13:05:22.208497+00', 0, 0, 0, 0, false, false, 179, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (187, '2018-03-15 16:10:56.649913+00', '2018-12-31 13:05:22.223071+00', 0, 0, 0, 0, false, false, 108, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (188, '2018-03-15 16:10:56.670517+00', '2018-12-31 13:05:22.236484+00', 0, 0, 0, 0, false, false, 241, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (189, '2018-03-15 16:10:56.690285+00', '2018-12-31 13:05:22.273883+00', 0, 0, 0, 0, false, false, 352, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (190, '2018-03-15 16:10:56.710259+00', '2018-12-31 13:05:22.288571+00', 0, 0, 0, 0, false, false, 39, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (191, '2018-03-15 16:10:56.731683+00', '2018-12-31 13:05:22.326154+00', 0, 0, 0, 0, false, false, 45, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (192, '2018-03-15 16:10:56.752049+00', '2018-12-31 13:05:22.339653+00', 0, 0, 0, 0, false, false, 316, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (193, '2018-03-15 16:10:56.771668+00', '2018-12-31 13:05:22.353749+00', 0, 0, 0, 0, false, false, 267, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (194, '2018-03-15 16:10:56.791134+00', '2018-12-31 13:05:22.368209+00', 0, 0, 0, 0, false, false, 40, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (195, '2018-03-15 16:10:56.810706+00', '2018-12-31 13:05:22.382661+00', 0, 0, 0, 0, false, false, 239, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (196, '2018-03-15 16:10:56.830817+00', '2018-12-31 13:05:22.425275+00', 0, 0, 0, 0, false, false, 47, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (197, '2018-03-15 16:10:56.851917+00', '2018-12-31 13:05:22.4664+00', 0, 0, 0, 0, false, false, 177, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (198, '2018-03-15 16:10:56.872636+00', '2018-12-31 13:05:22.480516+00', 0, 0, 0, 0, false, false, 44, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (199, '2018-03-15 16:10:56.893456+00', '2018-12-31 13:05:22.49445+00', 0, 0, 0, 0, false, false, 272, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (200, '2018-03-15 16:10:56.912941+00', '2018-12-31 13:05:22.533467+00', 0, 0, 0, 0, false, false, 174, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (201, '2018-03-15 16:10:56.932882+00', '2018-12-31 13:05:22.570688+00', 0, 0, 0, 0, false, false, 268, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (202, '2018-03-15 16:10:56.952564+00', '2018-12-31 13:05:22.608638+00', 0, 0, 0, 0, false, false, 158, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (203, '2018-03-15 16:10:56.972537+00', '2018-12-31 13:05:22.645792+00', 0, 0, 0, 0, false, false, 46, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (270, '2018-03-15 16:10:58.324477+00', '2018-12-31 13:05:22.682402+00', 0, 0, 0, 0, false, false, 187, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (204, '2018-03-15 16:10:56.992501+00', '2018-12-31 13:05:22.720881+00', 0, 0, 0, 0, false, false, 206, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (205, '2018-03-15 16:10:57.012085+00', '2018-12-31 13:05:22.75825+00', 0, 0, 0, 0, false, false, 42, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (206, '2018-03-15 16:10:57.031771+00', '2018-12-31 13:05:22.795224+00', 0, 0, 0, 0, false, false, 266, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (207, '2018-03-15 16:10:57.051594+00', '2018-12-31 13:05:22.83372+00', 0, 0, 0, 0, false, false, 292, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (208, '2018-03-15 16:10:57.071759+00', '2018-12-31 13:05:22.870097+00', 0, 0, 0, 0, false, false, 49, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (209, '2018-03-15 16:10:57.091785+00', '2018-12-31 13:05:22.906321+00', 0, 0, 0, 0, false, false, 43, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (210, '2018-03-15 16:10:57.112279+00', '2018-12-31 13:05:22.943397+00', 0, 0, 0, 0, false, false, 199, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (211, '2018-03-15 16:10:57.132517+00', '2018-12-31 13:05:22.983709+00', 0, 0, 0, 0, false, false, 48, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (212, '2018-03-15 16:10:57.15226+00', '2018-12-31 13:05:22.997472+00', 0, 0, 0, 0, false, false, 176, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (213, '2018-03-15 16:10:57.17356+00', '2018-12-31 13:05:23.036582+00', 0, 0, 0, 0, false, false, 41, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (214, '2018-03-15 16:10:57.195134+00', '2018-12-31 13:05:23.077031+00', 0, 0, 0, 0, false, false, 238, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (215, '2018-03-15 16:10:57.214653+00', '2018-12-31 13:05:23.091034+00', 0, 0, 0, 0, false, false, 259, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (216, '2018-03-15 16:10:57.235206+00', '2018-12-31 13:05:23.105147+00', 0, 0, 0, 0, false, false, 327, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (217, '2018-03-15 16:10:57.25513+00', '2018-12-31 13:05:23.119665+00', 0, 0, 0, 0, false, false, 271, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (218, '2018-03-15 16:10:57.277629+00', '2018-12-31 13:05:23.134272+00', 0, 0, 0, 0, false, false, 186, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (219, '2018-03-15 16:10:57.299866+00', '2018-12-31 13:05:23.149256+00', 0, 0, 0, 0, false, false, 287, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (220, '2018-03-15 16:10:57.32113+00', '2018-12-31 13:05:23.164182+00', 0, 0, 0, 0, false, false, 397, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (221, '2018-03-15 16:10:57.343771+00', '2018-12-31 13:05:23.178876+00', 0, 0, 0, 0, false, false, 299, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (222, '2018-03-15 16:10:57.363721+00', '2018-12-31 13:05:23.218019+00', 0, 0, 0, 0, false, false, 120, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (223, '2018-03-15 16:10:57.384217+00', '2018-12-31 13:05:23.255378+00', 0, 0, 0, 0, false, false, 420, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (224, '2018-03-15 16:10:57.403973+00', '2018-12-31 13:05:23.270331+00', 0, 0, 0, 0, false, false, 50, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (225, '2018-03-15 16:10:57.423943+00', '2018-12-31 13:05:23.30929+00', 0, 0, 0, 0, false, false, 112, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (226, '2018-03-15 16:10:57.443615+00', '2018-12-31 13:05:23.324136+00', 0, 0, 0, 0, false, false, 59, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (437, '2018-09-02 00:05:01.17286+00', '2018-12-31 13:05:23.366158+00', 0, 0, 0, 0, false, false, 438, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (227, '2018-03-15 16:10:57.46365+00', '2018-12-31 13:05:23.404611+00', 0, 0, 0, 0, false, false, 60, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (228, '2018-03-15 16:10:57.483628+00', '2018-12-31 13:05:23.446114+00', 0, 0, 0, 0, false, false, 227, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (229, '2018-03-15 16:10:57.503178+00', '2018-12-31 13:05:23.486368+00', 0, 0, 0, 0, false, false, 393, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (230, '2018-03-15 16:10:57.522982+00', '2018-12-31 13:05:23.500919+00', 0, 0, 0, 0, false, false, 329, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (231, '2018-03-15 16:10:57.543141+00', '2018-12-31 13:05:23.542196+00', 0, 0, 0, 0, false, false, 417, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (232, '2018-03-15 16:10:57.562429+00', '2018-12-31 13:05:23.582343+00', 0, 0, 0, 0, false, false, 405, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (233, '2018-03-15 16:10:57.582469+00', '2018-12-31 13:05:23.597201+00', 0, 0, 0, 0, false, false, 61, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (234, '2018-03-15 16:10:57.603153+00', '2018-12-31 13:05:23.612814+00', 0, 0, 0, 0, false, false, 225, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (235, '2018-03-15 16:10:57.622758+00', '2018-12-31 13:05:23.627635+00', 0, 0, 0, 0, false, false, 63, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (236, '2018-03-15 16:10:57.645413+00', '2018-12-31 13:05:23.642226+00', 0, 0, 0, 0, false, false, 363, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (237, '2018-03-15 16:10:57.665209+00', '2018-12-31 13:05:23.657221+00', 0, 0, 0, 0, false, false, 64, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (238, '2018-03-15 16:10:57.684959+00', '2018-12-31 13:05:23.695388+00', 0, 0, 0, 0, false, false, 65, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (239, '2018-03-15 16:10:57.704741+00', '2018-12-31 13:05:23.709584+00', 0, 0, 0, 0, false, false, 67, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (240, '2018-03-15 16:10:57.725474+00', '2018-12-31 13:05:23.724403+00', 0, 0, 0, 0, false, false, 68, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (241, '2018-03-15 16:10:57.745316+00', '2018-12-31 13:05:23.739079+00', 0, 0, 0, 0, false, false, 338, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (242, '2018-03-15 16:10:57.765942+00', '2018-12-31 13:05:23.778543+00', 0, 0, 0, 0, false, false, 378, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (243, '2018-03-15 16:10:57.785668+00', '2018-12-31 13:05:23.793812+00', 0, 0, 0, 0, false, false, 371, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (244, '2018-03-15 16:10:57.805603+00', '2018-12-31 13:05:23.808309+00', 0, 0, 0, 0, false, false, 69, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (245, '2018-03-15 16:10:57.825796+00', '2018-12-31 13:05:23.822754+00', 0, 0, 0, 0, false, false, 70, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (246, '2018-03-15 16:10:57.845604+00', '2018-12-31 13:05:23.837203+00', 0, 0, 0, 0, false, false, 336, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (247, '2018-03-15 16:10:57.864731+00', '2018-12-31 13:05:23.852272+00', 0, 0, 0, 0, false, false, 78, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (248, '2018-03-15 16:10:57.884508+00', '2018-12-31 13:05:23.868936+00', 0, 0, 0, 0, false, false, 89, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (249, '2018-03-15 16:10:57.904238+00', '2018-12-31 13:05:23.883582+00', 0, 0, 0, 0, false, false, 90, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (250, '2018-03-15 16:10:57.924783+00', '2018-12-31 13:05:23.924196+00', 0, 0, 0, 0, false, false, 62, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (251, '2018-03-15 16:10:57.944804+00', '2018-12-31 13:05:23.939312+00', 0, 0, 0, 0, false, false, 340, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (252, '2018-03-15 16:10:57.964942+00', '2018-12-31 13:05:23.95455+00', 0, 0, 0, 0, false, false, 362, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (253, '2018-03-15 16:10:57.984844+00', '2018-12-31 13:05:23.969577+00', 0, 0, 0, 0, false, false, 91, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (254, '2018-03-15 16:10:58.00458+00', '2018-12-31 13:05:23.984136+00', 0, 0, 0, 0, false, false, 347, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (255, '2018-03-15 16:10:58.023893+00', '2018-12-31 13:05:24.023496+00', 0, 0, 0, 0, false, false, 367, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (256, '2018-03-15 16:10:58.043572+00', '2018-12-31 13:05:24.038372+00', 0, 0, 0, 0, false, false, 382, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (257, '2018-03-15 16:10:58.06308+00', '2018-12-31 13:05:24.058923+00', 0, 0, 0, 0, false, false, 66, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (258, '2018-03-15 16:10:58.08337+00', '2018-12-31 13:05:24.073961+00', 0, 0, 0, 0, false, false, 92, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (259, '2018-03-15 16:10:58.10539+00', '2018-12-31 13:05:24.088258+00', 0, 0, 0, 0, false, false, 93, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (260, '2018-03-15 16:10:58.124801+00', '2018-12-31 13:05:24.128151+00', 0, 0, 0, 0, false, false, 304, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (261, '2018-03-15 16:10:58.144532+00', '2018-12-31 13:05:24.167177+00', 0, 0, 0, 0, false, false, 411, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (432, '2018-05-17 16:22:25.971541+00', '2018-12-31 13:05:24.205294+00', 0, 0, 0, 0, false, false, 433, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (262, '2018-03-15 16:10:58.164157+00', '2018-12-31 13:05:24.22034+00', 0, 0, 0, 0, false, false, 94, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (263, '2018-03-15 16:10:58.183689+00', '2018-12-31 13:05:24.235261+00', 0, 0, 0, 0, false, false, 33, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (264, '2018-03-15 16:10:58.203781+00', '2018-12-31 13:05:24.249531+00', 0, 0, 0, 0, false, false, 138, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (265, '2018-03-15 16:10:58.225709+00', '2018-12-31 13:05:24.264748+00', 0, 0, 0, 0, false, false, 394, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (266, '2018-03-15 16:10:58.245709+00', '2018-12-31 13:05:24.279277+00', 0, 0, 0, 0, false, false, 264, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (267, '2018-03-15 16:10:58.265489+00', '2018-12-31 13:05:24.295183+00', 0, 0, 0, 0, false, false, 260, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (268, '2018-03-15 16:10:58.285022+00', '2018-12-31 13:05:24.310325+00', 0, 0, 0, 0, false, false, 131, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (269, '2018-03-15 16:10:58.304607+00', '2018-12-31 13:05:24.350104+00', 0, 0, 0, 0, false, false, 313, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (271, '2018-03-15 16:10:58.344573+00', '2018-12-31 13:05:24.388705+00', 0, 0, 0, 0, false, false, 95, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (272, '2018-03-15 16:10:58.364751+00', '2018-12-31 13:05:24.402947+00', 0, 0, 0, 0, false, false, 185, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (273, '2018-03-15 16:10:58.384461+00', '2018-12-31 13:05:24.422274+00', 0, 0, 0, 0, false, false, 333, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (274, '2018-03-15 16:10:58.404269+00', '2018-12-31 13:05:24.437122+00', 0, 0, 0, 0, false, false, 384, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (275, '2018-03-15 16:10:58.423702+00', '2018-12-31 13:05:24.451258+00', 0, 0, 0, 0, false, false, 404, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (276, '2018-03-15 16:10:58.444533+00', '2018-12-31 13:05:24.466921+00', 0, 0, 0, 0, false, false, 115, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (277, '2018-03-15 16:10:58.46449+00', '2018-12-31 13:05:24.481937+00', 0, 0, 0, 0, false, false, 14, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (278, '2018-03-15 16:10:58.483538+00', '2018-12-31 13:05:24.496607+00', 0, 0, 0, 0, false, false, 277, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (279, '2018-03-15 16:10:58.50355+00', '2018-12-31 13:05:24.511473+00', 0, 0, 0, 0, false, false, 406, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (280, '2018-03-15 16:10:58.523733+00', '2018-12-31 13:05:24.52595+00', 0, 0, 0, 0, false, false, 242, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (281, '2018-03-15 16:10:58.543696+00', '2018-12-31 13:05:24.54021+00', 0, 0, 0, 0, false, false, 263, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (282, '2018-03-15 16:10:58.563912+00', '2018-12-31 13:05:24.554994+00', 0, 0, 0, 0, false, false, 211, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (283, '2018-03-15 16:10:58.584023+00', '2018-12-31 13:05:24.569133+00', 0, 0, 0, 0, false, false, 307, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (284, '2018-03-15 16:10:58.604081+00', '2018-12-31 13:05:24.607344+00', 0, 0, 0, 0, false, false, 413, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (285, '2018-03-15 16:10:58.624114+00', '2018-12-31 13:05:24.622227+00', 0, 0, 0, 0, false, false, 395, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (286, '2018-03-15 16:10:58.643695+00', '2018-12-31 13:05:24.659241+00', 0, 0, 0, 0, false, false, 350, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (287, '2018-03-15 16:10:58.663638+00', '2018-12-31 13:05:24.674171+00', 0, 0, 0, 0, false, false, 231, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (288, '2018-03-15 16:10:58.683455+00', '2018-12-31 13:05:24.689076+00', 0, 0, 0, 0, false, false, 356, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (289, '2018-03-15 16:10:58.703577+00', '2018-12-31 13:05:24.703611+00', 0, 0, 0, 0, false, false, 399, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (290, '2018-03-15 16:10:58.723138+00', '2018-12-31 13:05:24.718363+00', 0, 0, 0, 0, false, false, 377, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (291, '2018-03-15 16:10:58.742934+00', '2018-12-31 13:05:24.732615+00', 0, 0, 0, 0, false, false, 341, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (292, '2018-03-15 16:10:58.762582+00', '2018-12-31 13:05:24.747296+00', 0, 0, 0, 0, false, false, 365, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (293, '2018-03-15 16:10:58.783481+00', '2018-12-31 13:05:24.76125+00', 0, 0, 0, 0, false, false, 224, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (294, '2018-03-15 16:10:58.803184+00', '2018-12-31 13:05:24.799659+00', 0, 0, 0, 0, false, false, 369, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (295, '2018-03-15 16:10:58.822946+00', '2018-12-31 13:05:24.813806+00', 0, 0, 0, 0, false, false, 196, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (296, '2018-03-15 16:10:58.842825+00', '2018-12-31 13:05:24.852293+00', 0, 0, 0, 0, false, false, 208, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (297, '2018-03-15 16:10:58.863285+00', '2018-12-31 13:05:24.866853+00', 0, 0, 0, 0, false, false, 274, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (298, '2018-03-15 16:10:58.883322+00', '2018-12-31 13:05:24.881114+00', 0, 0, 0, 0, false, false, 291, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (300, '2018-03-15 16:10:58.924902+00', '2018-12-31 13:05:24.895701+00', 0, 0, 0, 0, false, false, 255, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (299, '2018-03-15 16:10:58.904022+00', '2018-12-31 13:05:24.934574+00', 0, 0, 0, 0, false, false, 357, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (301, '2018-03-15 16:10:58.944587+00', '2018-12-31 13:05:24.949224+00', 0, 0, 0, 0, false, false, 345, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (302, '2018-03-15 16:10:58.96448+00', '2018-12-31 13:05:24.964353+00', 0, 0, 0, 0, false, false, 4, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (303, '2018-03-15 16:10:58.984273+00', '2018-12-31 13:05:25.003225+00', 0, 0, 0, 0, false, false, 298, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (304, '2018-03-15 16:10:59.007223+00', '2018-12-31 13:05:25.017334+00', 0, 0, 0, 0, false, false, 318, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (305, '2018-03-15 16:10:59.026975+00', '2018-12-31 13:05:25.05567+00', 0, 0, 0, 0, false, false, 5, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (306, '2018-03-15 16:10:59.046472+00', '2018-12-31 13:05:25.069816+00', 0, 0, 0, 0, false, false, 6, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (307, '2018-03-15 16:10:59.066175+00', '2018-12-31 13:05:25.105501+00', 0, 0, 0, 0, false, false, 7, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (308, '2018-03-15 16:10:59.086695+00', '2018-12-31 13:05:25.141931+00', 0, 0, 0, 0, false, false, 8, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (309, '2018-03-15 16:10:59.10692+00', '2018-12-31 13:05:25.156162+00', 0, 0, 0, 0, false, false, 139, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (310, '2018-03-15 16:10:59.127394+00', '2018-12-31 13:05:25.170852+00', 0, 0, 0, 0, false, false, 9, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (311, '2018-03-15 16:10:59.147122+00', '2018-12-31 13:05:25.185169+00', 0, 0, 0, 0, false, false, 12, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (312, '2018-03-15 16:10:59.166909+00', '2018-12-31 13:05:25.1993+00', 0, 0, 0, 0, false, false, 314, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (313, '2018-03-15 16:10:59.1869+00', '2018-12-31 13:05:25.213688+00', 0, 0, 0, 0, false, false, 193, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (314, '2018-03-15 16:10:59.20714+00', '2018-12-31 13:05:25.22811+00', 0, 0, 0, 0, false, false, 11, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (315, '2018-03-15 16:10:59.228187+00', '2018-12-31 13:05:25.2422+00', 0, 0, 0, 0, false, false, 142, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (316, '2018-03-15 16:10:59.248281+00', '2018-12-31 13:05:25.282874+00', 0, 0, 0, 0, false, false, 53, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (317, '2018-03-15 16:10:59.271967+00', '2018-12-31 13:05:25.297033+00', 0, 0, 0, 0, false, false, 13, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (318, '2018-03-15 16:10:59.292219+00', '2018-12-31 13:05:25.310938+00', 0, 0, 0, 0, false, false, 203, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (319, '2018-03-15 16:10:59.312492+00', '2018-12-31 13:05:25.324469+00', 0, 0, 0, 0, false, false, 273, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (320, '2018-03-15 16:10:59.333115+00', '2018-12-31 13:05:25.339129+00', 0, 0, 0, 0, false, false, 275, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (321, '2018-03-15 16:10:59.352793+00', '2018-12-31 13:05:25.358472+00', 0, 0, 0, 0, false, false, 75, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (322, '2018-03-15 16:10:59.372463+00', '2018-12-31 13:05:25.372631+00', 0, 0, 0, 0, false, false, 71, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (436, '2018-08-28 13:22:24.220339+00', '2018-12-31 13:05:25.410764+00', 0, 0, 0, 0, false, false, 437, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (323, '2018-03-15 16:10:59.392153+00', '2018-12-31 13:05:25.450927+00', 0, 0, 0, 0, false, false, 323, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (324, '2018-03-15 16:10:59.412013+00', '2018-12-31 13:05:25.465205+00', 0, 0, 0, 0, false, false, 166, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (325, '2018-03-15 16:10:59.431563+00', '2018-12-31 13:05:25.481764+00', 0, 0, 0, 0, false, false, 195, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (326, '2018-03-15 16:10:59.451694+00', '2018-12-31 13:05:25.50254+00', 0, 0, 0, 0, false, false, 34, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (327, '2018-03-15 16:10:59.471623+00', '2018-12-31 13:05:25.51933+00', 0, 0, 0, 0, false, false, 72, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (328, '2018-03-15 16:10:59.490909+00', '2018-12-31 13:05:25.534781+00', 0, 0, 0, 0, false, false, 102, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (329, '2018-03-15 16:10:59.51116+00', '2018-12-31 13:05:25.54931+00', 0, 0, 0, 0, false, false, 101, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (330, '2018-03-15 16:10:59.531588+00', '2018-12-31 13:05:25.58947+00', 0, 0, 0, 0, false, false, 51, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (331, '2018-03-15 16:10:59.55127+00', '2018-12-31 13:05:25.63011+00', 0, 0, 0, 0, false, false, 100, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (332, '2018-03-15 16:10:59.570835+00', '2018-12-31 13:05:25.673036+00', 0, 0, 0, 0, false, false, 76, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (333, '2018-03-15 16:10:59.590411+00', '2018-12-31 13:05:25.687243+00', 0, 0, 0, 0, false, false, 140, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (334, '2018-03-15 16:10:59.61012+00', '2018-12-31 13:05:25.701172+00', 0, 0, 0, 0, false, false, 73, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (335, '2018-03-15 16:10:59.63007+00', '2018-12-31 13:05:25.740623+00', 0, 0, 0, 0, false, false, 74, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (336, '2018-03-15 16:10:59.64919+00', '2018-12-31 13:05:25.778034+00', 0, 0, 0, 0, false, false, 400, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (337, '2018-03-15 16:10:59.669106+00', '2018-12-31 13:05:25.792072+00', 0, 0, 0, 0, false, false, 331, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (338, '2018-03-15 16:10:59.68852+00', '2018-12-31 13:05:25.806262+00', 0, 0, 0, 0, false, false, 52, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (430, '2018-04-12 00:06:07.156144+00', '2018-12-31 13:05:25.844698+00', 0, 0, 0, 0, false, false, 430, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (339, '2018-03-15 16:10:59.708604+00', '2018-12-31 13:05:25.858109+00', 0, 0, 0, 0, false, false, 361, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (340, '2018-03-15 16:10:59.728362+00', '2018-12-31 13:05:25.896769+00', 0, 0, 0, 0, false, false, 18, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (431, '2018-04-25 14:14:27.486915+00', '2018-12-31 13:05:25.937077+00', 0, 0, 0, 0, false, false, 431, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (341, '2018-03-15 16:10:59.750062+00', '2018-12-31 13:05:25.950941+00', 0, 0, 0, 0, false, false, 297, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (342, '2018-03-15 16:10:59.769595+00', '2018-12-31 13:05:25.965218+00', 0, 0, 0, 0, false, false, 209, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (343, '2018-03-15 16:10:59.788981+00', '2018-12-31 13:05:25.979904+00', 0, 0, 0, 0, false, false, 359, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (344, '2018-03-15 16:10:59.808358+00', '2018-12-31 13:05:25.994083+00', 0, 0, 0, 0, false, false, 207, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (345, '2018-03-15 16:10:59.827999+00', '2018-12-31 13:05:26.008912+00', 0, 0, 0, 0, false, false, 197, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (346, '2018-03-15 16:10:59.847951+00', '2018-12-31 13:05:26.022525+00', 0, 0, 0, 0, false, false, 20, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (347, '2018-03-15 16:10:59.868459+00', '2018-12-31 13:05:26.036996+00', 0, 0, 0, 0, false, false, 79, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (348, '2018-03-15 16:10:59.888115+00', '2018-12-31 13:05:26.082215+00', 0, 0, 0, 0, false, false, 407, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (349, '2018-03-15 16:10:59.908714+00', '2018-12-31 13:05:26.097179+00', 0, 0, 0, 0, false, false, 153, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (350, '2018-03-15 16:10:59.929427+00', '2018-12-31 13:05:26.113934+00', 0, 0, 0, 0, false, false, 380, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (351, '2018-03-15 16:10:59.949556+00', '2018-12-31 13:05:26.13179+00', 0, 0, 0, 0, false, false, 160, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (352, '2018-03-15 16:10:59.970672+00', '2018-12-31 13:05:26.15651+00', 0, 0, 0, 0, false, false, 147, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (353, '2018-03-15 16:10:59.990494+00', '2018-12-31 13:05:26.174826+00', 0, 0, 0, 0, false, false, 80, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (354, '2018-03-15 16:11:00.010409+00', '2018-12-31 13:05:26.189256+00', 0, 0, 0, 0, false, false, 96, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (355, '2018-03-15 16:11:00.030235+00', '2018-12-31 13:05:26.228052+00', 0, 0, 0, 0, false, false, 270, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (356, '2018-03-15 16:11:00.050107+00', '2018-12-31 13:05:26.2659+00', 0, 0, 0, 0, false, false, 410, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (357, '2018-03-15 16:11:00.070127+00', '2018-12-31 13:05:26.280222+00', 0, 0, 0, 0, false, false, 172, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (358, '2018-03-15 16:11:00.090381+00', '2018-12-31 13:05:26.317446+00', 0, 0, 0, 0, false, false, 230, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (359, '2018-03-15 16:11:00.112521+00', '2018-12-31 13:05:26.332523+00', 0, 0, 0, 0, false, false, 159, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (3, '2018-03-15 16:10:52.927047+00', '2018-12-31 13:05:26.369066+00', 0, 0, 0, 0, false, false, 81, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (360, '2018-03-15 16:11:00.13237+00', '2018-12-31 13:05:26.38361+00', 0, 0, 0, 0, false, false, 326, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (361, '2018-03-15 16:11:00.15281+00', '2018-12-31 13:05:26.397684+00', 0, 0, 0, 0, false, false, 171, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (362, '2018-03-15 16:11:00.172926+00', '2018-12-31 13:05:26.411636+00', 0, 0, 0, 0, false, false, 301, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (363, '2018-03-15 16:11:00.194276+00', '2018-12-31 13:05:26.430531+00', 0, 0, 0, 0, false, false, 189, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (364, '2018-03-15 16:11:00.21533+00', '2018-12-31 13:05:26.467926+00', 0, 0, 0, 0, false, false, 421, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (365, '2018-03-15 16:11:00.235344+00', '2018-12-31 13:05:26.505633+00', 0, 0, 0, 0, false, false, 425, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (366, '2018-03-15 16:11:00.255698+00', '2018-12-31 13:05:26.519676+00', 0, 0, 0, 0, false, false, 202, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (367, '2018-03-15 16:11:00.279844+00', '2018-12-31 13:05:26.534283+00', 0, 0, 0, 0, false, false, 252, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (368, '2018-03-15 16:11:00.300555+00', '2018-12-31 13:05:26.547724+00', 0, 0, 0, 0, false, false, 201, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (369, '2018-03-15 16:11:00.320619+00', '2018-12-31 13:05:26.561301+00', 0, 0, 0, 0, false, false, 192, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (370, '2018-03-15 16:11:00.340462+00', '2018-12-31 13:05:26.574772+00', 0, 0, 0, 0, false, false, 82, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (371, '2018-03-15 16:11:00.360171+00', '2018-12-31 13:05:26.588611+00', 0, 0, 0, 0, false, false, 109, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (372, '2018-03-15 16:11:00.380832+00', '2018-12-31 13:05:26.60275+00', 0, 0, 0, 0, false, false, 21, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (373, '2018-03-15 16:11:00.400212+00', '2018-12-31 13:05:26.61821+00', 0, 0, 0, 0, false, false, 22, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (374, '2018-03-15 16:11:00.419736+00', '2018-12-31 13:05:26.632854+00', 0, 0, 0, 0, false, false, 23, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (375, '2018-03-15 16:11:00.439831+00', '2018-12-31 13:05:26.646681+00', 0, 0, 0, 0, false, false, 110, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (376, '2018-03-15 16:11:00.459843+00', '2018-12-31 13:05:26.661084+00', 0, 0, 0, 0, false, false, 83, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (377, '2018-03-15 16:11:00.479519+00', '2018-12-31 13:05:26.674831+00', 0, 0, 0, 0, false, false, 200, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (379, '2018-03-15 16:11:00.520785+00', '2018-12-31 13:05:26.688864+00', 0, 0, 0, 0, false, false, 113, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (378, '2018-03-15 16:11:00.499733+00', '2018-12-31 13:05:26.726794+00', 0, 0, 0, 0, false, false, 337, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (380, '2018-03-15 16:11:00.540223+00', '2018-12-31 13:05:26.740612+00', 0, 0, 0, 0, false, false, 143, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (381, '2018-03-15 16:11:00.56022+00', '2018-12-31 13:05:26.754751+00', 0, 0, 0, 0, false, false, 278, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (382, '2018-03-15 16:11:00.57996+00', '2018-12-31 13:05:26.768729+00', 0, 0, 0, 0, false, false, 84, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (383, '2018-03-15 16:11:00.599976+00', '2018-12-31 13:05:26.782751+00', 0, 0, 0, 0, false, false, 210, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (384, '2018-03-15 16:11:00.620123+00', '2018-12-31 13:05:26.796821+00', 0, 0, 0, 0, false, false, 390, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (385, '2018-03-15 16:11:00.640021+00', '2018-12-31 13:05:26.81092+00', 0, 0, 0, 0, false, false, 152, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (386, '2018-03-15 16:11:00.659998+00', '2018-12-31 13:05:26.824817+00', 0, 0, 0, 0, false, false, 85, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (387, '2018-03-15 16:11:00.684598+00', '2018-12-31 13:05:26.839058+00', 0, 0, 0, 0, false, false, 253, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (388, '2018-03-15 16:11:00.70544+00', '2018-12-31 13:05:26.853039+00', 0, 0, 0, 0, false, false, 103, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (389, '2018-03-15 16:11:00.725061+00', '2018-12-31 13:05:26.867626+00', 0, 0, 0, 0, false, false, 353, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (390, '2018-03-15 16:11:00.744519+00', '2018-12-31 13:05:26.881821+00', 0, 0, 0, 0, false, false, 24, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (391, '2018-03-15 16:11:00.763843+00', '2018-12-31 13:05:26.8959+00', 0, 0, 0, 0, false, false, 111, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (392, '2018-03-15 16:11:00.783557+00', '2018-12-31 13:05:26.909649+00', 0, 0, 0, 0, false, false, 86, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (393, '2018-03-15 16:11:00.802974+00', '2018-12-31 13:05:26.926577+00', 0, 0, 0, 0, false, false, 191, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (394, '2018-03-15 16:11:00.822911+00', '2018-12-31 13:05:26.94036+00', 0, 0, 0, 0, false, false, 379, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (395, '2018-03-15 16:11:00.844383+00', '2018-12-31 13:05:26.954272+00', 0, 0, 0, 0, false, false, 218, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (396, '2018-03-15 16:11:00.864583+00', '2018-12-31 13:05:26.968172+00', 0, 0, 0, 0, false, false, 213, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (397, '2018-03-15 16:11:00.884388+00', '2018-12-31 13:05:27.004427+00', 0, 0, 0, 0, false, false, 424, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (398, '2018-03-15 16:11:00.903987+00', '2018-12-31 13:05:27.042179+00', 0, 0, 0, 0, false, false, 412, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (399, '2018-03-15 16:11:00.924137+00', '2018-12-31 13:05:27.059175+00', 0, 0, 0, 0, false, false, 328, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (400, '2018-03-15 16:11:00.944348+00', '2018-12-31 13:05:27.100209+00', 0, 0, 0, 0, false, false, 428, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (401, '2018-03-15 16:11:00.964295+00', '2018-12-31 13:05:27.140715+00', 0, 0, 0, 0, false, false, 322, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (402, '2018-03-15 16:11:00.987443+00', '2018-12-31 13:05:27.179132+00', 0, 0, 0, 0, false, false, 387, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (403, '2018-03-15 16:11:01.007202+00', '2018-12-31 13:05:27.217477+00', 0, 0, 0, 0, false, false, 419, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (405, '2018-03-15 16:11:01.046861+00', '2018-12-31 13:05:27.233333+00', 0, 0, 0, 0, false, false, 391, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (404, '2018-03-15 16:11:01.026925+00', '2018-12-31 13:05:27.272436+00', 0, 0, 0, 0, false, false, 169, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (406, '2018-03-15 16:11:01.06654+00', '2018-12-31 13:05:27.287236+00', 0, 0, 0, 0, false, false, 354, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (433, '2018-06-02 00:02:50.580391+00', '2018-12-31 13:05:27.325567+00', 0, 0, 0, 0, false, false, 434, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (407, '2018-03-15 16:11:01.087347+00', '2018-12-31 13:05:27.340006+00', 0, 0, 0, 0, false, false, 234, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (408, '2018-03-15 16:11:01.107481+00', '2018-12-31 13:05:27.38001+00', 0, 0, 0, 0, false, false, 88, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (409, '2018-03-15 16:11:01.126966+00', '2018-12-31 13:05:27.422714+00', 0, 0, 0, 0, false, false, 104, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (410, '2018-03-15 16:11:01.146872+00', '2018-12-31 13:05:27.436878+00', 0, 0, 0, 0, false, false, 223, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (429, '2018-04-01 00:05:29.74943+00', '2018-12-31 13:05:27.473528+00', 0, 0, 0, 0, false, false, 429, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (438, '2018-10-30 14:21:57.35623+00', '2018-12-31 13:05:27.488062+00', 0, 0, 0, 0, false, false, 439, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (411, '2018-03-15 16:11:01.166665+00', '2018-12-31 13:05:27.502029+00', 0, 0, 0, 0, false, false, 226, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (412, '2018-03-15 16:11:01.186641+00', '2018-12-31 13:05:27.521232+00', 0, 0, 0, 0, false, false, 245, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (413, '2018-03-15 16:11:01.207071+00', '2018-12-31 13:05:27.564042+00', 0, 0, 0, 0, false, false, 317, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (414, '2018-03-15 16:11:01.227039+00', '2018-12-31 13:05:27.601136+00', 0, 0, 0, 0, false, false, 105, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (415, '2018-03-15 16:11:01.246911+00', '2018-12-31 13:05:27.63892+00', 0, 0, 0, 0, false, false, 237, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (416, '2018-03-15 16:11:01.267563+00', '2018-12-31 13:05:27.655418+00', 0, 0, 0, 0, false, false, 348, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (417, '2018-03-15 16:11:01.287835+00', '2018-12-31 13:05:27.669948+00', 0, 0, 0, 0, false, false, 308, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (418, '2018-03-15 16:11:01.309745+00', '2018-12-31 13:05:27.684041+00', 0, 0, 0, 0, false, false, 351, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (419, '2018-03-15 16:11:01.331117+00', '2018-12-31 13:05:27.722029+00', 0, 0, 0, 0, false, false, 401, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (420, '2018-03-15 16:11:01.350841+00', '2018-12-31 13:05:27.737689+00', 0, 0, 0, 0, false, false, 303, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (421, '2018-03-15 16:11:01.371398+00', '2018-12-31 13:05:27.751644+00', 0, 0, 0, 0, false, false, 385, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (422, '2018-03-15 16:11:01.392273+00', '2018-12-31 13:05:27.766024+00', 0, 0, 0, 0, false, false, 276, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (435, '2018-08-28 13:22:09.544727+00', '2018-12-31 13:05:27.804845+00', 0, 0, 0, 0, false, false, 436, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (423, '2018-03-15 16:11:01.411971+00', '2018-12-31 13:05:27.819009+00', 0, 0, 0, 0, false, false, 132, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (424, '2018-03-15 16:11:01.431989+00', '2018-12-31 13:05:27.832847+00', 0, 0, 0, 0, false, false, 190, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (425, '2018-03-15 16:11:01.452078+00', '2018-12-31 13:05:27.84723+00', 0, 0, 0, 0, false, false, 249, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (426, '2018-03-15 16:11:01.47235+00', '2018-12-31 13:05:27.885895+00', 0, 0, 0, 0, false, false, 402, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (427, '2018-03-15 16:11:01.492065+00', '2018-12-31 13:05:27.924226+00', 0, 0, 0, 0, false, false, 415, 0); -INSERT INTO [[schema]].partners_plannedengagement VALUES (428, '2018-03-15 16:11:01.51244+00', '2018-12-31 13:05:27.938169+00', 0, 0, 0, 0, false, false, 240, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (454, '2020-02-08 00:22:46.538573+00', '2020-02-08 00:22:46.538573+00', 0, 0, 0, 0, false, false, 455, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (4, '2018-03-15 16:10:52.955144+00', '2019-12-31 03:30:22.334088+00', 0, 0, 0, 0, false, false, 2, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (5, '2018-03-15 16:10:52.975445+00', '2019-12-31 03:30:22.374971+00', 0, 0, 0, 0, false, false, 416, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (6, '2018-03-15 16:10:52.996438+00', '2019-12-31 03:30:22.389905+00', 0, 0, 0, 0, false, false, 129, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (7, '2018-03-15 16:10:53.016678+00', '2019-12-31 03:30:22.404676+00', 0, 0, 0, 0, false, false, 175, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (8, '2018-03-15 16:10:53.037584+00', '2019-12-31 03:30:22.418526+00', 0, 0, 0, 0, false, false, 250, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (9, '2018-03-15 16:10:53.057447+00', '2019-12-31 03:30:22.461558+00', 0, 0, 0, 0, false, false, 130, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (10, '2018-03-15 16:10:53.077232+00', '2019-12-31 03:30:22.476653+00', 0, 0, 0, 0, false, false, 178, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (11, '2018-03-15 16:10:53.097384+00', '2019-12-31 03:30:22.490736+00', 0, 0, 0, 0, false, false, 418, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (12, '2018-03-15 16:10:53.117023+00', '2019-12-31 03:30:22.507964+00', 0, 0, 0, 0, false, false, 414, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (13, '2018-03-15 16:10:53.137367+00', '2019-12-31 03:30:22.563025+00', 0, 0, 0, 0, false, false, 25, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (14, '2018-03-15 16:10:53.166388+00', '2019-12-31 03:30:22.584838+00', 0, 0, 0, 0, false, false, 232, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (15, '2018-03-15 16:10:53.185972+00', '2019-12-31 03:30:22.599922+00', 0, 0, 0, 0, false, false, 228, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (16, '2018-03-15 16:10:53.205336+00', '2019-12-31 03:30:22.624528+00', 0, 0, 0, 0, false, false, 305, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (17, '2018-03-15 16:10:53.224812+00', '2019-12-31 03:30:22.645159+00', 0, 0, 0, 0, false, false, 320, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (18, '2018-03-15 16:10:53.246412+00', '2019-12-31 03:30:22.663713+00', 0, 0, 0, 0, false, false, 26, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (19, '2018-03-15 16:10:53.270088+00', '2019-12-31 03:30:22.680481+00', 0, 0, 0, 0, false, false, 148, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (20, '2018-03-15 16:10:53.289891+00', '2019-12-31 03:30:22.747048+00', 0, 0, 0, 0, false, false, 294, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (21, '2018-03-15 16:10:53.315434+00', '2019-12-31 03:30:22.762029+00', 0, 0, 0, 0, false, false, 370, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (22, '2018-03-15 16:10:53.334865+00', '2019-12-31 03:30:22.777668+00', 0, 0, 0, 0, false, false, 183, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (446, '2019-09-14 00:04:44.707676+00', '2019-12-31 03:30:22.842404+00', 0, 0, 0, 0, false, false, 447, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (23, '2018-03-15 16:10:53.35449+00', '2019-12-31 03:30:22.858557+00', 0, 0, 0, 0, false, false, 285, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (24, '2018-03-15 16:10:53.374756+00', '2019-12-31 03:30:22.874401+00', 0, 0, 0, 0, false, false, 161, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (25, '2018-03-15 16:10:53.394539+00', '2019-12-31 03:30:22.920083+00', 0, 0, 0, 0, false, false, 296, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (449, '2019-10-01 14:41:45.535799+00', '2019-12-31 03:30:22.963438+00', 0, 0, 0, 0, false, false, 450, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (26, '2018-03-15 16:10:53.41561+00', '2019-12-31 03:30:22.977961+00', 0, 0, 0, 0, false, false, 409, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (27, '2018-03-15 16:10:53.435611+00', '2019-12-31 03:30:22.99295+00', 0, 0, 0, 0, false, false, 254, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (28, '2018-03-15 16:10:53.456409+00', '2019-12-31 03:30:23.007479+00', 0, 0, 0, 0, false, false, 383, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (29, '2018-03-15 16:10:53.476849+00', '2019-12-31 03:30:23.022608+00', 0, 0, 0, 0, false, false, 257, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (30, '2018-03-15 16:10:53.496941+00', '2019-12-31 03:30:23.065635+00', 0, 0, 0, 0, false, false, 261, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (31, '2018-03-15 16:10:53.517155+00', '2019-12-31 03:30:23.081819+00', 0, 0, 0, 0, false, false, 205, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (434, '2018-06-10 00:04:32.676456+00', '2019-12-31 03:30:23.127216+00', 0, 0, 0, 0, false, false, 435, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (32, '2018-03-15 16:10:53.536931+00', '2019-12-31 03:30:23.143042+00', 0, 0, 0, 0, false, false, 114, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (33, '2018-03-15 16:10:53.560123+00', '2019-12-31 03:30:23.158779+00', 0, 0, 0, 0, false, false, 368, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (34, '2018-03-15 16:10:53.579893+00', '2019-12-31 03:30:23.173499+00', 0, 0, 0, 0, false, false, 321, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (35, '2018-03-15 16:10:53.599773+00', '2019-12-31 03:30:23.188642+00', 0, 0, 0, 0, false, false, 381, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (36, '2018-03-15 16:10:53.619652+00', '2019-12-31 03:30:23.204831+00', 0, 0, 0, 0, false, false, 366, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (37, '2018-03-15 16:10:53.639885+00', '2019-12-31 03:30:23.220027+00', 0, 0, 0, 0, false, false, 248, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (38, '2018-03-15 16:10:53.660603+00', '2019-12-31 03:30:23.258849+00', 0, 0, 0, 0, false, false, 123, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (39, '2018-03-15 16:10:53.680039+00', '2019-12-31 03:30:23.272677+00', 0, 0, 0, 0, false, false, 173, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (40, '2018-03-15 16:10:53.70038+00', '2019-12-31 03:30:23.286859+00', 0, 0, 0, 0, false, false, 358, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (41, '2018-03-15 16:10:53.720606+00', '2019-12-31 03:30:23.300746+00', 0, 0, 0, 0, false, false, 221, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (42, '2018-03-15 16:10:53.74117+00', '2019-12-31 03:30:23.316068+00', 0, 0, 0, 0, false, false, 423, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (43, '2018-03-15 16:10:53.761063+00', '2019-12-31 03:30:23.330028+00', 0, 0, 0, 0, false, false, 98, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (44, '2018-03-15 16:10:53.781614+00', '2019-12-31 03:30:23.34454+00', 0, 0, 0, 0, false, false, 373, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (45, '2018-03-15 16:10:53.801891+00', '2019-12-31 03:30:23.383591+00', 0, 0, 0, 0, false, false, 403, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (46, '2018-03-15 16:10:53.821836+00', '2019-12-31 03:30:23.421039+00', 0, 0, 0, 0, false, false, 258, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (47, '2018-03-15 16:10:53.841793+00', '2019-12-31 03:30:23.463033+00', 0, 0, 0, 0, false, false, 182, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (48, '2018-03-15 16:10:53.861696+00', '2019-12-31 03:30:23.505561+00', 0, 0, 0, 0, false, false, 28, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (49, '2018-03-15 16:10:53.881798+00', '2019-12-31 03:30:23.520579+00', 0, 0, 0, 0, false, false, 309, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (50, '2018-03-15 16:10:53.901382+00', '2019-12-31 03:30:23.536153+00', 0, 0, 0, 0, false, false, 375, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (51, '2018-03-15 16:10:53.920815+00', '2019-12-31 03:30:23.552975+00', 0, 0, 0, 0, false, false, 374, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (52, '2018-03-15 16:10:53.940186+00', '2019-12-31 03:30:23.575619+00', 0, 0, 0, 0, false, false, 342, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (53, '2018-03-15 16:10:53.960095+00', '2019-12-31 03:30:23.593928+00', 0, 0, 0, 0, false, false, 217, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (54, '2018-03-15 16:10:53.979661+00', '2019-12-31 03:30:23.607415+00', 0, 0, 0, 0, false, false, 289, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (55, '2018-03-15 16:10:54.000589+00', '2019-12-31 03:30:23.645095+00', 0, 0, 0, 0, false, false, 220, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (56, '2018-03-15 16:10:54.020037+00', '2019-12-31 03:30:23.661454+00', 0, 0, 0, 0, false, false, 346, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (57, '2018-03-15 16:10:54.039061+00', '2019-12-31 03:30:23.675793+00', 0, 0, 0, 0, false, false, 244, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (58, '2018-03-15 16:10:54.05866+00', '2019-12-31 03:30:23.712554+00', 0, 0, 0, 0, false, false, 77, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (59, '2018-03-15 16:10:54.082405+00', '2019-12-31 03:30:23.727554+00', 0, 0, 0, 0, false, false, 170, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (60, '2018-03-15 16:10:54.10224+00', '2019-12-31 03:30:23.742671+00', 0, 0, 0, 0, false, false, 310, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (61, '2018-03-15 16:10:54.122436+00', '2019-12-31 03:30:23.757107+00', 0, 0, 0, 0, false, false, 256, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (62, '2018-03-15 16:10:54.142611+00', '2019-12-31 03:30:23.771806+00', 0, 0, 0, 0, false, false, 212, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (63, '2018-03-15 16:10:54.163133+00', '2019-12-31 03:30:23.786712+00', 0, 0, 0, 0, false, false, 87, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (64, '2018-03-15 16:10:54.183528+00', '2019-12-31 03:30:23.802905+00', 0, 0, 0, 0, false, false, 324, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (65, '2018-03-15 16:10:54.203331+00', '2019-12-31 03:30:23.819035+00', 0, 0, 0, 0, false, false, 389, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (66, '2018-03-15 16:10:54.223317+00', '2019-12-31 03:30:23.834353+00', 0, 0, 0, 0, false, false, 376, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (67, '2018-03-15 16:10:54.242516+00', '2019-12-31 03:30:23.850813+00', 0, 0, 0, 0, false, false, 386, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (68, '2018-03-15 16:10:54.262182+00', '2019-12-31 03:30:23.865765+00', 0, 0, 0, 0, false, false, 312, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (69, '2018-03-15 16:10:54.282141+00', '2019-12-31 03:30:23.881896+00', 0, 0, 0, 0, false, false, 29, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (70, '2018-03-15 16:10:54.302187+00', '2019-12-31 03:30:23.897738+00', 0, 0, 0, 0, false, false, 290, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (71, '2018-03-15 16:10:54.32219+00', '2019-12-31 03:30:23.936829+00', 0, 0, 0, 0, false, false, 427, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (72, '2018-03-15 16:10:54.342181+00', '2019-12-31 03:30:23.977848+00', 0, 0, 0, 0, false, false, 222, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (73, '2018-03-15 16:10:54.361756+00', '2019-12-31 03:30:24.004919+00', 0, 0, 0, 0, false, false, 32, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (74, '2018-03-15 16:10:54.380992+00', '2019-12-31 03:30:24.019476+00', 0, 0, 0, 0, false, false, 99, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (76, '2018-03-15 16:10:54.420982+00', '2019-12-31 03:30:24.08285+00', 0, 0, 0, 0, false, false, 30, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (75, '2018-03-15 16:10:54.401108+00', '2019-12-31 03:30:24.097499+00', 0, 0, 0, 0, false, false, 97, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (77, '2018-03-15 16:10:54.440751+00', '2019-12-31 03:30:24.113201+00', 0, 0, 0, 0, false, false, 128, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (78, '2018-03-15 16:10:54.459863+00', '2019-12-31 03:30:24.127823+00', 0, 0, 0, 0, false, false, 15, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (79, '2018-03-15 16:10:54.479098+00', '2019-12-31 03:30:24.142638+00', 0, 0, 0, 0, false, false, 235, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (80, '2018-03-15 16:10:54.498871+00', '2019-12-31 03:30:24.166964+00', 0, 0, 0, 0, false, false, 168, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (81, '2018-03-15 16:10:54.519167+00', '2019-12-31 03:30:24.181993+00', 0, 0, 0, 0, false, false, 360, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (82, '2018-03-15 16:10:54.539295+00', '2019-12-31 03:30:24.196812+00', 0, 0, 0, 0, false, false, 282, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (83, '2018-03-15 16:10:54.559139+00', '2019-12-31 03:30:24.212106+00', 0, 0, 0, 0, false, false, 330, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (84, '2018-03-15 16:10:54.579173+00', '2019-12-31 03:30:24.229449+00', 0, 0, 0, 0, false, false, 364, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (85, '2018-03-15 16:10:54.599712+00', '2019-12-31 03:30:24.245857+00', 0, 0, 0, 0, false, false, 219, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (443, '2019-05-24 00:03:59.276721+00', '2019-12-31 03:30:24.323773+00', 0, 0, 0, 0, false, false, 444, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (86, '2018-03-15 16:10:54.619325+00', '2019-12-31 03:30:24.338937+00', 0, 0, 0, 0, false, false, 300, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (87, '2018-03-15 16:10:54.639333+00', '2019-12-31 03:30:24.355393+00', 0, 0, 0, 0, false, false, 319, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (88, '2018-03-15 16:10:54.659607+00', '2019-12-31 03:30:24.371437+00', 0, 0, 0, 0, false, false, 165, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (89, '2018-03-15 16:10:54.679218+00', '2019-12-31 03:30:24.409855+00', 0, 0, 0, 0, false, false, 426, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (90, '2018-03-15 16:10:54.69911+00', '2019-12-31 03:30:24.424586+00', 0, 0, 0, 0, false, false, 31, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (91, '2018-03-15 16:10:54.719731+00', '2019-12-31 03:30:24.440873+00', 0, 0, 0, 0, false, false, 265, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (92, '2018-03-15 16:10:54.739234+00', '2019-12-31 03:30:24.457221+00', 0, 0, 0, 0, false, false, 181, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (93, '2018-03-15 16:10:54.758908+00', '2019-12-31 03:30:24.4804+00', 0, 0, 0, 0, false, false, 27, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (94, '2018-03-15 16:10:54.778164+00', '2019-12-31 03:30:24.504426+00', 0, 0, 0, 0, false, false, 106, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (95, '2018-03-15 16:10:54.797637+00', '2019-12-31 03:30:24.524936+00', 0, 0, 0, 0, false, false, 163, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (96, '2018-03-15 16:10:54.817201+00', '2019-12-31 03:30:24.548465+00', 0, 0, 0, 0, false, false, 293, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (97, '2018-03-15 16:10:54.836969+00', '2019-12-31 03:30:24.568468+00', 0, 0, 0, 0, false, false, 16, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (98, '2018-03-15 16:10:54.856168+00', '2019-12-31 03:30:24.588934+00', 0, 0, 0, 0, false, false, 157, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (99, '2018-03-15 16:10:54.876319+00', '2019-12-31 03:30:24.612445+00', 0, 0, 0, 0, false, false, 116, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (100, '2018-03-15 16:10:54.896404+00', '2019-12-31 03:30:24.634813+00', 0, 0, 0, 0, false, false, 188, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (101, '2018-03-15 16:10:54.917472+00', '2019-12-31 03:30:24.656529+00', 0, 0, 0, 0, false, false, 146, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (102, '2018-03-15 16:10:54.93752+00', '2019-12-31 03:30:24.672063+00', 0, 0, 0, 0, false, false, 117, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (103, '2018-03-15 16:10:54.957198+00', '2019-12-31 03:30:24.68724+00', 0, 0, 0, 0, false, false, 283, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (104, '2018-03-15 16:10:54.977078+00', '2019-12-31 03:30:24.726843+00', 0, 0, 0, 0, false, false, 54, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (105, '2018-03-15 16:10:54.99711+00', '2019-12-31 03:30:24.742566+00', 0, 0, 0, 0, false, false, 279, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (106, '2018-03-15 16:10:55.016989+00', '2019-12-31 03:30:24.763015+00', 0, 0, 0, 0, false, false, 343, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (107, '2018-03-15 16:10:55.036919+00', '2019-12-31 03:30:24.7779+00', 0, 0, 0, 0, false, false, 349, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (108, '2018-03-15 16:10:55.056691+00', '2019-12-31 03:30:24.793575+00', 0, 0, 0, 0, false, false, 247, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (109, '2018-03-15 16:10:55.076648+00', '2019-12-31 03:30:24.811716+00', 0, 0, 0, 0, false, false, 334, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (110, '2018-03-15 16:10:55.096664+00', '2019-12-31 03:30:24.826993+00', 0, 0, 0, 0, false, false, 325, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (111, '2018-03-15 16:10:55.116959+00', '2019-12-31 03:30:24.842489+00', 0, 0, 0, 0, false, false, 55, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (112, '2018-03-15 16:10:55.137112+00', '2019-12-31 03:30:24.857263+00', 0, 0, 0, 0, false, false, 56, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (113, '2018-03-15 16:10:55.156616+00', '2019-12-31 03:30:24.87667+00', 0, 0, 0, 0, false, false, 137, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (114, '2018-03-15 16:10:55.176286+00', '2019-12-31 03:30:24.926793+00', 0, 0, 0, 0, false, false, 339, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (115, '2018-03-15 16:10:55.195907+00', '2019-12-31 03:30:24.944305+00', 0, 0, 0, 0, false, false, 281, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (116, '2018-03-15 16:10:55.215737+00', '2019-12-31 03:30:24.961831+00', 0, 0, 0, 0, false, false, 17, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (117, '2018-03-15 16:10:55.235207+00', '2019-12-31 03:30:25.001747+00', 0, 0, 0, 0, false, false, 156, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (118, '2018-03-15 16:10:55.260051+00', '2019-12-31 03:30:25.017816+00', 0, 0, 0, 0, false, false, 118, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (119, '2018-03-15 16:10:55.284792+00', '2019-12-31 03:30:25.03553+00', 0, 0, 0, 0, false, false, 198, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (120, '2018-03-15 16:10:55.304163+00', '2019-12-31 03:30:25.051078+00', 0, 0, 0, 0, false, false, 10, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (121, '2018-03-15 16:10:55.323705+00', '2019-12-31 03:30:25.067468+00', 0, 0, 0, 0, false, false, 119, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (122, '2018-03-15 16:10:55.343156+00', '2019-12-31 03:30:25.081488+00', 0, 0, 0, 0, false, false, 107, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (123, '2018-03-15 16:10:55.362663+00', '2019-12-31 03:30:25.09792+00', 0, 0, 0, 0, false, false, 251, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (124, '2018-03-15 16:10:55.383395+00', '2019-12-31 03:30:25.117763+00', 0, 0, 0, 0, false, false, 216, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (125, '2018-03-15 16:10:55.403085+00', '2019-12-31 03:30:25.145876+00', 0, 0, 0, 0, false, false, 3, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (126, '2018-03-15 16:10:55.422817+00', '2019-12-31 03:30:25.161844+00', 0, 0, 0, 0, false, false, 136, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (127, '2018-03-15 16:10:55.442588+00', '2019-12-31 03:30:25.17541+00', 0, 0, 0, 0, false, false, 57, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (128, '2018-03-15 16:10:55.461922+00', '2019-12-31 03:30:25.189353+00', 0, 0, 0, 0, false, false, 151, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (129, '2018-03-15 16:10:55.481882+00', '2019-12-31 03:30:25.203999+00', 0, 0, 0, 0, false, false, 1, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (130, '2018-03-15 16:10:55.504202+00', '2019-12-31 03:30:25.219023+00', 0, 0, 0, 0, false, false, 388, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (131, '2018-03-15 16:10:55.523899+00', '2019-12-31 03:30:25.234016+00', 0, 0, 0, 0, false, false, 204, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (132, '2018-03-15 16:10:55.543191+00', '2019-12-31 03:30:25.271795+00', 0, 0, 0, 0, false, false, 262, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (133, '2018-03-15 16:10:55.562752+00', '2019-12-31 03:30:25.287195+00', 0, 0, 0, 0, false, false, 332, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (134, '2018-03-15 16:10:55.582615+00', '2019-12-31 03:30:25.302901+00', 0, 0, 0, 0, false, false, 58, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (135, '2018-03-15 16:10:55.601982+00', '2019-12-31 03:30:25.318031+00', 0, 0, 0, 0, false, false, 150, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (136, '2018-03-15 16:10:55.621929+00', '2019-12-31 03:30:25.359965+00', 0, 0, 0, 0, false, false, 372, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (444, '2019-06-20 00:08:18.748713+00', '2019-12-31 03:30:25.401797+00', 0, 0, 0, 0, false, false, 445, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (137, '2018-03-15 16:10:55.641612+00', '2019-12-31 03:30:25.438709+00', 0, 0, 0, 0, false, false, 335, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (140, '2018-03-15 16:10:55.70141+00', '2019-12-31 03:30:25.454771+00', 0, 0, 0, 0, false, false, 302, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (138, '2018-03-15 16:10:55.662043+00', '2019-12-31 03:30:25.469852+00', 0, 0, 0, 0, false, false, 164, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (139, '2018-03-15 16:10:55.681749+00', '2019-12-31 03:30:25.485204+00', 0, 0, 0, 0, false, false, 243, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (141, '2018-03-15 16:10:55.722488+00', '2019-12-31 03:30:25.500834+00', 0, 0, 0, 0, false, false, 392, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (142, '2018-03-15 16:10:55.742237+00', '2019-12-31 03:30:25.51584+00', 0, 0, 0, 0, false, false, 286, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (143, '2018-03-15 16:10:55.762609+00', '2019-12-31 03:30:25.531757+00', 0, 0, 0, 0, false, false, 280, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (144, '2018-03-15 16:10:55.78214+00', '2019-12-31 03:30:25.546911+00', 0, 0, 0, 0, false, false, 269, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (145, '2018-03-15 16:10:55.80161+00', '2019-12-31 03:30:25.566217+00', 0, 0, 0, 0, false, false, 134, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (146, '2018-03-15 16:10:55.821135+00', '2019-12-31 03:30:25.580883+00', 0, 0, 0, 0, false, false, 135, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (147, '2018-03-15 16:10:55.84084+00', '2019-12-31 03:30:25.594837+00', 0, 0, 0, 0, false, false, 121, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (148, '2018-03-15 16:10:55.859984+00', '2019-12-31 03:30:25.637726+00', 0, 0, 0, 0, false, false, 155, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (149, '2018-03-15 16:10:55.879506+00', '2019-12-31 03:30:25.657503+00', 0, 0, 0, 0, false, false, 122, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (150, '2018-03-15 16:10:55.899073+00', '2019-12-31 03:30:25.684594+00', 0, 0, 0, 0, false, false, 215, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (151, '2018-03-15 16:10:55.918531+00', '2019-12-31 03:30:25.706601+00', 0, 0, 0, 0, false, false, 19, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (152, '2018-03-15 16:10:55.93829+00', '2019-12-31 03:30:25.722+00', 0, 0, 0, 0, false, false, 144, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (153, '2018-03-15 16:10:55.960884+00', '2019-12-31 03:30:25.737905+00', 0, 0, 0, 0, false, false, 184, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (154, '2018-03-15 16:10:55.984444+00', '2019-12-31 03:30:25.753263+00', 0, 0, 0, 0, false, false, 214, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (155, '2018-03-15 16:10:56.004437+00', '2019-12-31 03:30:25.769197+00', 0, 0, 0, 0, false, false, 355, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (156, '2018-03-15 16:10:56.024169+00', '2019-12-31 03:30:25.784843+00', 0, 0, 0, 0, false, false, 288, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (157, '2018-03-15 16:10:56.044355+00', '2019-12-31 03:30:25.835022+00', 0, 0, 0, 0, false, false, 422, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (158, '2018-03-15 16:10:56.064398+00', '2019-12-31 03:30:25.849846+00', 0, 0, 0, 0, false, false, 145, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (159, '2018-03-15 16:10:56.084457+00', '2019-12-31 03:30:25.866775+00', 0, 0, 0, 0, false, false, 149, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (160, '2018-03-15 16:10:56.104689+00', '2019-12-31 03:30:25.885029+00', 0, 0, 0, 0, false, false, 133, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (161, '2018-03-15 16:10:56.125355+00', '2019-12-31 03:30:25.923938+00', 0, 0, 0, 0, false, false, 124, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (162, '2018-03-15 16:10:56.144879+00', '2019-12-31 03:30:25.965434+00', 0, 0, 0, 0, false, false, 125, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (163, '2018-03-15 16:10:56.164161+00', '2019-12-31 03:30:25.981533+00', 0, 0, 0, 0, false, false, 126, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (164, '2018-03-15 16:10:56.184107+00', '2019-12-31 03:30:25.997002+00', 0, 0, 0, 0, false, false, 194, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (165, '2018-03-15 16:10:56.204041+00', '2019-12-31 03:30:26.011907+00', 0, 0, 0, 0, false, false, 295, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (166, '2018-03-15 16:10:56.223642+00', '2019-12-31 03:30:26.027626+00', 0, 0, 0, 0, false, false, 408, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (167, '2018-03-15 16:10:56.243183+00', '2019-12-31 03:30:26.069986+00', 0, 0, 0, 0, false, false, 162, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (168, '2018-03-15 16:10:56.263414+00', '2019-12-31 03:30:26.084303+00', 0, 0, 0, 0, false, false, 127, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (169, '2018-03-15 16:10:56.284115+00', '2019-12-31 03:30:26.09883+00', 0, 0, 0, 0, false, false, 284, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (170, '2018-03-15 16:10:56.303989+00', '2019-12-31 03:30:26.113859+00', 0, 0, 0, 0, false, false, 35, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (171, '2018-03-15 16:10:56.32409+00', '2019-12-31 03:30:26.151523+00', 0, 0, 0, 0, false, false, 141, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (173, '2018-03-15 16:10:56.364116+00', '2019-12-31 03:30:26.166427+00', 0, 0, 0, 0, false, false, 37, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (174, '2018-03-15 16:10:56.384623+00', '2019-12-31 03:30:26.188605+00', 0, 0, 0, 0, false, false, 38, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (175, '2018-03-15 16:10:56.404282+00', '2019-12-31 03:30:26.227559+00', 0, 0, 0, 0, false, false, 180, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (453, '2019-11-12 15:02:08.39672+00', '2019-12-31 03:30:26.241812+00', 0, 0, 0, 0, false, false, 454, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (451, '2019-11-12 15:01:58.173143+00', '2019-12-31 03:30:26.256054+00', 0, 0, 0, 0, false, false, 452, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (172, '2018-03-15 16:10:56.344177+00', '2019-12-31 03:30:26.29551+00', 0, 0, 0, 0, false, false, 398, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (185, '2018-03-15 16:10:56.609676+00', '2019-12-31 03:30:26.339235+00', 0, 0, 0, 0, false, false, 396, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (452, '2019-11-12 15:01:58.545032+00', '2019-12-31 03:30:26.356992+00', 0, 0, 0, 0, false, false, 453, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (181, '2018-03-15 16:10:56.529182+00', '2019-12-31 03:30:26.39759+00', 0, 0, 0, 0, false, false, 246, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (182, '2018-03-15 16:10:56.550412+00', '2019-12-31 03:30:26.441552+00', 0, 0, 0, 0, false, false, 315, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (184, '2018-03-15 16:10:56.589899+00', '2019-12-31 03:30:26.484897+00', 0, 0, 0, 0, false, false, 306, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (176, '2018-03-15 16:10:56.427293+00', '2019-12-31 03:30:26.523798+00', 0, 0, 0, 0, false, false, 344, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (177, '2018-03-15 16:10:56.448314+00', '2019-12-31 03:30:26.538864+00', 0, 0, 0, 0, false, false, 236, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (178, '2018-03-15 16:10:56.468455+00', '2019-12-31 03:30:26.55451+00', 0, 0, 0, 0, false, false, 167, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (179, '2018-03-15 16:10:56.488896+00', '2019-12-31 03:30:26.570263+00', 0, 0, 0, 0, false, false, 36, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (180, '2018-03-15 16:10:56.509027+00', '2019-12-31 03:30:26.586108+00', 0, 0, 0, 0, false, false, 233, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (448, '2019-10-01 14:41:37.712526+00', '2019-12-31 03:30:26.627845+00', 0, 0, 0, 0, false, false, 449, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (183, '2018-03-15 16:10:56.570217+00', '2019-12-31 03:30:26.642794+00', 0, 0, 0, 0, false, false, 311, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (186, '2018-03-15 16:10:56.629941+00', '2019-12-31 03:30:26.660116+00', 0, 0, 0, 0, false, false, 179, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (187, '2018-03-15 16:10:56.649913+00', '2019-12-31 03:30:26.686074+00', 0, 0, 0, 0, false, false, 108, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (188, '2018-03-15 16:10:56.670517+00', '2019-12-31 03:30:26.699712+00', 0, 0, 0, 0, false, false, 241, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (189, '2018-03-15 16:10:56.690285+00', '2019-12-31 03:30:26.719212+00', 0, 0, 0, 0, false, false, 352, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (190, '2018-03-15 16:10:56.710259+00', '2019-12-31 03:30:26.746598+00', 0, 0, 0, 0, false, false, 39, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (191, '2018-03-15 16:10:56.731683+00', '2019-12-31 03:30:26.791898+00', 0, 0, 0, 0, false, false, 45, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (192, '2018-03-15 16:10:56.752049+00', '2019-12-31 03:30:26.811287+00', 0, 0, 0, 0, false, false, 316, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (193, '2018-03-15 16:10:56.771668+00', '2019-12-31 03:30:26.841242+00', 0, 0, 0, 0, false, false, 267, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (194, '2018-03-15 16:10:56.791134+00', '2019-12-31 03:30:26.859167+00', 0, 0, 0, 0, false, false, 40, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (195, '2018-03-15 16:10:56.810706+00', '2019-12-31 03:30:26.872974+00', 0, 0, 0, 0, false, false, 239, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (196, '2018-03-15 16:10:56.830817+00', '2019-12-31 03:30:26.912832+00', 0, 0, 0, 0, false, false, 47, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (197, '2018-03-15 16:10:56.851917+00', '2019-12-31 03:30:26.962119+00', 0, 0, 0, 0, false, false, 177, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (200, '2018-03-15 16:10:56.912941+00', '2019-12-31 03:30:27.039274+00', 0, 0, 0, 0, false, false, 174, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (201, '2018-03-15 16:10:56.932882+00', '2019-12-31 03:30:27.081542+00', 0, 0, 0, 0, false, false, 268, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (203, '2018-03-15 16:10:56.972537+00', '2019-12-31 03:30:27.117757+00', 0, 0, 0, 0, false, false, 46, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (270, '2018-03-15 16:10:58.324477+00', '2019-12-31 03:30:27.1556+00', 0, 0, 0, 0, false, false, 187, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (204, '2018-03-15 16:10:56.992501+00', '2019-12-31 03:30:27.193516+00', 0, 0, 0, 0, false, false, 206, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (205, '2018-03-15 16:10:57.012085+00', '2019-12-31 03:30:27.238993+00', 0, 0, 0, 0, false, false, 42, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (206, '2018-03-15 16:10:57.031771+00', '2019-12-31 03:30:27.278775+00', 0, 0, 0, 0, false, false, 266, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (207, '2018-03-15 16:10:57.051594+00', '2019-12-31 03:30:27.315848+00', 0, 0, 0, 0, false, false, 292, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (208, '2018-03-15 16:10:57.071759+00', '2019-12-31 03:30:27.356962+00', 0, 0, 0, 0, false, false, 49, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (209, '2018-03-15 16:10:57.091785+00', '2019-12-31 03:30:27.3949+00', 0, 0, 0, 0, false, false, 43, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (445, '2019-07-17 00:06:24.521303+00', '2019-12-31 03:30:27.431588+00', 0, 0, 0, 0, false, false, 446, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (198, '2018-03-15 16:10:56.872636+00', '2019-12-31 03:30:27.47462+00', 0, 0, 0, 0, false, false, 44, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (210, '2018-03-15 16:10:57.112279+00', '2019-12-31 03:30:27.512478+00', 0, 0, 0, 0, false, false, 199, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (202, '2018-03-15 16:10:56.952564+00', '2019-12-31 03:30:27.549742+00', 0, 0, 0, 0, false, false, 158, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (269, '2018-03-15 16:10:58.304607+00', '2019-12-31 03:30:27.564518+00', 0, 0, 0, 0, false, false, 313, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (211, '2018-03-15 16:10:57.132517+00', '2019-12-31 03:30:27.602516+00', 0, 0, 0, 0, false, false, 48, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (199, '2018-03-15 16:10:56.893456+00', '2019-12-31 03:30:27.643566+00', 0, 0, 0, 0, false, false, 272, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (212, '2018-03-15 16:10:57.15226+00', '2019-12-31 03:30:27.659624+00', 0, 0, 0, 0, false, false, 176, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (213, '2018-03-15 16:10:57.17356+00', '2019-12-31 03:30:27.710167+00', 0, 0, 0, 0, false, false, 41, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (214, '2018-03-15 16:10:57.195134+00', '2019-12-31 03:30:27.765769+00', 0, 0, 0, 0, false, false, 238, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (215, '2018-03-15 16:10:57.214653+00', '2019-12-31 03:30:27.786492+00', 0, 0, 0, 0, false, false, 259, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (216, '2018-03-15 16:10:57.235206+00', '2019-12-31 03:30:27.808406+00', 0, 0, 0, 0, false, false, 327, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (217, '2018-03-15 16:10:57.25513+00', '2019-12-31 03:30:27.822205+00', 0, 0, 0, 0, false, false, 271, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (218, '2018-03-15 16:10:57.277629+00', '2019-12-31 03:30:27.838644+00', 0, 0, 0, 0, false, false, 186, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (219, '2018-03-15 16:10:57.299866+00', '2019-12-31 03:30:27.852507+00', 0, 0, 0, 0, false, false, 287, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (220, '2018-03-15 16:10:57.32113+00', '2019-12-31 03:30:27.866888+00', 0, 0, 0, 0, false, false, 397, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (221, '2018-03-15 16:10:57.343771+00', '2019-12-31 03:30:27.885586+00', 0, 0, 0, 0, false, false, 299, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (222, '2018-03-15 16:10:57.363721+00', '2019-12-31 03:30:27.930552+00', 0, 0, 0, 0, false, false, 120, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (223, '2018-03-15 16:10:57.384217+00', '2019-12-31 03:30:27.972341+00', 0, 0, 0, 0, false, false, 420, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (232, '2018-03-15 16:10:57.562429+00', '2019-12-31 03:30:28.010618+00', 0, 0, 0, 0, false, false, 405, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (224, '2018-03-15 16:10:57.403973+00', '2019-12-31 03:30:28.026866+00', 0, 0, 0, 0, false, false, 50, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (225, '2018-03-15 16:10:57.423943+00', '2019-12-31 03:30:28.078815+00', 0, 0, 0, 0, false, false, 112, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (226, '2018-03-15 16:10:57.443615+00', '2019-12-31 03:30:28.099223+00', 0, 0, 0, 0, false, false, 59, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (437, '2018-09-02 00:05:01.17286+00', '2019-12-31 03:30:28.13961+00', 0, 0, 0, 0, false, false, 438, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (450, '2019-10-08 00:10:59.891196+00', '2019-12-31 03:30:28.156238+00', 0, 0, 0, 0, false, false, 451, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (228, '2018-03-15 16:10:57.483628+00', '2019-12-31 03:30:28.19337+00', 0, 0, 0, 0, false, false, 227, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (229, '2018-03-15 16:10:57.503178+00', '2019-12-31 03:30:28.24049+00', 0, 0, 0, 0, false, false, 393, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (230, '2018-03-15 16:10:57.522982+00', '2019-12-31 03:30:28.254496+00', 0, 0, 0, 0, false, false, 329, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (441, '2019-03-15 13:43:06.118672+00', '2019-12-31 03:30:28.296774+00', 0, 0, 0, 0, false, false, 442, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (231, '2018-03-15 16:10:57.543141+00', '2019-12-31 03:30:28.312401+00', 0, 0, 0, 0, false, false, 417, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (442, '2019-04-04 00:04:57.590259+00', '2019-12-31 03:30:28.349495+00', 0, 0, 0, 0, false, false, 443, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (233, '2018-03-15 16:10:57.582469+00', '2019-12-31 03:30:28.363935+00', 0, 0, 0, 0, false, false, 61, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (234, '2018-03-15 16:10:57.603153+00', '2019-12-31 03:30:28.380817+00', 0, 0, 0, 0, false, false, 225, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (235, '2018-03-15 16:10:57.622758+00', '2019-12-31 03:30:28.395773+00', 0, 0, 0, 0, false, false, 63, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (236, '2018-03-15 16:10:57.645413+00', '2019-12-31 03:30:28.411005+00', 0, 0, 0, 0, false, false, 363, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (237, '2018-03-15 16:10:57.665209+00', '2019-12-31 03:30:28.429877+00', 0, 0, 0, 0, false, false, 64, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (238, '2018-03-15 16:10:57.684959+00', '2019-12-31 03:30:28.466525+00', 0, 0, 0, 0, false, false, 65, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (239, '2018-03-15 16:10:57.704741+00', '2019-12-31 03:30:28.48185+00', 0, 0, 0, 0, false, false, 67, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (240, '2018-03-15 16:10:57.725474+00', '2019-12-31 03:30:28.50487+00', 0, 0, 0, 0, false, false, 68, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (241, '2018-03-15 16:10:57.745316+00', '2019-12-31 03:30:28.521633+00', 0, 0, 0, 0, false, false, 338, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (242, '2018-03-15 16:10:57.765942+00', '2019-12-31 03:30:28.559492+00', 0, 0, 0, 0, false, false, 378, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (243, '2018-03-15 16:10:57.785668+00', '2019-12-31 03:30:28.576131+00', 0, 0, 0, 0, false, false, 371, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (244, '2018-03-15 16:10:57.805603+00', '2019-12-31 03:30:28.59316+00', 0, 0, 0, 0, false, false, 69, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (245, '2018-03-15 16:10:57.825796+00', '2019-12-31 03:30:28.607434+00', 0, 0, 0, 0, false, false, 70, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (246, '2018-03-15 16:10:57.845604+00', '2019-12-31 03:30:28.622788+00', 0, 0, 0, 0, false, false, 336, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (247, '2018-03-15 16:10:57.864731+00', '2019-12-31 03:30:28.637158+00', 0, 0, 0, 0, false, false, 78, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (248, '2018-03-15 16:10:57.884508+00', '2019-12-31 03:30:28.651645+00', 0, 0, 0, 0, false, false, 89, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (249, '2018-03-15 16:10:57.904238+00', '2019-12-31 03:30:28.668004+00', 0, 0, 0, 0, false, false, 90, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (250, '2018-03-15 16:10:57.924783+00', '2019-12-31 03:30:28.708915+00', 0, 0, 0, 0, false, false, 62, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (251, '2018-03-15 16:10:57.944804+00', '2019-12-31 03:30:28.723722+00', 0, 0, 0, 0, false, false, 340, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (252, '2018-03-15 16:10:57.964942+00', '2019-12-31 03:30:28.740104+00', 0, 0, 0, 0, false, false, 362, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (253, '2018-03-15 16:10:57.984844+00', '2019-12-31 03:30:28.757315+00', 0, 0, 0, 0, false, false, 91, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (254, '2018-03-15 16:10:58.00458+00', '2019-12-31 03:30:28.773691+00', 0, 0, 0, 0, false, false, 347, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (255, '2018-03-15 16:10:58.023893+00', '2019-12-31 03:30:28.789024+00', 0, 0, 0, 0, false, false, 367, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (256, '2018-03-15 16:10:58.043572+00', '2019-12-31 03:30:28.802862+00', 0, 0, 0, 0, false, false, 382, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (257, '2018-03-15 16:10:58.06308+00', '2019-12-31 03:30:28.832516+00', 0, 0, 0, 0, false, false, 66, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (258, '2018-03-15 16:10:58.08337+00', '2019-12-31 03:30:28.859174+00', 0, 0, 0, 0, false, false, 92, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (259, '2018-03-15 16:10:58.10539+00', '2019-12-31 03:30:28.888453+00', 0, 0, 0, 0, false, false, 93, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (260, '2018-03-15 16:10:58.124801+00', '2019-12-31 03:30:28.957002+00', 0, 0, 0, 0, false, false, 304, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (261, '2018-03-15 16:10:58.144532+00', '2019-12-31 03:30:28.972821+00', 0, 0, 0, 0, false, false, 411, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (432, '2018-05-17 16:22:25.971541+00', '2019-12-31 03:30:29.01054+00', 0, 0, 0, 0, false, false, 433, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (262, '2018-03-15 16:10:58.164157+00', '2019-12-31 03:30:29.024736+00', 0, 0, 0, 0, false, false, 94, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (263, '2018-03-15 16:10:58.183689+00', '2019-12-31 03:30:29.04073+00', 0, 0, 0, 0, false, false, 33, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (264, '2018-03-15 16:10:58.203781+00', '2019-12-31 03:30:29.056128+00', 0, 0, 0, 0, false, false, 138, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (265, '2018-03-15 16:10:58.225709+00', '2019-12-31 03:30:29.078169+00', 0, 0, 0, 0, false, false, 394, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (266, '2018-03-15 16:10:58.245709+00', '2019-12-31 03:30:29.093477+00', 0, 0, 0, 0, false, false, 264, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (267, '2018-03-15 16:10:58.265489+00', '2019-12-31 03:30:29.10926+00', 0, 0, 0, 0, false, false, 260, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (268, '2018-03-15 16:10:58.285022+00', '2019-12-31 03:30:29.124157+00', 0, 0, 0, 0, false, false, 131, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (271, '2018-03-15 16:10:58.344573+00', '2019-12-31 03:30:29.163399+00', 0, 0, 0, 0, false, false, 95, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (272, '2018-03-15 16:10:58.364751+00', '2019-12-31 03:30:29.178744+00', 0, 0, 0, 0, false, false, 185, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (273, '2018-03-15 16:10:58.384461+00', '2019-12-31 03:30:29.208484+00', 0, 0, 0, 0, false, false, 333, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (274, '2018-03-15 16:10:58.404269+00', '2019-12-31 03:30:29.228417+00', 0, 0, 0, 0, false, false, 384, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (275, '2018-03-15 16:10:58.423702+00', '2019-12-31 03:30:29.254515+00', 0, 0, 0, 0, false, false, 404, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (276, '2018-03-15 16:10:58.444533+00', '2019-12-31 03:30:29.276596+00', 0, 0, 0, 0, false, false, 115, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (277, '2018-03-15 16:10:58.46449+00', '2019-12-31 03:30:29.300498+00', 0, 0, 0, 0, false, false, 14, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (278, '2018-03-15 16:10:58.483538+00', '2019-12-31 03:30:29.344773+00', 0, 0, 0, 0, false, false, 277, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (279, '2018-03-15 16:10:58.50355+00', '2019-12-31 03:30:29.358673+00', 0, 0, 0, 0, false, false, 406, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (280, '2018-03-15 16:10:58.523733+00', '2019-12-31 03:30:29.375779+00', 0, 0, 0, 0, false, false, 242, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (281, '2018-03-15 16:10:58.543696+00', '2019-12-31 03:30:29.392581+00', 0, 0, 0, 0, false, false, 263, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (282, '2018-03-15 16:10:58.563912+00', '2019-12-31 03:30:29.444559+00', 0, 0, 0, 0, false, false, 211, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (283, '2018-03-15 16:10:58.584023+00', '2019-12-31 03:30:29.468377+00', 0, 0, 0, 0, false, false, 307, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (284, '2018-03-15 16:10:58.604081+00', '2019-12-31 03:30:29.485441+00', 0, 0, 0, 0, false, false, 413, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (285, '2018-03-15 16:10:58.624114+00', '2019-12-31 03:30:29.500884+00', 0, 0, 0, 0, false, false, 395, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (286, '2018-03-15 16:10:58.643695+00', '2019-12-31 03:30:29.53985+00', 0, 0, 0, 0, false, false, 350, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (287, '2018-03-15 16:10:58.663638+00', '2019-12-31 03:30:29.555006+00', 0, 0, 0, 0, false, false, 231, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (288, '2018-03-15 16:10:58.683455+00', '2019-12-31 03:30:29.569837+00', 0, 0, 0, 0, false, false, 356, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (289, '2018-03-15 16:10:58.703577+00', '2019-12-31 03:30:29.583978+00', 0, 0, 0, 0, false, false, 399, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (290, '2018-03-15 16:10:58.723138+00', '2019-12-31 03:30:29.599249+00', 0, 0, 0, 0, false, false, 377, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (291, '2018-03-15 16:10:58.742934+00', '2019-12-31 03:30:29.613803+00', 0, 0, 0, 0, false, false, 341, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (292, '2018-03-15 16:10:58.762582+00', '2019-12-31 03:30:29.631707+00', 0, 0, 0, 0, false, false, 365, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (293, '2018-03-15 16:10:58.783481+00', '2019-12-31 03:30:29.646829+00', 0, 0, 0, 0, false, false, 224, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (294, '2018-03-15 16:10:58.803184+00', '2019-12-31 03:30:29.661401+00', 0, 0, 0, 0, false, false, 369, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (295, '2018-03-15 16:10:58.822946+00', '2019-12-31 03:30:29.676685+00', 0, 0, 0, 0, false, false, 196, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (336, '2018-03-15 16:10:59.64919+00', '2019-12-31 03:30:29.717856+00', 0, 0, 0, 0, false, false, 400, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (296, '2018-03-15 16:10:58.842825+00', '2019-12-31 03:30:29.757737+00', 0, 0, 0, 0, false, false, 208, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (297, '2018-03-15 16:10:58.863285+00', '2019-12-31 03:30:29.772271+00', 0, 0, 0, 0, false, false, 274, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (298, '2018-03-15 16:10:58.883322+00', '2019-12-31 03:30:29.786826+00', 0, 0, 0, 0, false, false, 291, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (299, '2018-03-15 16:10:58.904022+00', '2019-12-31 03:30:29.835099+00', 0, 0, 0, 0, false, false, 357, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (300, '2018-03-15 16:10:58.924902+00', '2019-12-31 03:30:29.849829+00', 0, 0, 0, 0, false, false, 255, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (301, '2018-03-15 16:10:58.944587+00', '2019-12-31 03:30:29.876016+00', 0, 0, 0, 0, false, false, 345, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (302, '2018-03-15 16:10:58.96448+00', '2019-12-31 03:30:29.892525+00', 0, 0, 0, 0, false, false, 4, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (303, '2018-03-15 16:10:58.984273+00', '2019-12-31 03:30:29.932899+00', 0, 0, 0, 0, false, false, 298, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (304, '2018-03-15 16:10:59.007223+00', '2019-12-31 03:30:29.948126+00', 0, 0, 0, 0, false, false, 318, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (305, '2018-03-15 16:10:59.026975+00', '2019-12-31 03:30:29.987071+00', 0, 0, 0, 0, false, false, 5, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (306, '2018-03-15 16:10:59.046472+00', '2019-12-31 03:30:30.002552+00', 0, 0, 0, 0, false, false, 6, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (307, '2018-03-15 16:10:59.066175+00', '2019-12-31 03:30:30.043236+00', 0, 0, 0, 0, false, false, 7, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (308, '2018-03-15 16:10:59.086695+00', '2019-12-31 03:30:30.08802+00', 0, 0, 0, 0, false, false, 8, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (309, '2018-03-15 16:10:59.10692+00', '2019-12-31 03:30:30.131129+00', 0, 0, 0, 0, false, false, 139, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (310, '2018-03-15 16:10:59.127394+00', '2019-12-31 03:30:30.150421+00', 0, 0, 0, 0, false, false, 9, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (311, '2018-03-15 16:10:59.147122+00', '2019-12-31 03:30:30.167004+00', 0, 0, 0, 0, false, false, 12, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (312, '2018-03-15 16:10:59.166909+00', '2019-12-31 03:30:30.181585+00', 0, 0, 0, 0, false, false, 314, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (313, '2018-03-15 16:10:59.1869+00', '2019-12-31 03:30:30.196473+00', 0, 0, 0, 0, false, false, 193, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (314, '2018-03-15 16:10:59.20714+00', '2019-12-31 03:30:30.210767+00', 0, 0, 0, 0, false, false, 11, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (315, '2018-03-15 16:10:59.228187+00', '2019-12-31 03:30:30.225317+00', 0, 0, 0, 0, false, false, 142, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (316, '2018-03-15 16:10:59.248281+00', '2019-12-31 03:30:30.264138+00', 0, 0, 0, 0, false, false, 53, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (317, '2018-03-15 16:10:59.271967+00', '2019-12-31 03:30:30.278544+00', 0, 0, 0, 0, false, false, 13, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (318, '2018-03-15 16:10:59.292219+00', '2019-12-31 03:30:30.304133+00', 0, 0, 0, 0, false, false, 203, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (319, '2018-03-15 16:10:59.312492+00', '2019-12-31 03:30:30.32687+00', 0, 0, 0, 0, false, false, 273, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (320, '2018-03-15 16:10:59.333115+00', '2019-12-31 03:30:30.341718+00', 0, 0, 0, 0, false, false, 275, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (321, '2018-03-15 16:10:59.352793+00', '2019-12-31 03:30:30.356457+00', 0, 0, 0, 0, false, false, 75, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (322, '2018-03-15 16:10:59.372463+00', '2019-12-31 03:30:30.371758+00', 0, 0, 0, 0, false, false, 71, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (436, '2018-08-28 13:22:24.220339+00', '2019-12-31 03:30:30.410052+00', 0, 0, 0, 0, false, false, 437, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (323, '2018-03-15 16:10:59.392153+00', '2019-12-31 03:30:30.424794+00', 0, 0, 0, 0, false, false, 323, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (324, '2018-03-15 16:10:59.412013+00', '2019-12-31 03:30:30.439964+00', 0, 0, 0, 0, false, false, 166, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (2, '2018-03-15 16:10:52.90398+00', '2019-12-31 03:30:22.302527+00', 0, 0, 0, 0, false, false, 229, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (1, '2018-03-15 16:10:52.883243+00', '2019-12-31 03:30:22.317827+00', 0, 0, 0, 0, false, false, 154, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (325, '2018-03-15 16:10:59.431563+00', '2019-12-31 03:30:30.454829+00', 0, 0, 0, 0, false, false, 195, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (326, '2018-03-15 16:10:59.451694+00', '2019-12-31 03:30:30.470673+00', 0, 0, 0, 0, false, false, 34, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (327, '2018-03-15 16:10:59.471623+00', '2019-12-31 03:30:30.485517+00', 0, 0, 0, 0, false, false, 72, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (328, '2018-03-15 16:10:59.490909+00', '2019-12-31 03:30:30.504471+00', 0, 0, 0, 0, false, false, 102, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (329, '2018-03-15 16:10:59.51116+00', '2019-12-31 03:30:30.520554+00', 0, 0, 0, 0, false, false, 101, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (330, '2018-03-15 16:10:59.531588+00', '2019-12-31 03:30:30.565096+00', 0, 0, 0, 0, false, false, 51, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (227, '2018-03-15 16:10:57.46365+00', '2019-12-31 03:30:30.603272+00', 0, 0, 0, 0, false, false, 60, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (331, '2018-03-15 16:10:59.55127+00', '2019-12-31 03:30:30.618114+00', 0, 0, 0, 0, false, false, 100, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (332, '2018-03-15 16:10:59.570835+00', '2019-12-31 03:30:30.632915+00', 0, 0, 0, 0, false, false, 76, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (333, '2018-03-15 16:10:59.590411+00', '2019-12-31 03:30:30.648731+00', 0, 0, 0, 0, false, false, 140, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (334, '2018-03-15 16:10:59.61012+00', '2019-12-31 03:30:30.663482+00', 0, 0, 0, 0, false, false, 73, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (335, '2018-03-15 16:10:59.63007+00', '2019-12-31 03:30:30.701789+00', 0, 0, 0, 0, false, false, 74, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (337, '2018-03-15 16:10:59.669106+00', '2019-12-31 03:30:30.715832+00', 0, 0, 0, 0, false, false, 331, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (338, '2018-03-15 16:10:59.68852+00', '2019-12-31 03:30:30.730974+00', 0, 0, 0, 0, false, false, 52, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (430, '2018-04-12 00:06:07.156144+00', '2019-12-31 03:30:30.773859+00', 0, 0, 0, 0, false, false, 430, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (339, '2018-03-15 16:10:59.708604+00', '2019-12-31 03:30:30.788596+00', 0, 0, 0, 0, false, false, 361, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (340, '2018-03-15 16:10:59.728362+00', '2019-12-31 03:30:30.848953+00', 0, 0, 0, 0, false, false, 18, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (431, '2018-04-25 14:14:27.486915+00', '2019-12-31 03:30:30.898988+00', 0, 0, 0, 0, false, false, 431, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (341, '2018-03-15 16:10:59.750062+00', '2019-12-31 03:30:30.921709+00', 0, 0, 0, 0, false, false, 297, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (342, '2018-03-15 16:10:59.769595+00', '2019-12-31 03:30:30.941559+00', 0, 0, 0, 0, false, false, 209, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (343, '2018-03-15 16:10:59.788981+00', '2019-12-31 03:30:30.956483+00', 0, 0, 0, 0, false, false, 359, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (344, '2018-03-15 16:10:59.808358+00', '2019-12-31 03:30:30.970843+00', 0, 0, 0, 0, false, false, 207, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (345, '2018-03-15 16:10:59.827999+00', '2019-12-31 03:30:30.985414+00', 0, 0, 0, 0, false, false, 197, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (346, '2018-03-15 16:10:59.847951+00', '2019-12-31 03:30:30.999791+00', 0, 0, 0, 0, false, false, 20, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (347, '2018-03-15 16:10:59.868459+00', '2019-12-31 03:30:31.016372+00', 0, 0, 0, 0, false, false, 79, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (348, '2018-03-15 16:10:59.888115+00', '2019-12-31 03:30:31.064907+00', 0, 0, 0, 0, false, false, 407, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (349, '2018-03-15 16:10:59.908714+00', '2019-12-31 03:30:31.079974+00', 0, 0, 0, 0, false, false, 153, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (354, '2018-03-15 16:11:00.010409+00', '2019-12-31 03:30:31.162266+00', 0, 0, 0, 0, false, false, 96, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (355, '2018-03-15 16:11:00.030235+00', '2019-12-31 03:30:31.201509+00', 0, 0, 0, 0, false, false, 270, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (356, '2018-03-15 16:11:00.050107+00', '2019-12-31 03:30:31.239043+00', 0, 0, 0, 0, false, false, 410, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (357, '2018-03-15 16:11:00.070127+00', '2019-12-31 03:30:31.253466+00', 0, 0, 0, 0, false, false, 172, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (358, '2018-03-15 16:11:00.090381+00', '2019-12-31 03:30:31.267752+00', 0, 0, 0, 0, false, false, 230, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (440, '2019-01-12 00:02:19.916648+00', '2019-12-31 03:30:31.283141+00', 0, 0, 0, 0, false, false, 441, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (359, '2018-03-15 16:11:00.112521+00', '2019-12-31 03:30:31.298823+00', 0, 0, 0, 0, false, false, 159, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (3, '2018-03-15 16:10:52.927047+00', '2019-12-31 03:30:31.34304+00', 0, 0, 0, 0, false, false, 81, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (360, '2018-03-15 16:11:00.13237+00', '2019-12-31 03:30:31.386627+00', 0, 0, 0, 0, false, false, 326, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (361, '2018-03-15 16:11:00.15281+00', '2019-12-31 03:30:31.401194+00', 0, 0, 0, 0, false, false, 171, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (362, '2018-03-15 16:11:00.172926+00', '2019-12-31 03:30:31.415011+00', 0, 0, 0, 0, false, false, 301, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (363, '2018-03-15 16:11:00.194276+00', '2019-12-31 03:30:31.428999+00', 0, 0, 0, 0, false, false, 189, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (364, '2018-03-15 16:11:00.21533+00', '2019-12-31 03:30:31.443727+00', 0, 0, 0, 0, false, false, 421, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (365, '2018-03-15 16:11:00.235344+00', '2019-12-31 03:30:31.481787+00', 0, 0, 0, 0, false, false, 425, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (366, '2018-03-15 16:11:00.255698+00', '2019-12-31 03:30:31.495831+00', 0, 0, 0, 0, false, false, 202, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (367, '2018-03-15 16:11:00.279844+00', '2019-12-31 03:30:31.510405+00', 0, 0, 0, 0, false, false, 252, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (368, '2018-03-15 16:11:00.300555+00', '2019-12-31 03:30:31.525496+00', 0, 0, 0, 0, false, false, 201, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (369, '2018-03-15 16:11:00.320619+00', '2019-12-31 03:30:31.540151+00', 0, 0, 0, 0, false, false, 192, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (370, '2018-03-15 16:11:00.340462+00', '2019-12-31 03:30:31.554137+00', 0, 0, 0, 0, false, false, 82, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (371, '2018-03-15 16:11:00.360171+00', '2019-12-31 03:30:31.592829+00', 0, 0, 0, 0, false, false, 109, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (372, '2018-03-15 16:11:00.380832+00', '2019-12-31 03:30:31.60859+00', 0, 0, 0, 0, false, false, 21, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (373, '2018-03-15 16:11:00.400212+00', '2019-12-31 03:30:31.626051+00', 0, 0, 0, 0, false, false, 22, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (374, '2018-03-15 16:11:00.419736+00', '2019-12-31 03:30:31.642768+00', 0, 0, 0, 0, false, false, 23, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (375, '2018-03-15 16:11:00.439831+00', '2019-12-31 03:30:31.657968+00', 0, 0, 0, 0, false, false, 110, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (376, '2018-03-15 16:11:00.459843+00', '2019-12-31 03:30:31.672539+00', 0, 0, 0, 0, false, false, 83, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (377, '2018-03-15 16:11:00.479519+00', '2019-12-31 03:30:31.687257+00', 0, 0, 0, 0, false, false, 200, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (379, '2018-03-15 16:11:00.520785+00', '2019-12-31 03:30:31.706085+00', 0, 0, 0, 0, false, false, 113, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (378, '2018-03-15 16:11:00.499733+00', '2019-12-31 03:30:31.721096+00', 0, 0, 0, 0, false, false, 337, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (380, '2018-03-15 16:11:00.540223+00', '2019-12-31 03:30:31.736051+00', 0, 0, 0, 0, false, false, 143, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (381, '2018-03-15 16:11:00.56022+00', '2019-12-31 03:30:31.750724+00', 0, 0, 0, 0, false, false, 278, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (382, '2018-03-15 16:11:00.57996+00', '2019-12-31 03:30:31.764932+00', 0, 0, 0, 0, false, false, 84, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (383, '2018-03-15 16:11:00.599976+00', '2019-12-31 03:30:31.779373+00', 0, 0, 0, 0, false, false, 210, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (384, '2018-03-15 16:11:00.620123+00', '2019-12-31 03:30:31.797606+00', 0, 0, 0, 0, false, false, 390, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (385, '2018-03-15 16:11:00.640021+00', '2019-12-31 03:30:31.812604+00', 0, 0, 0, 0, false, false, 152, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (386, '2018-03-15 16:11:00.659998+00', '2019-12-31 03:30:31.827232+00', 0, 0, 0, 0, false, false, 85, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (387, '2018-03-15 16:11:00.684598+00', '2019-12-31 03:30:31.842931+00', 0, 0, 0, 0, false, false, 253, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (388, '2018-03-15 16:11:00.70544+00', '2019-12-31 03:30:31.858+00', 0, 0, 0, 0, false, false, 103, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (389, '2018-03-15 16:11:00.725061+00', '2019-12-31 03:30:31.872596+00', 0, 0, 0, 0, false, false, 353, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (390, '2018-03-15 16:11:00.744519+00', '2019-12-31 03:30:31.886674+00', 0, 0, 0, 0, false, false, 24, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (391, '2018-03-15 16:11:00.763843+00', '2019-12-31 03:30:31.900986+00', 0, 0, 0, 0, false, false, 111, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (392, '2018-03-15 16:11:00.783557+00', '2019-12-31 03:30:31.915483+00', 0, 0, 0, 0, false, false, 86, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (393, '2018-03-15 16:11:00.802974+00', '2019-12-31 03:30:31.931016+00', 0, 0, 0, 0, false, false, 191, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (394, '2018-03-15 16:11:00.822911+00', '2019-12-31 03:30:31.95366+00', 0, 0, 0, 0, false, false, 379, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (395, '2018-03-15 16:11:00.844383+00', '2019-12-31 03:30:31.970844+00', 0, 0, 0, 0, false, false, 218, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (396, '2018-03-15 16:11:00.864583+00', '2019-12-31 03:30:31.984949+00', 0, 0, 0, 0, false, false, 213, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (397, '2018-03-15 16:11:00.884388+00', '2019-12-31 03:30:32.027169+00', 0, 0, 0, 0, false, false, 424, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (398, '2018-03-15 16:11:00.903987+00', '2019-12-31 03:30:32.065541+00', 0, 0, 0, 0, false, false, 412, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (399, '2018-03-15 16:11:00.924137+00', '2019-12-31 03:30:32.080967+00', 0, 0, 0, 0, false, false, 328, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (400, '2018-03-15 16:11:00.944348+00', '2019-12-31 03:30:32.119268+00', 0, 0, 0, 0, false, false, 428, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (401, '2018-03-15 16:11:00.964295+00', '2019-12-31 03:30:32.133903+00', 0, 0, 0, 0, false, false, 322, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (402, '2018-03-15 16:11:00.987443+00', '2019-12-31 03:30:32.148936+00', 0, 0, 0, 0, false, false, 387, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (403, '2018-03-15 16:11:01.007202+00', '2019-12-31 03:30:32.16402+00', 0, 0, 0, 0, false, false, 419, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (405, '2018-03-15 16:11:01.046861+00', '2019-12-31 03:30:32.178909+00', 0, 0, 0, 0, false, false, 391, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (404, '2018-03-15 16:11:01.026925+00', '2019-12-31 03:30:32.217345+00', 0, 0, 0, 0, false, false, 169, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (406, '2018-03-15 16:11:01.06654+00', '2019-12-31 03:30:32.232892+00', 0, 0, 0, 0, false, false, 354, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (433, '2018-06-02 00:02:50.580391+00', '2019-12-31 03:30:32.271256+00', 0, 0, 0, 0, false, false, 434, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (407, '2018-03-15 16:11:01.087347+00', '2019-12-31 03:30:32.294062+00', 0, 0, 0, 0, false, false, 234, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (353, '2018-03-15 16:10:59.990494+00', '2019-12-31 03:30:24.285439+00', 0, 0, 0, 0, false, false, 80, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (350, '2018-03-15 16:10:59.929427+00', '2019-12-31 03:30:31.101372+00', 0, 0, 0, 0, false, false, 380, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (351, '2018-03-15 16:10:59.949556+00', '2019-12-31 03:30:31.116733+00', 0, 0, 0, 0, false, false, 160, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (352, '2018-03-15 16:10:59.970672+00', '2019-12-31 03:30:31.139768+00', 0, 0, 0, 0, false, false, 147, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (408, '2018-03-15 16:11:01.107481+00', '2019-12-31 03:30:32.308971+00', 0, 0, 0, 0, false, false, 88, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (409, '2018-03-15 16:11:01.126966+00', '2019-12-31 03:30:32.35071+00', 0, 0, 0, 0, false, false, 104, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (410, '2018-03-15 16:11:01.146872+00', '2019-12-31 03:30:32.372565+00', 0, 0, 0, 0, false, false, 223, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (429, '2018-04-01 00:05:29.74943+00', '2019-12-31 03:30:32.419561+00', 0, 0, 0, 0, false, false, 429, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (438, '2018-10-30 14:21:57.35623+00', '2019-12-31 03:30:32.458742+00', 0, 0, 0, 0, false, false, 439, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (411, '2018-03-15 16:11:01.166665+00', '2019-12-31 03:30:32.474173+00', 0, 0, 0, 0, false, false, 226, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (412, '2018-03-15 16:11:01.186641+00', '2019-12-31 03:30:32.488925+00', 0, 0, 0, 0, false, false, 245, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (413, '2018-03-15 16:11:01.207071+00', '2019-12-31 03:30:32.507554+00', 0, 0, 0, 0, false, false, 317, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (414, '2018-03-15 16:11:01.227039+00', '2019-12-31 03:30:32.521996+00', 0, 0, 0, 0, false, false, 105, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (415, '2018-03-15 16:11:01.246911+00', '2019-12-31 03:30:32.577971+00', 0, 0, 0, 0, false, false, 237, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (416, '2018-03-15 16:11:01.267563+00', '2019-12-31 03:30:32.593556+00', 0, 0, 0, 0, false, false, 348, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (417, '2018-03-15 16:11:01.287835+00', '2019-12-31 03:30:32.609916+00', 0, 0, 0, 0, false, false, 308, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (418, '2018-03-15 16:11:01.309745+00', '2019-12-31 03:30:32.630922+00', 0, 0, 0, 0, false, false, 351, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (419, '2018-03-15 16:11:01.331117+00', '2019-12-31 03:30:32.6711+00', 0, 0, 0, 0, false, false, 401, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (420, '2018-03-15 16:11:01.350841+00', '2019-12-31 03:30:32.695761+00', 0, 0, 0, 0, false, false, 303, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (421, '2018-03-15 16:11:01.371398+00', '2019-12-31 03:30:32.710177+00', 0, 0, 0, 0, false, false, 385, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (447, '2019-10-01 14:41:36.131095+00', '2019-12-31 03:30:32.754628+00', 0, 0, 0, 0, false, false, 448, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (422, '2018-03-15 16:11:01.392273+00', '2019-12-31 03:30:32.774501+00', 0, 0, 0, 0, false, false, 276, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (435, '2018-08-28 13:22:09.544727+00', '2019-12-31 03:30:32.817542+00', 0, 0, 0, 0, false, false, 436, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (423, '2018-03-15 16:11:01.411971+00', '2019-12-31 03:30:32.844466+00', 0, 0, 0, 0, false, false, 132, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (424, '2018-03-15 16:11:01.431989+00', '2019-12-31 03:30:32.868481+00', 0, 0, 0, 0, false, false, 190, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (425, '2018-03-15 16:11:01.452078+00', '2019-12-31 03:30:32.88943+00', 0, 0, 0, 0, false, false, 249, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (426, '2018-03-15 16:11:01.47235+00', '2019-12-31 03:30:32.90317+00', 0, 0, 0, 0, false, false, 402, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (439, '2019-01-12 00:02:12.94676+00', '2019-12-31 03:30:32.915971+00', 0, 0, 0, 0, false, false, 440, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (427, '2018-03-15 16:11:01.492065+00', '2019-12-31 03:30:32.955527+00', 0, 0, 0, 0, false, false, 415, 0); +INSERT INTO [[schema]].partners_plannedengagement VALUES (428, '2018-03-15 16:11:01.51244+00', '2019-12-31 03:30:32.977986+00', 0, 0, 0, 0, false, false, 240, 0); -- @@ -15180,42 +16624,52 @@ INSERT INTO [[schema]].partners_plannedengagement VALUES (428, '2018-03-15 16:11 -- Data for Name: psea_evidence; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].psea_evidence VALUES (1, '2019-10-04 17:29:43.316042+00', '2019-10-04 17:29:43.316059+00', 'Code of Conduct', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (2, '2019-10-04 17:29:43.322038+00', '2019-10-04 17:29:43.322056+00', 'PSEA Policy', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (3, '2019-10-04 17:29:43.32925+00', '2019-10-04 17:29:43.32926+00', 'Other (please specify)', true, true); -INSERT INTO [[schema]].psea_evidence VALUES (4, '2019-10-04 17:29:43.336255+00', '2019-10-04 17:29:43.336272+00', 'Relevant human resources policies', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (5, '2019-10-04 17:29:43.343485+00', '2019-10-04 17:29:43.343494+00', 'Recruitment procedure (e.g. screening of candidates)', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (6, '2019-10-04 17:29:43.35024+00', '2019-10-04 17:29:43.35025+00', 'ToR (e.g. PSEA-related responsibilities)', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (7, '2019-10-04 17:29:43.365266+00', '2019-10-04 17:29:43.365277+00', 'Contracts/partnership agreements', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (8, '2019-10-04 17:29:43.372557+00', '2019-10-04 17:29:43.372567+00', 'Training Agenda', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (9, '2019-10-04 17:29:43.380189+00', '2019-10-04 17:29:43.3802+00', 'Attendance sheets', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (10, '2019-10-04 17:29:43.387287+00', '2019-10-04 17:29:43.387298+00', 'Communication materials', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (11, '2019-10-04 17:29:43.394334+00', '2019-10-04 17:29:43.394345+00', 'Needs assessments', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (12, '2019-10-04 17:29:43.40133+00', '2019-10-04 17:29:43.40134+00', 'Risk assessments', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (13, '2019-10-04 17:29:43.408148+00', '2019-10-04 17:29:43.408159+00', 'M&E framework', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (14, '2019-10-04 17:29:43.415072+00', '2019-10-04 17:29:43.415145+00', 'Description of reporting mechanism(s)', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (15, '2019-10-04 17:29:43.422296+00', '2019-10-04 17:29:43.422307+00', 'Whistleblower policy', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (16, '2019-10-04 17:29:43.429276+00', '2019-10-04 17:29:43.429286+00', 'List of service providers', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (17, '2019-10-04 17:29:43.436968+00', '2019-10-04 17:29:43.436978+00', 'Referral form for survivors of GBV/SEA', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (18, '2019-10-04 17:29:43.443553+00', '2019-10-04 17:29:43.443563+00', 'Name(s) of possible investigator(s)', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (19, '2019-10-04 17:29:43.450323+00', '2019-10-04 17:29:43.450333+00', 'Dedicated resources for investigation(s) and/or commitment of partner for support', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (20, '2019-10-04 17:29:43.458285+00', '2019-10-04 17:29:43.458294+00', 'PSEA investigation policy/procedure', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (21, '2019-10-04 17:29:43.465939+00', '2019-10-04 17:29:43.46595+00', 'Documentation of standard procedure', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (22, '2019-10-04 17:29:43.473411+00', '2019-10-04 17:29:43.473422+00', 'Annual training plan', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (23, '2019-10-04 17:29:43.480249+00', '2019-10-04 17:29:43.480259+00', 'Description of referral process for survivors of GBV/SEA', false, true); -INSERT INTO [[schema]].psea_evidence VALUES (24, '2019-10-04 17:29:43.489278+00', '2019-10-04 17:29:43.489288+00', 'Written process for review of SEA allegations', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (1, '2019-10-04 17:29:37.528+00', '2019-10-04 17:29:37.528+00', 'Code of Conduct', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (2, '2019-10-04 17:29:37.535+00', '2019-10-04 17:29:37.535+00', 'PSEA Policy', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (3, '2019-10-04 17:29:37.542+00', '2019-10-04 17:29:37.542+00', 'Other (please specify)', true, true); +INSERT INTO [[schema]].psea_evidence VALUES (4, '2019-10-04 17:29:37.549+00', '2019-10-04 17:29:37.549+00', 'Relevant human resources policies', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (5, '2019-10-04 17:29:37.556+00', '2019-10-04 17:29:37.556+00', 'Recruitment procedure (e.g. screening of candidates)', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (6, '2019-10-04 17:29:37.563+00', '2019-10-04 17:29:37.563+00', 'ToR (e.g. PSEA-related responsibilities)', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (7, '2019-10-04 17:29:37.57+00', '2019-10-04 17:29:37.57+00', 'Contracts/partnership agreements', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (8, '2019-10-04 17:29:37.577+00', '2019-10-04 17:29:37.577+00', 'Training Agenda', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (9, '2019-10-04 17:29:37.584+00', '2019-10-04 17:29:37.584+00', 'Attendance sheets', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (10, '2019-10-04 17:29:37.591+00', '2019-10-04 17:29:37.591+00', 'Communication materials', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (11, '2019-10-04 17:29:37.598+00', '2019-10-04 17:29:37.598+00', 'Needs assessments', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (12, '2019-10-04 17:29:37.604+00', '2019-10-04 17:29:37.604+00', 'Risk assessments', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (13, '2019-10-04 17:29:37.611+00', '2019-10-04 17:29:37.611+00', 'M&E framework', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (14, '2019-10-04 17:29:37.617+00', '2019-10-04 17:29:37.617+00', 'Description of reporting mechanism(s)', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (15, '2019-10-04 17:29:37.625+00', '2019-10-04 17:29:37.625+00', 'Whistleblower policy', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (16, '2019-10-04 17:29:37.633+00', '2019-10-04 17:29:37.633+00', 'List of service providers', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (17, '2019-10-04 17:29:37.641+00', '2019-10-04 17:29:37.641+00', 'Referral form for survivors of GBV/SEA', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (18, '2019-10-04 17:29:37.648+00', '2019-10-04 17:29:37.648+00', 'Name(s) of possible investigator(s)', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (19, '2019-10-04 17:29:37.655+00', '2019-10-04 17:29:37.655+00', 'Dedicated resources for investigation(s) and/or commitment of partner for support', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (20, '2019-10-04 17:29:37.663+00', '2019-10-04 17:29:37.663+00', 'PSEA investigation policy/procedure', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (21, '2019-10-04 17:29:37.67+00', '2019-10-04 17:29:37.67+00', 'Documentation of standard procedure', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (22, '2019-10-04 17:29:37.678+00', '2019-10-04 17:29:37.678+00', 'Annual training plan', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (23, '2019-10-04 17:29:37.686+00', '2019-10-04 17:29:37.686+00', 'Description of referral process for survivors of GBV/SEA', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (24, '2019-10-04 17:29:37.693+00', '2019-10-04 17:29:37.693+00', 'Written process for review of SEA allegations', false, true); +INSERT INTO [[schema]].psea_evidence VALUES (25, '2020-01-17 16:12:21.712+00', '2020-01-17 16:12:21.712+00', 'PSEA awareness-raising plan', false, true); -- -- Data for Name: psea_indicator; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].psea_indicator VALUES (1, '2019-10-04 17:29:43.496215+00', '2019-10-04 17:29:43.496226+00', 'Core Standard 1: Organizational Policy', 'An organizational policy exists and is signed by all personnel (see: PSEA Toolkit Section 4.2.1. Policies). (Note that the policy may exist as part of a code of conduct and/or a comprehensive SEA policy.)', true, 1, ''); -INSERT INTO [[schema]].psea_indicator VALUES (2, '2019-10-04 17:29:43.531436+00', '2019-10-04 17:29:43.531457+00', 'Core Standard 2: Organizational Management and HR Systems', 'The organization’s management and HR systems account for PSEA (see : PSEA Toolkit Section 4.2.2. Procedures).', true, 2, ''); -INSERT INTO [[schema]].psea_indicator VALUES (3, '2019-10-04 17:29:43.566536+00', '2019-10-04 17:29:43.566547+00', 'Core Standard 3: Mandatory Training', 'The organization holds mandatory trainings for personnel on the organization’s SEA policy and procedures (see : PSEA Toolkit Section 4.3.1. Training). (Note this training can be delivered online or in-person.)', true, 3, ''); -INSERT INTO [[schema]].psea_indicator VALUES (4, '2019-10-04 17:29:43.596428+00', '2019-10-04 17:29:43.596445+00', 'Core Standard 4: Reporting', 'The organization has mechanisms and procedures for personnel, beneficiaries and communities, including children, to report SEA allegations that comply with core standards for reporting (i.e. safety, confidentiality, transparency, accessibility) and ensures that beneficiaries are aware of these (see PSEA Toolkit Section 4.3.2. Awareness-raising and Section 5.2. Reporting Mechanisms).', true, 4, ''); -INSERT INTO [[schema]].psea_indicator VALUES (5, '2019-10-04 17:29:43.625365+00', '2019-10-04 17:29:43.625378+00', 'Core Standard 5: Assistance and Referrals', 'The organization has a system to ensure survivors of SEA, including children, receive immediate professional assistance, referring them to relevant service providers (see PSEA Toolkit Section 6.2. Assistance and Referrals).', true, 5, ''); -INSERT INTO [[schema]].psea_indicator VALUES (6, '2019-10-04 17:29:43.655016+00', '2019-10-04 17:29:43.655027+00', 'Core Standard 6: Investigations', 'The organization has a process and plan for ensuring investigation into SEA allegations involving its personnel (see PSEA Toolkit Section 7.2. Investigation Procedures).', true, 6, ''); +INSERT INTO [[schema]].psea_indicator VALUES (1, '2019-10-04 17:29:37.7+00', '2020-01-17 15:56:49.785+00', 'Core Standard 1: Organizational Policy', 'Refer: PSEA Toolkit Section 4.2.1. Policies.
Required 1: An organizational policy on PSEA exists and describes appropriate standards of conduct, other preventive measures, reporting, monitoring, investigation and corrective measures.
(UN IP Protocol para 15 & Annex A.4)', true, 1, ''); +INSERT INTO [[schema]].psea_indicator VALUES (2, '2019-10-04 17:29:37.734+00', '2020-01-17 16:18:50.755+00', 'Core Standard 2: Organizational Management and HR Systems', 'Refer: PSEA Toolkit Section 4.2.2. Procedures +Required 1: The organization’s contracts and partnership agreements include a standard clause requiring contractors, suppliers, consultants and sub-partners to commit to a zero-tolerance policy on SEA and to take measures to prevent and respond to SEA. +Required 2: There is a systematic vetting procedure in place for job candidates (e.g. reference checks, police records, Google searches) in accordance with local laws regarding employment, privacy and data protection, including checking for prior involvement in SEA. +(UN IP Protocol para 11; 15; & Annex A.1, A.2)', true, 2, ''); +INSERT INTO [[schema]].psea_indicator VALUES (3, '2019-10-04 17:29:37.765+00', '2020-01-17 16:09:07.966+00', 'Core Standard 3: Mandatory Training', 'Refer PSEA Toolkit Section 4.3.1. Training +Required 1: The organization holds mandatory trainings for all personnel on the organization’s SEA policy and procedures and the training includes 1) a definition of SEA (that is aligned with the UN''s definition); 2) a prohibition of SEA; and 3) actions that personnel are required to take (i.e. prompt reporting of allegations and referral of survivors). +(UN IP Protocol para 17 & Annex A.5)', true, 3, ''); +INSERT INTO [[schema]].psea_indicator VALUES (4, '2019-10-04 17:29:37.795+00', '2020-01-17 16:13:32.26+00', 'Core Standard 4: Reporting', 'Refer PSEA Toolkit Section 4.3.2. Awareness-raising and Section 5.2. Reporting Mechanisms +Required 1: The organization has mechanisms and procedures for personnel, beneficiaries and communities, including children, to report SEA allegations that comply with core standards for reporting (i.e. safety, confidentiality, transparency, accessibility) and ensures that beneficiaries are aware of these.
(UN IP Protocol para 19 & Annex A.3)', true, 4, ''); +INSERT INTO [[schema]].psea_indicator VALUES (5, '2019-10-04 17:29:37.826+00', '2020-01-17 16:17:14.743+00', 'Core Standard 5: Assistance and Referrals', 'Refer PSEA Toolkit Section 6.2. Assistance and Referrals +Required 1:The organization has a system to ensure survivors of SEA, including children, receive immediate professional assistance, referring them to qualified service providers.
(UN IP Protocol para 22.d.)', true, 5, ''); +INSERT INTO [[schema]].psea_indicator VALUES (6, '2019-10-04 17:29:37.857+00', '2020-01-17 16:18:03.295+00', 'Core Standard 6: Investigations', 'Refer PSEA Toolkit Section 7.2. Investigation Procedures). +Required 1: The organization has a process for investigation of allegations of SEA and can provide evidence that it has appropriately dealt with past SEA allegations, if any, through investigation and corrective action. +(UN IP Protocol para 20, 22.a., & Annex A.6)', true, 6, ''); -- @@ -15245,6 +16699,8 @@ INSERT INTO [[schema]].psea_indicator_evidences VALUES (20, 6, 19); INSERT INTO [[schema]].psea_indicator_evidences VALUES (21, 6, 24); INSERT INTO [[schema]].psea_indicator_evidences VALUES (22, 6, 3); INSERT INTO [[schema]].psea_indicator_evidences VALUES (23, 6, 20); +INSERT INTO [[schema]].psea_indicator_evidences VALUES (24, 4, 25); +INSERT INTO [[schema]].psea_indicator_evidences VALUES (25, 4, 10); -- @@ -15275,15 +16731,277 @@ INSERT INTO [[schema]].psea_indicator_ratings VALUES (18, 6, 3); -- Data for Name: psea_rating; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].psea_rating VALUES (1, '2019-10-04 17:29:43.291366+00', '2019-10-04 17:29:43.291379+00', 'Absent', 1, true); -INSERT INTO [[schema]].psea_rating VALUES (2, '2019-10-04 17:29:43.303223+00', '2019-10-04 17:29:43.303233+00', 'Progressing', 2, true); -INSERT INTO [[schema]].psea_rating VALUES (3, '2019-10-04 17:29:43.309781+00', '2019-10-04 17:29:43.30979+00', 'Adequate', 3, true); +INSERT INTO [[schema]].psea_rating VALUES (1, '2019-10-04 17:29:37.497+00', '2019-10-04 17:29:37.497+00', 'Absent', 1, true); +INSERT INTO [[schema]].psea_rating VALUES (2, '2019-10-04 17:29:37.513+00', '2019-10-04 17:29:37.513+00', 'Progressing', 2, true); +INSERT INTO [[schema]].psea_rating VALUES (3, '2019-10-04 17:29:37.52+00', '2019-10-04 17:29:37.52+00', 'Adequate', 3, true); -- -- Data for Name: reports_appliedindicator; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].reports_appliedindicator VALUES (1, NULL, NULL, 0, 1, 1, NULL, NULL, NULL, NULL, '2020-02-12 16:08:09.737556+00', '2020-02-12 16:08:27.230254+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "200"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (2, NULL, NULL, 0, 2, 1, NULL, NULL, NULL, NULL, '2020-02-12 16:08:56.45591+00', '2020-02-12 16:08:56.45591+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "200"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (3, NULL, NULL, 0, 3, 1, NULL, NULL, NULL, NULL, '2020-02-12 16:09:22.721335+00', '2020-02-12 16:09:22.721335+00', NULL, 8, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "200"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (4, NULL, NULL, 0, 4, 1, NULL, NULL, NULL, NULL, '2020-02-12 16:10:22.421649+00', '2020-02-12 16:10:22.421649+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "4"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (5, NULL, NULL, 0, 5, 1, NULL, NULL, NULL, NULL, '2020-02-12 16:10:57.026755+00', '2020-02-12 16:10:57.026755+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "72000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (6, NULL, NULL, 0, 6, 1, NULL, NULL, NULL, NULL, '2020-02-12 16:11:16.860483+00', '2020-02-12 16:11:16.860483+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "1"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (7, NULL, NULL, 0, 7, 2, NULL, NULL, NULL, NULL, '2020-02-12 16:11:41.871395+00', '2020-02-12 16:11:41.871395+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "20000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (8, NULL, NULL, 0, 8, 2, NULL, NULL, NULL, NULL, '2020-02-12 16:12:10.247342+00', '2020-02-12 16:12:10.247342+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "100000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (9, NULL, NULL, 0, 9, 2, NULL, NULL, NULL, NULL, '2020-02-12 16:12:38.35656+00', '2020-02-12 16:12:38.35656+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "70"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (10, NULL, NULL, 0, 10, 2, NULL, NULL, NULL, NULL, '2020-02-12 16:13:05.187575+00', '2020-02-12 16:13:05.187575+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "100"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (14, NULL, NULL, 0, 14, 3, '- Rapport de causerie éducatives +- Rapport d’activité +- Liste de présence', NULL, NULL, NULL, '2020-02-17 11:20:49.13873+00', '2020-02-17 11:20:49.13873+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "5600"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (11, NULL, NULL, 0, 11, 3, '- Rapport d’activité +- Liste de présence', NULL, NULL, NULL, '2020-02-17 11:17:18.173016+00', '2020-02-17 11:21:07.281212+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "100"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (15, NULL, NULL, 0, 15, 3, '- Rapport de causerie éducatives +- Rapport d’activité +- Liste de présence', NULL, NULL, NULL, '2020-02-17 11:22:22.574238+00', '2020-02-17 11:22:22.574238+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "56000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (16, NULL, NULL, 0, 16, 3, '- Rapport d’activité +- Liste de présence', NULL, NULL, NULL, '2020-02-17 11:23:39.877241+00', '2020-02-17 11:23:39.877241+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "700"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (17, NULL, NULL, 0, 11, 4, '- Rapport d’activité +- Liste de présence', NULL, NULL, NULL, '2020-02-17 11:27:35.840828+00', '2020-02-17 11:27:35.840828+00', NULL, 2, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "100"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (18, NULL, NULL, 0, 12, 4, '- Rapport d’identification des FM et RC +- Rapport d’activité +- Liste de présence', NULL, NULL, NULL, '2020-02-17 11:28:17.873169+00', '2020-02-17 11:28:17.873169+00', NULL, 2, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "280"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (19, NULL, NULL, 0, 13, 4, '- Rapport de formation +- Rapport d’activité +- Liste de présence', NULL, NULL, NULL, '2020-02-17 11:29:00.685524+00', '2020-02-17 11:29:00.685524+00', NULL, 2, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "280"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (20, NULL, NULL, 0, 14, 4, '- Rapport de causerie éducatives +- Rapport d’activité +- Liste de présence', NULL, NULL, NULL, '2020-02-17 11:29:46.3644+00', '2020-02-17 11:29:46.3644+00', NULL, 2, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "5600"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (21, NULL, NULL, 0, 15, 4, '- Rapport de causerie éducatives +- Rapport d’activité +- Liste de présence', NULL, NULL, NULL, '2020-02-17 11:31:04.246407+00', '2020-02-17 11:31:04.246407+00', NULL, 2, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "56000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (22, NULL, NULL, 0, 14, 5, '- Rapport de causerie éducatives +- Rapport d’activité +- Liste de présence', NULL, NULL, NULL, '2020-02-17 11:33:36.308332+00', '2020-02-17 11:33:36.308332+00', NULL, 7, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "5600"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (23, NULL, NULL, 0, 15, 5, '- Rapport de causerie éducatives +- Rapport d’activité +- Liste de présence', NULL, NULL, NULL, '2020-02-17 11:34:46.491642+00', '2020-02-17 11:34:46.491642+00', NULL, 7, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "56000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (24, NULL, NULL, 0, 17, 6, '- Rapport productions théatrales et caravanes +- Rapport d’activité', NULL, NULL, NULL, '2020-02-17 11:36:48.372463+00', '2020-02-17 11:36:48.372463+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "12600"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (25, NULL, NULL, 0, 17, 7, '- Rapport productions théatrales et caravanes +- Rapport d’activité', NULL, NULL, NULL, '2020-02-17 11:38:12.248858+00', '2020-02-17 11:38:12.248858+00', NULL, 2, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "12600"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (26, NULL, NULL, 0, 18, 10, '- Rapports des missions de suivi +- Ordre de mission', NULL, NULL, NULL, '2020-02-17 12:05:16.699947+00', '2020-02-17 12:05:16.699947+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "2"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (27, NULL, NULL, 0, 19, 10, '- Rapports des missions de suivi +- Ordre de mission', NULL, NULL, NULL, '2020-02-17 12:07:24.541565+00', '2020-02-17 12:07:24.541565+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "6"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (28, NULL, NULL, 0, 20, 9, '- Outil de suivi des cours', NULL, NULL, NULL, '2020-02-17 12:09:24.125879+00', '2020-02-17 12:09:24.125879+00', NULL, 8, true, false, '{"d": 100, "v": 0}', '', '', NULL, '', '{"d": 100, "v": 80}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (29, NULL, NULL, 0, 21, 9, '- Outil de suivi', NULL, NULL, NULL, '2020-02-17 12:10:16.032444+00', '2020-02-17 12:10:16.032444+00', NULL, 8, true, false, '{"d": 100, "v": 0}', '', '', NULL, '', '{"d": 100, "v": 100}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (30, NULL, NULL, 0, 22, 9, '- Outil de suivi', NULL, NULL, NULL, '2020-02-17 12:11:20.181079+00', '2020-02-17 12:11:20.181079+00', NULL, 8, true, false, '{"d": 100, "v": 0}', '', '', NULL, '', '{"d": 100, "v": 60}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (31, NULL, NULL, 0, 23, 9, '- Bordereau de distribution', NULL, NULL, NULL, '2020-02-17 12:12:23.953444+00', '2020-02-17 12:12:23.953444+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "6461"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (32, NULL, NULL, 0, 24, 9, '- Rapport de célébration de la journée', NULL, NULL, NULL, '2020-02-17 12:13:23.536489+00', '2020-02-17 12:13:23.536489+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "1000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (33, NULL, NULL, 0, 25, 9, '- Enquête CAP finale', NULL, NULL, NULL, '2020-02-17 12:14:09.524158+00', '2020-02-17 12:14:09.524158+00', NULL, 8, true, false, '{"d": 100, "v": 0}', '', '', NULL, '', '{"d": 100, "v": 60}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (34, NULL, NULL, 0, 26, 8, '- Rapport de diagnostic', NULL, NULL, NULL, '2020-02-17 12:16:17.361578+00', '2020-02-17 12:16:17.361578+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "35"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (35, NULL, NULL, 0, 27, 8, '- Rapport d’activité +- Plans d’action signés', NULL, NULL, NULL, '2020-02-17 12:16:56.997925+00', '2020-02-17 12:16:56.997925+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "35"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (36, NULL, NULL, 0, 28, 8, '- Rapport d’enquête', NULL, NULL, NULL, '2020-02-17 12:17:53.491951+00', '2020-02-17 12:17:53.491951+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "35"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (37, NULL, NULL, 0, 29, 8, '- Rapport d’activité +- Plans de fonctionnement élaborés', NULL, NULL, NULL, '2020-02-17 12:18:39.069519+00', '2020-02-17 12:18:39.069519+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "35"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (38, NULL, NULL, 0, 30, 8, '- Rapport d’activité +- Liste de présence', NULL, NULL, NULL, '2020-02-17 12:19:48.510179+00', '2020-02-17 12:19:48.510179+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "35"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (39, NULL, NULL, 0, 31, 11, '- Rapports d’activités des partenaires de mise en œuvre +- Liste de présence +- Rapport de formation', NULL, NULL, NULL, '2020-02-17 14:15:31.284022+00', '2020-02-17 14:15:31.284022+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "60"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (40, NULL, NULL, 0, 32, 11, '- Rapports d’activités des partenaires de mise en œuvre +- Rapport de formation', NULL, NULL, NULL, '2020-02-17 14:16:32.823779+00', '2020-02-17 14:16:32.823779+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "300"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (41, NULL, NULL, 0, 33, 11, '- Rapports d’activités des partenaires de mise en œuvre +- Liste de présence +- Rapport de formation', NULL, NULL, NULL, '2020-02-17 14:17:36.578562+00', '2020-02-17 14:17:36.578562+00', NULL, 9, true, false, '{"d": 1, "v": "60"}', '', NULL, NULL, '', '{"d": 1, "v": "89"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (42, NULL, NULL, 0, 34, 12, '- Rapports d’activités des partenaires de mise en œuvre + +- Rapport de mission + + +- Compte rendu réuinon', NULL, NULL, NULL, '2020-02-17 14:18:33.641283+00', '2020-02-17 14:18:33.641283+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "267"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (43, NULL, NULL, 0, 35, 12, '- Rapports d’activités des partenaires de mise en œuvre + +- Liste de présence + + +- Compte rendu réuinon', NULL, NULL, NULL, '2020-02-17 14:19:31.378452+00', '2020-02-17 14:19:31.378452+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "14"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (44, NULL, NULL, 0, 36, 12, '- Rapports d’activités des partenaires de mise en œuvre + +- Liste de présence + + +- Compte rendu réuinon', NULL, NULL, NULL, '2020-02-17 14:20:05.700385+00', '2020-02-17 14:20:26.849073+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "1"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (45, NULL, NULL, 0, 37, 12, '- Rapports d’activités des partenaires de mise en œuvre +- Rapports de mission', NULL, NULL, NULL, '2020-02-17 14:21:19.720374+00', '2020-02-17 14:21:19.720374+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "12"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (46, NULL, NULL, 0, 38, 12, '- Rapports d’activités des partenaires de mise en œuvre +- Rapport de mission', NULL, NULL, NULL, '2020-02-17 14:22:03.326918+00', '2020-02-17 14:22:03.326918+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "03"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (47, NULL, NULL, 0, 39, 13, 'Rapport d’activités', NULL, NULL, NULL, '2020-02-17 15:56:14.15998+00', '2020-02-17 15:56:14.15998+00', NULL, 2, true, false, '{"d": 1, "v": "100"}', '', NULL, NULL, '', '{"d": 1, "v": "160"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (48, NULL, NULL, 0, 40, 13, 'TDR +Liste de présence +Rapport d’activité', NULL, NULL, NULL, '2020-02-17 15:57:02.641291+00', '2020-02-17 15:57:02.641291+00', NULL, 2, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "115"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (59, NULL, NULL, 0, 1, 18, 'Rapport d’activités +PV de mise en place des comités', NULL, NULL, NULL, '2020-02-20 13:25:41.586179+00', '2020-02-20 13:25:41.586179+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "250"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (50, NULL, NULL, 0, 42, 13, 'Fiche de Collecte', NULL, NULL, NULL, '2020-02-17 15:58:55.486429+00', '2020-02-17 15:58:55.486429+00', NULL, 2, true, false, '{"d": 1, "v": "139"}', '', NULL, NULL, '', '{"d": 1, "v": "250"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (51, NULL, NULL, 0, 43, 14, 'Rapport d’activité', NULL, NULL, NULL, '2020-02-17 15:59:50.618638+00', '2020-02-17 15:59:50.618638+00', NULL, 2, true, false, '{"d": 1, "v": "35000"}', '', NULL, NULL, '', '{"d": 1, "v": "50000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (52, NULL, NULL, 0, 44, 14, 'Fiche de collecte', NULL, NULL, NULL, '2020-02-17 16:00:30.456781+00', '2020-02-17 16:00:30.456781+00', NULL, 2, true, false, '{"d": 1, "v": "139"}', '', NULL, NULL, '', '{"d": 1, "v": "250"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (53, NULL, NULL, 0, 45, 14, 'Rapport d’activité', NULL, NULL, NULL, '2020-02-17 16:01:19.254156+00', '2020-02-17 16:01:19.254156+00', NULL, 2, true, false, '{"d": 1, "v": "1896"}', '', NULL, NULL, '', '{"d": 1, "v": "2850"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (54, NULL, NULL, 0, 46, 14, 'Rapport d’évolution de recrutés via le code Recruter 29', NULL, NULL, NULL, '2020-02-17 16:02:21.012812+00', '2020-02-17 16:02:21.012812+00', NULL, 2, true, false, '{"d": 1, "v": "5846"}', '', NULL, NULL, '', '{"d": 1, "v": "10000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (55, NULL, NULL, 0, 47, 14, 'Résultat de sondage', NULL, NULL, NULL, '2020-02-17 16:03:12.945225+00', '2020-02-17 16:03:12.945225+00', NULL, 2, true, false, '{"d": 100, "v": 20}', '', '', NULL, '', '{"d": 100, "v": 25}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (56, NULL, NULL, 0, 48, 15, 'Rapport d’activité +Liste de présence', NULL, NULL, NULL, '2020-02-17 16:04:01.032018+00', '2020-02-17 16:04:01.032018+00', NULL, 2, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "150"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (57, NULL, NULL, 0, 49, 15, 'Rapport d’activité', NULL, NULL, NULL, '2020-02-17 16:04:28.974947+00', '2020-02-17 16:04:28.974947+00', NULL, 2, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "60"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (58, NULL, NULL, 0, 50, 16, 'Rapport des suivi-évaluations', NULL, NULL, NULL, '2020-02-17 16:05:04.948911+00', '2020-02-17 16:05:04.948911+00', NULL, 2, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "5"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (60, NULL, NULL, 0, 2, 18, 'Rapport d’activités', NULL, NULL, NULL, '2020-02-20 13:26:15.725739+00', '2020-02-20 13:26:15.725739+00', NULL, 8, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "250"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (61, NULL, NULL, 0, 3, 18, 'Rapport d’activités +Rapport de déclenchement', NULL, NULL, NULL, '2020-02-20 13:26:46.762923+00', '2020-02-20 13:26:46.762923+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "250"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (62, NULL, NULL, 0, 4, 18, 'Rapport d’activités +Rapport de certification', NULL, NULL, NULL, '2020-02-20 13:27:40.221535+00', '2020-02-20 13:27:40.221535+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "5"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (63, NULL, NULL, 0, 51, 18, 'Rapports d''activite', NULL, NULL, NULL, '2020-02-20 13:29:14.764587+00', '2020-02-20 13:29:14.764587+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "48950"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (64, NULL, NULL, 0, 7, 17, 'Rapport d’activités +Suivi trimestriel des indicateurs HPM, Rapport technique de mise en œuvre', NULL, NULL, NULL, '2020-02-20 13:30:14.88745+00', '2020-02-20 13:30:14.88745+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "24000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (65, NULL, NULL, 0, 52, 17, 'Rapport d’activités +Suivi trimestriel des indicateurs HPM, Rapport technique de mise en œuvre', NULL, NULL, NULL, '2020-02-20 13:34:09.087029+00', '2020-02-20 13:34:09.087029+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "100000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (66, NULL, NULL, 0, 53, 17, 'Rapport d’activités ; enquêtes', NULL, NULL, NULL, '2020-02-20 13:34:48.192916+00', '2020-02-20 13:34:48.192916+00', NULL, 8, true, false, '{"d": 100, "v": 0}', '', '', NULL, '', '{"d": 100, "v": 70}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (67, NULL, NULL, 0, 54, 17, 'Rapport d’activités', NULL, NULL, NULL, '2020-02-20 13:35:19.231294+00', '2020-02-20 13:35:19.231294+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "190"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (68, NULL, NULL, 0, 55, 17, 'Rapport d’activités', NULL, NULL, NULL, '2020-02-20 13:35:53.112874+00', '2020-02-20 13:35:53.112874+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "190"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (69, NULL, NULL, 0, 56, 19, 'Rapport des activités et des évaluations du statut FDAL', NULL, NULL, NULL, '2020-02-20 14:35:42.609306+00', '2020-02-20 14:35:42.609306+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "37"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (70, NULL, NULL, 0, 57, 19, 'Rapport des activités et des évaluations du statut FDAL', NULL, NULL, NULL, '2020-02-20 14:36:26.252638+00', '2020-02-20 14:36:26.252638+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "37"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (71, NULL, NULL, 0, 58, 19, 'Rapport d’évaluation du statut FDAL', NULL, NULL, NULL, '2020-02-20 14:36:57.03771+00', '2020-02-20 14:36:57.03771+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "2"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (72, NULL, NULL, 0, 59, 19, 'Rapport de recensement des latrines +Outils de suivi de l’ATPC', NULL, NULL, NULL, '2020-02-20 14:37:36.895661+00', '2020-02-20 14:37:36.895661+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "8904"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (73, NULL, NULL, 0, 60, 19, 'Rapport d’enquête (préciser le nombre des femmes, hommes et les enfants utilisant les latrines)', NULL, NULL, NULL, '2020-02-20 14:38:29.556487+00', '2020-02-20 14:38:29.556487+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "44520"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (75, NULL, NULL, 0, 62, 20, 'Rapport de suivi des activités', NULL, NULL, NULL, '2020-02-20 14:41:05.808568+00', '2020-02-20 14:41:05.808568+00', NULL, 8, true, false, '{"d": 100, "v": 0}', '', '', NULL, '', '{"d": 100, "v": 100}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (76, NULL, NULL, 0, 63, 21, 'Rapports d’activité', NULL, NULL, NULL, '2020-02-20 14:41:51.749885+00', '2020-02-20 14:41:51.749885+00', NULL, 8, true, false, '{"d": 100, "v": 0}', '', '', NULL, '', '{"d": 100, "v": 100}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (77, NULL, NULL, 0, 64, 21, 'Rapport de distribution', NULL, NULL, NULL, '2020-02-20 14:42:28.57115+00', '2020-02-20 14:42:28.57115+00', NULL, 8, true, false, '{"d": 100, "v": 0}', '', '', NULL, '', '{"d": 100, "v": 100}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (78, NULL, NULL, 0, 65, 21, 'Rapport d’enquête', NULL, NULL, NULL, '2020-02-20 14:43:05.627508+00', '2020-02-20 14:43:05.627508+00', NULL, 8, true, false, '{"d": 100, "v": 0}', '', '', NULL, '', '{"d": 100, "v": 75}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (79, NULL, NULL, 0, 66, 21, 'Rapport de distribution', NULL, NULL, NULL, '2020-02-20 14:44:03.131774+00', '2020-02-20 14:44:03.131774+00', NULL, 8, true, false, '{"d": 100, "v": 0}', '', '', NULL, '', '{"d": 100, "v": 100}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (80, NULL, NULL, 0, 67, 22, 'Rapport d’activité WASH', NULL, NULL, NULL, '2020-02-20 14:44:43.500687+00', '2020-02-20 14:44:43.500687+00', NULL, 8, true, false, '{"d": 100, "v": 0}', '', '', NULL, '', '{"d": 100, "v": 50}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (81, NULL, NULL, 0, 68, 22, 'Rapport CAP final', NULL, NULL, NULL, '2020-02-20 14:45:25.624052+00', '2020-02-20 14:45:25.624052+00', NULL, 8, true, false, '{"d": 100, "v": 0}', '', '', NULL, '', '{"d": 100, "v": 70}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (82, NULL, NULL, 0, 69, 23, 'Rapport enquête CAP', NULL, NULL, NULL, '2020-02-20 16:27:24.739864+00', '2020-02-20 16:27:24.739864+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "1"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (83, NULL, NULL, 0, 70, 23, 'Rapport des enquêtes CAP initiales et finale', NULL, NULL, NULL, '2020-02-20 16:28:00.546125+00', '2020-02-20 16:28:00.546125+00', NULL, 8, true, false, '{"d": 1, "v": "3"}', '', NULL, NULL, '', '{"d": 1, "v": "35"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (84, NULL, NULL, 0, 56, 23, 'Rapport des enquêtes CAP initiale et finale', NULL, NULL, NULL, '2020-02-20 16:28:37.929324+00', '2020-02-20 16:28:37.929324+00', NULL, 8, true, false, '{"d": 1, "v": "10"}', '', NULL, NULL, '', '{"d": 1, "v": "148"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (85, NULL, NULL, 0, 71, 23, 'Rapport des enquêtes CAP initiales et finale', NULL, NULL, NULL, '2020-02-20 16:29:11.653476+00', '2020-02-20 16:29:11.653476+00', NULL, 8, true, false, '{"d": 100, "v": 0}', '', '', NULL, '', '{"d": 100, "v": 80}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (86, NULL, NULL, 0, 72, 23, 'Rapport de formation des groupements de femmes', NULL, NULL, NULL, '2020-02-20 16:30:19.575234+00', '2020-02-20 16:30:19.575234+00', NULL, 8, true, false, '{"d": 1, "v": "10"}', '', NULL, NULL, '', '{"d": 1, "v": "148"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (87, NULL, NULL, 0, 73, 23, 'Plans d’action communautaire assainissement', NULL, NULL, NULL, '2020-02-20 16:30:48.118062+00', '2020-02-20 16:30:48.118062+00', NULL, 8, true, false, '{"d": 1, "v": "10"}', '', NULL, NULL, '', '{"d": 1, "v": "148"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (88, NULL, NULL, 0, 74, 23, 'Rapport des activités et des évaluations du statut FDAL', NULL, NULL, NULL, '2020-02-20 16:31:19.395715+00', '2020-02-20 16:31:19.395715+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "32"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (89, NULL, NULL, 0, 75, 23, 'Rapport d’évaluation du statut FDAL', NULL, NULL, NULL, '2020-02-20 16:32:02.054857+00', '2020-02-20 16:32:02.054857+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "1"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (90, NULL, NULL, 0, 76, 23, 'Rapport d’enquête (préciser le nombre des femmes, hommes et les enfants utilisant les latrines)', NULL, NULL, NULL, '2020-02-20 16:32:46.914574+00', '2020-02-20 16:33:04.726593+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "106378"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (91, NULL, NULL, 0, 77, 24, 'Rapport de la formation', NULL, NULL, NULL, '2020-02-20 16:33:54.291762+00', '2020-02-20 16:33:54.291762+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "10"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (92, NULL, NULL, 0, 78, 24, 'Rapport d’activité', NULL, NULL, NULL, '2020-02-20 16:34:30.372936+00', '2020-02-20 16:34:30.372936+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "40"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (93, NULL, NULL, 0, 79, 24, 'Rapport d’activité', NULL, NULL, NULL, '2020-02-20 16:35:13.821891+00', '2020-02-20 16:35:13.821891+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "30116"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (94, NULL, NULL, 0, 80, 24, 'Rapport d’enquête CAP', NULL, NULL, NULL, '2020-02-20 16:35:47.611071+00', '2020-02-20 16:35:47.611071+00', NULL, 8, true, false, '{"d": 100, "v": 0}', '', '', NULL, '', '{"d": 100, "v": 80}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (95, NULL, NULL, 0, 81, 24, 'Rapports d’enquête CAP', NULL, NULL, NULL, '2020-02-20 16:36:20.483793+00', '2020-02-20 16:36:20.483793+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "60"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (96, NULL, NULL, 0, 82, 25, 'Rapport trimestriel', NULL, NULL, NULL, '2020-02-20 16:36:55.796869+00', '2020-02-20 16:36:55.796869+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "23415"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (97, NULL, NULL, 0, 83, 25, 'Rapport trimestriel', NULL, NULL, NULL, '2020-02-20 16:37:56.549112+00', '2020-02-20 16:37:56.549112+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "6579"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (98, NULL, NULL, 0, 84, 25, 'Visite de suivi programmatique', NULL, NULL, NULL, '2020-02-20 16:38:37.85582+00', '2020-02-20 16:38:37.85582+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "96"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (99, NULL, NULL, 0, 85, 25, 'Rapports de formation et d’activité', NULL, NULL, NULL, '2020-02-20 16:39:23.129023+00', '2020-02-20 16:39:23.129023+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "64"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (100, NULL, NULL, 0, 86, 25, 'Rapports d’activités dans les écoles', NULL, NULL, NULL, '2020-02-20 16:40:01.293375+00', '2020-02-20 16:40:01.293375+00', NULL, 8, true, false, '{"d": 100, "v": 0}', '', '', NULL, '', '{"d": 100, "v": 100}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (101, NULL, NULL, 0, 87, 25, 'Plan d’activités des clubs d’hygiène', NULL, NULL, NULL, '2020-02-20 16:40:42.446519+00', '2020-02-20 16:40:42.446519+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "32"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (102, NULL, NULL, 0, 88, 25, 'Rapport de formation +Registre distribution du kit', NULL, NULL, NULL, '2020-02-20 16:42:15.97067+00', '2020-02-20 16:42:15.97067+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "2400"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (103, NULL, NULL, 0, 89, 26, 'Rapport enquête CAP', NULL, NULL, NULL, '2020-02-20 16:43:14.394708+00', '2020-02-20 16:43:14.394708+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "1"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (104, NULL, NULL, 0, 90, 26, 'Enquête CAP +Base de données ATPC', NULL, NULL, NULL, '2020-02-20 16:43:50.815822+00', '2020-02-20 16:43:50.815822+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "100"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (105, NULL, NULL, 0, 91, 26, 'Rapport d’activité PAC, mensuel et trimestriel', NULL, NULL, NULL, '2020-02-20 16:44:21.217291+00', '2020-02-20 16:44:21.217291+00', NULL, 8, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "148"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (106, NULL, NULL, 0, 92, 27, 'Rapport mensuel, trimestriel et final', NULL, NULL, NULL, '2020-03-04 16:44:43.734099+00', '2020-03-04 16:44:43.734099+00', NULL, 10, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "120"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (107, NULL, NULL, 0, 93, 28, 'Rapport mensuel, trimestriel et final', NULL, NULL, NULL, '2020-03-04 16:45:56.273995+00', '2020-03-04 16:46:27.98956+00', NULL, 10, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "4"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (108, NULL, NULL, 0, 94, 29, 'Rapports d''activités', NULL, NULL, NULL, '2020-03-04 16:47:34.024409+00', '2020-03-04 16:47:34.024409+00', NULL, 10, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "1000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (109, NULL, NULL, 0, 95, 30, 'Rapports d''activités', NULL, NULL, NULL, '2020-03-04 16:48:47.28822+00', '2020-03-04 16:48:47.28822+00', NULL, 10, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "600"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (110, NULL, NULL, 0, 96, 31, 'Rapport d''activite', NULL, NULL, NULL, '2020-03-06 14:17:16.968307+00', '2020-03-06 14:17:16.968307+00', NULL, 10, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "2800"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (114, NULL, NULL, 0, 99, 34, NULL, NULL, NULL, NULL, '2020-04-02 10:41:01.142038+00', '2020-04-02 10:41:01.142038+00', NULL, 8, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "2000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (112, NULL, NULL, 0, 97, 32, 'Rapport d''activite', NULL, NULL, NULL, '2020-03-06 14:28:28.960898+00', '2020-03-06 14:28:28.960898+00', NULL, 10, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "50"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (113, NULL, NULL, 0, 98, 33, 'Rapport d''activite', NULL, NULL, NULL, '2020-03-06 14:29:35.326735+00', '2020-03-06 14:29:35.326735+00', NULL, 10, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "450"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (115, NULL, NULL, 0, 100, 34, NULL, NULL, NULL, NULL, '2020-04-02 10:42:14.441601+00', '2020-04-02 10:42:14.441601+00', NULL, 8, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "30"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (116, NULL, NULL, 0, 101, 34, NULL, NULL, NULL, NULL, '2020-04-02 10:44:10.047636+00', '2020-04-02 10:44:10.047636+00', NULL, 8, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "50000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (117, NULL, NULL, 0, 102, 34, NULL, NULL, NULL, NULL, '2020-04-02 10:45:18.992991+00', '2020-04-02 10:45:18.992991+00', NULL, 8, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "80"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (118, NULL, NULL, 0, 103, 35, 'Fiche des superviseurs +Rapports de supervision des ASC', NULL, NULL, NULL, '2020-04-02 17:47:15.99527+00', '2020-04-02 17:47:15.99527+00', NULL, 7, true, false, '{"d": 1, "v": "100"}', '', NULL, NULL, '', '{"d": 1, "v": "100"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (120, NULL, NULL, 0, 105, 35, 'Documents de gestion de stock des Agent de Sante Communautaire', NULL, NULL, NULL, '2020-04-02 17:58:12.467322+00', '2020-04-02 17:58:12.467322+00', NULL, 7, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "0"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (121, NULL, NULL, 0, 106, 35, 'Registre des Agent de Sante Communautaire +Rapport d’enquête de satisfaction', NULL, NULL, NULL, '2020-04-02 18:00:16.108579+00', '2020-04-02 18:00:16.108579+00', NULL, 7, true, false, '{"d": 1, "v": "100"}', '', NULL, NULL, '', '{"d": 1, "v": "100"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (123, NULL, NULL, 0, 108, 36, 'Rapports d’activités des Agent de Sante Communautaire +Rapports de monitorage', NULL, NULL, NULL, '2020-04-02 18:06:23.312871+00', '2020-04-02 18:06:23.312871+00', NULL, 7, true, false, '{"d": 1, "v": "5296"}', '', NULL, NULL, '', '{"d": 1, "v": "1500"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (122, NULL, NULL, 0, 107, 36, 'Rapports d’activités des Agent de Santé Communautaire +Rapports de monitorage', NULL, NULL, NULL, '2020-04-02 18:04:38.850559+00', '2020-04-02 18:06:42.943736+00', NULL, 7, true, false, '{"d": 1, "v": "21474"}', '', NULL, NULL, '', '{"d": 1, "v": "4500"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (119, NULL, NULL, 0, 104, 35, 'Registre des ASC +Données démographiques disponibles', NULL, NULL, NULL, '2020-04-02 17:51:58.293298+00', '2020-04-02 18:06:56.632649+00', NULL, 7, true, false, '{"d": 1, "v": "92687"}', '', NULL, NULL, '', '{"d": 1, "v": "24000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (124, NULL, NULL, 0, 109, 36, 'Rapports d’activités des Agent de Santé Communautaire +Rapports de monitorage', NULL, NULL, NULL, '2020-04-02 18:08:40.424291+00', '2020-04-02 18:08:40.424291+00', NULL, 7, true, false, '{"d": 1, "v": "5598"}', '', NULL, NULL, '', '{"d": 1, "v": "1200"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (125, NULL, NULL, 0, 110, 37, 'Rapport d’activités', NULL, NULL, NULL, '2020-04-02 18:10:50.555582+00', '2020-04-02 18:10:50.555582+00', NULL, 7, true, false, '{"d": 1, "v": "100"}', '', NULL, NULL, '', '{"d": 1, "v": "100"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (126, NULL, NULL, 0, 111, 37, 'Rapports de formation +Notes de livraison des outils de travail aux ASC', NULL, NULL, NULL, '2020-04-02 18:17:43.770573+00', '2020-04-02 18:17:43.770573+00', NULL, 7, true, false, '{"d": 1, "v": "300"}', '', NULL, NULL, '', '{"d": 1, "v": "300"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (127, NULL, NULL, 0, 112, 37, 'Rapports de formation/ Supervision', NULL, NULL, NULL, '2020-04-02 18:19:48.401535+00', '2020-04-02 18:19:48.401535+00', NULL, 7, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "100"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (128, NULL, NULL, 0, 113, 37, 'Rapports de formation', NULL, NULL, NULL, '2020-04-02 18:20:39.705991+00', '2020-04-02 18:20:39.705991+00', NULL, 7, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "100"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (129, NULL, NULL, 0, 114, 37, 'Rapports de formation', NULL, NULL, NULL, '2020-04-02 18:21:30.941271+00', '2020-04-02 18:21:30.941271+00', NULL, 7, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "46"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (130, NULL, NULL, 0, 115, 37, 'Rapports d’activités des ASC +Rapports de monitorage', NULL, NULL, NULL, '2020-04-02 18:23:00.209156+00', '2020-04-02 18:23:00.209156+00', NULL, 7, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "1482"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (131, NULL, NULL, 0, 116, 37, 'Rapports d’activités des ASC +Rapports de monitorage', NULL, NULL, NULL, '2020-04-02 18:26:18.077745+00', '2020-04-02 18:26:18.077745+00', NULL, 7, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "80"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (132, NULL, NULL, 0, 117, 37, 'Rapports d’activités des ASC +Rapports de monitorage', NULL, NULL, NULL, '2020-04-02 18:43:41.63857+00', '2020-04-02 18:43:41.63857+00', NULL, 7, true, false, '{"d": 1, "v": "89060"}', '', NULL, NULL, '', '{"d": 1, "v": "16320"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (133, NULL, NULL, 0, 118, 37, 'Rapports mensuels, registres d’admissions, fiches des bénéficiaires.', NULL, NULL, NULL, '2020-04-02 18:45:17.171564+00', '2020-04-02 18:45:17.171564+00', NULL, 7, true, false, '{"d": 1, "v": "690"}', '', NULL, NULL, '', '{"d": 1, "v": "135"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (134, NULL, NULL, 0, 119, 38, 'Rapports de formation et fiche d’évaluation qualité de soins ASC', NULL, NULL, NULL, '2020-04-02 18:50:30.224448+00', '2020-04-02 18:50:30.224448+00', NULL, 7, true, false, '{"d": 1, "v": "90"}', '', NULL, NULL, '', '{"d": 1, "v": "52"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (135, NULL, NULL, 0, 120, 38, 'Rapport épidémiologiques, Rapports de supervision', NULL, NULL, NULL, '2020-04-02 18:51:11.30769+00', '2020-04-02 18:51:11.30769+00', NULL, 7, true, false, '{"d": 1, "v": "80"}', '', NULL, NULL, '', '{"d": 1, "v": "80"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (161, NULL, NULL, 0, 146, 43, 'Rapport de suivi des activités', NULL, NULL, NULL, '2020-04-16 10:29:51.51141+00', '2020-04-16 10:29:51.51141+00', NULL, 8, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "10000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (163, NULL, NULL, 0, 148, 43, 'Rapport d''activite', NULL, NULL, NULL, '2020-04-16 10:31:01.899395+00', '2020-04-16 10:31:01.899395+00', NULL, 8, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "5000"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (165, NULL, NULL, 0, 150, 43, 'Rapports d’activité', NULL, NULL, NULL, '2020-04-16 10:32:54.116763+00', '2020-04-16 10:32:54.116763+00', NULL, 8, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "210"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (143, NULL, NULL, 0, 128, 39, '- Liste de présence, +- Rapport de plaidoyer +- Fiches d’engagement signées', NULL, NULL, NULL, '2020-04-06 18:42:26.955032+00', '2020-04-06 18:42:26.955032+00', NULL, 3, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "06"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (141, NULL, NULL, 0, 126, 39, '- Liste de présence, +- Rapport de formation +- Support de formation', NULL, NULL, NULL, '2020-04-06 18:27:01.282126+00', '2020-04-06 18:42:36.284573+00', NULL, 3, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "90"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (145, NULL, NULL, 0, 130, 40, '- Liste de présence, +- Rapport de réunion +- Support de formation', NULL, NULL, NULL, '2020-04-06 18:49:56.321648+00', '2020-04-06 18:49:56.321648+00', NULL, 2, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "3"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (147, NULL, NULL, 0, 132, 40, '- Liste de présence, +- Rapports d’activité +- Plan de conduite des dialogues', NULL, NULL, NULL, '2020-04-06 18:51:33.115483+00', '2020-04-06 18:51:33.115483+00', NULL, 2, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "4"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (149, NULL, NULL, 0, 134, 40, '- Liste de présence, +- Rapport de formation, +- Support de formation', NULL, NULL, NULL, '2020-04-06 18:53:15.413648+00', '2020-04-06 18:53:15.413648+00', NULL, 2, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "90"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (151, NULL, NULL, 0, 136, 41, '- Liste de présence, +- Rapport des causeries éducatives +- Fiche d’orientation des causeries éducatives', NULL, NULL, NULL, '2020-04-06 19:13:55.263463+00', '2020-04-06 19:13:55.263463+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "2160"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (153, NULL, NULL, 0, 138, 41, '- Liste de présence, +- Rapport d’activités +- Support de formation', NULL, NULL, NULL, '2020-04-06 19:15:37.039344+00', '2020-04-06 19:15:37.039344+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "300"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (155, NULL, NULL, 0, 140, 41, '- Liste de présence, +- Rapport d’activités +- Support de formation', NULL, NULL, NULL, '2020-04-06 19:17:54.984741+00', '2020-04-06 19:17:54.984741+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "200"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (157, NULL, NULL, 0, 142, 41, '- Rapports des missions de suivi +- Ordre de mission', NULL, NULL, NULL, '2020-04-06 19:19:53.202458+00', '2020-04-06 19:19:53.202458+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "03"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (136, NULL, NULL, 0, 121, 38, 'Rapports de supervision, +Reçus de per diem', NULL, NULL, NULL, '2020-04-02 18:52:02.117103+00', '2020-04-02 18:52:02.117103+00', NULL, 7, true, false, '{"d": 1, "v": "50"}', '', NULL, NULL, '', '{"d": 1, "v": "50"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (137, NULL, NULL, 0, 122, 38, 'Procès-verbal des réunions +Résultats des réunions à ajouter aux rapports de progrès du programme', NULL, NULL, NULL, '2020-04-02 18:52:58.06082+00', '2020-04-02 18:52:58.06082+00', NULL, 7, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "3"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (138, NULL, NULL, 0, 123, 38, 'Résultats des réunions à ajouter aux rapports de progrès du programme', NULL, NULL, NULL, '2020-04-02 18:53:41.766276+00', '2020-04-02 18:53:41.766276+00', NULL, 7, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "2"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (139, NULL, NULL, 0, 124, 38, 'Résultats des réunions à ajouter aux rapports de progrès du programme', NULL, NULL, NULL, '2020-04-02 18:54:32.199422+00', '2020-04-02 18:54:32.199422+00', NULL, 7, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "4"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (140, NULL, NULL, 0, 125, 38, 'Résultats des réunions à ajouter aux rapports de progrès du programme', NULL, NULL, NULL, '2020-04-02 18:55:16.042807+00', '2020-04-02 18:55:16.042807+00', NULL, 7, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "2"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (162, NULL, NULL, 0, 147, 43, 'Rapports d’activité', NULL, NULL, NULL, '2020-04-16 10:30:28.36911+00', '2020-04-16 10:30:28.36911+00', NULL, 8, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "4200"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (164, NULL, NULL, 0, 149, 43, 'Rapports d’activité', NULL, NULL, NULL, '2020-04-16 10:32:18.22317+00', '2020-04-16 10:32:18.22317+00', NULL, 8, true, false, '{"d": 1, "v": null}', '', NULL, NULL, '', '{"d": 1, "v": "4"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (142, NULL, NULL, 0, 127, 39, '- Document de plans d’action +- Liste de présence à l’atelier de validation +- Rapport d’atelier de présentation des PAN', NULL, NULL, NULL, '2020-04-06 18:28:09.69917+00', '2020-04-06 18:42:43.750946+00', NULL, 3, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "02"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (144, NULL, NULL, 0, 129, 39, '- Liste de présence, +- Rapport de formation +- Support de formation', NULL, NULL, NULL, '2020-04-06 18:43:39.334943+00', '2020-04-06 18:43:39.334943+00', NULL, 3, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "150"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (146, NULL, NULL, 0, 131, 40, '- Liste de présence, +- Rapport des activités', NULL, NULL, NULL, '2020-04-06 18:50:44.047723+00', '2020-04-06 18:50:44.047723+00', NULL, 2, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "150"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (148, NULL, NULL, 0, 133, 40, '- Liste de présence, +- Rapports d’activité +- Plan de conduite des dialogues', NULL, NULL, NULL, '2020-04-06 18:52:16.972136+00', '2020-04-06 18:52:16.972136+00', NULL, 2, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "300"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (150, NULL, NULL, 0, 135, 41, '- Rapport d’activités +- Répertoire numériques', NULL, NULL, NULL, '2020-04-06 19:07:22.320138+00', '2020-04-06 19:07:22.320138+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "20"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (152, NULL, NULL, 0, 137, 41, '- Liste de présence, +- Rapport des causeries éducatives +- Fiche d’orientation des causeries éducatives', NULL, NULL, NULL, '2020-04-06 19:14:44.363869+00', '2020-04-06 19:14:44.363869+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "25920"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (154, NULL, NULL, 0, 139, 41, '- Liste de présence, +- Rapport de formation +- Support de formation', NULL, NULL, NULL, '2020-04-06 19:16:21.182509+00', '2020-04-06 19:16:21.182509+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "15"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (156, NULL, NULL, 0, 141, 41, '- Liste de présence, +- Rapport d’activités +- Support de formation +- Convention de financement', NULL, NULL, NULL, '2020-04-06 19:18:49.79808+00', '2020-04-06 19:18:49.79808+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "400"}'); +INSERT INTO [[schema]].reports_appliedindicator VALUES (158, NULL, NULL, 0, 143, 41, '- Liste de présence, +- Rapport d’activités', NULL, NULL, NULL, '2020-04-06 19:21:09.69732+00', '2020-04-06 19:21:09.69732+00', NULL, 9, true, false, '{"d": 1, "v": "0"}', '', NULL, NULL, '', '{"d": 1, "v": "03"}'); -- @@ -15296,6 +17014,382 @@ INSERT INTO [[schema]].psea_rating VALUES (3, '2019-10-04 17:29:43.309781+00', ' -- Data for Name: reports_appliedindicator_locations; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (1, 1, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (2, 1, 24); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (3, 1, 10); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (4, 2, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (5, 2, 24); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (6, 2, 10); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (7, 3, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (8, 3, 24); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (9, 3, 10); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (10, 4, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (11, 4, 24); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (12, 4, 10); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (13, 5, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (14, 5, 24); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (15, 5, 10); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (16, 6, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (17, 6, 24); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (18, 6, 10); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (19, 7, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (20, 7, 24); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (21, 7, 10); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (22, 8, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (23, 8, 24); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (24, 8, 10); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (25, 9, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (26, 9, 24); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (27, 9, 10); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (28, 10, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (29, 10, 24); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (30, 10, 10); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (31, 11, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (32, 11, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (159, 59, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (160, 59, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (161, 60, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (162, 60, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (37, 14, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (38, 14, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (39, 15, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (40, 15, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (41, 16, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (42, 16, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (43, 17, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (44, 17, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (45, 18, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (46, 18, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (47, 19, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (48, 19, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (49, 20, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (50, 20, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (51, 21, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (52, 21, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (53, 22, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (54, 22, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (55, 23, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (56, 23, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (57, 24, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (58, 24, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (59, 25, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (60, 25, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (61, 26, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (62, 26, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (63, 27, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (64, 27, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (65, 28, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (66, 28, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (67, 29, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (68, 29, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (69, 30, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (70, 30, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (71, 31, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (72, 31, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (73, 32, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (74, 32, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (75, 33, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (76, 33, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (77, 34, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (78, 34, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (79, 35, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (80, 35, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (81, 36, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (82, 36, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (83, 37, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (84, 37, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (85, 38, 8); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (86, 38, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (87, 39, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (88, 39, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (89, 39, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (90, 40, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (91, 40, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (92, 40, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (93, 41, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (94, 41, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (95, 41, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (96, 42, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (97, 42, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (98, 42, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (99, 43, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (100, 43, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (101, 43, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (163, 61, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (164, 61, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (104, 44, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (105, 45, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (106, 45, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (107, 45, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (108, 46, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (109, 46, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (110, 46, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (111, 47, 4); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (112, 47, 12); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (113, 47, 14); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (114, 47, 7); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (115, 48, 4); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (116, 48, 12); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (117, 48, 14); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (118, 48, 7); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (165, 62, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (166, 62, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (167, 63, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (168, 63, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (123, 50, 4); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (124, 50, 12); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (125, 50, 14); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (126, 50, 7); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (127, 51, 4); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (128, 51, 12); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (129, 51, 14); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (130, 51, 7); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (131, 52, 4); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (132, 52, 12); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (133, 52, 14); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (134, 52, 7); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (135, 53, 4); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (136, 53, 12); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (137, 53, 14); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (138, 53, 7); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (139, 54, 4); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (140, 54, 12); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (141, 54, 14); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (142, 54, 7); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (143, 55, 4); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (144, 55, 12); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (145, 55, 14); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (146, 55, 7); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (147, 56, 4); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (148, 56, 12); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (149, 56, 14); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (150, 56, 7); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (151, 57, 4); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (152, 57, 12); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (153, 57, 14); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (154, 57, 7); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (155, 58, 4); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (156, 58, 12); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (157, 58, 14); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (158, 58, 7); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (169, 64, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (170, 64, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (171, 65, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (172, 65, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (173, 66, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (174, 66, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (175, 67, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (176, 67, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (177, 68, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (178, 68, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (179, 69, 5); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (180, 69, 6); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (181, 70, 5); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (182, 70, 6); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (183, 71, 5); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (184, 71, 6); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (185, 72, 5); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (186, 72, 6); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (187, 73, 5); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (188, 73, 6); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (191, 75, 5); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (192, 75, 6); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (193, 76, 5); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (194, 76, 6); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (195, 77, 5); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (196, 77, 6); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (197, 78, 5); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (198, 78, 6); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (199, 79, 5); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (200, 79, 6); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (201, 80, 5); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (202, 80, 6); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (203, 81, 5); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (204, 81, 6); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (205, 82, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (206, 82, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (207, 82, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (208, 83, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (209, 83, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (210, 83, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (211, 84, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (212, 84, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (213, 84, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (214, 85, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (215, 85, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (216, 85, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (217, 86, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (218, 86, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (219, 86, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (220, 87, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (221, 87, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (222, 87, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (223, 88, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (224, 88, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (225, 88, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (226, 89, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (227, 89, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (228, 89, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (229, 90, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (230, 90, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (231, 90, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (232, 91, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (233, 91, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (234, 91, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (235, 92, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (236, 92, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (237, 92, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (238, 93, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (239, 93, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (240, 93, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (241, 94, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (242, 94, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (243, 94, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (244, 95, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (245, 95, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (246, 95, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (247, 96, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (248, 96, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (249, 96, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (250, 97, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (251, 97, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (252, 97, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (253, 98, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (254, 98, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (255, 98, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (256, 99, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (257, 99, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (258, 99, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (259, 100, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (260, 100, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (261, 100, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (262, 101, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (263, 101, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (264, 101, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (265, 102, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (266, 102, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (267, 102, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (268, 103, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (269, 103, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (270, 103, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (271, 104, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (272, 104, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (273, 104, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (274, 105, 18); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (275, 105, 19); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (276, 105, 15); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (277, 106, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (278, 107, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (279, 108, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (280, 109, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (281, 110, 4); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (285, 114, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (283, 112, 4); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (284, 113, 4); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (286, 115, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (287, 116, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (288, 117, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (289, 118, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (290, 118, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (291, 119, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (292, 119, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (293, 120, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (294, 120, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (295, 121, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (296, 121, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (297, 122, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (298, 122, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (299, 123, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (300, 123, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (301, 124, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (302, 124, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (303, 125, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (304, 125, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (305, 126, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (306, 126, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (307, 127, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (308, 127, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (309, 128, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (310, 128, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (311, 129, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (312, 129, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (313, 130, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (314, 130, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (315, 131, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (316, 131, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (317, 132, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (318, 132, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (319, 133, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (320, 133, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (321, 134, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (322, 134, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (323, 135, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (324, 135, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (325, 136, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (326, 136, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (327, 137, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (328, 137, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (329, 138, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (330, 138, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (331, 139, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (332, 139, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (333, 140, 68); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (334, 140, 69); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (335, 141, 27); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (336, 141, 60); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (337, 141, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (338, 142, 27); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (339, 142, 60); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (340, 142, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (341, 143, 27); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (342, 143, 60); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (343, 143, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (344, 144, 27); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (345, 144, 60); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (346, 144, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (347, 145, 27); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (348, 145, 60); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (349, 145, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (350, 146, 27); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (351, 146, 60); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (352, 146, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (353, 147, 27); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (354, 147, 60); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (355, 147, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (356, 148, 27); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (357, 148, 60); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (358, 148, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (359, 149, 27); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (360, 149, 60); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (361, 149, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (362, 150, 27); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (363, 150, 60); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (364, 150, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (365, 151, 27); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (366, 151, 60); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (367, 151, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (368, 152, 27); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (369, 152, 60); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (370, 152, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (371, 153, 27); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (372, 153, 60); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (373, 153, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (374, 154, 27); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (375, 154, 60); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (376, 154, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (377, 155, 60); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (378, 155, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (379, 156, 27); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (380, 156, 60); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (381, 157, 60); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (382, 157, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (383, 158, 60); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (384, 158, 21); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (387, 161, 82); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (388, 162, 82); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (389, 163, 82); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (390, 164, 82); +INSERT INTO [[schema]].reports_appliedindicator_locations VALUES (391, 165, 82); -- @@ -15321,124 +17415,185 @@ INSERT INTO [[schema]].reports_countryprogramme VALUES (73, 'CHAD COUNTRY PROGRA -- Data for Name: reports_indicator; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].reports_indicator VALUES (196, 'Report196', '64846', NULL, NULL, 0, NULL, NULL, '5', '1', true, false, 22, NULL, NULL, true, '2019-06-28 00:09:02.279941+00', '2019-06-28 00:09:02.280881+00'); +INSERT INTO [[schema]].reports_indicator VALUES (183, 'Report183', '52268', NULL, NULL, 0, NULL, NULL, '80', 'ND', true, false, 26, NULL, NULL, true, '2019-05-24 00:03:31.925116+00', '2019-07-05 14:59:54.663863+00'); +INSERT INTO [[schema]].reports_indicator VALUES (6, 'Report6', '47760', NULL, NULL, 0, NULL, '', '10', '7', true, false, 57, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (191, 'Report191', '22-03-L3-02', NULL, NULL, 0, NULL, NULL, '125277', '86400', true, false, 30, NULL, NULL, true, '2019-06-19 00:06:44.145335+00', '2019-06-19 00:06:44.145897+00'); +INSERT INTO [[schema]].reports_indicator VALUES (153, 'Report153', '21-01-L3-05', NULL, NULL, 0, NULL, '', '7', '2', true, false, 31, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-07-01 00:22:06.187103+00'); INSERT INTO [[schema]].reports_indicator VALUES (175, 'Report175', '21-04-L3-20', NULL, NULL, 0, NULL, NULL, 'No', 'No', true, false, 58, NULL, NULL, true, '2019-03-24 00:03:28.500067+00', '2019-06-29 00:16:01.821879+00'); -INSERT INTO [[schema]].reports_indicator VALUES (4, 'Report4', '47769', NULL, NULL, 0, NULL, '', '12', '17', true, false, 54, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-29 00:16:01.86949+00'); -INSERT INTO [[schema]].reports_indicator VALUES (187, 'Report187', '52272', NULL, NULL, 0, NULL, NULL, '90', 'ND', true, false, 24, NULL, NULL, true, '2019-05-24 00:03:31.925505+00', '2019-07-05 14:59:54.673684+00'); -INSERT INTO [[schema]].reports_indicator VALUES (179, 'Report179', '22-01-L3-63', NULL, NULL, 0, NULL, NULL, '2.5', '2', true, false, 30, NULL, NULL, true, '2019-03-28 00:04:53.594501+00', '2019-07-05 14:59:54.683135+00'); +INSERT INTO [[schema]].reports_indicator VALUES (174, 'Report174', '24-02-L3-35', NULL, NULL, 0, NULL, NULL, '225000', '365467', true, false, 41, NULL, NULL, true, '2019-03-24 00:03:28.499975+00', '2020-03-27 00:06:30.286351+00'); INSERT INTO [[schema]].reports_indicator VALUES (160, 'Report160', '23-01-L3-10', NULL, NULL, 0, NULL, '', '200', '118', true, false, 48, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-03-07 18:03:48.874189+00'); INSERT INTO [[schema]].reports_indicator VALUES (165, 'Report165', '25-01-L3-02', NULL, NULL, 0, NULL, NULL, 'Yes', 'No', true, false, 14, NULL, NULL, false, '2019-02-01 00:01:56.923712+00', '2019-06-29 00:15:59.850179+00'); -INSERT INTO [[schema]].reports_indicator VALUES (109, 'Report109', '26-03-L3-01', NULL, NULL, 0, NULL, '', 'Non', 'Non', true, false, 23, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-05-24 13:16:45.724373+00'); -INSERT INTO [[schema]].reports_indicator VALUES (193, 'Report193', '64872', NULL, NULL, 0, NULL, NULL, '65000', '36473', true, false, 38, NULL, NULL, true, '2019-06-23 00:07:02.653461+00', '2019-06-23 00:07:02.654112+00'); +INSERT INTO [[schema]].reports_indicator VALUES (185, 'Report185', '52270', NULL, NULL, 0, NULL, NULL, '1', '0.10', true, false, 25, NULL, NULL, false, '2019-05-24 00:03:31.925335+00', '2019-07-05 14:59:54.555637+00'); +INSERT INTO [[schema]].reports_indicator VALUES (207, 'Report207', '66087', NULL, NULL, 0, NULL, NULL, '5', '6', true, false, 14, NULL, NULL, false, '2019-07-01 00:22:06.256949+00', '2019-07-01 00:22:06.257816+00'); +INSERT INTO [[schema]].reports_indicator VALUES (176, 'Report176', '22-02-L3-68', NULL, NULL, 0, NULL, NULL, '2', '2', true, false, 30, NULL, NULL, false, '2019-03-24 00:03:28.500176+00', '2019-07-05 14:59:54.635487+00'); +INSERT INTO [[schema]].reports_indicator VALUES (17, 'Report17', '23-02-L3-03', NULL, NULL, 0, NULL, '', 'Yes', 'No', true, false, 49, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2020-03-28 00:06:39.556131+00'); INSERT INTO [[schema]].reports_indicator VALUES (195, 'Report195', '24-01-L3-02', NULL, NULL, 0, NULL, NULL, 'Yes', 'No', true, false, 39, NULL, NULL, true, '2019-06-23 00:07:02.653637+00', '2019-06-23 00:07:02.654261+00'); INSERT INTO [[schema]].reports_indicator VALUES (164, 'Report164', '25-02-L3-07', NULL, NULL, 0, NULL, NULL, 'Oui', 'Non', true, false, 15, NULL, NULL, false, '2019-02-01 00:01:56.923472+00', '2019-02-01 00:01:56.925682+00'); -INSERT INTO [[schema]].reports_indicator VALUES (203, 'Report203', '21-06-L3-01', NULL, NULL, 0, NULL, NULL, '1050', '799', true, false, 46, NULL, NULL, true, '2019-06-29 00:16:01.975195+00', '2019-06-29 00:16:01.975866+00'); +INSERT INTO [[schema]].reports_indicator VALUES (222, 'Report222', '23-01-L3-15', NULL, NULL, 0, NULL, NULL, '50', '00000', true, false, 52, NULL, NULL, true, '2019-07-05 14:59:54.699773+00', '2020-04-05 00:47:33.766358+00'); +INSERT INTO [[schema]].reports_indicator VALUES (221, 'Report221', '23-01-L3-31', NULL, NULL, 0, NULL, NULL, '60', '21', true, false, 50, NULL, NULL, true, '2019-07-05 14:59:54.699691+00', '2020-04-05 00:47:33.800419+00'); INSERT INTO [[schema]].reports_indicator VALUES (7, 'Report7', '47794', NULL, NULL, 0, NULL, '', '100', '100', true, false, 43, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:47.160463+00'); -INSERT INTO [[schema]].reports_indicator VALUES (205, 'Report205', '66085', NULL, NULL, 0, NULL, NULL, 'Oui', 'Non', true, false, 15, NULL, NULL, true, '2019-07-01 00:22:06.256702+00', '2019-07-01 00:22:06.257517+00'); -INSERT INTO [[schema]].reports_indicator VALUES (206, 'Report206', '66086', NULL, NULL, 0, NULL, NULL, 'Oui', 'Non', true, false, 15, NULL, NULL, true, '2019-07-01 00:22:06.256846+00', '2019-07-01 00:22:06.257713+00'); -INSERT INTO [[schema]].reports_indicator VALUES (207, 'Report207', '66087', NULL, NULL, 0, NULL, NULL, '5', '6', true, false, 14, NULL, NULL, true, '2019-07-01 00:22:06.256949+00', '2019-07-01 00:22:06.257816+00'); INSERT INTO [[schema]].reports_indicator VALUES (181, 'Report181', '23-01-L3-28', NULL, NULL, 0, NULL, NULL, 'Yes', 'No', true, false, 49, NULL, NULL, true, '2019-04-04 00:05:26.765773+00', '2019-07-05 14:59:54.479788+00'); -INSERT INTO [[schema]].reports_indicator VALUES (17, 'Report17', '23-02-L3-03', NULL, NULL, 0, NULL, '', 'yes', 'No', true, false, 49, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-07-05 14:59:54.494072+00'); -INSERT INTO [[schema]].reports_indicator VALUES (176, 'Report176', '22-02-L3-68', NULL, NULL, 0, NULL, NULL, '2', '2', true, false, 30, NULL, NULL, true, '2019-03-24 00:03:28.500176+00', '2019-07-05 14:59:54.635487+00'); -INSERT INTO [[schema]].reports_indicator VALUES (208, 'Report208', '64874', NULL, NULL, 0, NULL, NULL, '60', '50', true, false, 31, NULL, NULL, true, '2019-07-05 14:59:54.698319+00', '2019-07-05 14:59:54.700181+00'); -INSERT INTO [[schema]].reports_indicator VALUES (209, 'Report209', '64875', NULL, NULL, 0, NULL, NULL, '95', '95', true, false, 31, NULL, NULL, true, '2019-07-05 14:59:54.698541+00', '2019-07-05 14:59:54.700274+00'); -INSERT INTO [[schema]].reports_indicator VALUES (210, 'Report210', '64876', NULL, NULL, 0, NULL, NULL, '70', '37', true, false, 28, NULL, NULL, true, '2019-07-05 14:59:54.698635+00', '2019-07-05 14:59:54.700349+00'); -INSERT INTO [[schema]].reports_indicator VALUES (211, 'Report211', '64878', NULL, NULL, 0, NULL, NULL, '3', '3', true, false, 29, NULL, NULL, true, '2019-07-05 14:59:54.698721+00', '2019-07-05 14:59:54.700443+00'); +INSERT INTO [[schema]].reports_indicator VALUES (193, 'Report193', '64872', NULL, NULL, 0, NULL, NULL, '65000', '36473', true, false, 38, NULL, NULL, true, '2019-06-23 00:07:02.653461+00', '2020-03-27 00:06:30.189982+00'); +INSERT INTO [[schema]].reports_indicator VALUES (109, 'Report109', '26-03-L3-01', NULL, NULL, 0, NULL, '', 'Non', 'Non', true, false, 23, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-05-24 13:16:45.724373+00'); +INSERT INTO [[schema]].reports_indicator VALUES (201, 'Report201', '64886', NULL, NULL, 0, NULL, NULL, '1', '4', true, false, 42, NULL, NULL, false, '2019-06-29 00:16:01.974892+00', '2019-06-29 00:16:01.975638+00'); INSERT INTO [[schema]].reports_indicator VALUES (212, 'Report212', '66132', NULL, NULL, 0, NULL, NULL, 'Oui', 'Non', true, false, 26, NULL, NULL, true, '2019-07-05 14:59:54.698805+00', '2019-07-05 14:59:54.700518+00'); -INSERT INTO [[schema]].reports_indicator VALUES (213, 'Report213', '66134', NULL, NULL, 0, NULL, NULL, '90', '87', true, false, 25, NULL, NULL, true, '2019-07-05 14:59:54.698888+00', '2019-07-05 14:59:54.700581+00'); -INSERT INTO [[schema]].reports_indicator VALUES (214, 'Report214', '66135', NULL, NULL, 0, NULL, NULL, '60', '44', true, false, 25, NULL, NULL, true, '2019-07-05 14:59:54.698972+00', '2019-07-05 14:59:54.700643+00'); -INSERT INTO [[schema]].reports_indicator VALUES (215, 'Report215', '66136', NULL, NULL, 0, NULL, NULL, '100', '95', true, false, 25, NULL, NULL, true, '2019-07-05 14:59:54.699148+00', '2019-07-05 14:59:54.700705+00'); INSERT INTO [[schema]].reports_indicator VALUES (216, 'Report216', '23-03-L3-01', NULL, NULL, 0, NULL, NULL, 'Yes', 'No', true, false, 49, NULL, NULL, true, '2019-07-05 14:59:54.699249+00', '2019-07-05 14:59:54.700766+00'); INSERT INTO [[schema]].reports_indicator VALUES (217, 'Report217', '23-01-L3-19', NULL, NULL, 0, NULL, NULL, '100', '100', true, false, 52, NULL, NULL, true, '2019-07-05 14:59:54.699356+00', '2019-07-05 14:59:54.70088+00'); -INSERT INTO [[schema]].reports_indicator VALUES (218, 'Report218', '23-01-L3-13', NULL, NULL, 0, NULL, NULL, '20000', '00000', true, false, 48, NULL, NULL, true, '2019-07-05 14:59:54.699442+00', '2019-07-05 14:59:54.700949+00'); -INSERT INTO [[schema]].reports_indicator VALUES (219, 'Report219', '23-03-L3-05', NULL, NULL, 0, NULL, NULL, '200', '00000', true, false, 50, NULL, NULL, true, '2019-07-05 14:59:54.699526+00', '2019-07-05 14:59:54.701094+00'); -INSERT INTO [[schema]].reports_indicator VALUES (220, 'Report220', '25-01-L3-01', NULL, NULL, 0, NULL, NULL, 'Yes', 'No', true, false, 14, NULL, NULL, true, '2019-07-05 14:59:54.699609+00', '2019-07-05 14:59:54.701171+00'); -INSERT INTO [[schema]].reports_indicator VALUES (221, 'Report221', '23-01-L3-31', NULL, NULL, 0, NULL, NULL, '10', '21', true, false, 50, NULL, NULL, true, '2019-07-05 14:59:54.699691+00', '2019-07-05 14:59:54.701243+00'); -INSERT INTO [[schema]].reports_indicator VALUES (222, 'Report222', '23-01-L3-15', NULL, NULL, 0, NULL, NULL, '100', '00000', true, false, 52, NULL, NULL, true, '2019-07-05 14:59:54.699773+00', '2019-07-05 14:59:54.701314+00'); INSERT INTO [[schema]].reports_indicator VALUES (194, 'Report194', '25-02-L3-06', NULL, NULL, 0, NULL, NULL, 'Oui', 'Non', true, false, 15, NULL, NULL, false, '2019-06-23 00:07:02.653552+00', '2019-06-23 00:07:02.654188+00'); INSERT INTO [[schema]].reports_indicator VALUES (204, 'Report204', '66057', NULL, NULL, 0, NULL, NULL, '494000', '1248382', true, false, 13, NULL, NULL, false, '2019-07-01 00:22:06.256474+00', '2019-07-01 00:22:06.257417+00'); INSERT INTO [[schema]].reports_indicator VALUES (81, 'Report81', '23-03-L3-08', NULL, NULL, 0, NULL, '', '95', '89', true, false, 48, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (161, 'Report161', '23-01-L3-12', NULL, NULL, 0, NULL, '', '500', '0', true, false, 52, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-08-11 00:01:33.514458+00'); +INSERT INTO [[schema]].reports_indicator VALUES (218, 'Report218', '23-01-L3-13', NULL, NULL, 0, NULL, NULL, '44000', '00000', true, false, 48, NULL, NULL, true, '2019-07-05 14:59:54.699442+00', '2020-04-02 00:04:54.754915+00'); +INSERT INTO [[schema]].reports_indicator VALUES (182, 'Report182', '22-01-L3-09', NULL, NULL, 0, NULL, NULL, '2399', '22777', true, false, 12, NULL, NULL, true, '2019-04-04 00:05:26.765954+00', '2020-03-27 00:06:30.370999+00'); +INSERT INTO [[schema]].reports_indicator VALUES (211, 'Report211', '64878', NULL, NULL, 0, NULL, NULL, '3', '3', true, false, 29, NULL, NULL, false, '2019-07-05 14:59:54.698721+00', '2019-07-05 14:59:54.700443+00'); +INSERT INTO [[schema]].reports_indicator VALUES (219, 'Report219', '23-03-L3-05', NULL, NULL, 0, NULL, NULL, '390', '00000', true, false, 50, NULL, NULL, true, '2019-07-05 14:59:54.699526+00', '2020-04-01 00:04:13.660184+00'); +INSERT INTO [[schema]].reports_indicator VALUES (209, 'Report209', '64875', NULL, NULL, 0, NULL, NULL, '95', '95', true, false, 31, NULL, NULL, true, '2019-07-05 14:59:54.698541+00', '2020-04-01 00:04:13.770625+00'); +INSERT INTO [[schema]].reports_indicator VALUES (226, 'Report226', '67843', NULL, NULL, 0, NULL, NULL, '50000', '0', true, false, 36, NULL, NULL, true, '2020-04-01 00:04:14.181108+00', '2020-04-01 00:04:14.181108+00'); +INSERT INTO [[schema]].reports_indicator VALUES (227, 'Report227', '67845', NULL, NULL, 0, NULL, NULL, 'Oui', 'Non', true, false, 13, NULL, NULL, true, '2020-04-01 00:04:14.18119+00', '2020-04-01 00:04:14.18119+00'); +INSERT INTO [[schema]].reports_indicator VALUES (228, 'Report228', '67849', NULL, NULL, 0, NULL, NULL, '2', '0', true, false, 29, NULL, NULL, true, '2020-04-01 00:04:14.181272+00', '2020-04-01 00:04:14.181272+00'); +INSERT INTO [[schema]].reports_indicator VALUES (205, 'Report205', '66085', NULL, NULL, 0, NULL, NULL, 'Oui', 'Non', true, false, 15, NULL, NULL, false, '2019-07-01 00:22:06.256702+00', '2019-07-01 00:22:06.257517+00'); +INSERT INTO [[schema]].reports_indicator VALUES (206, 'Report206', '66086', NULL, NULL, 0, NULL, NULL, 'Oui', 'Non', true, false, 15, NULL, NULL, false, '2019-07-01 00:22:06.256846+00', '2019-07-01 00:22:06.257713+00'); +INSERT INTO [[schema]].reports_indicator VALUES (220, 'Report220', '25-01-L3-01', NULL, NULL, 0, NULL, NULL, 'Yes', 'No', true, false, 14, NULL, NULL, false, '2019-07-05 14:59:54.699609+00', '2019-07-05 14:59:54.701171+00'); +INSERT INTO [[schema]].reports_indicator VALUES (213, 'Report213', '66134', NULL, NULL, 0, NULL, NULL, '90', '87', true, false, 25, NULL, NULL, false, '2019-07-05 14:59:54.698888+00', '2019-07-05 14:59:54.700581+00'); +INSERT INTO [[schema]].reports_indicator VALUES (214, 'Report214', '66135', NULL, NULL, 0, NULL, NULL, '60', '44', true, false, 25, NULL, NULL, false, '2019-07-05 14:59:54.698972+00', '2019-07-05 14:59:54.700643+00'); +INSERT INTO [[schema]].reports_indicator VALUES (215, 'Report215', '66136', NULL, NULL, 0, NULL, NULL, '100', '95', true, false, 25, NULL, NULL, false, '2019-07-05 14:59:54.699148+00', '2019-07-05 14:59:54.700705+00'); +INSERT INTO [[schema]].reports_indicator VALUES (225, 'Report225', '67823', NULL, NULL, 0, NULL, NULL, '0', 'ND', true, false, 40, NULL, NULL, true, '2020-04-01 00:04:14.181022+00', '2020-04-03 00:03:56.38993+00'); +INSERT INTO [[schema]].reports_indicator VALUES (5, 'Report5', '47768', NULL, NULL, 0, NULL, '', '12', '0', true, false, 54, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (4, 'Report4', '47769', NULL, NULL, 0, NULL, '', '12', '17', true, false, 54, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-06-29 00:16:01.86949+00'); INSERT INTO [[schema]].reports_indicator VALUES (19, 'Report19', '23-01-L3-20', NULL, NULL, 0, NULL, '', '100', '100', true, false, 52, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-07-05 14:59:54.626495+00'); -INSERT INTO [[schema]].reports_indicator VALUES (18, 'Report18', '04-01-L3-14', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 59, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (47, 'Report47', '21-03-L3-06', NULL, NULL, 0, NULL, '', 'Yes', 'No', true, false, 29, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-03-27 00:05:01.254213+00'); -INSERT INTO [[schema]].reports_indicator VALUES (38, 'Report38', '21-06-L3-08', NULL, NULL, 0, NULL, '', 'Yes', 'Yes', true, false, 42, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-29 00:16:01.831603+00'); -INSERT INTO [[schema]].reports_indicator VALUES (133, 'Report133', '26-06-L3-13', NULL, NULL, 0, NULL, '', '80000', '71000', true, false, 23, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-07-01 00:22:06.225904+00'); +INSERT INTO [[schema]].reports_indicator VALUES (18, 'Report18', '04-01-L3-14', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 59, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (229, 'Report229', '67856', NULL, NULL, 0, NULL, NULL, '8241', 'ND', true, false, 20, NULL, NULL, true, '2020-04-01 00:04:14.181365+00', '2020-04-01 00:04:14.181365+00'); +INSERT INTO [[schema]].reports_indicator VALUES (231, 'Report231', '67872', NULL, NULL, 0, NULL, NULL, 'Oui', 'Non', true, false, 14, NULL, NULL, true, '2020-04-01 00:04:14.181537+00', '2020-04-01 00:04:14.181537+00'); +INSERT INTO [[schema]].reports_indicator VALUES (261, 'Report261', '67992', NULL, NULL, 0, NULL, NULL, '20000', 'ND', true, false, 23, NULL, NULL, true, '2020-04-02 00:04:54.808478+00', '2020-04-03 00:03:56.438727+00'); +INSERT INTO [[schema]].reports_indicator VALUES (233, 'Report233', '67878', NULL, NULL, 0, NULL, NULL, 'Oui', 'Non', true, false, 15, NULL, NULL, true, '2020-04-01 00:04:14.181731+00', '2020-04-01 00:04:14.181731+00'); +INSERT INTO [[schema]].reports_indicator VALUES (234, 'Report234', '67903', NULL, NULL, 0, NULL, NULL, '2', '5', true, false, 42, NULL, NULL, true, '2020-04-01 00:04:14.181811+00', '2020-04-01 00:04:14.181811+00'); +INSERT INTO [[schema]].reports_indicator VALUES (235, 'Report235', '67904', NULL, NULL, 0, NULL, NULL, '45,760', '97478', true, false, 43, NULL, NULL, true, '2020-04-01 00:04:14.181893+00', '2020-04-01 00:04:14.181893+00'); +INSERT INTO [[schema]].reports_indicator VALUES (202, 'Report202', '66071', NULL, NULL, 0, NULL, NULL, '46', '39', true, false, 46, NULL, NULL, false, '2019-06-29 00:16:01.975091+00', '2019-06-29 00:16:01.975784+00'); +INSERT INTO [[schema]].reports_indicator VALUES (237, 'Report237', '67945', NULL, NULL, 0, NULL, NULL, '30', '11', true, false, 54, NULL, NULL, true, '2020-04-01 00:04:14.182054+00', '2020-04-01 00:04:14.182054+00'); +INSERT INTO [[schema]].reports_indicator VALUES (238, 'Report238', '67982', NULL, NULL, 0, NULL, NULL, '6', '0', true, false, 39, NULL, NULL, true, '2020-04-01 00:04:14.182133+00', '2020-04-01 00:04:14.182133+00'); +INSERT INTO [[schema]].reports_indicator VALUES (203, 'Report203', '21-06-L3-01', NULL, NULL, 0, NULL, NULL, '1050', '799', true, false, 46, NULL, NULL, false, '2019-06-29 00:16:01.975195+00', '2019-06-29 00:16:01.975866+00'); +INSERT INTO [[schema]].reports_indicator VALUES (240, 'Report240', '25-02-L3-17', NULL, NULL, 0, NULL, NULL, '6000', '0', true, false, 15, NULL, NULL, true, '2020-04-01 00:04:14.182306+00', '2020-04-01 00:04:14.182306+00'); +INSERT INTO [[schema]].reports_indicator VALUES (166, 'Report166', '25-02-L3-04', NULL, NULL, 0, NULL, NULL, 'Yes', 'No', true, false, 14, NULL, NULL, false, '2019-02-01 00:01:56.923881+00', '2019-06-29 00:16:01.782615+00'); +INSERT INTO [[schema]].reports_indicator VALUES (232, 'Report232', '67877', NULL, NULL, 0, NULL, NULL, 'Oui', 'Non', true, false, 13, NULL, NULL, true, '2020-04-01 00:04:14.181637+00', '2020-04-02 00:04:54.600305+00'); +INSERT INTO [[schema]].reports_indicator VALUES (236, 'Report236', '67944', NULL, NULL, 0, NULL, NULL, '9', '0', true, false, 54, NULL, NULL, true, '2020-04-01 00:04:14.181974+00', '2020-04-02 00:04:54.706163+00'); +INSERT INTO [[schema]].reports_indicator VALUES (230, 'Report230', '67871', NULL, NULL, 0, NULL, NULL, '7', '0', true, false, 13, NULL, NULL, true, '2020-04-01 00:04:14.181454+00', '2020-04-02 00:04:54.744874+00'); +INSERT INTO [[schema]].reports_indicator VALUES (239, 'Report239', '67987', NULL, NULL, 0, NULL, NULL, '75', '0', true, false, 17, NULL, NULL, true, '2020-04-01 00:04:14.182213+00', '2020-04-02 00:04:54.780087+00'); +INSERT INTO [[schema]].reports_indicator VALUES (241, 'Report241', '67811', NULL, NULL, 0, NULL, NULL, 'Oui', 'Non', true, false, 33, NULL, NULL, true, '2020-04-02 00:04:54.806849+00', '2020-04-02 00:04:54.806849+00'); +INSERT INTO [[schema]].reports_indicator VALUES (242, 'Report242', '67814', NULL, NULL, 0, NULL, NULL, '14800', 'ND', true, false, 30, NULL, NULL, true, '2020-04-02 00:04:54.807009+00', '2020-04-02 00:04:54.807009+00'); +INSERT INTO [[schema]].reports_indicator VALUES (243, 'Report243', '67822', NULL, NULL, 0, NULL, NULL, '126', '800', true, false, 40, NULL, NULL, true, '2020-04-02 00:04:54.80714+00', '2020-04-02 00:04:54.80714+00'); +INSERT INTO [[schema]].reports_indicator VALUES (244, 'Report244', '67824', NULL, NULL, 0, NULL, NULL, '1114', '235', true, false, 41, NULL, NULL, true, '2020-04-02 00:04:54.807226+00', '2020-04-02 00:04:54.807226+00'); +INSERT INTO [[schema]].reports_indicator VALUES (245, 'Report245', '67898', NULL, NULL, 0, NULL, NULL, '20', '41', true, false, 31, NULL, NULL, true, '2020-04-02 00:04:54.807305+00', '2020-04-02 00:04:54.807305+00'); +INSERT INTO [[schema]].reports_indicator VALUES (246, 'Report246', '67901', NULL, NULL, 0, NULL, NULL, '87', '63', true, false, 46, NULL, NULL, true, '2020-04-02 00:04:54.807384+00', '2020-04-02 00:04:54.807384+00'); +INSERT INTO [[schema]].reports_indicator VALUES (247, 'Report247', '67902', NULL, NULL, 0, NULL, NULL, '45', '13.4', true, false, 46, NULL, NULL, true, '2020-04-02 00:04:54.807475+00', '2020-04-02 00:04:54.807475+00'); +INSERT INTO [[schema]].reports_indicator VALUES (248, 'Report248', '67941', NULL, NULL, 0, NULL, NULL, '70', '56', true, false, 31, NULL, NULL, true, '2020-04-02 00:04:54.807548+00', '2020-04-02 00:04:54.807548+00'); +INSERT INTO [[schema]].reports_indicator VALUES (249, 'Report249', '67943', NULL, NULL, 0, NULL, NULL, '13', '8', true, false, 59, NULL, NULL, true, '2020-04-02 00:04:54.807619+00', '2020-04-02 00:04:54.807619+00'); +INSERT INTO [[schema]].reports_indicator VALUES (250, 'Report250', '67946', NULL, NULL, 0, NULL, NULL, '353529', '63950', true, false, 45, NULL, NULL, true, '2020-04-02 00:04:54.807691+00', '2020-04-02 00:04:54.807691+00'); +INSERT INTO [[schema]].reports_indicator VALUES (251, 'Report251', '67973', NULL, NULL, 0, NULL, NULL, 'Oui', 'Non', true, false, 26, NULL, NULL, true, '2020-04-02 00:04:54.807763+00', '2020-04-02 00:04:54.807763+00'); +INSERT INTO [[schema]].reports_indicator VALUES (252, 'Report252', '67974', NULL, NULL, 0, NULL, NULL, '6', 'ND', true, false, 24, NULL, NULL, true, '2020-04-02 00:04:54.807835+00', '2020-04-02 00:04:54.807835+00'); +INSERT INTO [[schema]].reports_indicator VALUES (253, 'Report253', '67975', NULL, NULL, 0, NULL, NULL, '3', '0', true, false, 24, NULL, NULL, true, '2020-04-02 00:04:54.807907+00', '2020-04-02 00:04:54.807907+00'); +INSERT INTO [[schema]].reports_indicator VALUES (254, 'Report254', '67976', NULL, NULL, 0, NULL, NULL, '100', 'ND', true, false, 25, NULL, NULL, true, '2020-04-02 00:04:54.807979+00', '2020-04-02 00:04:54.807979+00'); +INSERT INTO [[schema]].reports_indicator VALUES (255, 'Report255', '67977', NULL, NULL, 0, NULL, NULL, '100', 'ND', true, false, 25, NULL, NULL, true, '2020-04-02 00:04:54.808051+00', '2020-04-02 00:04:54.808051+00'); +INSERT INTO [[schema]].reports_indicator VALUES (256, 'Report256', '67978', NULL, NULL, 0, NULL, NULL, 'Oui', 'Non', true, false, 25, NULL, NULL, true, '2020-04-02 00:04:54.808122+00', '2020-04-02 00:04:54.808122+00'); +INSERT INTO [[schema]].reports_indicator VALUES (190, 'Report190', '21-02-L3-19', NULL, NULL, 0, NULL, NULL, 'No', 'No', true, false, 28, NULL, NULL, true, '2019-06-15 00:05:28.508541+00', '2019-06-15 00:05:28.509001+00'); +INSERT INTO [[schema]].reports_indicator VALUES (257, 'Report257', '67979', NULL, NULL, 0, NULL, NULL, 'Oui', 'Non', true, false, 25, NULL, NULL, true, '2020-04-02 00:04:54.808192+00', '2020-04-02 00:04:54.808192+00'); +INSERT INTO [[schema]].reports_indicator VALUES (258, 'Report258', '67988', NULL, NULL, 0, NULL, NULL, '75', '0', true, false, 17, NULL, NULL, true, '2020-04-02 00:04:54.808264+00', '2020-04-02 00:04:54.808264+00'); +INSERT INTO [[schema]].reports_indicator VALUES (259, 'Report259', '67989', NULL, NULL, 0, NULL, NULL, '50', '0', true, false, 17, NULL, NULL, true, '2020-04-02 00:04:54.808336+00', '2020-04-02 00:04:54.808336+00'); +INSERT INTO [[schema]].reports_indicator VALUES (260, 'Report260', '67990', NULL, NULL, 0, NULL, NULL, '50', '0', true, false, 17, NULL, NULL, true, '2020-04-02 00:04:54.808407+00', '2020-04-02 00:04:54.808407+00'); +INSERT INTO [[schema]].reports_indicator VALUES (262, 'Report262', '67993', NULL, NULL, 0, NULL, NULL, '15', '0', true, false, 22, NULL, NULL, true, '2020-04-02 00:04:54.80855+00', '2020-04-02 00:04:54.80855+00'); +INSERT INTO [[schema]].reports_indicator VALUES (263, 'Report263', '67994', NULL, NULL, 0, NULL, NULL, 'Yes', 'Yes', true, false, 171, NULL, NULL, true, '2020-04-02 00:04:54.808621+00', '2020-04-02 00:04:54.808621+00'); +INSERT INTO [[schema]].reports_indicator VALUES (264, 'Report264', '67995', NULL, NULL, 0, NULL, NULL, '800', '231', true, false, 171, NULL, NULL, true, '2020-04-02 00:04:54.808693+00', '2020-04-02 00:04:54.808693+00'); +INSERT INTO [[schema]].reports_indicator VALUES (265, 'Report265', '67997', NULL, NULL, 0, NULL, NULL, '4000', '1112', true, false, 171, NULL, NULL, true, '2020-04-02 00:04:54.808765+00', '2020-04-02 00:04:54.808765+00'); +INSERT INTO [[schema]].reports_indicator VALUES (266, 'Report266', '68080', NULL, NULL, 0, NULL, NULL, '150', 'ND', true, false, 23, NULL, NULL, true, '2020-04-02 00:04:54.808837+00', '2020-04-02 00:04:54.808837+00'); +INSERT INTO [[schema]].reports_indicator VALUES (208, 'Report208', '64874', NULL, NULL, 0, NULL, NULL, '60', '50', true, false, 31, NULL, NULL, false, '2019-07-05 14:59:54.698319+00', '2019-07-05 14:59:54.700181+00'); +INSERT INTO [[schema]].reports_indicator VALUES (267, 'Report267', '68119', NULL, NULL, 0, NULL, NULL, '5', '3', true, false, 29, NULL, NULL, true, '2020-04-02 00:04:54.808909+00', '2020-04-02 00:04:54.808909+00'); +INSERT INTO [[schema]].reports_indicator VALUES (268, 'Report268', '68120', NULL, NULL, 0, NULL, NULL, '1', '0', true, false, 29, NULL, NULL, true, '2020-04-02 00:04:54.80898+00', '2020-04-02 00:04:54.80898+00'); +INSERT INTO [[schema]].reports_indicator VALUES (269, 'Report269', '68123', NULL, NULL, 0, NULL, NULL, 'Oui', 'Non', true, false, 14, NULL, NULL, true, '2020-04-02 00:04:54.809052+00', '2020-04-02 00:04:54.809052+00'); +INSERT INTO [[schema]].reports_indicator VALUES (270, 'Report270', '68157', NULL, NULL, 0, NULL, NULL, '3', '0', true, false, 39, NULL, NULL, true, '2020-04-02 00:04:54.809124+00', '2020-04-02 00:04:54.809124+00'); +INSERT INTO [[schema]].reports_indicator VALUES (271, 'Report271', '68177', NULL, NULL, 0, NULL, NULL, 'Oui', 'Non', true, false, 58, NULL, NULL, true, '2020-04-02 00:04:54.809195+00', '2020-04-02 00:04:54.809195+00'); +INSERT INTO [[schema]].reports_indicator VALUES (184, 'Report184', '52269', NULL, NULL, 0, NULL, NULL, '0', 'ND', true, false, 25, NULL, NULL, false, '2019-05-24 00:03:31.925243+00', '2019-07-05 14:59:54.57373+00'); +INSERT INTO [[schema]].reports_indicator VALUES (186, 'Report186', '52271', NULL, NULL, 0, NULL, NULL, '100', 'ND', true, false, 24, NULL, NULL, false, '2019-05-24 00:03:31.925422+00', '2019-07-05 14:59:54.654506+00'); +INSERT INTO [[schema]].reports_indicator VALUES (168, 'Report168', '25-01-L3-04', NULL, NULL, 0, NULL, NULL, 'Yes', 'No', true, false, 13, NULL, NULL, false, '2019-02-01 00:01:56.924348+00', '2019-06-29 00:16:01.696839+00'); +INSERT INTO [[schema]].reports_indicator VALUES (187, 'Report187', '52272', NULL, NULL, 0, NULL, NULL, '90', 'ND', true, false, 24, NULL, NULL, false, '2019-05-24 00:03:31.925505+00', '2019-07-05 14:59:54.673684+00'); +INSERT INTO [[schema]].reports_indicator VALUES (210, 'Report210', '64876', NULL, NULL, 0, NULL, NULL, '70', '37', true, false, 28, NULL, NULL, false, '2019-07-05 14:59:54.698635+00', '2019-07-05 14:59:54.700349+00'); +INSERT INTO [[schema]].reports_indicator VALUES (21, 'Report21', '47866', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 58, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-07-05 14:59:54.520436+00'); +INSERT INTO [[schema]].reports_indicator VALUES (48, 'Report48', '21-02-L3-09', NULL, NULL, 0, NULL, '', '0', '0', true, false, 28, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:47.202908+00'); +INSERT INTO [[schema]].reports_indicator VALUES (117, 'Report117', '47750', NULL, NULL, 0, NULL, '', '95', 'ND', true, false, 28, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-07-05 14:59:54.503206+00'); +INSERT INTO [[schema]].reports_indicator VALUES (118, 'Report118', '47751', NULL, NULL, 0, NULL, '', '12', 'ND', true, false, 28, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-07-05 14:59:54.564909+00'); +INSERT INTO [[schema]].reports_indicator VALUES (112, 'Report112', '47727', NULL, NULL, 0, NULL, '', '100', '70', true, false, 17, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (110, 'Report110', '47725', NULL, NULL, 0, NULL, '', '5', '5', true, false, 19, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (111, 'Report111', '47724', NULL, NULL, 0, NULL, '', '6', '4', true, false, 19, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (126, 'Report126', '52096', NULL, NULL, 0, NULL, '', '90000', '71000', true, false, 18, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (115, 'Report115', '47728', NULL, NULL, 0, NULL, '', '70', '50', true, false, 17, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2020-04-01 00:04:12.034091+00'); +INSERT INTO [[schema]].reports_indicator VALUES (121, 'Report121', '47756', NULL, NULL, 0, NULL, '', '100', '77', true, false, 34, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2020-02-12 00:09:07.070637+00'); +INSERT INTO [[schema]].reports_indicator VALUES (129, 'Report129', '21-04-L3-05', NULL, NULL, 0, NULL, '', 'Yes', 'Yes', true, false, 59, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-03-27 00:05:01.321512+00'); +INSERT INTO [[schema]].reports_indicator VALUES (96, 'Report96', '47807', NULL, NULL, 0, NULL, '', '12', '15', true, false, 39, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:47.287796+00'); +INSERT INTO [[schema]].reports_indicator VALUES (119, 'Report119', '47752', NULL, NULL, 0, NULL, '', '54', '38', true, false, 29, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-07-01 00:22:06.176086+00'); +INSERT INTO [[schema]].reports_indicator VALUES (130, 'Report130', '21-05-L3-09', NULL, NULL, 0, NULL, '', '360400', '266793', true, false, 59, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2020-02-12 00:09:07.105051+00'); +INSERT INTO [[schema]].reports_indicator VALUES (272, 'Report272', '68178', NULL, NULL, 0, NULL, NULL, '15', '0', true, false, 58, NULL, NULL, true, '2020-04-02 00:04:54.809267+00', '2020-04-18 01:10:16.109573+00'); +INSERT INTO [[schema]].reports_indicator VALUES (71, 'Report71', '03-05-L3-01', NULL, NULL, 0, NULL, '', 'oui', 'oui', true, false, 38, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2020-02-13 00:08:58.510275+00'); +INSERT INTO [[schema]].reports_indicator VALUES (36, 'Report36', '47730', NULL, NULL, 0, NULL, '', '3000', '231', true, false, 23, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:47.219575+00'); +INSERT INTO [[schema]].reports_indicator VALUES (37, 'Report37', '47731', NULL, NULL, 0, NULL, '', '1500', '1112', true, false, 23, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:47.234686+00'); INSERT INTO [[schema]].reports_indicator VALUES (151, 'Report151', '24-04-L2-02', NULL, NULL, 0, NULL, '', '10', '5', true, false, 14, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-05-24 13:16:45.695517+00'); INSERT INTO [[schema]].reports_indicator VALUES (123, 'Report123', '25-02-L2-04', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 14, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (9, 'Report9', '47796', NULL, NULL, 0, NULL, '', '55', '47', true, false, 41, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:47.144698+00'); INSERT INTO [[schema]].reports_indicator VALUES (65, 'Report65', '21-01-L3-02', NULL, NULL, 0, NULL, '', '50', '40', true, false, 28, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:47.174585+00'); -INSERT INTO [[schema]].reports_indicator VALUES (163, 'Report163', '26-03-L3-06', NULL, NULL, 0, NULL, '', '15', '10', true, false, 45, NULL, NULL, true, '2018-04-16 12:47:05.520404+00', '2018-05-24 13:16:45.747322+00'); -INSERT INTO [[schema]].reports_indicator VALUES (23, 'Report23', '47865', NULL, NULL, 0, NULL, '', '1', '1', true, false, 54, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (24, 'Report24', '47868', NULL, NULL, 0, NULL, '', '87', '65', true, false, 59, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (29, 'Report29', '47917', NULL, NULL, 0, NULL, '', '10000', '5463', true, false, 20, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (35, 'Report35', '47733', NULL, NULL, 0, NULL, '', 'Non', 'Non', true, false, 22, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (80, 'Report80', '23-03-L3-03', NULL, NULL, 0, NULL, '', 'Yes', 'No', true, false, 49, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2020-04-02 00:04:54.694083+00'); +INSERT INTO [[schema]].reports_indicator VALUES (35, 'Report35', '47733', NULL, NULL, 0, NULL, '', 'Non', 'Non', true, false, 22, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2020-04-02 00:04:54.791145+00'); +INSERT INTO [[schema]].reports_indicator VALUES (24, 'Report24', '47868', NULL, NULL, 0, NULL, '', '87', '65', true, false, 59, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2020-04-03 00:03:56.360904+00'); +INSERT INTO [[schema]].reports_indicator VALUES (47, 'Report47', '21-03-L3-06', NULL, NULL, 0, NULL, '', 'Yes', 'No', true, false, 29, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-03-27 00:05:01.254213+00'); INSERT INTO [[schema]].reports_indicator VALUES (159, 'Report159', '21-04-L3-18', NULL, NULL, 0, NULL, '', '80', '58', true, false, 57, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-29 00:16:01.910164+00'); INSERT INTO [[schema]].reports_indicator VALUES (67, 'Report67', '21-06-L3-05', NULL, NULL, 0, NULL, '', '50', '10', true, false, 42, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-05-24 13:16:45.814437+00'); -INSERT INTO [[schema]].reports_indicator VALUES (45, 'Report45', '21-06-L3-11', NULL, NULL, 0, NULL, '', '85', '77', true, false, 46, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (46, 'Report46', '21-06-L3-12', NULL, NULL, 0, NULL, '', '100', '100', true, false, 42, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (43, 'Report43', '47882', NULL, NULL, 0, NULL, '', '140', '90', true, false, 14, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (21, 'Report21', '47866', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 58, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-07-05 14:59:54.520436+00'); -INSERT INTO [[schema]].reports_indicator VALUES (71, 'Report71', '03-05-L3-01', NULL, NULL, 0, NULL, '', 'Oui', 'Oui', true, false, 38, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-17 00:01:12.378129+00'); +INSERT INTO [[schema]].reports_indicator VALUES (29, 'Report29', '47917', NULL, NULL, 0, NULL, '', '10000', '5463', true, false, 20, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2020-03-27 00:06:30.150032+00'); +INSERT INTO [[schema]].reports_indicator VALUES (23, 'Report23', '47865', NULL, NULL, 0, NULL, '', '1', '1', true, false, 54, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2020-03-27 00:06:30.203145+00'); +INSERT INTO [[schema]].reports_indicator VALUES (38, 'Report38', '21-06-L3-08', NULL, NULL, 0, NULL, '', 'Yes', 'Yes', true, false, 42, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-06-29 00:16:01.831603+00'); +INSERT INTO [[schema]].reports_indicator VALUES (15, 'Report15', '47798', NULL, NULL, 0, NULL, '', '214', '556', true, false, 41, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2020-03-27 00:06:30.274701+00'); INSERT INTO [[schema]].reports_indicator VALUES (8, 'Report8', '47795', NULL, NULL, 0, NULL, '', '55', '53', true, false, 41, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (10, 'Report10', '47797', NULL, NULL, 0, NULL, '', '29', '27', true, false, 41, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (16, 'Report16', '47799', NULL, NULL, 0, NULL, '', '300', 'ND', true, false, 41, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (60, 'Report60', '47804', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 39, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (15, 'Report15', '47798', NULL, NULL, 0, NULL, '', '214', '556', true, false, 41, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:47.321079+00'); -INSERT INTO [[schema]].reports_indicator VALUES (80, 'Report80', '23-03-L3-03', NULL, NULL, 0, NULL, '', 'Yes', 'No', true, false, 50, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-07-05 14:59:54.539676+00'); -INSERT INTO [[schema]].reports_indicator VALUES (48, 'Report48', '21-02-L3-09', NULL, NULL, 0, NULL, '', '0', '0', true, false, 28, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:47.202908+00'); -INSERT INTO [[schema]].reports_indicator VALUES (36, 'Report36', '47730', NULL, NULL, 0, NULL, '', '3000', '231', true, false, 23, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:47.219575+00'); -INSERT INTO [[schema]].reports_indicator VALUES (37, 'Report37', '47731', NULL, NULL, 0, NULL, '', '1500', '1112', true, false, 23, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:47.234686+00'); +INSERT INTO [[schema]].reports_indicator VALUES (133, 'Report133', '26-06-L3-13', NULL, NULL, 0, NULL, '', '80000', '71000', true, false, 23, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-07-01 00:22:06.225904+00'); +INSERT INTO [[schema]].reports_indicator VALUES (9, 'Report9', '47796', NULL, NULL, 0, NULL, '', '55', '47', true, false, 41, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:47.144698+00'); INSERT INTO [[schema]].reports_indicator VALUES (66, 'Report66', '21-06-L3-06', NULL, NULL, 0, NULL, '', '1250', '799', true, false, 45, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-05-24 13:16:45.833649+00'); INSERT INTO [[schema]].reports_indicator VALUES (22, 'Report22', '47867', NULL, NULL, 0, NULL, '', '85', '82', true, false, 58, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (59, 'Report59', '23-01-L3-09', NULL, NULL, 0, NULL, '', '50', '0', true, false, 50, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (75, 'Report75', '47844', NULL, NULL, 0, NULL, '', '6', '5', true, false, 52, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (76, 'Report76', '47845', NULL, NULL, 0, NULL, '', '100', '100', true, false, 52, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (163, 'Report163', '26-03-L3-06', NULL, NULL, 0, NULL, '', '15', '10', true, false, 45, NULL, NULL, false, '2018-04-16 12:47:05.520404+00', '2018-05-24 13:16:45.747322+00'); +INSERT INTO [[schema]].reports_indicator VALUES (45, 'Report45', '21-06-L3-11', NULL, NULL, 0, NULL, '', '85', '77', true, false, 46, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (46, 'Report46', '21-06-L3-12', NULL, NULL, 0, NULL, '', '100', '100', true, false, 42, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (88, 'Report88', '21-01-L3-10', NULL, NULL, 0, NULL, '', '95', '79.2', true, false, 34, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (132, 'Report132', '21-05-L3-02', NULL, NULL, 0, NULL, '', 'Yes', 'Yes', true, false, 58, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-03-27 00:05:01.293308+00'); INSERT INTO [[schema]].reports_indicator VALUES (99, 'Report99', '23-01-L3-18', NULL, NULL, 0, NULL, '', '100', '177', true, false, 52, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (100, 'Report100', '47871', NULL, NULL, 0, NULL, '', '10', '2', true, false, 59, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (101, 'Report101', '47870', NULL, NULL, 0, NULL, '', '65', '54', true, false, 59, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (127, 'Report127', '52099', NULL, NULL, 0, NULL, '', '4000', '2962', true, false, 36, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2020-03-28 00:06:39.577372+00'); INSERT INTO [[schema]].reports_indicator VALUES (103, 'Report103', '47872', NULL, NULL, 0, NULL, '', '92', '87', true, false, 59, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (104, 'Report104', '47875', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 13, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (106, 'Report106', '21-02-L3-03', NULL, NULL, 0, NULL, '', '2', '2.7', true, false, 31, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (124, 'Report124', '25-02-L2-07', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 15, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (117, 'Report117', '47750', NULL, NULL, 0, NULL, '', '95', 'ND', true, false, 28, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-07-05 14:59:54.503206+00'); -INSERT INTO [[schema]].reports_indicator VALUES (118, 'Report118', '47751', NULL, NULL, 0, NULL, '', '12', 'ND', true, false, 28, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-07-05 14:59:54.564909+00'); -INSERT INTO [[schema]].reports_indicator VALUES (121, 'Report121', '47756', NULL, NULL, 0, NULL, '', '100', '77', true, false, 34, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (104, 'Report104', '47875', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 13, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (122, 'Report122', '47759', NULL, NULL, 0, NULL, '', '60', '56', true, false, 57, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (112, 'Report112', '47727', NULL, NULL, 0, NULL, '', '100', '70', true, false, 17, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (110, 'Report110', '47725', NULL, NULL, 0, NULL, '', '5', '5', true, false, 19, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (111, 'Report111', '47724', NULL, NULL, 0, NULL, '', '6', '4', true, false, 19, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (126, 'Report126', '52096', NULL, NULL, 0, NULL, '', '90000', '71000', true, false, 18, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (114, 'Report114', '47729', NULL, NULL, 0, NULL, '', 'Oui', 'Oui', true, false, 17, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2020-03-29 00:07:17.173002+00'); INSERT INTO [[schema]].reports_indicator VALUES (94, 'Report94', '47805', NULL, NULL, 0, NULL, '', '100', '56', true, false, 39, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (114, 'Report114', '47729', NULL, NULL, 0, NULL, '', 'Oui', 'Oui', true, false, 17, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-28 00:09:02.225683+00'); INSERT INTO [[schema]].reports_indicator VALUES (136, 'Report136', '51931', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 33, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-05 00:03:28.698916+00'); INSERT INTO [[schema]].reports_indicator VALUES (93, 'Report93', '47787', NULL, NULL, 0, NULL, '', '20', 'ND', true, false, 46, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (102, 'Report102', '47873', NULL, NULL, 0, NULL, '', '5', 'ND', true, false, 36, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (105, 'Report105', '47878', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 13, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (120, 'Report120', '47753', NULL, NULL, 0, NULL, '', '1', '0', true, false, 29, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (134, 'Report134', '51933', NULL, NULL, 0, NULL, '', '125277', '86400', true, false, 30, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (95, 'Report95', '47806', NULL, NULL, 0, NULL, '', '80', '80', true, false, 39, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (115, 'Report115', '47728', NULL, NULL, 0, NULL, '', '70', '50', true, false, 17, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-05-24 13:16:45.791496+00'); -INSERT INTO [[schema]].reports_indicator VALUES (127, 'Report127', '52099', NULL, NULL, 0, NULL, '', '4000', '2962', true, false, 36, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:47.248757+00'); -INSERT INTO [[schema]].reports_indicator VALUES (129, 'Report129', '21-04-L3-05', NULL, NULL, 0, NULL, '', 'Yes', 'Yes', true, false, 59, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-03-27 00:05:01.321512+00'); +INSERT INTO [[schema]].reports_indicator VALUES (58, 'Report58', '47877', NULL, NULL, 0, NULL, '', '1', '1', true, false, 13, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-07-01 00:22:06.213071+00'); INSERT INTO [[schema]].reports_indicator VALUES (128, 'Report128', '52098', NULL, NULL, 0, NULL, '', '600000', '500000', true, false, 36, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:47.269718+00'); -INSERT INTO [[schema]].reports_indicator VALUES (96, 'Report96', '47807', NULL, NULL, 0, NULL, '', '12', '15', true, false, 39, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:47.287796+00'); -INSERT INTO [[schema]].reports_indicator VALUES (89, 'Report89', '25-03-L3-03', NULL, NULL, 0, NULL, '', '500', '2900', true, false, 36, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:47.376075+00'); +INSERT INTO [[schema]].reports_indicator VALUES (131, 'Report131', '26-06-L3-15', NULL, NULL, 0, NULL, '', '500000', '650000', true, false, 23, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2020-04-03 00:03:56.467093+00'); INSERT INTO [[schema]].reports_indicator VALUES (125, 'Report125', '52095', NULL, NULL, 0, NULL, '', '35000', '21000', true, false, 18, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (119, 'Report119', '47752', NULL, NULL, 0, NULL, '', '54', '38', true, false, 29, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-07-01 00:22:06.176086+00'); -INSERT INTO [[schema]].reports_indicator VALUES (130, 'Report130', '21-05-L3-09', NULL, NULL, 0, NULL, '', '360400', '266793', true, false, 59, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-07-05 14:59:54.583746+00'); -INSERT INTO [[schema]].reports_indicator VALUES (58, 'Report58', '47877', NULL, NULL, 0, NULL, '', '1', '1', true, false, 13, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-07-01 00:22:06.213071+00'); -INSERT INTO [[schema]].reports_indicator VALUES (131, 'Report131', '26-06-L3-15', NULL, NULL, 0, NULL, '', '450000', '650000', true, false, 23, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-07-01 00:22:06.238778+00'); +INSERT INTO [[schema]].reports_indicator VALUES (132, 'Report132', '21-05-L3-02', NULL, NULL, 0, NULL, '', 'Yes', 'Yes', true, false, 58, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-03-27 00:05:01.293308+00'); +INSERT INTO [[schema]].reports_indicator VALUES (101, 'Report101', '47870', NULL, NULL, 0, NULL, '', '65', '54', true, false, 59, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2020-04-01 00:04:13.527091+00'); INSERT INTO [[schema]].reports_indicator VALUES (135, 'Report135', '51932', NULL, NULL, 0, NULL, '', '38877', '22777', true, false, 30, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (146, 'Report146', '51928', NULL, NULL, 0, NULL, '', 'Non', 'Non', true, false, 33, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-28 00:09:02.204469+00'); +INSERT INTO [[schema]].reports_indicator VALUES (134, 'Report134', '51933', NULL, NULL, 0, NULL, '', '125277', '86400', true, false, 30, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (89, 'Report89', '25-03-L3-03', NULL, NULL, 0, NULL, '', '500', '2900', true, false, 36, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:47.376075+00'); +INSERT INTO [[schema]].reports_indicator VALUES (100, 'Report100', '47871', NULL, NULL, 0, NULL, '', '10', '2', true, false, 59, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (106, 'Report106', '21-02-L3-03', NULL, NULL, 0, NULL, '', '2', '2.7', true, false, 31, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (137, 'Report137', '51930', NULL, NULL, 0, NULL, '', 'Non', 'Non', true, false, 33, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2020-04-02 00:04:54.683279+00'); INSERT INTO [[schema]].reports_indicator VALUES (138, 'Report138', '51934', NULL, NULL, 0, NULL, '', '176000', '107469', true, false, 30, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (147, 'Report147', '51929', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 33, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-05 00:03:28.756282+00'); -INSERT INTO [[schema]].reports_indicator VALUES (142, 'Report142', '51925', NULL, NULL, 0, NULL, '', '67', '16', true, false, 20, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (137, 'Report137', '51930', NULL, NULL, 0, NULL, '', 'Non', 'Non', true, false, 33, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-05 00:03:28.871949+00'); -INSERT INTO [[schema]].reports_indicator VALUES (144, 'Report144', '51927', NULL, NULL, 0, NULL, '', '1250', '1111', true, false, 12, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-28 00:09:02.237972+00'); +INSERT INTO [[schema]].reports_indicator VALUES (142, 'Report142', '51925', NULL, NULL, 0, NULL, '', '67', '16', true, false, 20, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (141, 'Report141', '51924', NULL, NULL, 0, NULL, '', '117', '181', true, false, 20, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-06-28 00:09:02.261822+00'); INSERT INTO [[schema]].reports_indicator VALUES (139, 'Report139', '52077', NULL, NULL, 0, NULL, '', '2', '1', true, false, 22, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-28 00:09:02.250022+00'); -INSERT INTO [[schema]].reports_indicator VALUES (148, 'Report148', '52065', NULL, NULL, 0, NULL, '', 'Oui', 'oui', true, false, 34, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (155, 'Report155', '23-02-L3-01', NULL, NULL, 0, NULL, '', '188', '86', true, false, 48, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2020-04-02 00:04:54.573138+00'); INSERT INTO [[schema]].reports_indicator VALUES (152, 'Report152', '23-01-L3-02', NULL, NULL, 0, NULL, '', 'Yes', 'No', true, false, 49, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-07-20 00:05:34.893042+00'); INSERT INTO [[schema]].reports_indicator VALUES (1, 'Report1', '47788', NULL, NULL, 0, NULL, '', '48', '52', true, false, 45, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (2, 'Report2', '47786', NULL, NULL, 0, NULL, '', '23', '18', true, false, 46, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); @@ -15454,18 +17609,20 @@ INSERT INTO [[schema]].reports_indicator VALUES (27, 'Report27', '47919', NULL, INSERT INTO [[schema]].reports_indicator VALUES (28, 'Report28', '47916', NULL, NULL, 0, NULL, '', '60', 'ND', true, false, 20, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (30, 'Report30', '47914', NULL, NULL, 0, NULL, '', '38', '36', true, false, 20, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (140, 'Report140', '25-01-L2-04', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 13, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (144, 'Report144', '51927', NULL, NULL, 0, NULL, '', '1250', '1111', true, false, 12, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2020-04-03 00:03:56.417035+00'); INSERT INTO [[schema]].reports_indicator VALUES (154, 'Report154', '25-01-L2-02', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 14, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (146, 'Report146', '51928', NULL, NULL, 0, NULL, '', 'Non', 'Non', true, false, 33, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2020-03-27 00:06:30.13684+00'); INSERT INTO [[schema]].reports_indicator VALUES (31, 'Report31', '47915', NULL, NULL, 0, NULL, '', '3', '0', true, false, 20, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (32, 'Report32', '47734', NULL, NULL, 0, NULL, '', '100', '0', true, false, 22, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (33, 'Report33', '47735', NULL, NULL, 0, NULL, '', '100', '0', true, false, 22, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (34, 'Report34', '47732', NULL, NULL, 0, NULL, '', '5', '0', true, false, 22, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (150, 'Report150', '21-07-L3-01', NULL, NULL, 0, NULL, '', 'Yes', 'No', true, false, 45, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-29 00:16:01.810018+00'); -INSERT INTO [[schema]].reports_indicator VALUES (141, 'Report141', '51924', NULL, NULL, 0, NULL, '', '117', '181', true, false, 20, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-28 00:09:02.261822+00'); -INSERT INTO [[schema]].reports_indicator VALUES (155, 'Report155', '23-02-L3-01', NULL, NULL, 0, NULL, '', '10', '86', true, false, 48, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-07-05 14:59:54.467371+00'); -INSERT INTO [[schema]].reports_indicator VALUES (157, 'Report157', '23-03-L3-02', NULL, NULL, 0, NULL, '', 'Yes', 'Yes', true, false, 49, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-07-05 14:59:54.530521+00'); +INSERT INTO [[schema]].reports_indicator VALUES (157, 'Report157', '23-03-L3-02', NULL, NULL, 0, NULL, '', 'Yes', 'Yes', true, false, 49, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-07-05 14:59:54.530521+00'); +INSERT INTO [[schema]].reports_indicator VALUES (147, 'Report147', '51929', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 33, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-06-05 00:03:28.756282+00'); +INSERT INTO [[schema]].reports_indicator VALUES (148, 'Report148', '52065', NULL, NULL, 0, NULL, '', 'Oui', 'oui', true, false, 34, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (143, 'Report143', '51926', NULL, NULL, 0, NULL, '', '910794', '110248', true, false, 12, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (145, 'Report145', '52216', NULL, NULL, 0, NULL, '', '1', '0', true, false, 13, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (156, 'Report156', '23-03-L3-07', NULL, NULL, 0, NULL, '', '21', '21', true, false, 50, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); +INSERT INTO [[schema]].reports_indicator VALUES (150, 'Report150', '21-07-L3-01', NULL, NULL, 0, NULL, '', 'Yes', 'No', true, false, 45, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2019-06-29 00:16:01.810018+00'); INSERT INTO [[schema]].reports_indicator VALUES (40, 'Report40', '47885', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 15, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (41, 'Report41', '47886', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 15, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (42, 'Report42', '47880', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 14, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); @@ -15492,43 +17649,6 @@ INSERT INTO [[schema]].reports_indicator VALUES (83, 'Report83', '47835', NULL, INSERT INTO [[schema]].reports_indicator VALUES (84, 'Report84', '47834', NULL, NULL, 0, NULL, '', '15', 'ND', true, false, 48, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (85, 'Report85', '47837', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 49, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (86, 'Report86', '47836', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 50, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (201, 'Report201', '64886', NULL, NULL, 0, NULL, NULL, '1', '4', true, false, 42, NULL, NULL, true, '2019-06-29 00:16:01.974892+00', '2019-06-29 00:16:01.975638+00'); -INSERT INTO [[schema]].reports_indicator VALUES (202, 'Report202', '66071', NULL, NULL, 0, NULL, NULL, '46', '39', true, false, 46, NULL, NULL, true, '2019-06-29 00:16:01.975091+00', '2019-06-29 00:16:01.975784+00'); -INSERT INTO [[schema]].reports_indicator VALUES (153, 'Report153', '21-01-L3-05', NULL, NULL, 0, NULL, '', '7', '2', true, false, 31, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-07-01 00:22:06.187103+00'); -INSERT INTO [[schema]].reports_indicator VALUES (185, 'Report185', '52270', NULL, NULL, 0, NULL, NULL, '1', '0.10', true, false, 25, NULL, NULL, true, '2019-05-24 00:03:31.925335+00', '2019-07-05 14:59:54.555637+00'); -INSERT INTO [[schema]].reports_indicator VALUES (196, 'Report196', '64846', NULL, NULL, 0, NULL, NULL, '5', '1', true, false, 22, NULL, NULL, true, '2019-06-28 00:09:02.279941+00', '2019-06-28 00:09:02.280881+00'); -INSERT INTO [[schema]].reports_indicator VALUES (197, 'Report197', '64847', NULL, NULL, 0, NULL, NULL, '146200', '85221', true, false, 22, NULL, NULL, true, '2019-06-28 00:09:02.280117+00', '2019-06-28 00:09:02.280979+00'); -INSERT INTO [[schema]].reports_indicator VALUES (180, 'Report180', '22-02-L3-01', NULL, NULL, 0, NULL, NULL, '727724', '110248', true, false, 12, NULL, NULL, true, '2019-04-04 00:05:26.765482+00', '2019-04-27 00:05:01.729844+00'); -INSERT INTO [[schema]].reports_indicator VALUES (39, 'Report39', '47884', NULL, NULL, 0, NULL, '', '70', '35', true, false, 14, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-05-24 13:16:45.890119+00'); -INSERT INTO [[schema]].reports_indicator VALUES (158, 'Report158', '21-07-L3-11', NULL, NULL, 0, NULL, '', '25', '12', true, false, 46, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-05-24 13:16:45.983275+00'); -INSERT INTO [[schema]].reports_indicator VALUES (149, 'Report149', '22-01-L3-07', NULL, NULL, 0, NULL, '', '531', '273', true, false, 12, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-05-24 13:16:46.017246+00'); -INSERT INTO [[schema]].reports_indicator VALUES (184, 'Report184', '52269', NULL, NULL, 0, NULL, NULL, '0', 'ND', true, false, 25, NULL, NULL, true, '2019-05-24 00:03:31.925243+00', '2019-07-05 14:59:54.57373+00'); -INSERT INTO [[schema]].reports_indicator VALUES (173, 'Report173', '23-01-L3-34', NULL, NULL, 0, NULL, NULL, '100', '24', true, false, 52, NULL, NULL, true, '2019-03-24 00:03:28.499881+00', '2019-07-05 14:59:54.616218+00'); -INSERT INTO [[schema]].reports_indicator VALUES (188, 'Report188', '52273', NULL, NULL, 0, NULL, NULL, '100', 'ND', true, false, 24, NULL, NULL, true, '2019-05-24 00:03:31.925603+00', '2019-07-05 14:59:54.645468+00'); -INSERT INTO [[schema]].reports_indicator VALUES (186, 'Report186', '52271', NULL, NULL, 0, NULL, NULL, '100', 'ND', true, false, 24, NULL, NULL, true, '2019-05-24 00:03:31.925422+00', '2019-07-05 14:59:54.654506+00'); -INSERT INTO [[schema]].reports_indicator VALUES (198, 'Report198', '64848', NULL, NULL, 0, NULL, NULL, '2', '2', true, false, 22, NULL, NULL, true, '2019-06-28 00:09:02.280219+00', '2019-06-28 00:09:02.281121+00'); -INSERT INTO [[schema]].reports_indicator VALUES (169, 'Report169', '21-04-L3-19', NULL, NULL, 0, NULL, NULL, 'No', 'No', true, false, 58, NULL, NULL, true, '2019-03-24 00:03:28.499386+00', '2019-03-27 00:05:01.273691+00'); -INSERT INTO [[schema]].reports_indicator VALUES (199, 'Report199', '64849', NULL, NULL, 0, NULL, NULL, '55000', '18000', true, false, 22, NULL, NULL, true, '2019-06-28 00:09:02.280315+00', '2019-06-28 00:09:02.281198+00'); -INSERT INTO [[schema]].reports_indicator VALUES (107, 'Report107', '26-03-L3-07', NULL, NULL, 0, NULL, '', '10', '8', true, false, 36, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:46.75454+00'); -INSERT INTO [[schema]].reports_indicator VALUES (172, 'Report172', '21-02-L3-17', NULL, NULL, 0, NULL, NULL, 'Yes', 'No', true, false, 28, NULL, NULL, false, '2019-03-24 00:03:28.499786+00', '2019-03-24 00:03:28.501007+00'); -INSERT INTO [[schema]].reports_indicator VALUES (182, 'Report182', '22-01-L3-09', NULL, NULL, 0, NULL, NULL, '18000', '22777', true, false, 12, NULL, NULL, true, '2019-04-04 00:05:26.765954+00', '2019-04-06 00:03:43.043846+00'); -INSERT INTO [[schema]].reports_indicator VALUES (192, 'Report192', '64871', NULL, NULL, 0, NULL, NULL, 'Oui', 'Non', true, false, 39, NULL, NULL, true, '2019-06-23 00:07:02.653306+00', '2019-06-23 00:07:02.654013+00'); -INSERT INTO [[schema]].reports_indicator VALUES (174, 'Report174', '24-02-L3-35', NULL, NULL, 0, NULL, NULL, '571367', '365467', true, false, 41, NULL, NULL, true, '2019-03-24 00:03:28.499975+00', '2019-11-12 15:01:48.694963+00'); -INSERT INTO [[schema]].reports_indicator VALUES (200, 'Report200', '24-02-L3-37', NULL, NULL, 0, NULL, NULL, '128', '37', true, false, 40, NULL, NULL, true, '2019-06-28 00:09:02.280408+00', '2019-11-12 15:01:48.706015+00'); -INSERT INTO [[schema]].reports_indicator VALUES (189, 'Report189', '64563', NULL, NULL, 0, NULL, NULL, '12', '12', true, false, 28, NULL, NULL, true, '2019-05-24 00:03:31.9258+00', '2019-05-24 00:03:31.927043+00'); -INSERT INTO [[schema]].reports_indicator VALUES (170, 'Report170', '24-02-L3-36', NULL, NULL, 0, NULL, NULL, '60', '65', true, false, 40, NULL, NULL, false, '2019-03-24 00:03:28.499572+00', '2019-06-23 00:07:02.612694+00'); -INSERT INTO [[schema]].reports_indicator VALUES (97, 'Report97', '47800', NULL, NULL, 0, NULL, '', '161', '941', true, false, 40, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:47.302521+00'); -INSERT INTO [[schema]].reports_indicator VALUES (178, 'Report178', '21-02-L3-14', NULL, NULL, 0, NULL, NULL, '80', '62', true, false, 28, NULL, NULL, true, '2019-03-28 00:04:53.594232+00', '2019-06-15 00:05:28.467674+00'); -INSERT INTO [[schema]].reports_indicator VALUES (177, 'Report177', '23-03-L3-09', NULL, NULL, 0, NULL, NULL, 'Yes', 'No', true, false, 50, NULL, NULL, true, '2019-03-24 00:03:28.500327+00', '2019-06-15 00:05:28.4861+00'); -INSERT INTO [[schema]].reports_indicator VALUES (190, 'Report190', '21-02-L3-19', NULL, NULL, 0, NULL, NULL, 'No', 'No', true, false, 28, NULL, NULL, true, '2019-06-15 00:05:28.508541+00', '2019-06-15 00:05:28.509001+00'); -INSERT INTO [[schema]].reports_indicator VALUES (171, 'Report171', '21-02-L3-20', NULL, NULL, 0, NULL, NULL, 'No', 'No', true, false, 28, NULL, NULL, false, '2019-03-24 00:03:28.49967+00', '2019-04-26 00:04:37.757417+00'); -INSERT INTO [[schema]].reports_indicator VALUES (183, 'Report183', '52268', NULL, NULL, 0, NULL, NULL, '80', 'ND', true, false, 26, NULL, NULL, true, '2019-05-24 00:03:31.925116+00', '2019-07-05 14:59:54.663863+00'); -INSERT INTO [[schema]].reports_indicator VALUES (5, 'Report5', '47768', NULL, NULL, 0, NULL, '', '12', '0', true, false, 54, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (6, 'Report6', '47760', NULL, NULL, 0, NULL, '', '10', '7', true, false, 57, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (191, 'Report191', '22-03-L3-02', NULL, NULL, 0, NULL, NULL, '125277', '86400', true, false, 30, NULL, NULL, true, '2019-06-19 00:06:44.145335+00', '2019-06-19 00:06:44.145897+00'); -INSERT INTO [[schema]].reports_indicator VALUES (168, 'Report168', '25-01-L3-04', NULL, NULL, 0, NULL, NULL, 'Yes', 'No', true, false, 13, NULL, NULL, true, '2019-02-01 00:01:56.924348+00', '2019-06-29 00:16:01.696839+00'); -INSERT INTO [[schema]].reports_indicator VALUES (166, 'Report166', '25-02-L3-04', NULL, NULL, 0, NULL, NULL, 'Yes', 'No', true, false, 14, NULL, NULL, true, '2019-02-01 00:01:56.923881+00', '2019-06-29 00:16:01.782615+00'); -INSERT INTO [[schema]].reports_indicator VALUES (167, 'Report167', '24-04-L3-02', NULL, NULL, 0, NULL, NULL, '1', '5', true, false, 14, NULL, NULL, true, '2019-02-01 00:01:56.924158+00', '2019-06-29 00:16:01.797881+00'); INSERT INTO [[schema]].reports_indicator VALUES (87, 'Report87', '47830', NULL, NULL, 0, NULL, '', '60', '57', true, false, 30, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (90, 'Report90', '47789', NULL, NULL, 0, NULL, '', '22', '22', true, false, 45, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (91, 'Report91', '47783', NULL, NULL, 0, NULL, '', '46', '39', true, false, 45, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); @@ -15540,21 +17660,242 @@ INSERT INTO [[schema]].reports_indicator VALUES (98, 'Report98', '47801', NULL, INSERT INTO [[schema]].reports_indicator VALUES (61, 'Report61', '47802', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 39, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (62, 'Report62', '47803', NULL, NULL, 0, NULL, '', 'Oui', 'Non', true, false, 39, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); INSERT INTO [[schema]].reports_indicator VALUES (78, 'Report78', '47847', NULL, NULL, 0, NULL, '', '150', '23', true, false, 52, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-16 00:05:03.237826+00'); +INSERT INTO [[schema]].reports_indicator VALUES (171, 'Report171', '21-02-L3-20', NULL, NULL, 0, NULL, NULL, 'No', 'No', true, false, 28, NULL, NULL, false, '2019-03-24 00:03:28.49967+00', '2019-04-26 00:04:37.757417+00'); +INSERT INTO [[schema]].reports_indicator VALUES (273, 'Report273', '68202', NULL, NULL, 0, NULL, NULL, '80000', '71000', true, false, 23, NULL, NULL, true, '2020-04-03 00:03:56.517764+00', '2020-04-03 00:03:56.517764+00'); +INSERT INTO [[schema]].reports_indicator VALUES (173, 'Report173', '23-01-L3-34', NULL, NULL, 0, NULL, NULL, '100', '24', true, false, 52, NULL, NULL, true, '2019-03-24 00:03:28.499881+00', '2019-07-05 14:59:54.616218+00'); +INSERT INTO [[schema]].reports_indicator VALUES (180, 'Report180', '22-02-L3-01', NULL, NULL, 0, NULL, NULL, '727724', '110248', true, false, 12, NULL, NULL, true, '2019-04-04 00:05:26.765482+00', '2019-04-27 00:05:01.729844+00'); +INSERT INTO [[schema]].reports_indicator VALUES (275, 'Report275', '68265', NULL, NULL, 0, NULL, NULL, '42200', 'ND', true, false, 52, NULL, NULL, true, '2020-04-05 00:47:33.812881+00', '2020-04-05 00:47:33.812881+00'); +INSERT INTO [[schema]].reports_indicator VALUES (149, 'Report149', '22-01-L3-07', NULL, NULL, 0, NULL, '', '531', '273', true, false, 12, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2018-05-24 13:16:46.017246+00'); +INSERT INTO [[schema]].reports_indicator VALUES (274, 'Report274', '68208', NULL, NULL, 0, NULL, NULL, '70', '65', true, false, 41, NULL, NULL, true, '2020-04-03 00:03:56.517924+00', '2020-04-03 00:03:56.517924+00'); +INSERT INTO [[schema]].reports_indicator VALUES (189, 'Report189', '64563', NULL, NULL, 0, NULL, NULL, '12', '12', true, false, 28, NULL, NULL, false, '2019-05-24 00:03:31.9258+00', '2020-03-27 00:06:30.172146+00'); +INSERT INTO [[schema]].reports_indicator VALUES (192, 'Report192', '64871', NULL, NULL, 0, NULL, NULL, 'Oui', 'Non', true, false, 39, NULL, NULL, true, '2019-06-23 00:07:02.653306+00', '2020-04-02 00:04:54.66405+00'); +INSERT INTO [[schema]].reports_indicator VALUES (197, 'Report197', '64847', NULL, NULL, 0, NULL, NULL, '146200', '85221', true, false, 22, NULL, NULL, false, '2019-06-28 00:09:02.280117+00', '2019-06-28 00:09:02.280979+00'); +INSERT INTO [[schema]].reports_indicator VALUES (188, 'Report188', '52273', NULL, NULL, 0, NULL, NULL, '100', 'ND', true, false, 24, NULL, NULL, true, '2019-05-24 00:03:31.925603+00', '2020-04-01 00:04:13.979082+00'); +INSERT INTO [[schema]].reports_indicator VALUES (198, 'Report198', '64848', NULL, NULL, 0, NULL, NULL, '2', '2', true, false, 22, NULL, NULL, true, '2019-06-28 00:09:02.280219+00', '2019-06-28 00:09:02.281121+00'); +INSERT INTO [[schema]].reports_indicator VALUES (169, 'Report169', '21-04-L3-19', NULL, NULL, 0, NULL, NULL, 'No', 'No', true, false, 58, NULL, NULL, true, '2019-03-24 00:03:28.499386+00', '2019-03-27 00:05:01.273691+00'); +INSERT INTO [[schema]].reports_indicator VALUES (199, 'Report199', '64849', NULL, NULL, 0, NULL, NULL, '55000', '18000', true, false, 22, NULL, NULL, true, '2019-06-28 00:09:02.280315+00', '2019-06-28 00:09:02.281198+00'); +INSERT INTO [[schema]].reports_indicator VALUES (107, 'Report107', '26-03-L3-07', NULL, NULL, 0, NULL, '', '10', '8', true, false, 36, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:46.75454+00'); +INSERT INTO [[schema]].reports_indicator VALUES (172, 'Report172', '21-02-L3-17', NULL, NULL, 0, NULL, NULL, 'Yes', 'No', true, false, 28, NULL, NULL, false, '2019-03-24 00:03:28.499786+00', '2019-03-24 00:03:28.501007+00'); +INSERT INTO [[schema]].reports_indicator VALUES (167, 'Report167', '24-04-L3-02', NULL, NULL, 0, NULL, NULL, '8', '5', true, false, 14, NULL, NULL, true, '2019-02-01 00:01:56.924158+00', '2020-03-28 00:06:39.566402+00'); +INSERT INTO [[schema]].reports_indicator VALUES (223, 'Report223', '67816', NULL, NULL, 0, NULL, NULL, '1303', '21760', true, false, 12, NULL, NULL, true, '2020-04-01 00:04:14.180733+00', '2020-04-01 00:04:14.180733+00'); +INSERT INTO [[schema]].reports_indicator VALUES (158, 'Report158', '21-07-L3-11', NULL, NULL, 0, NULL, '', '25', '12', true, false, 46, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-05-24 13:16:45.983275+00'); +INSERT INTO [[schema]].reports_indicator VALUES (200, 'Report200', '24-02-L3-37', NULL, NULL, 0, NULL, NULL, '131', '37', true, false, 40, NULL, NULL, true, '2019-06-28 00:09:02.280408+00', '2020-03-27 00:06:30.317866+00'); +INSERT INTO [[schema]].reports_indicator VALUES (179, 'Report179', '22-01-L3-63', NULL, NULL, 0, NULL, NULL, '2.5', '2', true, false, 30, NULL, NULL, false, '2019-03-28 00:04:53.594501+00', '2019-07-05 14:59:54.683135+00'); +INSERT INTO [[schema]].reports_indicator VALUES (276, 'Report276', '68700', NULL, NULL, 0, NULL, NULL, '90', '87', true, false, 172, NULL, NULL, true, '2020-04-21 01:10:25.742928+00', '2020-04-21 01:10:25.742928+00'); +INSERT INTO [[schema]].reports_indicator VALUES (277, 'Report277', '68701', NULL, NULL, 0, NULL, NULL, '60', '44', true, false, 172, NULL, NULL, true, '2020-04-21 01:10:25.743038+00', '2020-04-21 01:10:25.743038+00'); +INSERT INTO [[schema]].reports_indicator VALUES (97, 'Report97', '47800', NULL, NULL, 0, NULL, '', '161', '941', true, false, 40, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2020-03-27 00:06:30.234169+00'); +INSERT INTO [[schema]].reports_indicator VALUES (39, 'Report39', '47884', NULL, NULL, 0, NULL, '', '70', '35', true, false, 14, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-05-24 13:16:45.890119+00'); +INSERT INTO [[schema]].reports_indicator VALUES (170, 'Report170', '24-02-L3-36', NULL, NULL, 0, NULL, NULL, '60', '65', true, false, 40, NULL, NULL, false, '2019-03-24 00:03:28.499572+00', '2019-06-23 00:07:02.612694+00'); +INSERT INTO [[schema]].reports_indicator VALUES (224, 'Report224', '67821', NULL, NULL, 0, NULL, NULL, '47000', '57750', true, false, 38, NULL, NULL, true, '2020-04-01 00:04:14.180927+00', '2020-04-02 00:04:54.731849+00'); +INSERT INTO [[schema]].reports_indicator VALUES (178, 'Report178', '21-02-L3-14', NULL, NULL, 0, NULL, NULL, '80', '62', true, false, 28, NULL, NULL, true, '2019-03-28 00:04:53.594232+00', '2019-06-15 00:05:28.467674+00'); +INSERT INTO [[schema]].reports_indicator VALUES (177, 'Report177', '23-03-L3-09', NULL, NULL, 0, NULL, NULL, 'Yes', 'No', true, false, 50, NULL, NULL, true, '2019-03-24 00:03:28.500327+00', '2019-06-15 00:05:28.4861+00'); INSERT INTO [[schema]].reports_indicator VALUES (63, 'Report63', '47808', NULL, NULL, 0, NULL, '', '59', '55', true, false, 38, NULL, NULL, false, '2018-03-15 16:11:08.916146+00', '2018-03-15 16:11:09.283986+00'); -INSERT INTO [[schema]].reports_indicator VALUES (162, 'Report162', '24-02-L3-10', NULL, NULL, 0, NULL, '', '104', '192', true, false, 41, NULL, NULL, true, '2018-03-17 00:01:12.718778+00', '2019-06-07 00:04:47.389525+00'); -INSERT INTO [[schema]].reports_indicator VALUES (79, 'Report79', '24-02-L3-22', NULL, NULL, 0, NULL, '', '165620', '286309', true, false, 38, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2019-06-07 00:04:47.44223+00'); +INSERT INTO [[schema]].reports_indicator VALUES (162, 'Report162', '24-02-L3-10', NULL, NULL, 0, NULL, '', '1641', '192', true, false, 41, NULL, NULL, true, '2018-03-17 00:01:12.718778+00', '2020-03-27 00:06:30.306587+00'); +INSERT INTO [[schema]].reports_indicator VALUES (79, 'Report79', '24-02-L3-22', NULL, NULL, 0, NULL, '', '71000', '286309', true, false, 38, NULL, NULL, true, '2018-03-15 16:11:08.916146+00', '2020-03-27 00:06:30.332308+00'); -- -- Data for Name: reports_indicatorblueprint; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (1, 'Nombre de comités villageois d’assainissement mis en place et fonctionnels', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-12 16:08:09.714357+00', 'number', '2020-02-12 16:08:09.714357+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (2, 'Nombre de plans d’action communautaires élaborés et mis en œuvre', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-12 16:08:56.435273+00', 'number', '2020-02-12 16:08:56.435273+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (3, 'Nombre de villages déclenchés', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-12 16:09:22.696547+00', 'number', '2020-02-12 16:09:22.696547+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (4, 'Nombre de cantons (villages) certifiés FDAL', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-12 16:10:22.39656+00', 'number', '2020-02-12 16:10:22.39656+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (5, 'Nombre de personnes vivant dans des villages certifiés sans défécation à l''air libre (80%)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-12 16:10:57.003937+00', 'number', '2020-02-12 16:10:57.003937+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (6, 'Nombre de canton (villages) suivi post-FDAL', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-12 16:11:16.83776+00', 'number', '2020-02-12 16:11:16.83776+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (7, 'Nombre de couples mère/accompagnant-enfant admis pour le traitement de la MAS ayant reçu un kit WASH et notamment la diffusion de messages clés sur l’hygiène / conseils sur les comportements aux parents ou fournisseurs de soins (traitement de l’eau dans les ménages, lavage des mains au savon, Allaitement maternel).', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-12 16:11:41.850642+00', 'number', '2020-02-12 16:11:41.850642+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (8, 'Nombre de personnes dans les communautés de provenances des enfants MAS sensibilisées sur les pratiques WASH, Nut et Santé en lien avec la malnutrition', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-12 16:12:10.224294+00', 'number', '2020-02-12 16:12:10.224294+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (9, 'Pourcentage des couples mère/accompagnant-enfant MAS qui connaissent les méthodes de traitement de l’eau de boisson', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-12 16:12:38.335239+00', 'number', '2020-02-12 16:12:38.335239+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (10, 'Nombre d’UNT/UNA fournissant les services mimnimum WASH', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-12 16:13:05.162511+00', 'number', '2020-02-12 16:13:05.162511+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (11, 'Nombre de leaders administratifs et traditionnels ayant pris part aux rencontres d''échange et engagés pour soutenir la mise en œuvre des actions du projet', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 11:17:18.151401+00', 'number', '2020-02-17 11:17:18.151401+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (12, 'Nombre des Femmes Modèles et des RC identifiés et mis en place en réseau pour la promotion de la scolarisation et le maintien des filles à l’école', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 11:18:37.341581+00', 'number', '2020-02-17 11:18:37.341581+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (13, 'Nombre des membres des réseaux des femmes modèles et RC formés sur le genre et les techniques de communication de proximité', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 11:19:35.315548+00', 'number', '2020-02-17 11:19:35.315548+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (14, 'Nombre de causeries educatives réalisées par le réseau des femmes modèles et les RC sur l''importance de la scolarisation et le maintien des filles à l’école', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 11:20:49.11713+00', 'number', '2020-02-17 11:20:49.11713+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (15, 'Nombre de personnes sensibilisées par les causeries éducatives réalisées par le réseau des femmes modèles et les RC sur l''importance de la scolarisation et le maintien des filles à l’école', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 11:22:22.552396+00', 'number', '2020-02-17 11:22:22.552396+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (16, 'Nombre de membres des APE/AME formés sur leur rôle dans la gestion des insfrastructures scolaires', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 11:23:39.857176+00', 'number', '2020-02-17 11:23:39.857176+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (17, 'Nombre de personnes informées par le théâtre et la caravane de projection de film sur la scolarisation et le maintien des filles à l’école', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 11:36:48.351371+00', 'number', '2020-02-17 11:36:48.351371+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (18, 'Nombre de missions de suivi réalisées par la Coordination Nationale', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 12:05:16.676546+00', 'number', '2020-02-17 12:05:16.676546+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (19, 'Nombre de missions de suivi réalisées par la Coordination Provnviale', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 12:07:24.521397+00', 'number', '2020-02-17 12:07:24.521397+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (20, '% d’enseignants (ventilés par sexe) des 69 lycées utilisant les outils WASH dans les écoles avec compostante GHM', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-02-17 12:09:24.10167+00', 'percentage', '2020-02-17 12:09:24.10167+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (21, 'Pourcentage de filles dans des écoles ciblées formées sur des matériaux GHM', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-02-17 12:10:16.005405+00', 'percentage', '2020-02-17 12:10:16.005405+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (22, 'Pourcentage de clubs d''hygiène mis en place qui exécutent leurs plans d''action avec composante GHM', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-02-17 12:11:20.159409+00', 'percentage', '2020-02-17 12:11:20.159409+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (23, 'Nombre de filles dotées de kits d''hygiène', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 12:12:23.933651+00', 'number', '2020-02-17 12:12:23.933651+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (24, 'Nombre de filles adolescentes ayant participé à la journée mondiale de l’hygiène menstruelle', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 12:13:23.51453+00', 'number', '2020-02-17 12:13:23.51453+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (25, 'Pourcentage d''élèves qui pratiquent le lavage des mains avec du savon et de l''eau', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-02-17 12:14:09.501387+00', 'percentage', '2020-02-17 12:14:09.501387+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (26, 'Nombre de diagnostic participatifs réalisés', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 12:16:17.341278+00', 'number', '2020-02-17 12:16:17.341278+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (27, 'Nombre de plans d’action signés', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 12:16:56.97597+00', 'number', '2020-02-17 12:16:56.97597+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (28, 'Nombre d’enquête CAP initiale et finale en Eau, assainissement et hygiène avec composante sur la Santé et l''hygiène menstruelle réalisée', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 12:17:53.471434+00', 'number', '2020-02-17 12:17:53.471434+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (29, 'Nombre de plan de fonctionnement et d’entretien élaborés', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 12:18:39.047172+00', 'number', '2020-02-17 12:18:39.047172+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (30, 'Nombre de comité de gestion des infrastructures WASH mise en place', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 12:19:48.489781+00', 'number', '2020-02-17 12:19:48.489781+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (31, 'Nombre des leaders informés et engagés pour soutenir la mise en œuvre des actions du projet dans les provinces de Hadjer Lamis, Kanem et Barh El Gazal', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 14:15:31.264626+00', 'number', '2020-02-17 14:15:31.264626+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (32, 'Nombre des membres des associations des parents et associations des mères d''élèves formés sur leur rôle et les compétences de vie courante (Gestion de l''hygiène menstruelle, culture de la paix et évaluation des indicateurs de performance de l’école)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 14:16:32.801412+00', 'number', '2020-02-17 14:16:32.801412+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (33, 'Nombre des directeurs formés sur les compétences de vie courante (Gestion de l''hygiène menstruelle, culture de la paix et évaluation des indicateurs de performance de l’école)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 14:17:36.557956+00', 'number', '2020-02-17 14:17:36.557956+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (34, 'Nombre de réunions organisées sur l’évaluation des performances des indicateurs au niveau des écoles', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 14:18:33.622099+00', 'number', '2020-02-17 14:18:33.622099+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (35, 'Nombre de réunions organisées sur l’évaluation des performances des indicateurs au niveau des inspections departementales de l’éducation nationale (IDEN)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 14:19:31.354605+00', 'number', '2020-02-17 14:19:31.354605+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (36, 'Nombre de réunions organisées sur l’évaluation des performances des indicateurs au niveau de la délégation provinciale de Barh El Gazal', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 14:20:05.674308+00', 'number', '2020-02-17 14:20:05.674308+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (37, 'Nombre des missions de supervision de proximité réalisées', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 14:21:19.699776+00', 'number', '2020-02-17 14:21:19.699776+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (38, 'Nombre des missions conjointes de supervision entre CDVT et MENPC', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 14:22:03.305398+00', 'number', '2020-02-17 14:22:03.305398+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (39, 'Nombre d’adolescentes et jeunes filles membres de l’AGT qui ont des connaissances accrues sur les droits de l’enfant et les techniques de communication.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 15:56:14.139069+00', 'number', '2020-02-17 15:56:14.139069+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (40, 'Nombre de leaders communautaires qui s’engagent à promouvoir les droits de l’enfant.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 15:57:02.620586+00', 'number', '2020-02-17 15:57:02.620586+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (41, 'Nombre d’adolescentes et jeunes filles membres de l’AGT qui animent les débats et prennent la parole en public pour plaider /', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 15:57:35.410116+00', 'number', '2020-02-17 15:57:35.410116+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (42, 'Nombre d’adolescentes et jeunes filles membres de l’AGT qui animent les débats et prennent la parole en public pour plaider / promouvoir les droits de l’enfant.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 15:58:55.465+00', 'number', '2020-02-17 15:58:55.465+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (43, 'Nombre des adolescents et jeunes informés à travers les causeries éducatives/ dialogues communautaires et les activités de masse', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 15:59:50.598413+00', 'number', '2020-02-17 15:59:50.598413+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (44, 'Nombre des adolescentes et jeunes filles membres de l’AGT qui animent les débats et prennent la parole en public pour plaider / promouvoir les droits de l’enfant.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 16:00:30.435161+00', 'number', '2020-02-17 16:00:30.435161+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (45, 'Nombre de parents informés qui s’engagent aux cotés des Guides pour promouvoir les droits de l’enfant.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 16:01:19.233514+00', 'number', '2020-02-17 16:01:19.233514+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (46, 'Nombre des jeunes surtout des filles et femmes enrôlées sur la plateforme U-Report dans le cadre des activités des Guides.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 16:02:20.992109+00', 'number', '2020-02-17 16:02:20.992109+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (47, 'Pourcentage des jeunes filles et femmes qui participent aux sondages par an', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-02-17 16:03:12.922379+00', 'percentage', '2020-02-17 16:03:12.922379+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (48, 'Nombre d’adolescentes et jeunes filles formées en entrepreneuriat', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 16:04:01.011226+00', 'number', '2020-02-17 16:04:01.011226+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (49, 'Nombre de business plan développés et mis en œuvre par les adolescentes et jeunes filles.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 16:04:28.956578+00', 'number', '2020-02-17 16:04:28.956578+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (50, 'Nombre de missions de suivi-évaluation réalisés par le siège national et régional de l’Association des Guides du T[[schema]]', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-17 16:05:04.928117+00', 'number', '2020-02-17 16:05:04.928117+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (51, 'Nombre de personnes vivants dans des villages certifiés sans défécation à l''air libre', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 13:29:14.739184+00', 'number', '2020-02-20 13:29:14.739184+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (52, 'Nombre de personnes dans les communautés de provenances des enfants MAS sensibilisée sur les pratiques WASH, Nut et Sante en lien avec la malnutrition', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 13:34:09.066309+00', 'number', '2020-02-20 13:34:09.066309+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (53, 'Pourcentage des couples mère/accompagnant-enfant MAS qui connaissent les méthodes de traitement de l’eau de boisson', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-02-20 13:34:48.169173+00', 'percentage', '2020-02-20 13:34:48.169173+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (54, 'Nombre d’UNT/UNA équipés d’un dispositif de lavage des mains', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 13:35:19.210564+00', 'number', '2020-02-20 13:35:19.210564+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (55, 'Nombre d’agent de santé et Relais H/F formés sur la stratégie WASH In Nut', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 13:35:53.092134+00', 'number', '2020-02-20 13:35:53.092134+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (56, 'Nombre de villages certifiés FDAL', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 14:35:42.586432+00', 'number', '2020-02-20 14:35:42.586432+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (57, 'Nombre des écoles ayant construit des toilettes séparées filles-garçons', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 14:36:26.230685+00', 'number', '2020-02-20 14:36:26.230685+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (58, 'Nombre de ZR certifiés FDAL', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 14:36:57.015292+00', 'number', '2020-02-20 14:36:57.015292+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (59, 'Nombre de ménages utilisant une latrine', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 14:37:36.874577+00', 'number', '2020-02-20 14:37:36.874577+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (60, 'Nombre de personnes vivant dans des villages certifiés FDAL (44 520) (Données désagrégées par sexe, âge et handicaps)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 14:38:29.534075+00', 'number', '2020-02-20 14:38:29.534075+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (61, '% des zones touchées disposant un mécanisme d’alerte précoce fonctionnel', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 14:39:57.741791+00', 'number', '2020-02-20 14:39:57.741791+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (62, 'des zones touchées disposent d’un mécanisme d’alerte précoce fonctionnel', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-02-20 14:41:05.787113+00', 'percentage', '2020-02-20 14:41:05.787113+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (63, 'des points d’eau des villages affectés sont traités', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-02-20 14:41:51.726497+00', 'percentage', '2020-02-20 14:41:51.726497+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (64, 'de ménages des villages affectés sont sensibilisés et ont reçus des kits WASH', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-02-20 14:42:28.550448+00', 'percentage', '2020-02-20 14:42:28.550448+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (65, 'des ménages enquêtés disposent d’un taux de chlore résiduel entre 0,2 et 1 mg/l', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-02-20 14:43:05.605168+00', 'percentage', '2020-02-20 14:43:05.605168+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (66, 'des lieux publics (Marché, restaurant, etc.) des zones à risque disposent de dispositifs de lavage des mains', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-02-20 14:44:03.109265+00', 'percentage', '2020-02-20 14:44:03.109265+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (67, 'des foyers ciblés pratiquent le lavage des mains à au moins quatre (4) moments clés', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-02-20 14:44:43.47911+00', 'percentage', '2020-02-20 14:44:43.47911+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (68, 'des bénéficiaires ciblés connaissent au moins 3 pratiques essentielles liées à la prévention et au traitement précoce du choléra', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-02-20 14:45:25.603205+00', 'percentage', '2020-02-20 14:45:25.603205+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (69, 'Nombre d’enquête CAP initiale réalisée', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 16:27:24.716295+00', 'number', '2020-02-20 16:27:24.716295+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (70, 'Nombre de écoles certifiées FDAL', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 16:28:00.524156+00', 'number', '2020-02-20 16:28:00.524156+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (71, 'de ménages qui pratiquent le lavage des mains au savon', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-02-20 16:29:11.631818+00', 'percentage', '2020-02-20 16:29:11.631818+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (72, 'Nombre des groupements de femmes renforcés sur le leadership et l’organisation communautaire', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 16:30:19.553631+00', 'number', '2020-02-20 16:30:19.553631+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (73, 'Nombre de plan d’action communautaire pour l’assainissement et l’hygiene élaborés et signés par les chefs de villages', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 16:30:48.098624+00', 'number', '2020-02-20 16:30:48.098624+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (74, 'Nombre des écoles disposant des toilettes séparées filles-garçons', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 16:31:19.373743+00', 'number', '2020-02-20 16:31:19.373743+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (75, 'Nombre de canton certifiés FDAL', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 16:32:02.034278+00', 'number', '2020-02-20 16:32:02.034278+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (76, 'Nombre de personnes vivant dans les 138 villages certifiés FDAL (Données désagrégées par sexe, âge et handicaps)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 16:32:46.893555+00', 'number', '2020-02-20 16:32:46.893555+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (77, 'Nombre de maçons formés (données désagrégées par sexe)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 16:33:54.269482+00', 'number', '2020-02-20 16:33:54.269482+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (78, 'Nombre de dalles San plat pour la construction des latrines dans les écoles', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 16:34:30.349993+00', 'number', '2020-02-20 16:34:30.349993+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (79, 'Nombre de latrines familiales utilisées avec dispositifs de lavage des mains', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 16:35:13.799934+00', 'number', '2020-02-20 16:35:13.799934+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (80, 'Pourcentage des personnes (hommes, femmes, filles et garçons) qui connaissent les moments clés du lavage des mains', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-02-20 16:35:47.585886+00', 'percentage', '2020-02-20 16:35:47.585886+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (81, 'Pourcentage de personnes qui pratiquent le lavage des mains', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 16:36:20.462324+00', 'number', '2020-02-20 16:36:20.462324+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (82, 'Nombre d''enfant en âge d''aller à l''école qui connaissance les bonnes pratiques d''hygiène', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 16:36:55.775776+00', 'number', '2020-02-20 16:36:55.775776+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (83, 'Nombre d''enfants en âge d''aller à l''école qui adoptent les bonnes pratiques d''hygiène', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 16:37:56.527819+00', 'number', '2020-02-20 16:37:56.527819+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (84, 'Nombre d''établissements de santé dotés d''installations fonctionnelle pour le lavage des mains', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 16:38:37.833763+00', 'number', '2020-02-20 16:38:37.833763+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (85, 'Nombre d’enseignants (désagrégés par sexe) des 32 écoles ciblées formés à l’utilisation boîtes à image des bonnes pratiques d’hygiène et la puberté', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 16:39:23.101118+00', 'number', '2020-02-20 16:39:23.101118+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (86, 'des 32 écoles ciblées qui utilisent les outils de la stratégie EAHMS à partir de CE1', NULL, NULL, NULL, false, 'percentage', 'sum', 'sum', '2020-02-20 16:40:01.269139+00', 'percentage', '2020-02-20 16:40:01.269139+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (89, 'Nombre d’enquête CAP finale réalisée', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 16:43:14.373845+00', 'number', '2020-02-20 16:43:14.373845+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (87, 'Nombre de clubs d’hygiène mis en place et exécutant leurs plans d’activités', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 16:40:42.421422+00', 'number', '2020-02-20 16:40:42.421422+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (88, 'Nombre de jeunes filles adolescentes ayant reçu des kits et une formation sur l’utilisation de ces kits', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 16:42:15.950153+00', 'number', '2020-02-20 16:42:15.950153+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (90, 'Pourcentage de villages qui maintiennent leur statut FDAL 3 mois après', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 16:43:50.79379+00', 'number', '2020-02-20 16:43:50.79379+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (91, 'Nombre de plan d’action post FDAL élaboré et suivi', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-02-20 16:44:21.192356+00', 'number', '2020-02-20 16:44:21.192356+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (92, 'Nombre des membres de mécanismes communautaires de protection et les APE et AME formés sur la coordination, les droits et protection de l’enfant.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-03-04 16:44:43.712289+00', 'number', '2020-03-04 16:44:43.712289+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (93, 'Nombre des Espaces Amis des Enfants mis en place', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-03-04 16:45:56.249188+00', 'number', '2020-03-04 16:45:56.249188+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (94, 'Nombre des enfants bénéficiant du soutien psychosocial dans les EAE', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-03-04 16:47:34.005075+00', 'number', '2020-03-04 16:47:34.005075+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (95, 'Nombre d’enfants mouhadjirines identifiés et réintégrés dans les familles.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-03-04 16:48:47.267065+00', 'number', '2020-03-04 16:48:47.267065+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (96, 'Nombre de filles et garcons beneficiant d’un appui psychosocial', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-03-06 14:17:16.947292+00', 'number', '2020-03-06 14:17:16.947292+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (97, 'Nombre des animateurs/superviseurs/auxiliaires formés sur l’appui psychosocial, la protection de l’enfant et la gestion des dossiers des ENA/ES', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-03-06 14:19:27.371202+00', 'number', '2020-03-06 14:19:27.371202+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (98, 'Nombre de filles et garcons bénéficiant d’un acte de naissance', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-03-06 14:29:35.304636+00', 'number', '2020-03-06 14:29:35.304636+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (99, 'Nombre d’enfants de moins de 5 ans admis pour le traitement de la MAS ayant reçu un kit WASH (savon et produit de traitement de l''eau) et dont l’accompagnant a reçu les messages clés sur les bonnes pratiques d''hygiène.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 10:41:01.117749+00', 'number', '2020-04-02 10:41:01.117749+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (100, 'Nombre de centres de nutrition fournissant les services minimum WASH (lavage des mains, eau traitée, message sur les comportement hygiénique)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 10:42:14.419261+00', 'number', '2020-04-02 10:42:14.419261+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (101, 'Nombre de personnes dans les communautés de provenances des MAS sensibilisées sur les pratiques WASH, Nut et Sante en lien avec la malnutrition', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 10:44:10.026742+00', 'number', '2020-04-02 10:44:10.026742+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (102, 'Pourcentage des couples/mère/accompagnant-enfant MAS qui connaissent les méthodes de traitement de l’eau de boisson', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 10:45:18.97238+00', 'number', '2020-04-02 10:45:18.97238+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (103, '% d’Agents de Santé Communautaire opérationnels ayant reçu au moins une supervision individuelle et une supervision collective par mois', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 17:47:15.96444+00', 'number', '2020-04-02 17:47:15.96444+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (104, '# de la population cible (enfants < 5 ans) enregistres et referer par les Agent de Santé Communautaire y compris durant la recherche active des enfants malades dans la communauté 8000 enfants par mois', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 17:51:58.273442+00', 'number', '2020-04-02 17:51:58.273442+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (105, '# d’Agent de Santé Communautaire ayant enregistré des ruptures de stock de Test de Diagnostic Rapide, ACT(combinaison thérapeutique à base d''artémisinine), Amoxicilline, SRO, sulfate de Zinc, paracétamol de plus d’une semaine', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 17:58:12.437665+00', 'number', '2020-04-02 17:58:12.437665+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (106, '% de patients dépistés à l’aide d’un Test de Diagnostic Rapide avant de recevoir un traitement ACT ( combinaison thérapeutique à base d''artémisinine)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 18:00:16.089073+00', 'number', '2020-04-02 18:00:16.089073+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (107, 'Nombre d’enfants de moins de 5 ans traités pour le paludisme au niveau communautaire', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 18:04:38.82639+00', 'number', '2020-04-02 18:04:38.82639+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (108, 'Nombre d’enfants de moins de 5 ans traités pour les infections respiratoires au niveau communautaire', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 18:06:23.292248+00', 'number', '2020-04-02 18:06:23.292248+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (109, 'Nombre d’enfants de moins de 5 ans traités pour une diarrhée aigue au niveau communautaire', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 18:08:40.402581+00', 'number', '2020-04-02 18:08:40.402581+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (110, 'Nombre d''ASC recyclés d pour la sensibilisation à la PCIME-C / PEC-C durant la Supervision collective', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 18:10:50.531718+00', 'number', '2020-04-02 18:10:50.531718+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (111, '# de séances de sensibilisation effectuées par chaque ASC par mois (le minimum 2)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 18:17:43.743829+00', 'number', '2020-04-02 18:17:43.743829+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (112, 'Nombre d’agents de santé formés à la promotion de l’ANJE', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 18:19:48.380528+00', 'number', '2020-04-02 18:19:48.380528+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (113, '# de femmes formées pour le programme ANJE (alimentation du nourrisson et du jeune enfant)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 18:20:39.685457+00', 'number', '2020-04-02 18:20:39.685457+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (114, '# de personnel technique dans les centres de santé participant au programme UNICEF IHAB (Initiative des hôpitaux amis des bébés)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 18:21:30.919846+00', 'number', '2020-04-02 18:21:30.919846+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (115, '# de mères / tuteurs ciblés (ventilé par: femmes enceintes, mères d''enfants de 0 à 24 mois)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 18:23:00.187555+00', 'number', '2020-04-02 18:23:00.187555+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (116, 'Nombre et % de femmes enceinte qui recoivent des messages de IEC sur l’importance d’un accouchement en toute securite et des visites de soins prenatales', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 18:26:18.056315+00', 'number', '2020-04-02 18:26:18.056315+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (117, 'Nombre d’enfants de moins de 6 à 59 mois dépistés pour la malnutrition aigüe au niveau communautaire', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 18:43:41.618906+00', 'number', '2020-04-02 18:43:41.618906+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (118, 'Nombre d’enfants de 6 à 59 mois dépistés et référés pour le traitement de la malnutrition aiguë sévère', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 18:45:17.147887+00', 'number', '2020-04-02 18:45:17.147887+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (119, '# des ASC qui répondent correctement à au moins 80% des questions posées lors des t post-tests formations', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 18:50:30.203343+00', 'number', '2020-04-02 18:50:30.203343+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (120, '% d’ASC qui prennent en charge les enfants malades selon le protocole national et qui soumettent les rapports épidémiologiques mensuels dans les délais prévus', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 18:51:11.286756+00', 'number', '2020-04-02 18:51:11.286756+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (121, '# de séances de supervision avec la participation active de représentants du MSP /RCS', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 18:52:02.09857+00', 'number', '2020-04-02 18:52:02.09857+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (122, '# de réunions entre MENTOR GF WB UN et le MSP du T[[schema]]', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 18:52:58.038934+00', 'number', '2020-04-02 18:52:58.038934+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (123, '# de réunions entre les responsables du MSP de la RCA et du T[[schema]]', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 18:53:41.744049+00', 'number', '2020-04-02 18:53:41.744049+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (124, '# de réunions entre le MSP du T[[schema]] et MENTOR à propos des données de surveillance des maladies', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 18:54:32.1764+00', 'number', '2020-04-02 18:54:32.1764+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (125, 'Séances de soutien MENTOR pour le MSP du T[[schema]]', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-02 18:55:16.023884+00', 'number', '2020-04-02 18:55:16.023884+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (126, 'Nombre de personnes formées sur la mise en œuvre des résolutions 1325 et 2250', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 18:27:01.259021+00', 'number', '2020-04-06 18:27:01.259021+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (127, 'Nombre de plans d’action nationaux élaborés pour la mise en œuvre des résolutions 1325 et 2250', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 18:28:09.679124+00', 'number', '2020-04-06 18:28:09.679124+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (128, 'Nombre des "Cafés Genre” organisés en vue du plaidoyer pour l''engagement des autorités à la mise en œuvre des résolutions 1325 et 2250.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 18:42:26.935724+00', 'number', '2020-04-06 18:42:26.935724+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (145, 'Proportion des structures SONUB', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-15 19:21:01.317633+00', 'number', '2020-04-15 19:21:01.317633+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (129, 'Nombre de leaders (communautaires, mouvements et organisations des femmes et des jeunes) formés en plaidoyer public et sur le rôle des associations locales en vue de leur participation croissante dans les processus et instances de gouvernance locale', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 18:43:39.315051+00', 'number', '2020-04-06 18:43:39.315051+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (130, 'Nombre de réunions de plaidoyer organisés auprès des leaders traditionnels pour l’inclusion des adolescents et jeunes femmes et hommes, et déplacés internes aux mécanismes de gouvernance locale à N’Djamena, au Lac et à Moundou', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 18:49:56.299722+00', 'number', '2020-04-06 18:49:56.299722+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (131, 'Nombre des leaders administratifs, communautaires et religieux informés et engagés pour l’inclusion des jeunes et des femmes aux mécanismes de gouvernance locale', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 18:50:44.027298+00', 'number', '2020-04-06 18:50:44.027298+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (132, 'Nombre de dialogues communautaires organisés auprès des leaders communautaires et des responsables des associations de jeunes et de femmes pour l’inclusion des adolescents, jeunes femmes et hommes, et déplacés internes aux mécanismes de gouvernance locale à N’Djamena, au Lac et à Moundou (débats intergénérationnels sur l''égalité du genre, la consolidation de la paix, la participation citoyenne et le leadership)', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 18:51:33.094829+00', 'number', '2020-04-06 18:51:33.094829+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (133, 'Nombres des leaders administratifs, communautaires, religieux et des adolescents, des jeunes hommes et des femmes ayant pris aux dialogues interrelationnels', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 18:52:16.950005+00', 'number', '2020-04-06 18:52:16.950005+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (134, 'Nombre de Promoteurs de la Paix au niveau Communautaire (PPC) et de superviseurs formés sur les techniques de communication de proximité, l’égalité du genre et la participation citoyenne', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 18:53:15.393885+00', 'number', '2020-04-06 18:53:15.393885+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (135, 'Nombre de reportages produits et diffusés sur l''égalité du genre, la consolidation de la paix, la participation citoyenne et le leadership produits par les JRC', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 19:07:22.294952+00', 'number', '2020-04-06 19:07:22.294952+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (136, 'Nombre de causeries réalisées par les PPC sur l''égalité du genre, la consolidation de la paix et la participation citoyenne à Bol, Bagassola, Liwa, Moundou et N’Djamena', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 19:13:55.239662+00', 'number', '2020-04-06 19:13:55.239662+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (137, 'Nombres des personnes sensibilisées à travers les causeries éducatives sur la cohabitation pacifique et la culture de la paix', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 19:14:44.34291+00', 'number', '2020-04-06 19:14:44.34291+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (138, 'Nombre de membres des associations des parents d’élèves (APE/AME) formés sur les principes de coexistence pacifique et de justice à promouvoir dans la famille et appuyer le travail de enseignants des écoles couvertes par le projet', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 19:15:37.01827+00', 'number', '2020-04-06 19:15:37.01827+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (139, 'Nombre des artisans locaux recyclés en couture, maçonnerie, pêche, mécanique, menuiserie, soudure et culture maraichère', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 19:16:21.162555+00', 'number', '2020-04-06 19:16:21.162555+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (140, 'Nombre de jeunes, dont 60% des femmes, formés aux métiers (couture, maçonnerie, pêche, mécanique, menuiserie, soudure et culture maraichère) pour leur insertion socio-économique à Bol et Moundou', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 19:17:54.963813+00', 'number', '2020-04-06 19:17:54.963813+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (141, 'Nombre de membres des associations des jeunes, des femmes et les apprenants des petits métiers formés et appuyés en AGR à Bol, Bagassola, Liwa, Moundou et N’Djamena', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 19:18:49.774751+00', 'number', '2020-04-06 19:18:49.774751+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (142, 'Nombre de supervisions de formation des jeunes hors systèmes scolaires par la CELIAF, DAFNF, DPSF', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 19:19:53.182807+00', 'number', '2020-04-06 19:19:53.182807+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (143, 'Nombre de réunion bimensuelle de coordination sur l’évaluation des jeunes en formation', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-06 19:21:09.676525+00', 'number', '2020-04-06 19:21:09.676525+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (144, 'Nombre de mois sans rupture de stock de Penta, Polio (VPO et VPI) et Td/TT au niveau des districts', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-15 19:20:34.283189+00', 'number', '2020-04-15 19:20:34.283189+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (146, 'Nombre de personnes (hommes, femmes et enfants) affectées par les crises ayant reçu l’accès à l’eau potable en quantité suffisante selon les standard de 15 L/pers/Jr ainsi que la promotion a l''hygiene', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-16 10:29:51.48559+00', 'number', '2020-04-16 10:29:51.48559+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (147, 'Nombre de personnes (hommes, femmes et enfants) affectées par la crise avec mouvement de population qui a acces a des latrines selon les normes et standards du cluster WASH.', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-16 10:30:28.348538+00', 'number', '2020-04-16 10:30:28.348538+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (148, 'Nombre de personnes sensibilisees sur la prevention de COVID19', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-16 10:31:01.878545+00', 'number', '2020-04-16 10:31:01.878545+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (149, 'Nombre de centre de sante/lieu publique equipee en dispositif de lavage des mains et poste d’eau potable', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-16 10:32:18.203878+00', 'number', '2020-04-16 10:32:18.203878+00'); +INSERT INTO [[schema]].reports_indicatorblueprint VALUES (150, 'Nombre de latrines familiales construites receptionnées est opérationelles', NULL, NULL, NULL, false, 'number', 'sum', 'sum', '2020-04-16 10:32:54.096885+00', 'number', '2020-04-16 10:32:54.096885+00'); -- -- Data for Name: reports_lowerresult; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- +INSERT INTO [[schema]].reports_lowerresult VALUES (1, 'Extrant 1 : D’ici 09 février 2020, 90 000 personnes de 200 villages des provinces Ouaddaï (canton Gueri), Sila (districts Goz-beda et Koukou) et Wadi Fira (Guereda et Biltine) vivent dans un environnement assaini avec un accès durable à l’eau potable et des ouvrages d’assainissement et adoptent une bonne pratique d’hygiène', '6-1', 3, '2020-02-12 16:05:16.912948+00', '2020-02-12 16:05:16.912948+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (2, 'Extrant 2 : D’ici le 09 février 2020, 20 000 couples mères enfants malnutris dans les provinces de Ouaddaï, Sila (Koukou et Goz-beda) et Wadi Fira (Guereda et Biltine) ont reçu un paquet d’intervention WASH in Nut', '6-1', 4, '2020-02-12 16:05:37.90508+00', '2020-02-12 16:05:37.90508+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (3, 'Extrant 1 : (Doc. Programme) D''ici fin janvier 2021, 100 cadres des niveaux central et déconcentré ont acquis une connaissance et une capacité accrues pour pouvoir fournir aux filles et aux jeunes femmes des services sociaux de base améliorés (éducation, santé, profession)', '7-1', 5, '2020-02-17 11:16:12.775984+00', '2020-02-17 11:16:12.775984+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (4, 'Extrant 1 : (Doc. Programme) D''ici fin janvier 2021, 100 cadres des niveaux central et déconcentré ont acquis une connaissance et une capacité accrues pour pouvoir fournir aux filles et aux jeunes femmes des services sociaux de base améliorés (éducation, santé, profession)', '7-1', 6, '2020-02-17 11:24:44.082574+00', '2020-02-17 11:25:28.830277+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (5, 'Extrant 1 : (Doc. Programme) D''ici fin janvier 2021, 100 cadres des niveaux central et déconcentré ont acquis une connaissance et une capacité accrues pour pouvoir fournir aux filles et aux jeunes femmes des services sociaux de base améliorés (éducation, santé, profession)', '7-1', 7, '2020-02-17 11:32:19.292997+00', '2020-02-17 11:32:19.292997+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (6, 'Extrant 2 : (Doc Programme) D''ici fin janvier 2021, 12 600 parents ont une meilleure connaissance de l’importance de l’éducation des filles et inscrivent leurs enfants âgés de 10 à 24 ans', '7-4', 5, '2020-02-17 11:35:54.597335+00', '2020-02-17 11:35:54.597335+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (7, 'Extrant 2 : (Doc Programme) D''ici fin janvier 2021, 12 600 parents ont une meilleure connaissance de l’importance de l’éducation des filles et inscrivent leurs enfants âgés de 10 à 24 ans', '7-5', 6, '2020-02-17 11:37:20.558442+00', '2020-02-17 11:37:20.558442+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (8, 'Extrant 3 : (Doc Programme) D’ici fin Juin 2020, 35 écoles de Hadjer Lamis et du Ouaddaï ont des capacités accrues pour développer leurs plans d''actions et gérer les infrastructures WASH', '7-1', 8, '2020-02-17 11:38:53.525155+00', '2020-02-17 11:43:36.803727+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (9, 'Extrant 4 : (Doc Programme) D’ici à fin Juin 2020, les élèves et les enseignants ont renforcé leurs connaissances dans l’hygiène en milieu scolaire incluant la gestion de l''hygiène menstruelle et pratiquent le lavage des mains au savon', '7-1', 9, '2020-02-17 11:44:08.524811+00', '2020-02-17 11:44:08.524811+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (10, 'Extrant 5 : (Doc Programme) Monitoring et évaluation du programme', '7-10', 9, '2020-02-17 11:44:22.951214+00', '2020-02-17 11:44:22.951214+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (11, 'Extrant 1 : Document de Programme D''ici fin septembre 2020 les leaders communautaires, les membres des associations des parents d’élèves ont des capacités renforcées sur les compétences de vie courante et leurs rôles dans la gestion de l''école', '8-1', 10, '2020-02-17 14:14:17.145192+00', '2020-02-17 14:14:17.145192+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (12, 'Extrant 2 : Document de Programme D’ici fin septembre 2020, le mécanisme de suivi des indicateurs de performance de 89 sur les 117 écoles couvertes est renforcé', '8-1', 11, '2020-02-17 14:14:39.034561+00', '2020-02-17 14:14:39.034561+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (13, 'Extrant 1 du programme : D’ici fin septembre 2019, les adolescentes et jeunes filles membres de l’AGT ont des capacités et compétences accrues pour promouvoir les droits de l’enfant et les Pratiques Familiales Essentielles.', '10-1', 13, '2020-02-17 15:54:22.866551+00', '2020-02-17 15:54:22.866551+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (14, 'Extrant 2 du programme : D’ici fin septembre 2019, les adolescentes et jeunes filles des communautés cibles ont une connaissance accrue des droits de l’enfant et des Pratiques Familiales Essentielles et s’engagent à les promouvoir.', '10-14', 13, '2020-02-17 15:54:54.149374+00', '2020-02-17 15:54:54.149374+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (15, 'Extrant 3 du programme : D’ici fin septembre 2019, les adolescentes et jeunes filles ont une connaissance accrue de l’entrepreneuriat et développent des activités génératrices de revenus.', '10-15', 13, '2020-02-17 15:55:06.571264+00', '2020-02-17 15:55:06.571264+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (16, 'Extrant 4 du programme : Gestion efficace et efficiente du programme', '10-16', 13, '2020-02-17 15:55:25.98476+00', '2020-02-17 15:55:25.98476+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (17, 'Extrant1 : D’ici à fin avril 2020, les enfants malnutris aigue sévère dans les provinces du Kanem et Bahr El Ghazel ont reçu un paquet d’intervention WASH in Nut, notamment, les kits, les messages de promotion des bonnes pratiques et les services d’hygiène au niveau des centres nutritionnels.', '12-1', 17, '2020-02-20 13:21:51.342631+00', '2020-02-20 13:21:51.342631+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (18, 'Extrant 2 : D’ici à fin avril 2020, les communautés (villages) autours des centres de santé dans les provinces de Bah El Ghazal et du Kanem ont des capacités accrues pour améliorer leur situation en matière d''assainissement et d''hygiène à travers l’approche ATPC', '12-1', 16, '2020-02-20 13:22:06.573581+00', '2020-02-20 13:22:06.573581+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (19, 'R3.1 : 37 villages issus de (2) zones de responsabilité Mbraou et Youé dans la Province du MKE sont certifiés FDAL', '13-1', 18, '2020-02-20 14:33:31.578585+00', '2020-02-20 14:33:31.578585+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (20, 'R1.1 : La surveillance épidémiologique dans les zones touchées et environs est assurée pour contenir l’épidémie de choléra et permettre l’alerte précoce en cas de détection de nouveaux foyers épidémiques', '13-1', 19, '2020-02-20 14:34:22.252167+00', '2020-02-20 14:34:22.252167+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (21, 'R1.2 :Les services d’eau, d’assainissement et d’hygiène sont fournis dans les communautés touchées et dans les lieux publics', '13-21', 19, '2020-02-20 14:34:42.183652+00', '2020-02-20 14:34:42.183652+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (22, 'R2.1 : L’environnement et les comportements en matière d''Eau d’Hygiène et d’assainissement des populations des zones à risques de choléra sont améliorées au niveau familial, communautaire et dans les lieux publics', '13-22', 19, '2020-02-20 14:34:53.955954+00', '2020-02-20 14:34:53.955954+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (23, 'Extrant 1 : D''ici à fin Mai 2020, le canton de Moito de la Province de Hadjer Lamis est certifié FDAL', '14-1', 20, '2020-02-20 16:21:10.166487+00', '2020-02-20 16:21:10.166487+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (24, 'Extrant 2 : Dici à la fin Octobre 2020, 106, 378 personnes additionnelles du canton de Moito dans la province d''Hadjer Lamis vivent dans un environnement assaini et pratiquent le lavage des mains au savon (LMS)', '14-24', 20, '2020-02-20 16:23:43.201677+00', '2020-02-20 16:23:43.201677+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (25, 'Extrant 3 : D''ici à fin Mai 2020, les capacités de 117 écoles et 96 centres de santé sont renforcées dans la pratique du lavage des mains au savon (LMS) et la Gestion de l''hygiène menstruelle (GHM)', '14-25', 20, '2020-02-20 16:25:51.191706+00', '2020-02-20 16:25:51.191706+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (26, 'Extrant 4 : D''ici à fin Décembre 2020 , 138 villages et 32 écoles du canton de Moito maintiennent leur statut FDAL', '14-1', 21, '2020-02-20 16:26:36.043646+00', '2020-02-20 16:26:36.043646+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (27, '120 membres des mécanismes communautaires formés sur les droits et protection de l’enfant ;', '16-1', 23, '2020-03-04 16:42:08.810992+00', '2020-03-04 16:42:08.810992+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (28, '4 Espaces Amis des Enfants mis en place', '16-28', 23, '2020-03-04 16:45:11.687268+00', '2020-03-04 16:45:11.687268+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (29, '1 000 enfants bénéficient d’une prise en charge psychosociale', '16-29', 23, '2020-03-04 16:46:45.617858+00', '2020-03-04 16:46:45.617858+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (30, '600 enfants identifiés et réunifiés avec leurs familles', '16-30', 23, '2020-03-04 16:47:49.546092+00', '2020-03-04 16:47:49.546092+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (34, 'D’ici juillet 2020, 2,000 enfants MAS (1,040f et 960g) dans les provinces du Lac ont reçu un paquet d’intervention WASH in Nut au niveau communautaire et au niveau des UNA/UNT (kits minimum WASH in Nut et Sensibilisation sur les pratique WASH et Nut)', '19-1', 26, '2020-04-02 10:11:50.960871+00', '2020-04-02 10:11:50.960871+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (31, 'Resultat 1 : Les filles et garcons beneficient d’un appui psychosocial renforcé à travers la mise en place de 6 EAE offrant des activités récréatives et ludiques', '18-1', 24, '2020-03-06 14:14:31.726546+00', '2020-03-06 14:15:16.220001+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (32, 'Résultat 2: Les capacités des acteurs de protection sur l’enregistrement, la Recherche, prise en charge temporaire et Réunification familiale sont renforcées', '18-32', 24, '2020-03-06 14:14:54.161016+00', '2020-03-06 14:15:34.553195+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (33, 'Résultat 3 :Renforcer l’accès des enfants extrêmement vulnérables à une identité et un enregistrement afin de permettre l’accès aux services de base', '18-33', 24, '2020-03-06 14:15:50.33692+00', '2020-03-06 14:15:50.33692+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (35, 'À la fin de Décembre 2020, les enfants de moins de 5 ans dans les villages ciblés ont un accès accru aux soins curatifs pour le paludisme simple, les infections respiratoires aiguës, le dépistage / la gestion de la diarrhée, malnutrition.', '21-1', 27, '2020-04-02 17:44:48.467884+00', '2020-04-02 17:44:48.467884+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (36, 'À la fin de Décembre 2020, les enfants de moins de 5 ans dans les villages ciblés ont un accès accru aux soins curatifs pour le paludisme simple, les infections respiratoires aiguës, le dépistage / la gestion de la diarrhée, malnutrition.', '21-36', 27, '2020-04-02 18:01:56.66168+00', '2020-04-02 18:01:56.66168+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (38, 'Extrant 3 du programme : Les communautés et les services sanitaires représentant le Ministère de la Santé Publique s''impliquent dans le programme de santé communautaire assurant ainsi sa pérennité', '21-38', 27, '2020-04-02 18:47:04.490548+00', '2020-04-02 18:47:04.490548+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (37, 'Extrant 2 du programme : D’ici fin Décembr e 2020, les populations des villages ciblés adoptent des comportements axés davantage sur les pratiques préventives et le recours à temps aux soins de qualité', '21-37', 27, '2020-04-02 18:09:51.354543+00', '2020-04-02 18:47:35.03483+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (39, 'D''ici fin mais 2021 les plans d''action pour la mise en œuvre des résolutions 1325 et 2250 sont élaborés et vulgarisés à Ndjamena, à Moundou et dans la province du Lac T[[schema]].', '22-1', 28, '2020-04-06 09:49:25.002843+00', '2020-04-06 09:49:25.002843+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (40, 'Extrant 2 : (Doc Programme) D''ici fin mai 2021 la gouvernance locale, l’Etat de droit et la cohésion sociale est améliorée à N’Djamena, Moundou et dans la région du Lac par des instances de dialogues communautaires qui fonctionnent de manière participative, inclusive et dans le respect de l’équité et des droits fondamentaux de l’homme.', '22-1', 30, '2020-04-06 18:48:32.384771+00', '2020-04-06 18:48:32.384771+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (41, 'Extrant 3 : (Doc Programme) D''ici fin mai 2021 les acteurs locaux, les jeunes femmes et des hommes, les femmes ont des compétences accrues pour promouvoir un dialogue constructif, une participation inclusive aux mécanismes de gouvernance locale, de prévention et de résolution de conflits, s''intègrent davantage et affirment leur leadership dans leur communauté', '22-1', 32, '2020-04-06 19:06:18.310378+00', '2020-04-06 19:06:18.310378+00'); +INSERT INTO [[schema]].reports_lowerresult VALUES (43, 'Produit 4.4: Le MSP, MH et les partenaires de WASH y compris les ONG des zones ciblées ont les capacités accrues de préparation et de réponse à des urgences en matière d’installation, d’approvisionnement en eau potable d’hygiène et d’assainissement', '25-1', 36, '2020-04-16 10:28:02.277474+00', '2020-04-16 10:28:39.883807+00'); -- @@ -15584,59 +17925,57 @@ INSERT INTO [[schema]].reports_office VALUES (387, 'N''Djamena'); -- Data for Name: reports_result; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].reports_result VALUES (80, 'Result80', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/882/004/003', '', '101', 'Institutional Strengthening of National Systems', '21-05-02', 'Capacity building for nutrition preparedness and response', '2', '2 Supply', false, false, 11, 12, 2, 2, 73, 54, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (8, 'Result8', '24', '2017-01-01', '2021-12-31', false, '0810/A0/05/884', '', '', '', '', '', '', '', false, false, 1, 40, 8, 0, 73, NULL, 1, NULL, '2018-03-15 16:11:11.815503+00', '2019-10-16 00:14:38.244233+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (153, 'Result153', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/886/003/002', '', '101', 'Institutional Strengthening of National Systems', '23-01-99', 'Technical assistance - Prevention and response services forviolence against children', '1', '1 Enabling Environment', false, false, 13, 14, 6, 2, 73, 49, 3, NULL, '2018-04-01 00:04:56.059354+00', '2018-11-17 00:01:58.55467+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (152, 'Result152', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/886/003/003', '', '106', 'Planning and Monitoring', '23-03-06', 'Justice, birth registration/CRVS, and alternative care - surveys (e.g. KAP, VACS), data analysis/research/evaluation evidence generation, synthesis, and use', '1', '1 Enabling Environment', false, false, 11, 12, 6, 2, 73, 49, 3, NULL, '2018-04-01 00:04:56.015764+00', '2018-11-17 00:01:58.594622+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (133, 'Result133', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/884/001/003', '', '102', 'Social/behavioural change communication and community engagement', '24-02-04', 'Sanitation and hygiene - eliminating open defecation in rural communities', '3', '3 Demand', false, false, 33, 34, 8, 2, 73, 41, 3, NULL, '2018-04-01 00:04:55.04553+00', '2018-11-17 00:01:58.600295+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (30, 'Result30', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/885/004', '', '', '', '', '', '', '', false, false, 24, 37, 9, 1, 73, 9, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.946501+00', '3', 'PRINCIPAL'); -INSERT INTO [[schema]].reports_result VALUES (36, 'Result36', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/887/001', '', '', '', '', '', '', '', false, false, 24, 25, 7, 1, 73, 7, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:42.034306+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (13, 'Result13', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/887/002', '', '', '', '', '', '', '', false, false, 2, 9, 7, 1, 73, 7, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:42.041298+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (14, 'Result14', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/887/003', '', '', '', '', '', '', '', false, false, 10, 17, 7, 1, 73, 7, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:42.052736+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (15, 'Result15', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/887/004', '', '', '', '', '', '', '', false, false, 18, 21, 7, 1, 73, 7, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:42.063852+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (16, 'Result16', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/887/005', '', '', '', '', '', '', '', false, false, 22, 23, 7, 1, 73, 7, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:42.074942+00', '0', 'NONE'); -INSERT INTO [[schema]].reports_result VALUES (161, 'Result161', '', '2017-01-02', '2018-12-31', true, '0810/A0/05/885/001/006', '', '102', 'Social/behavioural change communication and community engagement', '21-08-03', 'ECD advocacy and communication including campaigns', '3', '3 Demand', false, false, 19, 20, 9, 2, 73, 20, 3, NULL, '2018-04-01 00:04:56.457821+00', '2019-11-12 15:01:47.83169+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (6, 'Result6', '23', '2017-01-01', '2021-12-31', false, '0810/A0/05/886', '', '', '', '', '', '', '', false, false, 1, 44, 6, 0, 73, NULL, 1, NULL, '2018-03-15 16:11:11.815503+00', '2018-11-19 00:01:52.161765+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (73, 'Result73', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/886/004/007', '', '101', 'Institutional Strengthening of National Systems', '23-01-12', 'MRM - Child protection monitoring and reporting of grave violations in armed conflict (Security Council Resolutions 1612, 1882, 1888 and 1960)', '5', '5 Quality', false, false, 39, 40, 6, 2, 73, 52, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-11-17 00:01:58.423949+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (3, 'Result3', '21', '2017-01-01', '2021-12-31', false, '0810/A0/05/883', '', '', '', '', '', '', '', false, false, 1, 22, 3, 0, 73, NULL, 1, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:18.957955+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (167, 'Result167', NULL, '2017-01-02', '2021-12-31', true, '0810/A0/05/886/003/001', NULL, '101', 'Institutional Strengthening of National Systems', '23-01-05', 'Social welfare workforce systems strengthening (accreditation, staffing and supervision)', '1', '1 Enabling Environment', false, false, 15, 16, 6, 2, 73, 49, 3, NULL, '2018-07-08 00:01:33.715787+00', '2018-07-08 00:01:33.730248+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (69, 'Result69', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/886/004/003', '', '104', 'Service delivery (including delivery of essential services)', '23-01-03', 'Services to prevent or respond to gender-based violence in emergencies', '5', '5 Quality', false, false, 35, 36, 6, 2, 73, 52, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-07-08 00:01:33.59068+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (62, 'Result62', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/886/004/006', '', '104', 'Service delivery (including delivery of essential services)', '23-01-10', 'Children associated with armed forces and armed groups - prevention and response', '5', '5 Quality', false, false, 29, 30, 6, 2, 73, 52, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-07-08 00:01:33.596922+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (125, 'Result125', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/886/004/005', '', '104', 'Service delivery (including delivery of essential services)', '23-01-08', 'Family reunification in emergencies - prevention and response', '5', '5 Quality', false, false, 41, 42, 6, 2, 73, 52, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-07-08 00:01:33.614711+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (67, 'Result67', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/886/004/008', '', '101', 'Institutional Strengthening of National Systems', '23-01-11', 'Landmines and explosive weapons - prevention and assistance', '6', '6 Management/Operations', false, false, 31, 32, 6, 2, 73, 52, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-07-08 00:01:33.633061+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (23, 'Result23', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/880/004', '', '', '', '', '', '', '', false, false, 44, 61, 4, 1, 73, 4, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-04-03 00:03:55.056785+00', '1', 'MARGINAL'); +INSERT INTO [[schema]].reports_result VALUES (6, 'Result6', '23', '2017-01-01', '2021-12-31', false, '0810/A0/05/886', '', '', '', '', '', '', '', false, false, 1, 44, 6, 0, 73, NULL, 1, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:18.984086+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (70, 'Result70', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/886/004/004', '', '104', 'Service delivery (including delivery of essential services)', '23-01-04', 'Psycho-social support in emergencies', '5', '5 Quality', false, false, 37, 38, 6, 2, 73, 52, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (165, 'Result165', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/883/001/002', '', '201', 'Advocacy and public engagement', '21-07-13', 'Social protection measures in support of HIV-AIDS prevention', '3', '3 Demand', false, false, 15, 16, 3, 2, 73, 45, 3, NULL, '2018-04-01 00:04:56.654957+00', '2018-04-01 00:04:56.67246+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (3, 'Result3', '21', '2017-01-01', '2021-12-31', false, '0810/A0/05/883', '', '', '', '', '', '', '', false, false, 1, 22, 3, 0, 73, NULL, 1, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (4, 'Result4', '26', '2017-01-01', '2021-12-31', false, '0810/A0/05/880', '', '', '', '', '', '', '', false, false, 1, 66, 4, 0, 73, NULL, 1, NULL, '2018-03-15 16:11:11.815503+00', '2020-04-21 01:10:24.308225+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (46, 'Result46', '', '2017-01-02', '2021-12-31', false, '0810/A0/05/883/002', '', '', '', '', '', '', '', false, false, 18, 19, 3, 1, 73, 3, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.102196+00', '1', 'MARGINAL'); +INSERT INTO [[schema]].reports_result VALUES (43, 'Result43', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/883/005', '', '', '', '', '', '', '', false, false, 6, 11, 3, 1, 73, 3, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.118709+00', '3', 'PRINCIPAL'); +INSERT INTO [[schema]].reports_result VALUES (44, 'Result44', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/883/006', '', '', '', '', '', '', '', false, false, 12, 13, 3, 1, 73, 3, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.125975+00', '0', 'NONE'); +INSERT INTO [[schema]].reports_result VALUES (45, 'Result45', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/883/001', '', '', '', '', '', '', '', false, false, 14, 17, 3, 1, 73, 3, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-10 00:48:25.230208+00', '1', 'MARGINAL'); INSERT INTO [[schema]].reports_result VALUES (169, 'Result169', NULL, '2017-01-01', '2021-12-31', true, '0810/A0/05/880/004/008', NULL, '802', 'Operating costs - staff', '26-03-99', 'Technical assistance - Cross - sectoral communication for development', '1', '1 Enabling Environment', false, false, 59, 60, 4, 2, 73, 23, 3, NULL, '2018-07-08 00:01:33.785362+00', '2018-11-16 00:01:59.205884+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (4, 'Result4', '26', '2017-01-01', '2021-12-31', false, '0810/A0/05/880', '', '', '', '', '', '', '', false, false, 1, 62, 4, 0, 73, NULL, 1, NULL, '2018-03-15 16:11:11.815503+00', '2019-11-14 00:06:25.490416+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (168, 'Result168', NULL, '2017-01-02', '2021-12-31', true, '0810/A0/05/886/003/004', NULL, '104', 'Service delivery (including delivery of essential services)', '23-01-04', 'Psycho-social support in emergencies', '1', '1 Enabling Environment', false, false, 17, 18, 6, 2, 73, 49, 3, NULL, '2018-07-08 00:01:33.752559+00', '2018-11-17 00:01:58.43866+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (160, 'Result160', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/886/002/002', '', '101', 'Institutional Strengthening of National Systems', '23-03-07', 'Justice, birth registration/CRVS, and alternative care - planning, co-ordination and programme monitoring', '5', '5 Quality', false, false, 21, 22, 6, 2, 73, 50, 3, NULL, '2018-04-01 00:04:56.41252+00', '2018-11-17 00:01:58.478914+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (170, 'Result170', NULL, '2017-01-02', '2021-12-31', true, '0810/A0/05/883/004/003', NULL, '101', 'Institutional Strengthening of National Systems', '21-06-04', 'HIV and AIDS monitoring and bottleneck analysis', '5', '5 Quality', false, false, 3, 4, 3, 2, 73, 42, 3, NULL, '2018-07-08 00:01:33.817443+00', '2018-11-17 00:01:58.496467+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (166, 'Result166', NULL, '2017-01-02', '2021-12-31', true, '0810/A0/05/886/002/003', NULL, '102', 'Social/behavioural change communication and community engagement', '23-01-05', 'Social welfare workforce systems strengthening (accreditation, staffing and supervision)', '5', '5 Quality', false, false, 23, 24, 6, 2, 73, 50, 3, NULL, '2018-07-08 00:01:33.680764+00', '2018-11-17 00:01:58.50279+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (68, 'Result68', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/886/004/002', '', '104', 'Service delivery (including delivery of essential services)', '23-01-23', 'Child Protection humanitarian AoR/humanitarian sector coordination', '6', '6 Management/Operations', false, false, 33, 34, 6, 2, 73, 52, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-11-17 00:01:58.578274+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (129, 'Result129', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/885/004/001', '', '101', 'Institutional Strengthening of National Systems', '22-02-10', 'Provision of multiple-levels (or alternative pathways of education) teacher training', '5', '5 Quality', false, false, 31, 32, 9, 2, 73, 30, 3, NULL, '2018-03-15 16:11:11.815503+00', '2019-11-12 15:01:47.836503+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (23, 'Result23', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/880/004', '', '', '', '', '', '', '', false, false, 44, 61, 4, 1, 73, 4, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.637924+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (45, 'Result45', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/883/001', '', '', '', '', '', '', '', false, false, 14, 17, 3, 1, 73, 3, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.789205+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (46, 'Result46', '', '2017-01-02', '2021-12-31', false, '0810/A0/05/883/002', '', '', '', '', '', '', '', false, false, 18, 19, 3, 1, 73, 3, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.799766+00', '1', 'MARGINAL'); +INSERT INTO [[schema]].reports_result VALUES (73, 'Result73', '', '2017-01-02', '2019-12-31', true, '0810/A0/05/886/004/007', '', '101', 'Institutional Strengthening of National Systems', '23-01-12', 'MRM - Child protection monitoring and reporting of grave violations in armed conflict (Security Council Resolutions 1612, 1882, 1888 and 1960)', '5', '5 Quality', false, false, 39, 40, 6, 2, 73, 52, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:17.939468+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (47, 'Result47', '', '2017-01-01', '2017-12-31', false, '0810/A0/05/883/003', '', '', '', '', '', '', '', false, false, 20, 21, 3, 1, 73, 3, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.806344+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (43, 'Result43', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/883/005', '', '', '', '', '', '', '', false, false, 6, 11, 3, 1, 73, 3, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.825044+00', '3', 'PRINCIPAL'); -INSERT INTO [[schema]].reports_result VALUES (44, 'Result44', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/883/006', '', '', '', '', '', '', '', false, false, 12, 13, 3, 1, 73, 3, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.839225+00', '0', 'NONE'); -INSERT INTO [[schema]].reports_result VALUES (151, 'Result151', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/885/003/006', '', '101', 'Institutional Strengthening of National Systems', '22-03-11', 'Education sector planning including coordinating role, SDG 4, etc.', '1', '1 Enabling Environment', false, false, 41, 42, 9, 2, 73, 33, 3, NULL, '2018-04-01 00:04:55.967036+00', '2019-11-12 15:01:47.857681+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (150, 'Result150', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/885/003/003', '', '106', 'Planning and Monitoring', '22-01-15', 'Education sector planning including coordinating role, SDG 4, etc.', '1', '1 Enabling Environment', false, false, 39, 40, 9, 2, 73, 33, 3, NULL, '2018-04-01 00:04:55.916716+00', '2019-11-12 15:01:47.862294+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (115, 'Result115', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/880/003/005', '', '101', 'Institutional Strengthening of National Systems', '26-06-08', 'Emergency preparedness (cross-sectoral)', '2', '2 Supply', false, false, 5, 6, 4, 2, 73, 17, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-07-08 00:01:33.57717+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (26, 'Result26', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/800/001', '', '', '', '', '', '', '', false, false, 10, 11, 10, 1, 73, 10, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.625406+00', '0', 'NONE'); -INSERT INTO [[schema]].reports_result VALUES (61, 'Result61', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/880/003/006', '', '106', 'Planning and Monitoring', '26-06-08', 'Emergency preparedness (cross-sectoral)', '2', '2 Supply', false, false, 3, 4, 4, 2, 73, 17, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-07-08 00:01:33.627283+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (19, 'Result19', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/880/001', '', '', '', '', '', '', '', false, false, 14, 15, 4, 1, 73, 4, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:42.081547+00', '0', 'NONE'); +INSERT INTO [[schema]].reports_result VALUES (8, 'Result8', '24', '2017-01-01', '2021-12-31', false, '0810/A0/05/884', '', '', '', '', '', '', '', false, false, 1, 40, 8, 0, 73, NULL, 1, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:18.966755+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (69, 'Result69', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/886/004/003', '', '104', 'Service delivery (including delivery of essential services)', '23-01-03', 'Services to prevent or respond to gender-based violence in emergencies', '5', '5 Quality', false, false, 35, 36, 6, 2, 73, 52, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:17.948093+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (168, 'Result168', NULL, '2017-01-02', '2021-12-31', true, '0810/A0/05/886/003/004', NULL, '104', 'Service delivery (including delivery of essential services)', '23-01-04', 'Psycho-social support in emergencies', '1', '1 Enabling Environment', false, false, 17, 18, 6, 2, 73, 49, 3, NULL, '2018-07-08 00:01:33.752559+00', '2020-01-10 18:19:17.965447+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (129, 'Result129', '', '2017-01-01', '2019-12-31', true, '0810/A0/05/885/004/001', '', '101', 'Institutional Strengthening of National Systems', '22-02-10', 'Provision of multiple-levels (or alternative pathways of education) teacher training', '5', '5 Quality', false, false, 31, 32, 9, 2, 73, 30, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:17.987344+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (125, 'Result125', '', '2017-01-02', '2019-12-31', true, '0810/A0/05/886/004/005', '', '104', 'Service delivery (including delivery of essential services)', '23-01-08', 'Family reunification in emergencies - prevention and response', '5', '5 Quality', false, false, 41, 42, 6, 2, 73, 52, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:17.994258+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (132, 'Result132', '', '2017-01-02', '2019-12-31', true, '0810/A0/05/885/004/004', '', '104', 'Service delivery (including delivery of essential services)', '22-01-05', 'Provision of (formal and non-formal) multiple-levels or alternative pathways of education (including in temporary learning spaces)', '1', '1 Enabling Environment', false, false, 35, 36, 9, 2, 73, 30, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:18.003287+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (154, 'Result154', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/886/001/001', '', '102', 'Social/behavioural change communication and community engagement', '23-01-02', 'Services to prevent or respond to violence, exploitation and abuse', '3', '3 Demand', false, false, 3, 4, 6, 2, 73, 48, 3, NULL, '2018-04-01 00:04:56.107969+00', '2020-01-10 18:19:18.01649+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (170, 'Result170', NULL, '2017-01-02', '2019-12-31', true, '0810/A0/05/883/004/003', NULL, '101', 'Institutional Strengthening of National Systems', '21-06-04', 'HIV and AIDS monitoring and bottleneck analysis', '5', '5 Quality', false, false, 3, 4, 3, 2, 73, 42, 3, NULL, '2018-07-08 00:01:33.817443+00', '2020-01-10 18:19:18.020856+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (166, 'Result166', NULL, '2017-01-02', '2021-12-31', true, '0810/A0/05/886/002/003', NULL, '102', 'Social/behavioural change communication and community engagement', '23-01-05', 'Social welfare workforce systems strengthening (accreditation, staffing and supervision)', '5', '5 Quality', false, false, 23, 24, 6, 2, 73, 50, 3, NULL, '2018-07-08 00:01:33.680764+00', '2020-01-10 18:19:18.025193+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (67, 'Result67', '', '2017-01-02', '2019-12-31', true, '0810/A0/05/886/004/008', '', '101', 'Institutional Strengthening of National Systems', '23-01-11', 'Landmines and explosive weapons - prevention and assistance', '6', '6 Management/Operations', false, false, 31, 32, 6, 2, 73, 52, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:18.034461+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (148, 'Result148', '', '2017-01-01', '2019-12-31', true, '0810/A0/05/882/005/002', '', '801', 'Operating costs - non-staff', '21-05-99', 'Technical assistance - Treatment of severe acute malnutrition', '6', '6 Management/Operations', false, false, 5, 6, 2, 2, 73, 53, 3, NULL, '2018-04-01 00:04:55.815939+00', '2020-01-10 18:19:18.042858+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (165, 'Result165', '', '2017-01-02', '2019-12-31', true, '0810/A0/05/883/001/002', '', '201', 'Advocacy and public engagement', '21-07-13', 'Social protection measures in support of HIV-AIDS prevention', '3', '3 Demand', false, false, 15, 16, 3, 2, 73, 45, 3, NULL, '2018-04-01 00:04:56.654957+00', '2020-01-10 18:19:18.051735+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (88, 'Result88', '', '2017-01-01', '2019-12-31', true, '0810/A0/05/880/004/005', '', '102', 'Social/behavioural change communication and community engagement', '26-03-04', 'Community engagement, participation and accountability', '3', '3 Demand', false, false, 51, 52, 4, 2, 73, 23, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:18.055759+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (146, 'Result146', '', '2017-01-02', '2019-12-31', true, '0810/A0/05/884/003/002', '', '103', 'Policy Engagement', '24-01-01', 'WASH - Enabling environment (policies/strategies, coordination, regulation, financing, planning-monitoring-review, sector capacity development and professionalization)', '1', '1 Enabling Environment', false, false, 23, 24, 8, 2, 73, 39, 3, NULL, '2018-04-01 00:04:55.721762+00', '2020-01-10 18:19:18.060055+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (68, 'Result68', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/886/004/002', '', '104', 'Service delivery (including delivery of essential services)', '23-01-23', 'Child Protection humanitarian AoR/humanitarian sector coordination', '6', '6 Management/Operations', false, false, 33, 34, 6, 2, 73, 52, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:18.091215+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (144, 'Result144', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/884/003/001', '', '101', 'Institutional Strengthening of National Systems', '24-01-01', 'WASH - Enabling environment (policies/strategies, coordination, regulation, financing, planning-monitoring-review, sector capacity development and professionalization)', '1', '1 Enabling Environment', false, false, 19, 20, 8, 2, 73, 39, 3, NULL, '2018-04-01 00:04:55.62743+00', '2020-01-10 18:19:18.095903+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (121, 'Result121', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/880/005/001', '', '802', 'Operating costs - staff', '26-07-01', 'Operations support to programme delivery', '6', '6 Management/Operations', false, false, 39, 40, 4, 2, 73, 22, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:18.10552+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (162, 'Result162', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/884/005/001', '', '802', 'Operating costs - staff', '26-07-01', 'Operations support to programme delivery', '6', '6 Management/Operations', false, false, 3, 4, 8, 2, 73, 37, 3, NULL, '2018-04-01 00:04:56.513016+00', '2020-01-10 18:19:18.110011+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (78, 'Result78', '', '2017-01-02', '2019-12-31', true, '0810/A0/05/884/004/005', '', '106', 'Planning and Monitoring', '24-02-11', 'WASH humanitarian cluster/humanitarian sector coordination', '5', '5 Quality', false, false, 15, 16, 8, 2, 73, 38, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:18.114305+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (150, 'Result150', '', '2017-01-02', '2019-12-31', true, '0810/A0/05/885/003/003', '', '106', 'Planning and Monitoring', '22-01-15', 'Education sector planning including coordinating role, SDG 4, etc.', '1', '1 Enabling Environment', false, false, 39, 40, 9, 2, 73, 33, 3, NULL, '2018-04-01 00:04:55.916716+00', '2020-01-10 18:19:18.122882+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (96, 'Result96', '', '2017-01-01', '2019-12-31', true, '0810/A0/05/882/002/013', '', '104', 'Service delivery (including delivery of essential services)', '21-04-03', 'Vitamin A supplementation in early childhood (children under 5)', '2', '2 Supply', false, false, 51, 52, 2, 2, 73, 59, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:18.127134+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (152, 'Result152', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/886/003/003', '', '106', 'Planning and Monitoring', '23-03-06', 'Justice, birth registration/CRVS, and alternative care - surveys (e.g. KAP, VACS), data analysis/research/evaluation evidence generation, synthesis, and use', '1', '1 Enabling Environment', false, false, 11, 12, 6, 2, 73, 49, 3, NULL, '2018-04-01 00:04:56.015764+00', '2020-01-10 18:19:18.131466+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (133, 'Result133', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/884/001/003', '', '102', 'Social/behavioural change communication and community engagement', '24-02-04', 'Sanitation and hygiene - eliminating open defecation in rural communities', '3', '3 Demand', false, false, 33, 34, 8, 2, 73, 41, 3, NULL, '2018-04-01 00:04:55.04553+00', '2020-01-10 18:19:18.13656+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (160, 'Result160', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/886/002/002', '', '101', 'Institutional Strengthening of National Systems', '23-03-07', 'Justice, birth registration/CRVS, and alternative care - planning, co-ordination and programme monitoring', '5', '5 Quality', false, false, 21, 22, 6, 2, 73, 50, 3, NULL, '2018-04-01 00:04:56.41252+00', '2020-04-02 00:04:52.506282+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (71, 'Result71', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/883/005/001', '', '102', 'Social/behavioural change communication and community engagement', '21-07-04', 'HIV - Emergency preparedness and response including Post exposure prophylaxis and risk informed conflict sensitive HIV programming', '3', '3 Demand', false, false, 7, 8, 3, 2, 73, 43, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (72, 'Result72', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/883/005/002', '', '104', 'Service delivery (including delivery of essential services)', '21-07-04', 'HIV - Emergency preparedness and response including Post exposure prophylaxis and risk informed conflict sensitive HIV programming', '3', '3 Demand', false, false, 9, 10, 3, 2, 73, 43, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (19, 'Result19', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/880/001', '', '', '', '', '', '', '', false, false, 14, 15, 4, 1, 73, 4, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:42.081547+00', '0', 'NONE'); INSERT INTO [[schema]].reports_result VALUES (100, 'Result100', '', '2017-02-17', '2017-12-31', true, '0810/A0/05/800/002/003', '', '801', 'Operating costs - non-staff', '28-07-04', 'Management and Operations support at CO', '6', '6 Management/Operations', false, false, 5, 6, 10, 2, 73, 25, 3, NULL, '2018-03-15 16:11:11.815503+00', '2019-01-21 00:01:50.258426+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (101, 'Result101', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/887/003/006', '', '301', 'Public partnerships', '25-01-07', 'PF4C: Budget transparency, accountability and participation', '1', '1 Enabling Environment', false, false, 15, 16, 7, 2, 73, 14, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-11-17 00:01:58.583288+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (115, 'Result115', '', '2017-01-02', '2019-12-31', true, '0810/A0/05/880/003/005', '', '101', 'Institutional Strengthening of National Systems', '26-06-08', 'Emergency preparedness (cross-sectoral)', '2', '2 Supply', false, false, 5, 6, 4, 2, 73, 17, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:17.91813+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (61, 'Result61', '', '2017-01-02', '2019-12-31', true, '0810/A0/05/880/003/006', '', '106', 'Planning and Monitoring', '26-06-08', 'Emergency preparedness (cross-sectoral)', '2', '2 Supply', false, false, 3, 4, 4, 2, 73, 17, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:18.030268+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (66, 'Result66', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/887/004/001', '', '106', 'Planning and Monitoring', '26-01-03', 'Humanitarian planning and review activities (HRP, RRP, UNICEF HAC)', '1', '1 Enabling Environment', false, false, 19, 20, 7, 2, 73, 15, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:18.064828+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (101, 'Result101', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/887/003/006', '', '301', 'Public partnerships', '25-01-07', 'PF4C: Budget transparency, accountability and participation', '1', '1 Enabling Environment', false, false, 15, 16, 7, 2, 73, 14, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:18.100782+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (105, 'Result105', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/887/002/003', '', '703', 'Evaluation', '26-02-01', 'Situation Analysis or Update on women and children', '2', '2 Supply', false, false, 3, 4, 7, 2, 73, 13, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (106, 'Result106', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/887/002/002', '', '106', 'Planning and Monitoring', '26-02-06', 'Analysis of data', '2', '2 Supply', false, false, 5, 6, 7, 2, 73, 13, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (66, 'Result66', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/887/004/001', '', '106', 'Planning and Monitoring', '26-01-03', 'Humanitarian planning and review activities (HRP, RRP, UNICEF HAC)', '1', '1 Enabling Environment', false, false, 19, 20, 7, 2, 73, 15, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (99, 'Result99', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/887/003/003', '', '801', 'Operating costs - non-staff', '27-01-14', 'RO planning and quality assurance', '1', '1 Enabling Environment', false, false, 13, 14, 7, 2, 73, 14, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (98, 'Result98', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/887/003/002', '', '106', 'Planning and Monitoring', '24-04-02', 'Urban/local policy, planning and budgeting', '1', '1 Enabling Environment', false, false, 11, 12, 7, 2, 73, 14, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (107, 'Result107', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/887/002/001', '', '101', 'Institutional Strengthening of National Systems', '26-05-01', 'Building evaluation capacity in UNICEF and the UN system', '2', '2 Supply', false, false, 7, 8, 7, 2, 73, 13, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (147, 'Result147', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/882/005/003', '', '801', 'Operating costs - non-staff', '21-05-99', 'Technical assistance - Treatment of severe acute malnutrition', '6', '6 Management/Operations', false, false, 3, 4, 2, 2, 73, 53, 3, NULL, '2018-04-01 00:04:55.766108+00', '2018-11-17 00:01:58.514436+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (114, 'Result114', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/880/005/008', '', '104', 'Service delivery (including delivery of essential services)', '26-02-09', 'Field monitoring', '6', '6 Management/Operations', false, false, 27, 28, 4, 2, 73, 22, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (103, 'Result103', '', '2017-02-17', '2017-12-31', true, '0810/A0/05/880/006/005', '', '016', 'Not classifiable', '27-01-06', 'HQ and RO technical support to multiple Goal Areas', '6', '6 Management/Operations', false, false, 17, 18, 4, 2, 73, 21, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-11-10 00:01:49.800207+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (79, 'Result79', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/880/005/010', '', '802', 'Operating costs - staff', '30-02-07', 'Business - Staff', '6', '6 Management/Operations', false, false, 23, 24, 4, 2, 73, 22, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); @@ -15644,28 +17983,27 @@ INSERT INTO [[schema]].reports_result VALUES (116, 'Result116', '', '2017-01-02' INSERT INTO [[schema]].reports_result VALUES (117, 'Result117', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/880/005/005', '', '104', 'Service delivery (including delivery of essential services)', '26-02-09', 'Field monitoring', '6', '6 Management/Operations', false, false, 31, 32, 4, 2, 73, 22, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (118, 'Result118', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/880/005/004', '', '106', 'Planning and Monitoring', '27-01-15', 'CO programme coordination', '6', '6 Management/Operations', false, false, 33, 34, 4, 2, 73, 22, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (119, 'Result119', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/880/005/003', '', '501', 'United Nations working together', '26-01-03', 'Humanitarian planning and review activities (HRP, RRP, UNICEF HAC)', '5', '5 Quality', false, false, 35, 36, 4, 2, 73, 22, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (138, 'Result138', '', '2017-01-02', '2019-12-31', true, '0810/A0/05/881/002/003', '', '106', 'Planning and Monitoring', '21-03-16', 'HSS - Management Information Systems', '5', '5 Quality', false, false, 7, 8, 5, 2, 73, 28, 3, NULL, '2018-04-01 00:04:55.291981+00', '2020-01-10 18:19:17.930783+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (104, 'Result104', '', '2017-02-17', '2017-12-31', true, '0810/A0/05/880/006/006', '', '016', 'Not classifiable', '27-01-06', 'HQ and RO technical support to multiple Goal Areas', '6', '6 Management/Operations', false, false, 19, 20, 4, 2, 73, 21, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-11-10 00:01:49.820246+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (86, 'Result86', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/880/004/007', '', '801', 'Operating costs - non-staff', '26-06-04', 'Leading advocate', '1', '1 Enabling Environment', false, false, 47, 48, 4, 2, 73, 23, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (87, 'Result87', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/880/004/004', '', '103', 'Policy Engagement', '26-06-04', 'Leading advocate', '1', '1 Enabling Environment', false, false, 49, 50, 4, 2, 73, 23, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (89, 'Result89', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/880/004/002', '', '103', 'Policy Engagement', '26-06-04', 'Leading advocate', '1', '1 Enabling Environment', false, false, 53, 54, 4, 2, 73, 23, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (90, 'Result90', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/880/004/003', '', '103', 'Policy Engagement', '26-06-04', 'Leading advocate', '1', '1 Enabling Environment', false, false, 55, 56, 4, 2, 73, 23, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (85, 'Result85', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/880/004/006', '', '701', 'Data and analysis', '26-03-06', 'Research, monitoring and evaluation and knowledge management for C4D', '3', '3 Demand', false, false, 45, 46, 4, 2, 73, 23, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-11-16 00:01:59.194794+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (124, 'Result124', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/880/005/007', '', '104', 'Service delivery (including delivery of essential services)', '26-02-09', 'Field monitoring', '6', '6 Management/Operations', false, false, 41, 42, 4, 2, 73, 22, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (130, 'Result130', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/880/003/007', '', '106', 'Planning and Monitoring', '27-01-10', 'RO technical support to countries on Supply/Logistics', '2', '2 Supply', false, false, 9, 10, 4, 2, 73, 17, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (136, 'Result136', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/881/002/009', '', '104', 'Service delivery (including delivery of essential services)', '21-02-09', 'Measles and rubella supplementary immunization activities', '5', '5 Quality', false, false, 3, 4, 5, 2, 73, 28, 3, NULL, '2018-04-01 00:04:55.191853+00', '2018-04-01 00:04:55.213567+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (137, 'Result137', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/881/002/005', '', '104', 'Service delivery (including delivery of essential services)', '21-02-05', 'Immunization operations', '5', '5 Quality', false, false, 5, 6, 5, 2, 73, 28, 3, NULL, '2018-04-01 00:04:55.243719+00', '2018-04-01 00:04:55.261959+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (138, 'Result138', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/881/002/003', '', '106', 'Planning and Monitoring', '21-03-16', 'HSS - Management Information Systems', '5', '5 Quality', false, false, 7, 8, 5, 2, 73, 28, 3, NULL, '2018-04-01 00:04:55.291981+00', '2018-04-01 00:04:55.315623+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (63, 'Result63', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/882/004/002', '', '106', 'Planning and Monitoring', '21-04-08', 'Data, research, evaluation, evidence generation, synthesis,and use for prevention of stunting and other forms of malnutrition', '2', '2 Supply', false, false, 9, 10, 2, 2, 73, 54, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (80, 'Result80', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/882/004/003', '', '101', 'Institutional Strengthening of National Systems', '21-05-02', 'Capacity building for nutrition preparedness and response', '2', '2 Supply', false, false, 11, 12, 2, 2, 73, 54, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (111, 'Result111', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/882/004/004', '', '104', 'Service delivery (including delivery of essential services)', '21-05-02', 'Capacity building for nutrition preparedness and response', '2', '2 Supply', false, false, 13, 14, 2, 2, 73, 54, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (97, 'Result97', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/882/002/012', '', '104', 'Service delivery (including delivery of essential services)', '21-04-02', 'Diet diversity in early childhood (children under 5), includes complementary feeding and MNPs', '2', '2 Supply', false, false, 53, 54, 2, 2, 73, 59, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (96, 'Result96', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/882/002/013', '', '104', 'Service delivery (including delivery of essential services)', '21-04-03', 'Vitamin A supplementation in early childhood (children under 5)', '2', '2 Supply', false, false, 51, 52, 2, 2, 73, 59, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (123, 'Result123', '', '2017-02-17', '2017-12-31', true, '0810/A0/05/800/002/004', '', '801', 'Operating costs - non-staff', '28-07-04', 'Management and Operations support at CO', '6', '6 Management/Operations', false, false, 7, 8, 10, 2, 73, 25, 3, NULL, '2018-03-15 16:11:11.815503+00', '2019-01-21 00:01:50.266926+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (88, 'Result88', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/880/004/005', '', '102', 'Social/behavioural change communication and community engagement', '26-03-04', 'Community engagement, participation and accountability', '3', '3 Demand', false, false, 51, 52, 4, 2, 73, 23, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-11-18 00:01:52.816506+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (85, 'Result85', '', '2017-01-01', '2019-12-31', true, '0810/A0/05/880/004/006', '', '701', 'Data and analysis', '26-03-06', 'Research, monitoring and evaluation and knowledge management for C4D', '3', '3 Demand', false, false, 45, 46, 4, 2, 73, 23, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:17.978685+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (97, 'Result97', '', '2017-01-01', '2019-12-31', true, '0810/A0/05/882/002/012', '', '104', 'Service delivery (including delivery of essential services)', '21-04-02', 'Diet diversity in early childhood (children under 5), includes complementary feeding and MNPs', '2', '2 Supply', false, false, 53, 54, 2, 2, 73, 59, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:17.999105+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (147, 'Result147', '', '2017-01-01', '2019-12-31', true, '0810/A0/05/882/005/003', '', '801', 'Operating costs - non-staff', '21-05-99', 'Technical assistance - Treatment of severe acute malnutrition', '6', '6 Management/Operations', false, false, 3, 4, 2, 2, 73, 53, 3, NULL, '2018-04-01 00:04:55.766108+00', '2020-01-10 18:19:18.038742+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (95, 'Result95', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/882/002/010', '', '104', 'Service delivery (including delivery of essential services)', '21-05-01', 'Care for children with severe acute malnutrition', '2', '2 Supply', false, false, 49, 50, 2, 2, 73, 59, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (94, 'Result94', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/882/002/011', '', '101', 'Institutional Strengthening of National Systems', '21-05-01', 'Care for children with severe acute malnutrition', '2', '2 Supply', false, false, 47, 48, 2, 2, 73, 59, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (93, 'Result93', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/882/002/014', '', '104', 'Service delivery (including delivery of essential services)', '21-04-03', 'Vitamin A supplementation in early childhood (children under 5)', '2', '2 Supply', false, false, 45, 46, 2, 2, 73, 59, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (92, 'Result92', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/882/002/015', '', '102', 'Social/behavioural change communication and community engagement', '21-04-06', 'Salt iodization and other large-scale food fortification', '2', '2 Supply', false, false, 43, 44, 2, 2, 73, 59, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (139, 'Result139', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/881/002/002', '', '106', 'Planning and Monitoring', '21-03-16', 'HSS - Management Information Systems', '5', '5 Quality', false, false, 9, 10, 5, 2, 73, 28, 3, NULL, '2018-04-01 00:04:55.342858+00', '2018-04-01 00:04:55.361048+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (84, 'Result84', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/882/003/003', '', '106', 'Planning and Monitoring', '21-04-08', 'Data, research, evaluation, evidence generation, synthesis,and use for prevention of stunting and other forms of malnutrition', '1', '1 Enabling Environment', false, false, 33, 34, 2, 2, 73, 58, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (60, 'Result60', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/882/002/007', '', '101', 'Institutional Strengthening of National Systems', '21-05-01', 'Care for children with severe acute malnutrition', '2', '2 Supply', false, false, 37, 38, 2, 2, 73, 59, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (64, 'Result64', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/882/002/008', '', '104', 'Service delivery (including delivery of essential services)', '21-05-01', 'Care for children with severe acute malnutrition', '2', '2 Supply', false, false, 39, 40, 2, 2, 73, 59, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); @@ -15673,87 +18011,92 @@ INSERT INTO [[schema]].reports_result VALUES (65, 'Result65', '', '2017-01-01', INSERT INTO [[schema]].reports_result VALUES (83, 'Result83', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/882/003/004', '', '104', 'Service delivery (including delivery of essential services)', '21-04-99', 'Technical assistance - Prevention of stunting and other forms of malnutrition', '1', '1 Enabling Environment', false, false, 31, 32, 2, 2, 73, 58, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (82, 'Result82', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/882/003/005', '', '104', 'Service delivery (including delivery of essential services)', '21-04-99', 'Technical assistance - Prevention of stunting and other forms of malnutrition', '1', '1 Enabling Environment', false, false, 29, 30, 2, 2, 73, 58, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (81, 'Result81', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/882/003/006', '', '101', 'Institutional Strengthening of National Systems', '21-04-07', 'National multisectoral strategies and plans to prevent stunting (excludes intervention-specific strategies)', '1', '1 Enabling Environment', false, false, 27, 28, 2, 2, 73, 58, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (158, 'Result158', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/884/002/002', '', '104', 'Service delivery (including delivery of essential services)', '24-02-08', 'Sanitation and hygiene - institutions (schools, health carefacilities, ECD centres) including menstrual hygiene management', '2', '2 Supply', false, false, 27, 28, 8, 2, 73, 40, 3, NULL, '2018-04-01 00:04:56.311544+00', '2019-11-12 15:01:47.848519+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (74, 'Result74', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/884/004/002', '', '104', 'Service delivery (including delivery of essential services)', '24-02-09', 'Sanitation and hygiene - improving services in emergency communities', '1', '1 Enabling Environment', false, false, 7, 8, 8, 2, 73, 38, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (75, 'Result75', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/884/004/003', '', '104', 'Service delivery (including delivery of essential services)', '24-01-09', 'Water supply in emergencies - improving water supply services communities', '2', '2 Supply', false, false, 9, 10, 8, 2, 73, 38, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (76, 'Result76', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/884/004/001', '', '104', 'Service delivery (including delivery of essential services)', '24-01-03', 'WASH - risk informed programming including climate resilience disaster and conflict', '1', '1 Enabling Environment', false, false, 11, 12, 8, 2, 73, 38, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (77, 'Result77', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/884/004/004', '', '102', 'Social/behavioural change communication and community engagement', '24-02-09', 'Sanitation and hygiene - improving services in emergency communities', '3', '3 Demand', false, false, 13, 14, 8, 2, 73, 38, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (78, 'Result78', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/884/004/005', '', '106', 'Planning and Monitoring', '24-02-11', 'WASH humanitarian cluster/humanitarian sector coordination', '5', '5 Quality', false, false, 15, 16, 8, 2, 73, 38, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (144, 'Result144', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/884/003/001', '', '101', 'Institutional Strengthening of National Systems', '24-01-01', 'WASH - Enabling environment (policies/strategies, coordination, regulation, financing, planning-monitoring-review, sector capacity development and professionalization)', '1', '1 Enabling Environment', false, false, 19, 20, 8, 2, 73, 39, 3, NULL, '2018-04-01 00:04:55.62743+00', '2018-04-01 00:04:55.645141+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (145, 'Result145', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/884/003/003', '', '701', 'Data and analysis', '24-01-01', 'WASH - Enabling environment (policies/strategies, coordination, regulation, financing, planning-monitoring-review, sector capacity development and professionalization)', '1', '1 Enabling Environment', false, false, 21, 22, 8, 2, 73, 39, 3, NULL, '2018-04-01 00:04:55.673577+00', '2018-04-01 00:04:55.690737+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (139, 'Result139', '', '2017-01-02', '2019-12-31', true, '0810/A0/05/881/002/002', '', '106', 'Planning and Monitoring', '21-03-16', 'HSS - Management Information Systems', '5', '5 Quality', false, false, 9, 10, 5, 2, 73, 28, 3, NULL, '2018-04-01 00:04:55.342858+00', '2020-01-10 18:19:17.935074+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (76, 'Result76', '', '2017-01-02', '2019-12-31', true, '0810/A0/05/884/004/001', '', '104', 'Service delivery (including delivery of essential services)', '24-01-03', 'WASH - risk informed programming including climate resilience disaster and conflict', '1', '1 Enabling Environment', false, false, 11, 12, 8, 2, 73, 38, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:18.069737+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (134, 'Result134', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/884/001/002', '', '102', 'Social/behavioural change communication and community engagement', '24-01-01', 'WASH - Enabling environment (policies/strategies, coordination, regulation, financing, planning-monitoring-review, sector capacity development and professionalization)', '3', '3 Demand', false, false, 35, 36, 8, 2, 73, 41, 3, NULL, '2018-04-01 00:04:55.092911+00', '2018-04-01 00:04:55.11249+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (159, 'Result159', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/884/002/003', '', '106', 'Planning and Monitoring', '24-01-01', 'WASH - Enabling environment (policies/strategies, coordination, regulation, financing, planning-monitoring-review, sector capacity development and professionalization)', '5', '5 Quality', false, false, 29, 30, 8, 2, 73, 40, 3, NULL, '2018-04-01 00:04:56.358881+00', '2018-04-01 00:04:56.382153+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (158, 'Result158', '', '2017-01-02', '2019-12-31', true, '0810/A0/05/884/002/002', '', '104', 'Service delivery (including delivery of essential services)', '24-02-08', 'Sanitation and hygiene - institutions (schools, health carefacilities, ECD centres) including menstrual hygiene management', '2', '2 Supply', false, false, 27, 28, 8, 2, 73, 40, 3, NULL, '2018-04-01 00:04:56.311544+00', '2020-01-10 18:19:18.077754+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (75, 'Result75', '', '2017-01-02', '2019-12-31', true, '0810/A0/05/884/004/003', '', '104', 'Service delivery (including delivery of essential services)', '24-01-09', 'Water supply in emergencies - improving water supply services communities', '2', '2 Supply', false, false, 9, 10, 8, 2, 73, 38, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:18.082136+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (26, 'Result26', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/800/001', '', '', '', '', '', '', '', false, false, 10, 11, 10, 1, 73, 10, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.625406+00', '0', 'NONE'); +INSERT INTO [[schema]].reports_result VALUES (42, 'Result42', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/883/004', '', '', '', '', '', '', '', false, false, 2, 5, 3, 1, 73, 3, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-10 00:48:25.238091+00', '1', 'MARGINAL'); INSERT INTO [[schema]].reports_result VALUES (128, 'Result128', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/885/004/002', '', '101', 'Institutional Strengthening of National Systems', '22-01-08', 'System strengthening - risk informed programming, includingclimate, resilience, disaster, conflict, and emergency preparedness', '1', '1 Enabling Environment', false, false, 29, 30, 9, 2, 73, 30, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (7, 'Result7', '26', '2017-01-01', '2021-12-31', false, '0810/A0/05/887', '', '', '', '', '', '', '', false, false, 1, 26, 7, 0, 73, NULL, 1, NULL, '2018-03-15 16:11:11.815503+00', '2019-10-11 00:14:47.687547+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (24, 'Result24', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/800/003', '', '', '', '', '', '', '', false, false, 2, 3, 10, 1, 73, 10, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.631705+00', '0', 'NONE'); INSERT INTO [[schema]].reports_result VALUES (27, 'Result27', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/777/001', '', '', '', '', '', '', '', false, false, 2, 3, 1, 1, 73, 1, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.66307+00', '0', 'NONE'); -INSERT INTO [[schema]].reports_result VALUES (59, 'Result59', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/882/002', '', '', '', '', '', '', '', false, false, 36, 55, 2, 1, 73, 2, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.726011+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (42, 'Result42', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/883/004', '', '', '', '', '', '', '', false, false, 2, 5, 3, 1, 73, 3, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.81256+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (127, 'Result127', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/885/004/003', '', '101', 'Institutional Strengthening of National Systems', '22-03-03', 'Provision of skills development for multiple age groups (including in temporary learning spaces)', '1', '1 Enabling Environment', false, false, 27, 28, 9, 2, 73, 30, 3, NULL, '2018-03-15 16:11:11.815503+00', '2019-11-12 15:01:47.827249+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (7, 'Result7', '26', '2017-01-01', '2021-12-31', false, '0810/A0/05/887', '', '', '', '', '', '', '', false, false, 1, 26, 7, 0, 73, NULL, 1, NULL, '2018-03-15 16:11:11.815503+00', '2020-03-22 00:06:33.110141+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (108, 'Result108', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/881/004/003', '', '104', 'Service delivery (including delivery of essential services)', '21-03-14', 'HSS - Risk informed programming including climate resilience disaster and conflict', '2', '2 Supply', false, false, 21, 22, 5, 2, 73, 34, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (102, 'Result102', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/882/007/001', '', '802', 'Operating costs - staff', '30-02-07', 'Business - Staff', '6', '6 Management/Operations', false, false, 19, 20, 2, 2, 73, 55, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (112, 'Result112', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/882/004/001', '', '106', 'Planning and Monitoring', '21-04-08', 'Data, research, evaluation, evidence generation, synthesis,and use for prevention of stunting and other forms of malnutrition', '2', '2 Supply', false, false, 15, 16, 2, 2, 73, 54, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (135, 'Result135', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/884/001/001', '', '102', 'Social/behavioural change communication and community engagement', '24-02-04', 'Sanitation and hygiene - eliminating open defecation in rural communities', '3', '3 Demand', false, false, 37, 38, 8, 2, 73, 41, 3, NULL, '2018-04-01 00:04:55.139651+00', '2019-11-12 15:01:47.852692+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (1, 'Result1', '30', '2017-01-01', '2021-12-31', false, '0810/A0/05/777', '', '', '', '', '', '', '', false, false, 1, 4, 1, 0, 73, NULL, 1, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (127, 'Result127', '', '2017-01-02', '2019-12-31', true, '0810/A0/05/885/004/003', '', '101', 'Institutional Strengthening of National Systems', '22-03-03', 'Provision of skills development for multiple age groups (including in temporary learning spaces)', '1', '1 Enabling Environment', false, false, 27, 28, 9, 2, 73, 30, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:17.960805+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (10, 'Result10', '28', '2017-01-01', '2021-12-31', false, '0810/A0/05/800', '', '', '', '', '', '', '', false, false, 1, 12, 10, 0, 73, NULL, 1, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (155, 'Result155', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/886/001/003', '', '104', 'Service delivery (including delivery of essential services)', '23-02-07', 'Services related to FGM/C', '3', '3 Demand', false, false, 5, 6, 6, 2, 73, 48, 3, NULL, '2018-04-01 00:04:56.155265+00', '2018-04-01 00:04:56.17268+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (155, 'Result155', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/886/001/003', '', '104', 'Service delivery (including delivery of essential services)', '23-02-07', 'Services related to FGM/C', '3', '3 Demand', false, false, 5, 6, 6, 2, 73, 48, 3, NULL, '2018-04-01 00:04:56.155265+00', '2020-01-10 18:19:18.073609+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (135, 'Result135', '', '2017-01-02', '2019-12-31', true, '0810/A0/05/884/001/001', '', '102', 'Social/behavioural change communication and community engagement', '24-02-04', 'Sanitation and hygiene - eliminating open defecation in rural communities', '3', '3 Demand', false, false, 37, 38, 8, 2, 73, 41, 3, NULL, '2018-04-01 00:04:55.139651+00', '2020-01-10 18:19:18.086536+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (159, 'Result159', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/884/002/003', '', '106', 'Planning and Monitoring', '24-01-01', 'WASH - Enabling environment (policies/strategies, coordination, regulation, financing, planning-monitoring-review, sector capacity development and professionalization)', '5', '5 Quality', false, false, 29, 30, 8, 2, 73, 40, 3, NULL, '2018-04-01 00:04:56.358881+00', '2020-01-10 18:19:18.118464+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (59, 'Result59', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/882/002', '', '', '', '', '', '', '', false, false, 36, 55, 2, 1, 73, 2, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.063541+00', '1', 'MARGINAL'); INSERT INTO [[schema]].reports_result VALUES (141, 'Result141', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/885/002/003', '', '101', 'Institutional Strengthening of National Systems', '22-02-10', 'Provision of multiple-levels (or alternative pathways of education) teacher training', '5', '5 Quality', false, false, 9, 10, 9, 2, 73, 12, 3, NULL, '2018-04-01 00:04:55.446762+00', '2018-04-01 00:04:55.486448+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (143, 'Result143', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/885/002/004', '', '101', 'Institutional Strengthening of National Systems', '22-03-07', 'System strengthening - life skills (for personal empowerment, active citizenship, etc.)', '1', '1 Enabling Environment', false, false, 13, 14, 9, 2, 73, 12, 3, NULL, '2018-04-01 00:04:55.581434+00', '2018-11-17 00:01:58.44471+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (142, 'Result142', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/885/002/002', '', '104', 'Service delivery (including delivery of essential services)', '22-02-04', 'Provision or procurement of multiple-levels (or alternativepathways of education) learning materials', '2', '2 Supply', false, false, 11, 12, 9, 2, 73, 12, 3, NULL, '2018-04-01 00:04:55.5186+00', '2018-11-17 00:01:58.462393+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (17, 'Result17', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/880/003', '', '', '', '', '', '', '', false, false, 2, 11, 4, 1, 73, 4, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.024849+00', '1', 'MARGINAL'); +INSERT INTO [[schema]].reports_result VALUES (31, 'Result31', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/881/001', '', '', '', '', '', '', '', false, false, 16, 17, 5, 1, 73, 5, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.032062+00', '2', 'SIGNIFICANT'); INSERT INTO [[schema]].reports_result VALUES (18, 'Result18', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/880/002', '', '', '', '', '', '', '', false, false, 12, 13, 4, 1, 73, 4, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-05-03 00:21:53.708975+00', '2', 'SIGNIFICANT'); -INSERT INTO [[schema]].reports_result VALUES (157, 'Result157', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/885/005/004', '', '801', 'Operating costs - non-staff', '26-07-01', 'Operations support to programme delivery', '6', '6 Management/Operations', false, false, 3, 4, 9, 2, 73, 11, 3, NULL, '2018-04-01 00:04:56.259651+00', '2019-11-12 15:01:47.844143+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (140, 'Result140', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/885/002/001', '', '104', 'Service delivery (including delivery of essential services)', '22-01-05', 'Provision of (formal and non-formal) multiple-levels or alternative pathways of education (including in temporary learning spaces)', '1', '1 Enabling Environment', false, false, 7, 8, 9, 2, 73, 12, 3, NULL, '2018-04-01 00:04:55.395335+00', '2018-11-17 00:01:58.467787+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (28, 'Result28', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/881/002', '', '', '', '', '', '', '', false, false, 2, 13, 5, 1, 73, 5, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.036406+00', '1', 'MARGINAL'); +INSERT INTO [[schema]].reports_result VALUES (29, 'Result29', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/881/003', '', '', '', '', '', '', '', false, false, 14, 15, 5, 1, 73, 5, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-10 00:48:25.218543+00', '1', 'MARGINAL'); +INSERT INTO [[schema]].reports_result VALUES (32, 'Result32', '', '2017-01-01', '2019-12-31', false, '0810/A0/05/881/006', '', '', '', '', '', '', '', false, false, 18, 19, 5, 1, 73, 5, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:17.885723+00', '0', 'NONE'); +INSERT INTO [[schema]].reports_result VALUES (142, 'Result142', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/885/002/002', '', '104', 'Service delivery (including delivery of essential services)', '22-02-04', 'Provision or procurement of multiple-levels (or alternativepathways of education) learning materials', '2', '2 Supply', false, false, 11, 12, 9, 2, 73, 12, 3, NULL, '2018-04-01 00:04:55.5186+00', '2020-01-10 18:19:17.92247+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (149, 'Result149', '', '2017-01-02', '2019-12-31', true, '0810/A0/05/885/001/004', '', '104', 'Service delivery (including delivery of essential services)', '22-02-20', 'System strengthening - teacher development, management, andsupport', '3', '3 Demand', false, false, 17, 18, 9, 2, 73, 20, 3, NULL, '2018-04-01 00:04:55.865308+00', '2020-01-10 18:19:17.943802+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (21, 'Result21', '', '2017-01-02', '2021-12-31', false, '0810/A0/05/880/006', '', '', '', '', '', '', '', false, false, 16, 21, 4, 1, 73, 4, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-27 00:52:39.382019+00', '0', 'NONE'); +INSERT INTO [[schema]].reports_result VALUES (143, 'Result143', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/885/002/004', '', '101', 'Institutional Strengthening of National Systems', '22-03-07', 'System strengthening - life skills (for personal empowerment, active citizenship, etc.)', '1', '1 Enabling Environment', false, false, 13, 14, 9, 2, 73, 12, 3, NULL, '2018-04-01 00:04:55.581434+00', '2020-01-10 18:19:17.956571+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (156, 'Result156', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/886/001/002', '', '101', 'Institutional Strengthening of National Systems', '23-03-04', 'Birth Registration/Civil Registration and Vital Statistics systems', '3', '3 Demand', false, false, 7, 8, 6, 2, 73, 48, 3, NULL, '2018-04-01 00:04:56.201779+00', '2018-11-17 00:01:58.548838+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (149, 'Result149', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/885/001/004', '', '104', 'Service delivery (including delivery of essential services)', '22-02-20', 'System strengthening - teacher development, management, andsupport', '3', '3 Demand', false, false, 17, 18, 9, 2, 73, 20, 3, NULL, '2018-04-01 00:04:55.865308+00', '2018-11-17 00:01:58.560187+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (21, 'Result21', '', '2017-01-02', '2021-12-31', false, '0810/A0/05/880/006', '', '', '', '', '', '', '', false, false, 16, 21, 4, 1, 73, 4, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.596225+00', '0', 'NONE'); -INSERT INTO [[schema]].reports_result VALUES (109, 'Result109', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/881/004/002', '', '106', 'Planning and Monitoring', '21-03-18', 'Public health emergencies, including disease outbreaks', '5', '5 Quality', false, false, 23, 24, 5, 2, 73, 34, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (41, 'Result41', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/884/001', '', '', '', '', '', '', '', false, false, 32, 39, 8, 1, 73, 8, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.130031+00', '1', 'MARGINAL'); +INSERT INTO [[schema]].reports_result VALUES (109, 'Result109', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/881/004/002', '', '106', 'Planning and Monitoring', '21-03-18', 'Public health emergencies, including disease outbreaks', '5', '5 Quality', false, false, 23, 24, 5, 2, 73, 34, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:17.974415+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (140, 'Result140', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/885/002/001', '', '104', 'Service delivery (including delivery of essential services)', '22-01-05', 'Provision of (formal and non-formal) multiple-levels or alternative pathways of education (including in temporary learning spaces)', '1', '1 Enabling Environment', false, false, 7, 8, 9, 2, 73, 12, 3, NULL, '2018-04-01 00:04:55.395335+00', '2020-01-10 18:19:18.0078+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (25, 'Result25', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/800/002', '', '', '', '', '', '', '', false, false, 4, 9, 10, 1, 73, 10, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.614094+00', '0', 'NONE'); -INSERT INTO [[schema]].reports_result VALUES (17, 'Result17', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/880/003', '', '', '', '', '', '', '', false, false, 2, 11, 4, 1, 73, 4, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.65145+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (31, 'Result31', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/881/001', '', '', '', '', '', '', '', false, false, 16, 17, 5, 1, 73, 5, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.670603+00', '2', 'SIGNIFICANT'); -INSERT INTO [[schema]].reports_result VALUES (28, 'Result28', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/881/002', '', '', '', '', '', '', '', false, false, 2, 13, 5, 1, 73, 5, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.676784+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (29, 'Result29', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/881/003', '', '', '', '', '', '', '', false, false, 14, 15, 5, 1, 73, 5, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.688634+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (32, 'Result32', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/881/006', '', '', '', '', '', '', '', false, false, 18, 19, 5, 1, 73, 5, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.713036+00', '0', 'NONE'); -INSERT INTO [[schema]].reports_result VALUES (41, 'Result41', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/884/001', '', '', '', '', '', '', '', false, false, 32, 39, 8, 1, 73, 8, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.847719+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (40, 'Result40', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/884/002', '', '', '', '', '', '', '', false, false, 26, 31, 8, 1, 73, 8, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.86337+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (39, 'Result39', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/884/003', '', '', '', '', '', '', '', false, false, 18, 25, 8, 1, 73, 8, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.875808+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (20, 'Result20', '', '2017-01-02', '2021-12-31', false, '0810/A0/05/885/001', '', '', '', '', '', '', '', false, false, 16, 23, 9, 1, 73, 9, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.910272+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (33, 'Result33', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/885/003', '', '', '', '', '', '', '', false, false, 38, 43, 9, 1, 73, 9, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.935147+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (110, 'Result110', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/881/004/001', '', '101', 'Institutional Strengthening of National Systems', '21-03-14', 'HSS - Risk informed programming including climate resilience disaster and conflict', '5', '5 Quality', false, false, 25, 26, 5, 2, 73, 34, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (164, 'Result164', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/881/002/010', '', '104', 'Service delivery (including delivery of essential services)', '21-02-08', 'Meningitis supplementary immunization activities', '5', '5 Quality', false, false, 11, 12, 5, 2, 73, 28, 3, NULL, '2018-04-01 00:04:56.605448+00', '2018-04-01 00:04:56.624292+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (48, 'Result48', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/886/001', '', '', '', '', '', '', '', false, false, 2, 9, 6, 1, 73, 6, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-07-05 14:59:53.365366+00', '2', 'SIGNIFICANT'); -INSERT INTO [[schema]].reports_result VALUES (91, 'Result91', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/880/004/001', '', '102', 'Social/behavioural change communication and community engagement', '26-03-02', 'Capacity and skills development for social behaviour change', '1', '1 Enabling Environment', false, false, 57, 58, 4, 2, 73, 23, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-11-16 00:01:59.199744+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (121, 'Result121', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/880/005/001', '', '802', 'Operating costs - staff', '26-07-01', 'Operations support to programme delivery', '6', '6 Management/Operations', false, false, 39, 40, 4, 2, 73, 22, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-11-16 00:01:59.21167+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (20, 'Result20', '', '2017-01-02', '2021-12-31', false, '0810/A0/05/885/001', '', '', '', '', '', '', '', false, false, 16, 23, 9, 1, 73, 9, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-10 00:48:25.245493+00', '1', 'MARGINAL'); +INSERT INTO [[schema]].reports_result VALUES (40, 'Result40', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/884/002', '', '', '', '', '', '', '', false, false, 26, 31, 8, 1, 73, 8, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.137324+00', '1', 'MARGINAL'); +INSERT INTO [[schema]].reports_result VALUES (33, 'Result33', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/885/003', '', '', '', '', '', '', '', false, false, 38, 43, 9, 1, 73, 9, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-10 00:48:25.260129+00', '1', 'MARGINAL'); +INSERT INTO [[schema]].reports_result VALUES (39, 'Result39', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/884/003', '', '', '', '', '', '', '', false, false, 18, 25, 8, 1, 73, 8, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.144602+00', '1', 'MARGINAL'); +INSERT INTO [[schema]].reports_result VALUES (157, 'Result157', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/885/005/004', '', '801', 'Operating costs - non-staff', '26-07-01', 'Operations support to programme delivery', '6', '6 Management/Operations', false, false, 3, 4, 9, 2, 73, 11, 3, NULL, '2018-04-01 00:04:56.259651+00', '2020-01-10 18:19:18.047097+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (36, 'Result36', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/887/001', '', '', '', '', '', '', '', false, false, 24, 25, 7, 1, 73, 7, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.203583+00', '1', 'MARGINAL'); +INSERT INTO [[schema]].reports_result VALUES (13, 'Result13', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/887/002', '', '', '', '', '', '', '', false, false, 2, 9, 7, 1, 73, 7, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.207464+00', '1', 'MARGINAL'); +INSERT INTO [[schema]].reports_result VALUES (131, 'Result131', '', '2017-01-02', '2019-12-31', true, '0810/A0/05/885/004/005', '', '104', 'Service delivery (including delivery of essential services)', '22-02-04', 'Provision or procurement of multiple-levels (or alternativepathways of education) learning materials', '2', '2 Supply', false, false, 33, 34, 9, 2, 73, 30, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:17.926723+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (126, 'Result126', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/880/003/004', '', '101', 'Institutional Strengthening of National Systems', '26-06-08', 'Emergency preparedness (cross-sectoral)', '2', '2 Supply', false, false, 7, 8, 4, 2, 73, 17, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-07-08 00:01:33.602724+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (131, 'Result131', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/885/004/005', '', '104', 'Service delivery (including delivery of essential services)', '22-02-04', 'Provision or procurement of multiple-levels (or alternativepathways of education) learning materials', '2', '2 Supply', false, false, 33, 34, 9, 2, 73, 30, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-11-17 00:01:58.456279+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (113, 'Result113', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/880/005/009', '', '106', 'Planning and Monitoring', '25-04-05', 'Gender programming - multisectoral', '1', '1 Enabling Environment', false, false, 25, 26, 4, 2, 73, 22, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-07-08 00:01:33.620938+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (132, 'Result132', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/885/004/004', '', '104', 'Service delivery (including delivery of essential services)', '22-01-05', 'Provision of (formal and non-formal) multiple-levels or alternative pathways of education (including in temporary learning spaces)', '1', '1 Enabling Environment', false, false, 35, 36, 9, 2, 73, 30, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-11-17 00:01:58.473623+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (14, 'Result14', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/887/003', '', '', '', '', '', '', '', false, false, 10, 17, 7, 1, 73, 7, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.214958+00', '1', 'MARGINAL'); INSERT INTO [[schema]].reports_result VALUES (120, 'Result120', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/880/005/002', '', '104', 'Service delivery (including delivery of essential services)', '26-06-08', 'Emergency preparedness (cross-sectoral)', '2', '2 Supply', false, false, 37, 38, 4, 2, 73, 22, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-07-08 00:01:33.639171+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (154, 'Result154', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/886/001/001', '', '102', 'Social/behavioural change communication and community engagement', '23-01-02', 'Services to prevent or respond to violence, exploitation and abuse', '3', '3 Demand', false, false, 3, 4, 6, 2, 73, 48, 3, NULL, '2018-04-01 00:04:56.107969+00', '2018-11-17 00:01:58.483938+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (122, 'Result122', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/885/004/006', '', '104', 'Service delivery (including delivery of essential services)', '22-02-24', 'Education humanitarian cluster/humanitarian sector coordination', '6', '6 Management/Operations', false, false, 25, 26, 9, 2, 73, 30, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-11-17 00:01:58.491384+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (148, 'Result148', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/882/005/002', '', '801', 'Operating costs - non-staff', '21-05-99', 'Technical assistance - Treatment of severe acute malnutrition', '6', '6 Management/Operations', false, false, 5, 6, 2, 2, 73, 53, 3, NULL, '2018-04-01 00:04:55.815939+00', '2018-11-17 00:01:58.508656+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (146, 'Result146', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/884/003/002', '', '103', 'Policy Engagement', '24-01-01', 'WASH - Enabling environment (policies/strategies, coordination, regulation, financing, planning-monitoring-review, sector capacity development and professionalization)', '1', '1 Enabling Environment', false, false, 23, 24, 8, 2, 73, 39, 3, NULL, '2018-04-01 00:04:55.721762+00', '2018-11-17 00:01:58.53045+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (15, 'Result15', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/887/004', '', '', '', '', '', '', '', false, false, 18, 21, 7, 1, 73, 7, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.222053+00', '1', 'MARGINAL'); +INSERT INTO [[schema]].reports_result VALUES (171, 'Result171', NULL, '2020-01-01', '2021-12-31', false, '0810/A0/05/880/007', NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, 62, 63, 4, 1, 73, 4, 2, NULL, '2020-02-27 00:52:39.399034+00', '2020-02-27 00:52:39.399034+00', '2', 'SIGNIFICANT'); +INSERT INTO [[schema]].reports_result VALUES (30, 'Result30', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/885/004', '', '', '', '', '', '', '', false, false, 24, 37, 9, 1, 73, 9, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-10 00:48:25.267753+00', '3', 'PRINCIPAL'); +INSERT INTO [[schema]].reports_result VALUES (16, 'Result16', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/887/005', '', '', '', '', '', '', '', false, false, 22, 23, 7, 1, 73, 7, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-12 00:09:06.052873+00', '0', 'NONE'); INSERT INTO [[schema]].reports_result VALUES (163, 'Result163', '', '2017-01-02', '2018-12-31', true, '0810/A0/05/885/001/005', '', '101', 'Institutional Strengthening of National Systems', '22-01-11', 'Other activities for equitable access to quality education e.g. school feeding, school grants', '3', '3 Demand', false, false, 21, 22, 9, 2, 73, 20, 3, NULL, '2018-04-01 00:04:56.559424+00', '2018-11-17 00:01:58.542731+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (162, 'Result162', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/884/005/001', '', '802', 'Operating costs - staff', '26-07-01', 'Operations support to programme delivery', '6', '6 Management/Operations', false, false, 3, 4, 8, 2, 73, 37, 3, NULL, '2018-04-01 00:04:56.513016+00', '2018-11-17 00:01:58.588987+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (34, 'Result34', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/881/004', '', '', '', '', '', '', '', false, false, 20, 27, 5, 1, 73, 5, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.695122+00', '3', 'PRINCIPAL'); -INSERT INTO [[schema]].reports_result VALUES (5, 'Result5', '21', '2017-01-01', '2021-12-31', false, '0810/A0/05/881', '', '', '', '', '', '', '', false, false, 1, 30, 5, 0, 73, NULL, 1, NULL, '2018-03-15 16:11:11.815503+00', '2019-11-12 15:01:47.761986+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (2, 'Result2', '21', '2017-01-01', '2021-12-31', false, '0810/A0/05/882', '', '', '', '', '', '', '', false, false, 1, 56, 2, 0, 73, NULL, 1, NULL, '2018-03-15 16:11:11.815503+00', '2019-08-29 00:27:34.481197+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (35, 'Result35', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/881/005', '', '', '', '', '', '', '', false, false, 28, 29, 5, 1, 73, 5, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.70645+00', '0', 'NONE'); -INSERT INTO [[schema]].reports_result VALUES (57, 'Result57', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/882/001', '', '', '', '', '', '', '', false, false, 24, 25, 2, 1, 73, 2, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.719445+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (58, 'Result58', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/882/003', '', '', '', '', '', '', '', false, false, 26, 35, 2, 1, 73, 2, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.738305+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (54, 'Result54', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/882/004', '', '', '', '', '', '', '', false, false, 8, 17, 2, 1, 73, 2, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.749459+00', '3', 'PRINCIPAL'); -INSERT INTO [[schema]].reports_result VALUES (53, 'Result53', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/882/005', '', '', '', '', '', '', '', false, false, 2, 7, 2, 1, 73, 2, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.761202+00', '0', 'NONE'); +INSERT INTO [[schema]].reports_result VALUES (153, 'Result153', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/886/003/002', '', '101', 'Institutional Strengthening of National Systems', '23-01-99', 'Technical assistance - Prevention and response services forviolence against children', '1', '1 Enabling Environment', false, false, 13, 14, 6, 2, 73, 49, 3, NULL, '2018-04-01 00:04:56.059354+00', '2018-11-17 00:01:58.55467+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (122, 'Result122', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/885/004/006', '', '104', 'Service delivery (including delivery of essential services)', '22-02-24', 'Education humanitarian cluster/humanitarian sector coordination', '6', '6 Management/Operations', false, false, 25, 26, 9, 2, 73, 30, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:17.952383+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (161, 'Result161', '', '2017-01-02', '2019-12-31', true, '0810/A0/05/885/001/006', '', '102', 'Social/behavioural change communication and community engagement', '21-08-03', 'ECD advocacy and communication including campaigns', '3', '3 Demand', false, false, 19, 20, 9, 2, 73, 20, 3, NULL, '2018-04-01 00:04:56.457821+00', '2020-01-10 18:19:17.969953+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (172, 'Result172', NULL, '2020-01-01', '2021-12-31', false, '0810/A0/05/880/008', NULL, NULL, NULL, NULL, NULL, NULL, NULL, false, false, 64, 65, 4, 1, 73, 4, 2, NULL, '2020-04-02 00:04:52.468915+00', '2020-04-02 00:04:52.468915+00', '0', 'NONE'); +INSERT INTO [[schema]].reports_result VALUES (91, 'Result91', '', '2017-01-01', '2021-12-31', true, '0810/A0/05/880/004/001', '', '102', 'Social/behavioural change communication and community engagement', '26-03-02', 'Capacity and skills development for social behaviour change', '1', '1 Enabling Environment', false, false, 57, 58, 4, 2, 73, 23, 3, NULL, '2018-03-15 16:11:11.815503+00', '2020-01-10 18:19:17.982873+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (151, 'Result151', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/885/003/006', '', '101', 'Institutional Strengthening of National Systems', '22-03-11', 'Education sector planning including coordinating role, SDG 4, etc.', '1', '1 Enabling Environment', false, false, 41, 42, 9, 2, 73, 33, 3, NULL, '2018-04-01 00:04:55.967036+00', '2020-03-12 00:20:17.382167+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (110, 'Result110', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/881/004/001', '', '101', 'Institutional Strengthening of National Systems', '21-03-14', 'HSS - Risk informed programming including climate resilience disaster and conflict', '5', '5 Quality', false, false, 25, 26, 5, 2, 73, 34, 3, NULL, '2018-03-15 16:11:11.815503+00', '2018-03-15 16:11:12.436833+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (164, 'Result164', '', '2017-01-02', '2021-12-31', true, '0810/A0/05/881/002/010', '', '104', 'Service delivery (including delivery of essential services)', '21-02-08', 'Meningitis supplementary immunization activities', '5', '5 Quality', false, false, 11, 12, 5, 2, 73, 28, 3, NULL, '2018-04-01 00:04:56.605448+00', '2018-04-01 00:04:56.624292+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (58, 'Result58', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/882/003', '', '', '', '', '', '', '', false, false, 26, 35, 2, 1, 73, 2, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-10 00:48:25.222577+00', '1', 'MARGINAL'); +INSERT INTO [[schema]].reports_result VALUES (11, 'Result11', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/885/005', '', '', '', '', '', '', '', false, false, 2, 5, 9, 1, 73, 9, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-10 00:48:25.275833+00', '0', 'NONE'); +INSERT INTO [[schema]].reports_result VALUES (12, 'Result12', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/885/002', '', '', '', '', '', '', '', false, false, 6, 15, 9, 1, 73, 9, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-11 00:40:02.4959+00', '1', 'MARGINAL'); +INSERT INTO [[schema]].reports_result VALUES (52, 'Result52', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/886/004', '', '', '', '', '', '', '', false, false, 28, 43, 6, 1, 73, 6, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-11 00:40:02.503681+00', '3', 'PRINCIPAL'); +INSERT INTO [[schema]].reports_result VALUES (2, 'Result2', '21', '2017-01-01', '2021-12-31', false, '0810/A0/05/882', '', '', '', '', '', '', '', false, false, 1, 56, 2, 0, 73, NULL, 1, NULL, '2018-03-15 16:11:11.815503+00', '2020-04-16 00:27:39.327797+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (5, 'Result5', '21', '2017-01-01', '2021-12-31', false, '0810/A0/05/881', '', '', '', '', '', '', '', false, false, 1, 30, 5, 0, 73, NULL, 1, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:18.940713+00', NULL, NULL); +INSERT INTO [[schema]].reports_result VALUES (9, 'Result9', '26', '2017-01-01', '2021-12-31', false, '0810/A0/05/885', '', '', '', '', '', '', '', false, false, 1, 44, 9, 0, 73, NULL, 1, NULL, '2018-03-15 16:11:11.815503+00', '2020-04-18 01:10:14.204292+00', NULL, NULL); INSERT INTO [[schema]].reports_result VALUES (56, 'Result56', '', '2017-01-01', '2017-12-31', false, '0810/A0/05/882/006', '', '', '', '', '', '', '', false, false, 22, 23, 2, 1, 73, 2, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.772187+00', '3', 'PRINCIPAL'); INSERT INTO [[schema]].reports_result VALUES (55, 'Result55', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/882/007', '', '', '', '', '', '', '', false, false, 18, 21, 2, 1, 73, 2, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.77841+00', '0', 'NONE'); -INSERT INTO [[schema]].reports_result VALUES (38, 'Result38', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/884/004', '', '', '', '', '', '', '', false, false, 6, 17, 8, 1, 73, 8, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.886935+00', '3', 'PRINCIPAL'); -INSERT INTO [[schema]].reports_result VALUES (37, 'Result37', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/884/005', '', '', '', '', '', '', '', false, false, 2, 5, 8, 1, 73, 8, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.89909+00', '0', 'NONE'); -INSERT INTO [[schema]].reports_result VALUES (12, 'Result12', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/885/002', '', '', '', '', '', '', '', false, false, 6, 15, 9, 1, 73, 9, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.921985+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (11, 'Result11', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/885/005', '', '', '', '', '', '', '', false, false, 2, 5, 9, 1, 73, 9, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:41.967924+00', '0', 'NONE'); -INSERT INTO [[schema]].reports_result VALUES (9, 'Result9', '26', '2017-01-01', '2021-12-31', false, '0810/A0/05/885', '', '', '', '', '', '', '', false, false, 1, 44, 9, 0, 73, NULL, 1, NULL, '2018-03-15 16:11:11.815503+00', '2019-11-06 00:28:15.969835+00', NULL, NULL); -INSERT INTO [[schema]].reports_result VALUES (49, 'Result49', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/886/003', '', '', '', '', '', '', '', false, false, 10, 19, 6, 1, 73, 6, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:42.001493+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (52, 'Result52', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/886/004', '', '', '', '', '', '', '', false, false, 28, 43, 6, 1, 73, 6, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:42.012515+00', '3', 'PRINCIPAL'); -INSERT INTO [[schema]].reports_result VALUES (51, 'Result51', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/886/005', '', '', '', '', '', '', '', false, false, 26, 27, 6, 1, 73, 6, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:42.025815+00', '1', 'MARGINAL'); -INSERT INTO [[schema]].reports_result VALUES (22, 'Result22', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/880/005', '', '', '', '', '', '', '', false, false, 22, 43, 4, 1, 73, 4, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-04-06 00:03:42.087709+00', '3', 'PRINCIPAL'); -INSERT INTO [[schema]].reports_result VALUES (50, 'Result50', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/886/002', '', '', '', '', '', '', '', false, false, 20, 25, 6, 1, 73, 6, 2, NULL, '2018-03-15 16:11:11.815503+00', '2019-07-05 14:59:53.378537+00', '2', 'SIGNIFICANT'); +INSERT INTO [[schema]].reports_result VALUES (34, 'Result34', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/881/004', '', '', '', '', '', '', '', false, false, 20, 27, 5, 1, 73, 5, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.047801+00', '3', 'PRINCIPAL'); +INSERT INTO [[schema]].reports_result VALUES (35, 'Result35', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/881/005', '', '', '', '', '', '', '', false, false, 28, 29, 5, 1, 73, 5, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.05525+00', '0', 'NONE'); +INSERT INTO [[schema]].reports_result VALUES (57, 'Result57', '', '2017-01-01', '2019-12-31', false, '0810/A0/05/882/001', '', '', '', '', '', '', '', false, false, 24, 25, 2, 1, 73, 2, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.05916+00', '1', 'MARGINAL'); +INSERT INTO [[schema]].reports_result VALUES (54, 'Result54', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/882/004', '', '', '', '', '', '', '', false, false, 8, 17, 2, 1, 73, 2, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.079755+00', '3', 'PRINCIPAL'); +INSERT INTO [[schema]].reports_result VALUES (53, 'Result53', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/882/005', '', '', '', '', '', '', '', false, false, 2, 7, 2, 1, 73, 2, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.087367+00', '0', 'NONE'); +INSERT INTO [[schema]].reports_result VALUES (38, 'Result38', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/884/004', '', '', '', '', '', '', '', false, false, 6, 17, 8, 1, 73, 8, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.152202+00', '3', 'PRINCIPAL'); +INSERT INTO [[schema]].reports_result VALUES (37, 'Result37', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/884/005', '', '', '', '', '', '', '', false, false, 2, 5, 8, 1, 73, 8, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.1596+00', '0', 'NONE'); +INSERT INTO [[schema]].reports_result VALUES (48, 'Result48', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/886/001', '', '', '', '', '', '', '', false, false, 2, 9, 6, 1, 73, 6, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.167628+00', '2', 'SIGNIFICANT'); +INSERT INTO [[schema]].reports_result VALUES (50, 'Result50', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/886/002', '', '', '', '', '', '', '', false, false, 20, 25, 6, 1, 73, 6, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.175032+00', '2', 'SIGNIFICANT'); +INSERT INTO [[schema]].reports_result VALUES (49, 'Result49', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/886/003', '', '', '', '', '', '', '', false, false, 10, 19, 6, 1, 73, 6, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.182922+00', '1', 'MARGINAL'); +INSERT INTO [[schema]].reports_result VALUES (51, 'Result51', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/886/005', '', '', '', '', '', '', '', false, false, 26, 27, 6, 1, 73, 6, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.199787+00', '1', 'MARGINAL'); +INSERT INTO [[schema]].reports_result VALUES (22, 'Result22', '', '2017-01-01', '2021-12-31', false, '0810/A0/05/880/005', '', '', '', '', '', '', '', false, false, 22, 43, 4, 1, 73, 4, 2, NULL, '2018-03-15 16:11:11.815503+00', '2020-02-09 00:50:19.233558+00', '3', 'PRINCIPAL'); -- @@ -15782,6 +18125,10 @@ INSERT INTO [[schema]].reports_sector VALUES (11, 'SPPME', NULL, NULL, 'sppme', INSERT INTO [[schema]].reports_sector VALUES (12, 'Finance', NULL, NULL, 'fnanc', false, NULL, '2018-12-31 17:44:47.273448+00', '2018-12-31 17:44:47.286402+00', true); INSERT INTO [[schema]].reports_sector VALUES (13, 'Supply', NULL, NULL, 'supp', false, NULL, '2018-12-31 17:44:54.810153+00', '2018-12-31 17:44:54.826873+00', true); INSERT INTO [[schema]].reports_sector VALUES (14, 'Ressources Humaines', NULL, NULL, 'rh', false, NULL, '2018-12-31 17:45:09.493387+00', '2018-12-31 17:45:09.505769+00', true); +INSERT INTO [[schema]].reports_sector VALUES (15, 'Operations', NULL, NULL, 'Ops', false, NULL, '2020-02-19 15:56:06.563602+00', '2020-02-19 15:56:06.563602+00', true); +INSERT INTO [[schema]].reports_sector VALUES (16, 'Security', NULL, NULL, 'Security', false, NULL, '2020-02-19 15:56:36.140873+00', '2020-02-19 15:56:36.140873+00', true); +INSERT INTO [[schema]].reports_sector VALUES (17, 'Coordination', NULL, NULL, 'Coordination', false, NULL, '2020-02-19 15:56:56.619111+00', '2020-02-19 15:56:56.619111+00', true); +INSERT INTO [[schema]].reports_sector VALUES (18, 'Representation', NULL, NULL, 'Representation', false, NULL, '2020-02-19 15:57:14.831946+00', '2020-02-19 15:57:14.831946+00', true); -- @@ -15836,7 +18183,7 @@ INSERT INTO [[schema]].t2f_itineraryitem VALUES (16, 'Doba', 'Koumra', '2019-10- INSERT INTO [[schema]].t2f_itineraryitem VALUES (17, 'Koumra', 'Moundou', '2019-10-05', '2019-10-05', false, 'Car', NULL, 8, 3); INSERT INTO [[schema]].t2f_itineraryitem VALUES (18, 'N''Djamena', 'Moundou', '2019-10-07', '2019-10-14', false, 'Plane', 217, 9, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (19, 'Ndjamena', 'Mongo', '2019-10-03', '2019-10-03', false, 'Car', 218, 10, 0); -INSERT INTO [[schema]].t2f_itineraryitem VALUES (176, 'Bol', 'Mao', '2019-10-27', '2019-10-27', false, '', 218, 122, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (768, 'Benoye', 'Moundou', '2020-03-09', '2020-03-09', true, '', NULL, 456, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (30, 'Moundou', 'Ndjamena', '2019-10-03', '2019-10-03', false, 'Plane', NULL, 18, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (31, 'Ndjamena', 'Mongo', '2019-10-04', '2019-10-04', false, 'Car', NULL, 18, 1); INSERT INTO [[schema]].t2f_itineraryitem VALUES (32, 'Mongo', 'Ndjamena', '2019-10-06', '2019-10-06', false, 'Car', NULL, 18, 2); @@ -15921,6 +18268,8 @@ INSERT INTO [[schema]].t2f_itineraryitem VALUES (113, 'Ndjamena', 'Bol', '2019-1 INSERT INTO [[schema]].t2f_itineraryitem VALUES (109, 'Ndjamena', 'Districts Youe, Lere', '2019-10-13', '2019-10-14', false, 'Car', 218, 79, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (101, 'Moundou', 'Ndjamena', '2019-10-14', '2019-10-14', false, 'Plane', NULL, 75, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (102, 'Ndjamena', 'Moundou', '2019-10-17', '2019-10-17', false, 'Plane', NULL, 75, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (327, 'Dandi', 'N''Djamena', '2019-12-21', '2019-12-21', false, 'Car', 215, 207, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (449, 'Abeché', 'Amdam', '2020-03-04', '2020-03-08', false, '', 218, 292, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (136, 'Abeche', 'Ndjamena', '2019-10-14', '2019-10-14', false, 'Plane', 215, 70, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (110, 'N''Djamena', 'Koundoul', '2019-10-17', '2019-10-17', false, 'Car', 218, 80, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (103, 'Bol', 'N''Djamena', '2019-10-10', '2019-10-10', false, 'Car', 215, 76, 0); @@ -16018,6 +18367,8 @@ INSERT INTO [[schema]].t2f_itineraryitem VALUES (250, 'N''Djamena', 'Abeche', '2 INSERT INTO [[schema]].t2f_itineraryitem VALUES (251, 'Abeche', 'Goz-beida', '2019-11-23', '2019-11-28', false, 'Car', NULL, 154, 1); INSERT INTO [[schema]].t2f_itineraryitem VALUES (229, 'Moundou', 'Ndjamena', '2019-11-17', '2019-11-17', false, 'Car', 218, 150, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (252, 'Goz-beida', 'N''Djamena', '2019-11-28', '2019-11-29', false, 'Car', NULL, 154, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (355, 'ndjamena', 'Mongo', '2020-02-09', '2020-02-15', false, 'Car', 218, 223, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (282, 'N''Djamena', 'Rome', '2019-12-21', '2019-12-21', false, 'Plane', NULL, 174, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (260, 'N''Djamena', 'Bol', '2019-11-25', '2019-11-25', false, 'Plane', NULL, 159, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (213, 'NDJAMENA', 'MOUNDOU', '2019-10-17', '2019-10-17', false, 'Plane', 217, 141, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (214, 'MOUNDOU', 'DOBA', '2019-10-17', '2019-10-17', false, 'Car', 218, 141, 1); @@ -16025,24 +18376,31 @@ INSERT INTO [[schema]].t2f_itineraryitem VALUES (215, 'DOBA', 'MOUNDOU', '2019-1 INSERT INTO [[schema]].t2f_itineraryitem VALUES (216, 'MOUNDOU', 'NDJAMENA', '2019-10-21', '2019-10-21', false, 'Plane', NULL, 141, 3); INSERT INTO [[schema]].t2f_itineraryitem VALUES (217, 'NDJAMENA', 'BOL', '2019-10-28', '2019-10-28', false, 'Plane', 218, 141, 4); INSERT INTO [[schema]].t2f_itineraryitem VALUES (218, 'BOL', 'NDJAMENA', '2019-10-30', '2019-10-30', false, '', 218, 141, 5); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (450, 'Moundou', 'Gore', '2020-02-01', '2020-02-01', false, 'Car', NULL, 293, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (451, 'Gore', 'Moundou', '2020-02-06', '2020-02-06', false, 'Car', NULL, 293, 1); INSERT INTO [[schema]].t2f_itineraryitem VALUES (225, 'Moundou', 'Doba', '2019-10-28', '2019-10-28', false, 'Car', 218, 149, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (226, 'Doba', 'Bebedja', '2019-10-30', '2019-10-30', false, 'Car', 218, 149, 1); INSERT INTO [[schema]].t2f_itineraryitem VALUES (227, 'Bebedja', 'Bodo', '2019-10-31', '2019-10-31', false, 'Car', 218, 149, 2); INSERT INTO [[schema]].t2f_itineraryitem VALUES (228, 'Bodo', 'Moundou', '2019-11-01', '2019-11-01', false, 'Car', 218, 149, 3); -INSERT INTO [[schema]].t2f_itineraryitem VALUES (254, 'Ndjamena', 'Bol', '2019-11-20', '2019-11-20', false, 'Plane', 218, 155, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (537, 'Ndjamena', 'Mara', '2020-03-23', '2020-03-25', false, 'Car', 218, 341, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (230, 'Ndjamena', 'Moundou', '2019-11-21', '2019-11-21', false, 'Plane', 217, 150, 1); INSERT INTO [[schema]].t2f_itineraryitem VALUES (261, 'Bol', 'Baga Sola', '2019-11-25', '2019-11-25', true, 'Car', 218, 159, 1); INSERT INTO [[schema]].t2f_itineraryitem VALUES (262, 'Baga Sola', 'Bol', '2019-11-26', '2019-11-26', true, 'Car', 218, 159, 2); INSERT INTO [[schema]].t2f_itineraryitem VALUES (263, 'Bol', 'N''Djamena', '2019-11-27', '2019-11-27', false, 'Plane', NULL, 159, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (264, 'Moundou', 'Ndjamena', '2019-11-17', '2019-11-17', false, 'Car', 218, 165, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (265, 'Ndjamena', 'Moundpu', '2019-11-23', '2019-11-23', false, '', NULL, 165, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (266, 'Moundou', 'Pala', '2019-11-17', '2019-11-17', true, 'Car', 218, 167, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (267, 'Pala', 'Youe', '2019-11-19', '2019-11-19', true, 'Car', 218, 167, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (268, 'Youe', 'Moundou', '2019-11-22', '2019-11-22', true, 'Car', 218, 167, 2); INSERT INTO [[schema]].t2f_itineraryitem VALUES (258, 'mongo', 'N''djamena', '2019-11-17', '2019-11-17', false, 'Car', 215, 157, 0); -INSERT INTO [[schema]].t2f_itineraryitem VALUES (234, 'Moundou', 'Koumra', '2019-11-19', '2019-11-19', true, 'Car', 218, 152, 0); -INSERT INTO [[schema]].t2f_itineraryitem VALUES (235, 'Koumra', 'Moissala', '2019-11-20', '2019-11-20', false, 'Car', 218, 152, 1); -INSERT INTO [[schema]].t2f_itineraryitem VALUES (236, 'Moissala', 'Koumra', '2019-11-20', '2019-11-20', true, 'Car', 218, 152, 2); -INSERT INTO [[schema]].t2f_itineraryitem VALUES (237, 'Koumra', 'Bedjondo', '2019-11-21', '2019-11-21', false, 'Car', 218, 152, 3); -INSERT INTO [[schema]].t2f_itineraryitem VALUES (238, 'Bedjondo', 'Koumra', '2019-11-21', '2019-11-21', true, 'Car', 218, 152, 4); -INSERT INTO [[schema]].t2f_itineraryitem VALUES (239, 'Koumra', 'Bouna', '2019-11-22', '2019-11-22', false, 'Car', 218, 152, 5); -INSERT INTO [[schema]].t2f_itineraryitem VALUES (240, 'Bouna', 'Koumra', '2019-11-22', '2019-11-22', true, 'Car', 218, 152, 6); -INSERT INTO [[schema]].t2f_itineraryitem VALUES (241, 'Koumra', 'Moundou', '2019-11-23', '2019-11-23', false, '', NULL, 152, 7); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (338, 'Moundou', 'Ndjamena', '2020-01-22', '2020-01-22', false, '', NULL, 215, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (339, 'Ndjamena', 'Moundou', '2020-01-30', '2020-01-30', false, '', NULL, 215, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (367, 'Moundou', 'Doba', '2020-02-18', '2020-02-18', false, '', NULL, 253, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (439, 'Mao', 'Noukou', '2020-03-03', '2020-03-03', false, 'Car', 218, 288, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (340, 'Moundou', 'Ndjamena', '2020-02-23', '2020-02-23', true, 'Car', 215, 218, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (341, 'Ndjamena', 'Moundou', '2020-03-02', '2020-03-02', false, 'Plane', NULL, 218, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (353, 'Moundou', 'Doba', '2020-02-11', '2020-02-11', false, 'Car', NULL, 222, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (359, 'Bol', 'Massakory', '2020-02-13', '2020-02-13', false, 'Car', 218, 232, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (242, 'Moundou', 'Koumra', '2019-11-19', '2019-11-19', true, 'Car', 218, 153, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (243, 'Koumra', 'Moissala', '2019-11-20', '2019-11-20', false, 'Car', 218, 153, 1); INSERT INTO [[schema]].t2f_itineraryitem VALUES (244, 'Moissala', 'Koumra', '2019-11-20', '2019-11-20', true, 'Car', 218, 153, 2); @@ -16052,10 +18410,553 @@ INSERT INTO [[schema]].t2f_itineraryitem VALUES (247, 'Koumra', 'Bouna', '2019-1 INSERT INTO [[schema]].t2f_itineraryitem VALUES (248, 'Bouna', 'Koumra', '2019-11-22', '2019-11-22', true, 'Car', 218, 153, 6); INSERT INTO [[schema]].t2f_itineraryitem VALUES (249, 'Koumra', 'Moundou', '2019-11-23', '2019-11-23', false, '', NULL, 153, 7); INSERT INTO [[schema]].t2f_itineraryitem VALUES (259, 'N''djamena', 'Mongo', '2019-11-20', '2019-11-20', false, '', 215, 157, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (283, 'Rome', 'N''Djamena', '2020-01-05', '2020-01-06', true, 'Plane', NULL, 174, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (276, 'Moundou', 'Ndjamena', '2019-11-24', '2019-11-24', false, 'Car', NULL, 171, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (277, 'Ndjamena', 'Moundou', '2019-12-02', '2019-12-02', false, 'Plane', NULL, 171, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (278, 'Moundou', 'Pala', '2019-11-19', '2019-11-19', false, 'Car', 218, 172, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (279, 'Pala', 'Moundou', '2019-11-21', '2019-11-21', false, 'Car', 218, 172, 1); INSERT INTO [[schema]].t2f_itineraryitem VALUES (231, 'Ndjamena', 'Moundou', '2019-11-21', '2019-11-21', false, 'Plane', 218, 151, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (232, 'Moundou', 'Gore', '2019-11-21', '2019-11-21', false, 'Car', NULL, 151, 1); INSERT INTO [[schema]].t2f_itineraryitem VALUES (233, 'Gore', 'Moundou', '2019-11-27', '2019-11-27', false, 'Car', NULL, 151, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (280, 'Moundou', 'Bongor', '2019-11-24', '2019-11-24', false, 'Car', 218, 173, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (269, 'N''Djamena', 'Dandi (Departement Dagana)', '2019-11-25', '2019-11-25', false, 'Car', 218, 168, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (270, 'Dandi (Departement Dagana)', 'N''Djamena', '2019-11-30', '2019-11-30', false, 'Car', 218, 168, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (281, 'Bongor', 'Moundou', '2019-12-01', '2019-12-01', false, 'Car', NULL, 173, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (730, 'N''Djamena', 'N''Djamena', '2020-03-18', '2020-03-19', false, 'Car', NULL, 435, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (457, 'ABECHE', 'AMDAM ADRE HADJER HADID', '2020-03-10', '2020-03-11', false, 'Car', 218, 299, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (458, 'ABECHE', 'AMDAM ADRE', '2020-03-23', '2020-03-28', false, 'Car', 218, 300, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (425, 'N''Djaména', 'Dakar', '2020-03-21', '2020-03-21', false, 'Plane', 218, 277, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (653, 'Hadjer Lamis', 'N''Djamena', '2020-03-16', '2020-03-16', false, 'Car', 218, 406, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (295, 'Moundou', 'Ndjamena', '2019-12-01', '2019-12-01', false, 'Car', NULL, 177, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (306, 'N''Djamena', 'Bol', '2019-12-14', '2019-12-14', false, 'Car', 218, 186, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (271, 'Moundou', 'Bongor', '2019-11-22', '2019-11-22', false, '', NULL, 169, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (272, 'Bongor', 'Gounou Gaya', '2019-11-24', '2019-11-24', false, '', NULL, 169, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (273, 'Gounou Gaya', 'Fianga', '2019-11-26', '2019-11-26', false, '', NULL, 169, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (274, 'Fianga', 'Moundou', '2019-11-28', '2019-11-28', false, '', NULL, 169, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (307, 'Bol', 'N''Djamena', '2019-12-18', '2019-12-18', false, '', 218, 186, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (296, 'Ndjamena', 'Moundou', '2019-12-07', '2019-12-07', false, 'Car', NULL, 177, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (304, 'Gore', 'Moundou', '2019-12-06', '2019-12-06', true, 'Car', 218, 181, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (297, 'Moundou', 'N''djamena', '2019-12-01', '2019-12-01', false, 'Car', NULL, 182, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (298, 'N''djamena', 'Moundou', '2019-12-07', '2019-12-07', false, 'Car', NULL, 182, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (305, 'N''djamena', 'Bodo', '2019-12-05', '2019-12-15', false, 'Car', 218, 185, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (284, 'N''DJAMENA', 'MONGO', '2019-12-09', '2019-12-09', false, 'Car', 218, 175, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (285, 'MONGO', 'N''DJAMENA', '2019-12-13', '2019-12-13', false, 'Car', NULL, 175, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (286, 'N''DJAMENA', 'BONGOR', '2019-12-16', '2019-12-16', false, 'Car', 218, 175, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (288, 'Moundou', 'Lai', '2019-12-02', '2019-12-02', true, 'Car', 218, 176, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (289, 'Lai', 'Bere', '2019-12-03', '2019-12-03', false, '', 218, 176, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (290, 'Bere', 'Lai', '2019-12-03', '2019-12-03', true, '', 218, 176, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (291, 'Lai', 'Donomanga', '2019-12-04', '2019-12-04', false, 'Car', 218, 176, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (292, 'Donomanga', 'Lai', '2019-12-04', '2019-12-04', true, 'Car', 218, 176, 4); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (293, 'Lai', 'Lai', '2019-12-05', '2019-12-05', true, 'Car', 218, 176, 5); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (294, 'Lai', 'Moundou', '2019-12-06', '2019-12-06', false, '', NULL, 176, 6); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (303, 'Moundou', 'Gore', '2019-12-01', '2019-12-01', true, 'Car', 218, 181, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (287, 'BONGOR', 'N''DJAMENA', '2019-12-20', '2019-12-20', false, '', NULL, 175, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (299, 'Moundou', 'Bongor', '2019-11-22', '2019-11-22', false, '', NULL, 183, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (300, 'Bongor', 'Gounou Gaya', '2019-11-24', '2019-11-24', false, '', NULL, 183, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (301, 'Gounou Gaya', 'Fianga', '2019-11-26', '2019-11-26', false, '', NULL, 183, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (302, 'Fianga', 'Moundou', '2019-11-28', '2019-11-28', false, '', NULL, 183, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (308, 'N''Djamena', 'Moundou', '2019-12-23', '2019-12-23', false, 'Plane', 218, 187, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (309, 'Moundou', 'N''Djamena', '2019-12-26', '2019-12-26', false, 'Plane', 218, 187, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (275, 'N''Djamena', 'Sarh', '2019-12-16', '2019-12-16', false, 'Plane', 218, 170, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (314, 'Sarh', 'N''Djamena', '2019-12-23', '2019-12-23', false, 'Plane', NULL, 170, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (310, 'N''Djamena', 'Moundou', '2019-12-23', '2019-12-23', false, 'Plane', 218, 188, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (311, 'Moundou', 'N''Djamena', '2019-12-26', '2019-12-26', false, 'Plane', 218, 188, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (360, 'Massakory', 'Mao', '2020-02-16', '2020-02-16', false, 'Car', 218, 232, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (312, 'N''Djamena', 'Bol', '2019-12-14', '2019-12-14', false, 'Car', 218, 189, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (313, 'Bol', 'N''Djamena', '2019-12-18', '2019-12-18', false, '', 218, 189, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (315, 'Moundou', 'Laramanaye', '2019-12-08', '2019-12-08', false, 'Car', NULL, 197, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (356, 'N''Djaména', 'Ati', '2020-02-16', '2020-02-16', false, 'Car', 218, 230, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (328, 'N''Djamena', 'Moundou', '2020-01-07', '2020-01-07', false, 'Car', 217, 209, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (326, 'N''Djamena', 'Dandi', '2019-12-16', '2019-12-16', false, 'Car', 218, 207, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (316, 'Laramanaye', 'Moundou', '2019-12-19', '2019-12-19', false, 'Car', NULL, 197, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (329, 'Moundou', 'Benoye', '2020-01-12', '2020-01-12', false, 'Car', 217, 209, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (330, 'Benoye', 'Moundou', '2020-01-14', '2020-01-14', false, 'Car', 217, 209, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (331, 'Moundou', 'Krim-Krim', '2020-01-15', '2020-01-15', false, 'Car', 217, 209, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (317, 'NDJAMENA', 'BILTINE', '2019-12-17', '2019-12-22', false, 'Rail', 218, 198, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (332, 'Krim-Krim', 'Moundou', '2020-01-17', '2020-01-17', false, 'Car', 217, 209, 4); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (333, 'Moundou', 'N''Djamena', '2020-01-18', '2020-01-18', false, 'Car', NULL, 209, 5); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (334, 'N''Djamena', 'Moundou', '2020-01-02', '2020-01-02', false, 'Plane', NULL, 211, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (234, 'Moundou', 'Koumra', '2019-11-19', '2019-11-19', true, 'Car', 218, 152, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (235, 'Koumra', 'Moissala', '2019-11-20', '2019-11-20', false, 'Car', 218, 152, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (236, 'Moissala', 'Koumra', '2019-11-20', '2019-11-20', true, 'Car', 218, 152, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (237, 'Koumra', 'Bedjondo', '2019-11-21', '2019-11-21', false, 'Car', 218, 152, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (238, 'Bedjondo', 'Koumra', '2019-11-21', '2019-11-21', true, 'Car', 218, 152, 4); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (320, 'Moundou', 'Pala', '2019-12-10', '2019-12-10', false, 'Car', NULL, 204, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (321, 'Pala', 'Bongor', '2019-12-11', '2019-12-11', false, 'Car', NULL, 204, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (322, 'Bongor', 'Moulkou', '2019-12-12', '2019-12-12', false, 'Car', NULL, 204, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (323, 'Moulkou', 'Kelo', '2019-12-12', '2019-12-12', false, 'Car', NULL, 204, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (324, 'Kelo', 'Moundou', '2019-12-13', '2019-12-13', false, 'Car', NULL, 204, 4); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (239, 'Koumra', 'Bouna', '2019-11-22', '2019-11-22', false, 'Car', 218, 152, 5); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (240, 'Bouna', 'Koumra', '2019-11-22', '2019-11-22', true, 'Car', 218, 152, 6); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (241, 'Koumra', 'Moundou', '2019-11-23', '2019-11-23', false, '', NULL, 152, 7); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (335, 'Moundou', 'Doba', '2020-01-02', '2020-01-02', false, 'Car', NULL, 211, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (336, 'Doba', 'Moundou', '2020-01-08', '2020-01-08', false, 'Car', NULL, 211, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (337, 'Moundou', 'N''Djamena', '2020-01-09', '2020-01-09', false, '', NULL, 211, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (318, 'moundou', 'sarh', '2019-12-16', '2019-12-20', true, 'Car', 218, 201, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (354, 'Doba', 'Moundou', '2020-02-11', '2020-02-11', false, 'Car', NULL, 222, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (361, 'Mao', 'Baga sola', '2020-02-23', '2020-02-23', false, '', 218, 232, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (362, 'Baga sola', 'Mao', '2020-02-26', '2020-02-26', false, 'Car', 218, 232, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (363, 'Mao', 'Bol', '2020-02-29', '2020-02-29', false, '', 218, 232, 4); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (365, 'N''Djamena', 'Moundou', '2020-02-17', '2020-02-17', false, 'Plane', NULL, 233, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (366, 'Moundou', 'N''djamena', '2020-02-20', '2020-02-20', false, 'Plane', NULL, 233, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (357, 'N''Djamena', 'Kampala', '2020-03-16', '2020-03-17', true, 'Plane', NULL, 231, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (358, 'Kampala', 'N''Djamena', '2020-03-23', '2020-03-23', false, 'Plane', NULL, 231, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (364, 'Ati', 'N''Djaména', '2020-02-19', '2020-02-19', false, 'Car', 218, 230, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (350, 'Moundou', 'Pala', '2020-02-05', '2020-02-05', true, 'Car', 218, 221, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (351, 'Pala', 'Bongor', '2020-02-07', '2020-02-07', true, 'Car', 218, 221, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (352, 'Bongor', 'Moundou', '2020-02-08', '2020-02-08', true, 'Car', 218, 221, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (752, 'Moundou', 'Sarh', '2020-04-20', '2020-04-20', true, 'Car', 218, 448, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (753, 'Sarh', 'Moundou', '2020-04-24', '2020-04-24', true, 'Car', 218, 448, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (342, 'Moundou', 'Ndjamena', '2020-02-06', '2020-02-06', false, 'Plane', 215, 219, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (343, 'Ndjamena', 'Dakar', '2020-02-08', '2020-02-08', false, 'Plane', NULL, 219, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (344, 'Dakar', 'Ndjamena', '2020-02-15', '2020-02-15', false, 'Plane', NULL, 219, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (345, 'Ndjamena', 'Moundou', '2020-02-17', '2020-02-17', false, 'Plane', NULL, 219, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (368, 'Moundou', 'Kelo', '2020-02-17', '2020-02-17', false, 'Car', 218, 255, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (369, 'Kelo', 'Lai', '2020-02-20', '2020-02-20', false, 'Car', 218, 255, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (370, 'Lai', 'Moundou', '2020-02-23', '2020-02-23', false, 'Car', 218, 255, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (346, 'Moundou', 'Gore', '2020-02-18', '2020-02-18', false, 'Car', 218, 220, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (347, 'Gore', 'Koumra', '2020-02-19', '2020-02-19', false, 'Car', NULL, 220, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (348, 'Koumra', 'Sarh', '2020-02-20', '2020-02-20', false, 'Car', NULL, 220, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (349, 'Sarh', 'Moundou', '2020-02-22', '2020-02-22', false, 'Car', 218, 220, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (397, 'Ndjamena', 'Moundou', '2020-03-01', '2020-03-01', true, 'Car', NULL, 265, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (769, 'Pala', 'Moundou', '2020-03-17', '2020-03-17', true, 'Car', NULL, 457, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (319, 'moundou', 'sarh', '2019-12-16', '2019-12-20', true, 'Car', 218, 202, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (589, 'Mongo', 'N''djamena', '2020-04-19', '2020-04-19', false, 'Car', 215, 373, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (371, 'Moundou', 'Pala', '2020-02-17', '2020-02-17', false, 'Car', 218, 256, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (372, 'Pala', 'Lere/Binder', '2020-02-20', '2020-02-20', false, 'Car', 218, 256, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (373, 'Lere/Binder', 'Moundou', '2020-02-23', '2020-02-23', false, 'Car', 218, 256, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (853, 'Bol', 'Baga sola', '2020-04-23', '2020-04-23', true, 'Car', 218, 488, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (390, 'Moundou', 'Pala', '2020-02-17', '2020-02-17', false, '', NULL, 262, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (391, 'Pala', 'Moundou', '2020-02-21', '2020-02-21', false, '', NULL, 262, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (377, 'Moundou', 'N''Djamena', '2020-02-24', '2020-02-24', false, '', NULL, 260, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (378, 'N''Djamena', 'Douguia', '2020-02-24', '2020-02-24', false, '', NULL, 260, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (379, 'Douguia', 'N''djamena', '2020-02-29', '2020-02-29', false, '', NULL, 260, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (380, 'N''djamena', 'Moundou', '2020-03-02', '2020-03-02', false, '', NULL, 260, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (394, 'Moundou', 'N''djamena', '2020-01-25', '2020-01-25', false, '', NULL, 264, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (395, 'N''djamena', 'Moundou', '2020-02-01', '2020-02-01', false, '', NULL, 264, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (392, 'Moundou', 'N''djamena', '2020-01-12', '2020-01-12', false, '', NULL, 263, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (393, 'N''djamena', 'Moundou', '2020-01-24', '2020-01-24', false, '', NULL, 263, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (590, 'N''djamena', 'Mongo', '2020-04-26', '2020-04-26', false, 'Car', 215, 373, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (396, 'Moundou', 'Ndjamena', '2020-02-23', '2020-03-01', true, 'Car', 215, 265, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (400, 'N''Djamena', 'Mara', '2020-02-25', '2020-02-25', true, 'Car', 218, 267, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (401, 'Mara', 'N''Djamena', '2020-02-28', '2020-02-28', false, 'Car', 218, 267, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (381, 'Moundou', 'Sarh', '2020-02-10', '2020-02-10', false, '', NULL, 261, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (382, 'Sarh', 'Maro', '2020-02-11', '2020-02-11', false, '', NULL, 261, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (383, 'Maro', 'Danamadji', '2020-02-12', '2020-02-12', false, '', NULL, 261, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (384, 'Danamadji', 'Sarh', '2020-02-12', '2020-02-12', false, '', NULL, 261, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (385, 'Sarh', 'Biobe', '2020-02-13', '2020-02-13', false, '', NULL, 261, 4); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (386, 'Biobe', 'Kyabe', '2020-02-14', '2020-02-14', false, '', NULL, 261, 5); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (387, 'Kyabe', 'Sarh', '2020-02-15', '2020-02-15', false, '', NULL, 261, 6); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (388, 'Sarh', 'Korbol', '2020-02-16', '2020-02-16', false, '', NULL, 261, 7); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (389, 'Korbol', 'Moundou', '2020-02-17', '2020-02-17', false, '', NULL, 261, 8); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (402, 'Moundou', 'Sarh', '2020-03-09', '2020-03-09', true, 'Car', 218, 269, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (403, 'Sarh', 'Moundou', '2020-03-17', '2020-03-17', true, 'Car', 218, 269, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (566, 'N''Djamena', 'Bangui', '2020-04-09', '2020-04-09', false, 'Plane', NULL, 355, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (452, 'Doba', 'Moundou', '2020-02-14', '2020-02-14', false, 'Car', NULL, 294, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (623, 'Bol', 'N''Djamena', '2020-03-16', '2020-03-16', false, 'Plane', 218, 391, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (437, 'Bitkine', 'Niergui', '2020-03-25', '2020-03-27', false, 'Car', 218, 285, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (583, 'N''Djamena', 'Mongo', '2020-03-17', '2020-03-17', false, 'Car', 218, 369, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (542, 'Moundou', 'Benoye', '2020-03-26', '2020-03-26', false, 'Car', NULL, 343, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (545, 'Ndjamena', 'Mao', '2020-04-12', '2020-04-12', false, 'Car', 218, 322, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (640, 'Moundou', 'Bouna', '2020-03-16', '2020-03-16', false, 'Car', NULL, 401, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (438, 'Bol', 'Mao', '2020-02-26', '2020-02-26', false, 'Car', 218, 288, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (408, 'N''Djamena', 'Mongo', '2020-03-09', '2020-03-09', true, 'Car', 218, 270, 4); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (409, 'Mongo', 'N''Djamena', '2020-03-11', '2020-03-11', false, 'Car', NULL, 270, 5); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (410, 'N''Djamena', 'Bol', '2020-03-12', '2020-03-12', true, 'Car', 218, 270, 6); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (411, 'Bol', 'N''Djamena', '2020-03-14', '2020-03-14', false, 'Car', NULL, 270, 7); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (418, 'N''Djamena', 'Mongo', '2020-03-09', '2020-03-09', true, 'Car', 218, 272, 4); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (419, 'Mongo', 'N''Djamena', '2020-03-11', '2020-03-11', false, 'Car', NULL, 272, 5); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (420, 'N''Djamena', 'Bol', '2020-03-12', '2020-03-12', true, 'Car', 218, 272, 6); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (421, 'Bol', 'N''Djamena', '2020-03-14', '2020-03-14', false, 'Car', NULL, 272, 7); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (404, 'N''Djamena', 'Abeche', '2020-03-02', '2020-03-02', true, 'Plane', 217, 270, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (453, 'Moundou', 'lai', '2020-03-24', '2020-03-24', false, 'Car', 218, 295, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (454, 'lai', 'Moundou', '2020-03-27', '2020-03-27', false, 'Car', NULL, 295, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (422, 'Moundou', 'Gore', '2020-02-25', '2020-02-25', false, 'Car', NULL, 273, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (423, 'Gore', 'Moundou', '2020-02-25', '2020-02-25', false, 'Car', NULL, 273, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (412, 'Moundou', 'Goré', '2020-02-25', '2020-02-25', true, 'Car', 218, 271, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (413, 'Goré', 'Moundou', '2020-02-25', '2020-02-25', true, 'Car', 218, 271, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (440, 'Noukou', 'Moussoro', '2020-03-05', '2020-03-05', false, 'Car', 218, 288, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (441, 'Moussoro', 'Mao', '2020-03-07', '2020-03-07', false, '', 218, 288, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (442, 'Bol', 'Mao', '2020-02-26', '2020-02-26', false, 'Car', 218, 289, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (443, 'Mao', 'Noukou', '2020-03-03', '2020-03-03', false, 'Car', 218, 289, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (444, 'Noukou', 'Moussoro', '2020-03-05', '2020-03-05', false, 'Car', 218, 289, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (445, 'Moussoro', 'Mao', '2020-03-07', '2020-03-07', false, '', 218, 289, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (488, 'Ndjamena', 'Moussoro', '2020-03-04', '2020-03-07', true, 'Car', 218, 318, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (426, 'Dakar', 'N''Djaména', '2020-03-26', '2020-03-26', false, 'Plane', 218, 277, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (470, 'Moundou', 'N''Djamena', '2020-03-16', '2020-03-16', false, 'Plane', NULL, 307, 4); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (579, 'N''Djamena', 'Massaguet', '2020-03-11', '2020-03-11', false, 'Car', NULL, 366, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (567, 'Bangui', 'Nairobi', '2020-04-18', '2020-04-18', false, 'Plane', NULL, 355, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (424, 'bol', 'ndjamena', '2020-02-25', '2020-02-25', false, 'Car', 215, 276, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (496, 'Moundou', 'Benoye', '2020-03-05', '2020-03-05', false, 'Car', 218, 324, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (580, 'Massaguet', 'N''Djamena', '2020-03-11', '2020-03-11', false, 'Car', NULL, 366, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (591, 'N''Djamena', 'Mongo', '2020-03-17', '2020-03-17', false, 'Car', 218, 374, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (592, 'Mongo', 'N''Djamena', '2020-03-21', '2020-03-21', false, 'Car', NULL, 374, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (427, 'Ndjamena', 'Dakar', '2020-03-02', '2020-03-02', false, 'Plane', 218, 279, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (434, 'Dakar', 'Ndjamena', '2020-03-05', '2020-03-05', false, 'Plane', 218, 279, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (593, 'N''Djamena', 'Mongo', '2020-03-17', '2020-03-17', false, 'Car', 218, 376, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (594, 'Mongo', 'N''Djamena', '2020-03-21', '2020-03-21', false, 'Car', NULL, 376, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (414, 'N''Djamena', 'Abeche', '2020-03-02', '2020-03-02', true, 'Plane', 218, 272, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (415, 'Abeche', 'N''Djamena', '2020-03-04', '2020-03-04', false, 'Plane', NULL, 272, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (446, 'N''Djamena', 'Bokoro', '2020-03-03', '2020-03-03', false, 'Car', 218, 291, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (447, 'Bokoro', 'Moussoro', '2020-03-08', '2020-03-08', false, 'Car', 218, 291, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (448, 'Moussoro', 'N''Djamena', '2020-03-13', '2020-03-13', false, 'Car', 218, 291, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (497, 'Benoye', 'Moundou', '2020-03-05', '2020-03-05', false, 'Car', NULL, 324, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (405, 'Abeche', 'N''Djamena', '2020-03-04', '2020-03-04', false, 'Plane', NULL, 270, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (406, 'N''Djamena', 'Moundou', '2020-03-05', '2020-03-05', true, 'Plane', 217, 270, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (407, 'Moundou', 'N''Djamena', '2020-03-07', '2020-03-07', false, 'Car', NULL, 270, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (416, 'N''Djamena', 'Moundou', '2020-03-05', '2020-03-05', true, 'Plane', 217, 272, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (417, 'Moundou', 'N''Djamena', '2020-03-07', '2020-03-07', false, 'Car', NULL, 272, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (498, 'Moundou', 'Krim-Krim', '2020-03-06', '2020-03-06', false, 'Car', 218, 324, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (455, 'N''DJAMENA', 'MASSENYA', '2020-03-11', '2020-03-11', false, 'Car', 218, 297, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (456, 'MASSENYA', 'N''DJAMENA', '2020-03-14', '2020-03-14', false, 'Car', 218, 297, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (459, 'N''Djamena', 'Pala', '2020-03-03', '2020-03-03', true, 'Car', 218, 303, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (460, 'Pala', 'Moundou', '2020-03-04', '2020-03-04', true, 'Car', 217, 303, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (461, 'Moundou', 'N''Djamena', '2020-03-05', '2020-03-05', false, 'Plane', 218, 303, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (465, 'Ndjamena', 'Massakory', '2020-02-04', '2020-02-07', false, 'Car', 218, 304, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (479, 'N''DJAMENA', 'MASSENYA', '2020-03-08', '2020-03-08', false, 'Car', 218, 309, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (480, 'MASSENYA', 'N''DJAMENA', '2020-03-14', '2020-03-14', false, 'Car', 218, 309, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (499, 'Krim-Krim', 'Moundou', '2020-03-06', '2020-03-06', false, '', NULL, 324, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (481, 'N''Djamena', 'Moundou', '2020-03-09', '2020-03-09', false, 'Plane', 217, 310, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (504, 'N''djamena', 'Moundou', '2020-03-12', '2020-03-12', false, 'Car', 217, 327, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (505, 'Moundou', 'Doba', '2020-03-15', '2020-03-15', false, 'Car', 218, 327, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (489, 'N''djamena', 'Moundou', '2020-03-12', '2020-03-12', false, 'Car', 217, 319, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (490, 'Moundou', 'Doba', '2020-03-15', '2020-03-15', false, 'Car', 218, 319, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (491, 'Doba', 'Moundou', '2020-03-17', '2020-03-17', false, 'Car', NULL, 319, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (492, 'Moundou', 'N''Djamena', '2020-03-19', '2020-03-19', false, 'Car', NULL, 319, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (482, 'Moundou', 'Moundou', '2020-03-09', '2020-03-10', false, 'Plane', 217, 310, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (483, 'Moundou', 'Sarh', '2020-03-10', '2020-03-15', false, 'Car', 218, 310, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (484, 'Sarh', 'Moundou', '2020-03-15', '2020-03-16', false, 'Car', 217, 310, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (485, 'Moundou', 'N''Djamena', '2020-03-16', '2020-03-16', false, 'Plane', NULL, 310, 4); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (493, 'Moundou', 'Bouna', '2020-03-16', '2020-03-16', false, 'Car', NULL, 320, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (466, 'N''Djamena', 'Moundou', '2020-03-09', '2020-03-09', false, 'Plane', 217, 307, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (467, 'Moundou', 'Moundou', '2020-03-09', '2020-03-10', false, 'Plane', 217, 307, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (468, 'Moundou', 'Sarh', '2020-03-10', '2020-03-15', false, 'Car', 218, 307, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (469, 'Sarh', 'Moundou', '2020-03-15', '2020-03-16', false, 'Car', 217, 307, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (494, 'Bouna', 'Moissala', '2020-03-19', '2020-03-19', false, 'Car', NULL, 320, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (471, 'NDjamena', 'Bol', '2020-03-09', '2020-03-09', true, 'Plane', 218, 308, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (472, 'Bol', 'NDjamena', '2020-03-13', '2020-03-13', false, '', NULL, 308, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (473, 'NDjamena', 'Moundou', '2020-03-16', '2020-03-16', true, 'Plane', 218, 308, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (486, 'N''DJAMENA', 'MASSENYA', '2020-03-08', '2020-03-08', false, 'Car', 218, 311, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (487, 'MASSENYA', 'N''DJAMENA', '2020-03-14', '2020-03-14', false, 'Car', 218, 311, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (474, 'Moundou', 'NDjamena', '2020-03-19', '2020-03-19', false, 'Plane', NULL, 308, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (475, 'NDjamena', 'Abeché', '2020-03-23', '2020-03-23', true, 'Plane', 218, 308, 4); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (476, 'Abeché', 'NDjamena', '2020-03-27', '2020-03-27', false, 'Plane', NULL, 308, 5); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (477, 'NDjamena', 'Mongo', '2020-03-31', '2020-03-31', true, 'Car', 218, 308, 6); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (478, 'Mongo', 'NDjamena', '2020-04-04', '2020-04-04', false, 'Car', NULL, 308, 7); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (495, 'Moissala', 'Moundou', '2020-03-20', '2020-03-20', false, 'Car', NULL, 320, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (506, 'Doba', 'Moundou', '2020-03-17', '2020-03-17', false, 'Car', NULL, 327, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (507, 'Moundou', 'N''Djamena', '2020-03-19', '2020-03-19', false, 'Car', NULL, 327, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (508, 'N''djamena', 'Moundou', '2020-03-12', '2020-03-12', false, 'Car', 217, 328, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (509, 'Moundou', 'Doba', '2020-03-15', '2020-03-15', false, 'Car', 218, 328, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (500, 'Abeche', 'Moura', '2020-03-04', '2020-03-04', false, 'Car', NULL, 325, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (501, 'Moura', 'Abeche', '2020-03-04', '2020-03-04', false, 'Car', NULL, 325, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (510, 'Doba', 'Moundou', '2020-03-17', '2020-03-17', false, 'Car', NULL, 328, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (511, 'Moundou', 'N''Djamena', '2020-03-19', '2020-03-19', false, 'Car', NULL, 328, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (571, 'Abeche', 'Magrane', '2020-03-17', '2020-03-17', true, 'Car', 218, 358, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (512, 'N''djamena', 'Moundou', '2020-03-12', '2020-03-12', false, 'Car', 217, 329, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (513, 'Moundou', 'Doba', '2020-03-15', '2020-03-15', false, 'Car', 218, 329, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (514, 'Doba', 'Moundou', '2020-03-17', '2020-03-17', false, 'Car', NULL, 329, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (515, 'Moundou', 'N''Djamena', '2020-03-19', '2020-03-19', false, 'Car', NULL, 329, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (463, 'Baro', 'Mangalme', '2020-03-31', '2020-03-31', false, 'Car', NULL, 285, 4); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (502, 'N''Djamena', 'Kinshasa', '2020-03-06', '2020-03-07', true, 'Plane', NULL, 326, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (503, 'Kinshasa', 'N''Djamena', '2020-03-20', '2020-03-21', true, 'Plane', NULL, 326, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (464, 'Mangalme', 'Mongo', '2020-04-02', '2020-04-02', false, 'Car', 218, 285, 5); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (847, 'MONGO', 'ABOUDEIA', '2020-04-20', '2020-04-20', false, 'Car', 218, 486, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (549, 'Bol', 'N''djamena', '2020-03-09', '2020-03-09', false, 'Plane', 218, 345, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (629, 'Moundou', 'Bouna', '2020-03-16', '2020-03-16', false, 'Car', NULL, 397, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (520, 'N''djamena', 'Abeche', '2020-03-10', '2020-03-13', false, '', 218, 333, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (550, 'N''djamena', 'Bol', '2020-03-16', '2020-03-16', false, 'Plane', 218, 345, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (524, 'NDjamena', 'Abeche', '2020-03-16', '2020-03-16', false, 'Plane', NULL, 334, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (525, 'Abeche', 'NDjamena', '2020-03-23', '2020-03-23', false, '', NULL, 334, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (568, 'Nairobi', 'Lilongwe', '2020-04-19', '2020-04-19', false, 'Plane', NULL, 355, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (516, 'NDjamena', 'Abeche', '2020-03-16', '2020-03-16', false, 'Plane', 218, 331, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (517, 'Abeche', 'NDjamena', '2020-03-23', '2020-03-23', false, 'Plane', NULL, 331, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (563, 'Bol', 'Ndjamena', '2020-03-11', '2020-03-11', false, 'Boat', NULL, 351, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (557, 'Moundou', 'Ndjamena', '2020-03-09', '2020-03-09', false, 'Plane', 215, 348, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (558, 'Ndjamena', 'Moundou', '2020-03-12', '2020-03-12', false, 'Car', 215, 348, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (564, 'Ndjamena', 'Bol', '2020-03-18', '2020-03-18', false, 'Boat', NULL, 351, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (543, 'Benoye', 'Moundou', '2020-03-28', '2020-03-28', false, 'Car', NULL, 343, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (527, 'Bol', 'Moussoro', '2020-03-05', '2020-03-05', false, 'Car', 218, 283, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (528, 'Moussoro', 'Bokoro', '2020-03-07', '2020-03-07', false, 'Car', 218, 283, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (529, 'Bokoro', 'Bol', '2020-03-11', '2020-03-11', false, 'Car', 218, 283, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (848, 'ABOUDEIA', 'AMTIMAN', '2020-04-22', '2020-04-22', false, 'Car', 218, 486, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (523, 'N''djamena', 'Kigali', '2020-03-16', '2020-03-17', false, 'Plane', 218, 336, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (526, 'Kigali', 'N''djamena', '2020-03-30', '2020-03-30', false, '', NULL, 336, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (559, 'Moundou', 'Ndjamena', '2020-03-11', '2020-03-11', false, 'Car', 215, 349, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (560, 'Ndjamena', 'Moundou', '2020-03-13', '2020-03-13', false, 'Car', 218, 349, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (546, 'Ndjamena', 'Mao', '2020-03-29', '2020-03-29', false, 'Car', 218, 321, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (544, 'Ndjamena', 'Moussoro', '2020-04-26', '2020-04-26', false, 'Car', 218, 323, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (601, 'N''Djamena', 'Mongo', '2020-03-17', '2020-03-17', false, 'Car', 218, 380, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (602, 'Mongo', 'N''Djamena', '2020-03-21', '2020-03-21', false, 'Car', NULL, 380, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (530, 'N''djamena', 'Moundou', '2020-03-12', '2020-03-12', false, 'Car', 217, 338, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (398, 'Ndjamena', 'Abeche', '2020-03-23', '2020-03-23', true, 'Plane', 218, 266, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (399, 'Abeche', 'Ndjamena', '2020-03-26', '2020-03-26', false, 'Plane', 218, 266, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (531, 'Moundou', 'Doba', '2020-03-15', '2020-03-15', false, 'Car', 218, 338, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (538, 'BOL', 'Ndjamena', '2020-03-11', '2020-03-11', false, 'Car', 215, 342, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (539, 'Ndjamena', 'BOL', '2020-03-12', '2020-03-12', false, 'Car', 218, 342, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (540, 'BOL', 'Ndjamena', '2020-03-14', '2020-03-14', false, 'Car', 215, 342, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (534, 'Bol', 'Moussoro', '2020-03-05', '2020-03-05', false, 'Car', 218, 339, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (535, 'Moussoro', 'Bokoro', '2020-03-07', '2020-03-07', false, 'Car', 218, 339, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (536, 'Bokoro', 'Bol', '2020-03-11', '2020-03-11', false, 'Car', 218, 339, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (541, 'Ndjamena', 'BOL', '2020-03-16', '2020-03-16', false, 'Car', 218, 342, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (532, 'Doba', 'Moundou', '2020-03-17', '2020-03-17', false, 'Car', NULL, 338, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (533, 'Moundou', 'N''Djamena', '2020-03-19', '2020-03-19', false, 'Car', NULL, 338, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (595, 'N''Djamena', 'Mongo', '2020-03-17', '2020-03-17', false, 'Car', 218, 377, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (596, 'Mongo', 'N''Djamena', '2020-03-21', '2020-03-21', false, 'Car', NULL, 377, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (551, 'N''Djamena', 'Bol', '2020-03-11', '2020-03-11', true, 'Plane', 218, 346, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (552, 'Bol', 'Dabantchali', '2020-03-12', '2020-03-12', false, 'Car', 218, 346, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (555, 'Moundou', 'Doba', '2020-03-12', '2020-03-12', false, 'Car', 218, 347, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (556, 'Doba', 'Moundou', '2020-03-18', '2020-03-18', false, 'Car', 218, 347, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (553, 'Dabantchali', 'Bol', '2020-03-12', '2020-03-12', true, 'Car', 218, 346, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (435, 'Mongo', 'Melfi', '2020-03-23', '2020-03-23', false, 'Car', 218, 285, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (436, 'Melfi', 'Bitkine', '2020-03-25', '2020-03-25', false, 'Car', 218, 285, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (462, 'Niergui', 'Baro', '2020-03-29', '2020-03-29', false, 'Car', 218, 285, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (554, 'Bol', 'N''Djamena', '2020-03-13', '2020-03-13', false, 'Plane', NULL, 346, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (574, 'Abeche', 'Magrane', '2020-03-17', '2020-03-17', true, 'Car', 218, 359, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (575, 'Magrane', 'Amdam', '2020-03-27', '2020-03-27', true, 'Car', 218, 359, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (576, 'Amdam', 'Abeche', '2020-04-02', '2020-04-02', false, 'Car', 218, 359, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (572, 'Magrane', 'Amdam', '2020-03-27', '2020-03-27', true, 'Car', 218, 358, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (573, 'Amdam', 'Abeche', '2020-04-02', '2020-04-02', false, 'Car', 218, 358, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (577, 'Ndjamena', 'Abeche', '2020-03-16', '2020-03-16', false, 'Plane', 218, 360, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (561, 'N''Djamena', 'Moundou', '2020-03-22', '2020-03-22', false, 'Car', 217, 350, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (562, 'Moundou', 'N''Djamena', '2020-03-27', '2020-03-27', false, '', 217, 350, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (630, 'Bouna', 'Moissala', '2020-03-19', '2020-03-19', false, 'Car', NULL, 397, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (606, 'Mongo', 'N''djamena', '2020-04-19', '2020-04-19', true, 'Car', 215, 385, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (607, 'N''djamena', 'Mongo', '2020-04-26', '2020-04-26', true, 'Car', 215, 385, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (597, 'Moundou', 'N''djamena', '2020-03-23', '2020-03-23', false, 'Plane', NULL, 378, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (857, 'Moundou', 'Gore', '2020-04-27', '2020-04-27', false, 'Car', NULL, 490, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (581, 'N''Djamena', 'Abeche', '2020-03-16', '2020-03-16', false, 'Plane', 218, 368, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (582, 'Abeche', 'N''Djamena', '2020-03-20', '2020-03-20', false, '', 218, 368, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (584, 'Mongo', 'N''Djamena', '2020-03-21', '2020-03-21', false, 'Car', NULL, 369, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (858, 'Gore', 'Moundou', '2020-04-29', '2020-04-29', false, 'Car', NULL, 490, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (598, 'N''djamena', 'Moundou', '2020-03-30', '2020-03-30', false, '', NULL, 378, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (631, 'Moissala', 'Moundou', '2020-03-20', '2020-03-20', false, 'Car', NULL, 397, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (599, 'N''Djamena', 'Mongo', '2020-03-17', '2020-03-17', false, 'Car', 218, 379, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (600, 'Mongo', 'N''Djamena', '2020-03-21', '2020-03-21', false, 'Car', NULL, 379, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (603, 'Ndjamena', 'Abidjan', '2020-03-21', '2020-03-21', false, 'Plane', NULL, 381, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (605, 'Ndjamena', 'Mara', '2020-03-15', '2020-03-15', false, 'Car', NULL, 384, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (624, 'Moundou', 'N''djamena', '2020-04-09', '2020-04-09', false, 'Plane', 215, 392, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (625, 'N''djamena', 'Moundou', '2020-04-27', '2020-04-27', false, 'Plane', NULL, 392, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (754, 'Moundou', 'Sarh', '2020-04-27', '2020-04-27', false, 'Car', 218, 449, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (585, 'N''Djamena', 'Mongo', '2020-03-17', '2020-03-17', false, 'Car', 218, 371, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (755, 'Sarh', 'Moundou', '2020-04-30', '2020-04-30', false, '', 218, 449, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (626, 'Ndjamena', 'Mara', '2020-03-15', '2020-03-15', false, 'Car', NULL, 395, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (586, 'Mongo', 'N''Djamena', '2020-03-21', '2020-03-21', false, 'Car', NULL, 371, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (759, 'Moundou', 'Ndjamena', '2020-03-31', '2020-03-31', false, 'Car', NULL, 451, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (253, 'Bol', 'Ndjamena', '2019-11-17', '2019-11-17', false, 'Car', 215, 155, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (632, 'Abeche', 'Ndjamena', '2020-03-16', '2020-03-16', false, 'Plane', 215, 398, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (633, 'Ndjamena', 'Abeche', '2020-03-18', '2020-03-18', false, 'Plane', 215, 398, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (254, 'Ndjamena', 'Bol', '2019-11-20', '2019-11-20', false, 'Plane', 218, 155, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (641, 'Bouna', 'Moissala', '2020-03-19', '2020-03-19', false, 'Car', NULL, 401, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (642, 'Moissala', 'Moundou', '2020-03-20', '2020-03-20', false, 'Car', NULL, 401, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (760, 'N''djamena', 'Moundou', '2020-03-30', '2020-03-30', false, '', NULL, 452, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (649, 'Mongo', 'Ati', '2020-03-23', '2020-03-23', false, 'Car', 218, 404, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (669, 'Mongo', 'Ati', '2020-03-23', '2020-03-23', true, 'Car', 218, 416, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (670, 'Ati', 'Mongo', '2020-03-27', '2020-03-27', true, 'Car', 218, 416, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (695, 'BOKORO', 'ATI', '2020-03-20', '2020-03-20', true, 'Car', 218, 425, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (638, 'abeche', 'biltine', '2020-03-30', '2020-03-30', false, 'Car', 218, 400, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (639, 'biltine', 'abeche', '2020-04-01', '2020-04-01', false, 'Car', 218, 400, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (618, 'Ndjamena', 'Lisbonne', '2020-03-23', '2020-03-23', false, 'Plane', NULL, 388, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (619, 'Lisbonne', 'Ndjamena', '2020-04-03', '2020-04-04', true, 'Plane', NULL, 388, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (627, 'N''Djamena', 'Abeche', '2020-03-16', '2020-03-16', false, 'Plane', 218, 396, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (628, 'Abeche', 'N''Djamena', '2020-03-17', '2020-03-17', false, '', NULL, 396, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (677, 'Mongo', 'N''Djamena', '2020-03-24', '2020-03-24', false, 'Car', 215, 419, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (678, 'N''Djamena', 'Mongo', '2020-03-27', '2020-03-27', false, 'Car', 215, 419, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (657, 'Bol', 'Ndjamena', '2020-03-18', '2020-03-18', true, 'Plane', 215, 408, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (658, 'Ndjamena', 'Bol', '2020-03-20', '2020-03-20', false, 'Car', 218, 408, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (614, 'Abéché', 'Ngueri', '2020-03-12', '2020-03-12', false, 'Bus', NULL, 387, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (615, 'Ngueri', 'Abeche', '2020-03-12', '2020-03-12', false, 'Bus', 218, 387, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (616, 'Abeche', 'Barde', '2020-03-13', '2020-03-13', true, 'Bus', 218, 387, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (617, 'Barde', 'Abeche', '2020-03-14', '2020-03-14', false, 'Bus', 218, 387, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (679, 'MONGO', 'N''DJAMENA', '2020-03-24', '2020-03-24', false, 'Car', 215, 420, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (680, 'N''DJAMENA', 'MONGO', '2020-03-27', '2020-03-27', false, 'Car', 215, 420, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (622, 'Bol', 'N''Djamena', '2020-03-16', '2020-03-16', false, 'Plane', 218, 390, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (643, 'Moundou', 'Bouna', '2020-03-16', '2020-03-16', false, 'Car', NULL, 402, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (644, 'Bouna', 'Moissala', '2020-03-19', '2020-03-19', false, 'Car', NULL, 402, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (645, 'Moissala', 'Moundou', '2020-03-20', '2020-03-20', false, 'Car', NULL, 402, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (665, 'NDjamena', 'Mara', '2020-03-17', '2020-03-17', true, 'Car', 218, 414, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (666, 'Mara', 'NDjamena', '2020-03-21', '2020-03-21', false, 'Car', NULL, 414, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (620, 'Moundou', 'Ndjamena', '2020-03-19', '2020-03-19', true, 'Plane', 215, 389, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (621, 'Ndjamena', 'Moundou', '2020-03-19', '2020-03-19', true, 'Plane', 218, 389, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (660, 'Abeche', 'Guereda/Biltine', '2020-03-30', '2020-03-30', false, '', 218, 409, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (661, 'Guereda/Biltine', 'Abeche', '2020-04-02', '2020-04-02', false, '', 218, 409, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (662, 'Abeche', 'N''Djamena', '2020-04-03', '2020-04-03', false, '', 218, 409, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (651, 'Moundou', 'Gore', '2020-03-30', '2020-03-30', false, 'Car', 218, 405, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (652, 'Gore', 'Moundou', '2020-04-01', '2020-04-01', false, 'Car', NULL, 405, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (650, 'Ati', 'Mongo', '2020-03-27', '2020-03-27', false, 'Car', 218, 404, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (687, 'mongo', 'n,djamena', '2020-03-24', '2020-03-24', false, 'Car', 215, 422, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (646, 'Moundou', 'Bouna', '2020-03-16', '2020-03-16', false, 'Car', NULL, 403, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (647, 'Bouna', 'Moissala', '2020-03-19', '2020-03-19', false, 'Car', NULL, 403, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (648, 'Moissala', 'Moundou', '2020-03-20', '2020-03-20', false, 'Car', NULL, 403, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (688, 'n,djamena', 'mongo', '2020-03-27', '2020-03-27', false, 'Car', 215, 422, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (689, 'Bol', 'Moussoro', '2020-03-19', '2020-03-19', true, 'Car', 218, 424, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (690, 'Moussoro', 'Chadra', '2020-03-25', '2020-03-25', true, 'Car', 218, 424, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (667, 'Ndjamena', 'Mara', '2020-03-17', '2020-03-17', true, 'Car', 218, 415, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (668, 'Mara', 'Ndjamena', '2020-03-21', '2020-03-21', false, '', 218, 415, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (691, 'Chadra', 'Michemire', '2020-03-27', '2020-03-27', true, 'Car', 218, 424, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (692, 'Michemire', 'Salal', '2020-03-29', '2020-03-29', true, '', 218, 424, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (693, 'Salal', 'Moussoro', '2020-03-30', '2020-03-30', true, 'Car', 218, 424, 4); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (694, 'Moussoro', 'Bol', '2020-03-31', '2020-03-31', false, '', 218, 424, 5); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (675, 'Mongo', 'NDjamena', '2020-03-24', '2020-03-24', true, 'Car', 215, 418, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (654, 'N''Djamena', 'Mongo', '2020-03-18', '2020-03-18', true, 'Car', 218, 407, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (655, 'Mongo', 'Ati', '2020-03-22', '2020-03-22', true, 'Car', 218, 407, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (656, 'Ati', 'N''Djamena', '2020-03-31', '2020-03-31', false, 'Car', NULL, 407, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (676, 'NDjamena', 'Mongo', '2020-03-27', '2020-03-27', true, 'Car', 215, 418, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (608, 'Moundou', 'N''Djamena', '2020-03-19', '2020-03-19', true, 'Plane', NULL, 386, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (609, 'N''Djamena', 'Addis Ababa', '2020-03-21', '2020-03-21', true, 'Plane', NULL, 386, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (610, 'Addis Ababa', 'Goma', '2020-03-22', '2020-03-22', false, 'Plane', NULL, 386, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (611, 'Goma', 'Addis Ababa', '2020-04-06', '2020-04-06', true, 'Plane', NULL, 386, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (703, 'Ndjamena', 'Moundou', '2020-03-19', '2020-03-19', true, 'Car', 218, 427, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (612, 'Addis Ababa', 'N''Djamena', '2020-04-07', '2020-04-07', true, 'Plane', NULL, 386, 4); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (613, 'N''Djamena', 'Moundou', '2020-04-09', '2020-04-09', false, '', NULL, 386, 5); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (659, 'N''Djamena', 'Abeche', '2020-03-30', '2020-03-30', false, 'Plane', 218, 409, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (671, 'N''DJAMENA', 'ATI', '2020-03-29', '2020-03-29', false, 'Car', 218, 417, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (672, 'ATI', 'AMTIMAN', '2020-04-01', '2020-04-01', false, '', 218, 417, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (673, 'AMTIMAN', 'MONGO', '2020-04-04', '2020-04-04', false, '', 218, 417, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (674, 'MONGO', 'N''DJAMENA', '2020-04-05', '2020-04-05', false, '', 218, 417, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (716, 'NDjamena', 'Darda', '2020-03-19', '2020-03-19', true, 'Car', 218, 432, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (717, 'Darda', 'Darda', '2020-03-20', '2020-03-20', false, 'Car', NULL, 432, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (569, 'Moundou', 'Ndjamena', '2020-03-24', '2020-03-24', false, 'Car', 215, 357, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (704, 'Moundou', 'Doba', '2020-03-21', '2020-03-21', false, 'Car', 218, 427, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (696, 'ATI', 'BOKORO', '2020-03-22', '2020-03-22', false, 'Car', 218, 425, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (708, 'Abeche', 'Ndjamena', '2020-03-24', '2020-03-24', false, 'Plane', 215, 430, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (705, 'N''Djamena', 'Moundou', '2020-03-19', '2020-03-19', true, 'Car', 217, 428, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (709, 'Ndjamena', 'Abeche', '2020-03-27', '2020-03-27', false, 'Plane', NULL, 430, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (706, 'Moundou', 'Koumra', '2020-03-21', '2020-03-21', true, '', NULL, 428, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (570, 'Ndjamena', 'Moundou', '2020-03-27', '2020-03-27', false, 'Car', NULL, 357, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (681, 'Bol', 'Moussoro', '2020-03-19', '2020-03-19', true, 'Car', 218, 421, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (682, 'Moussoro', 'Chadra', '2020-03-25', '2020-03-25', true, 'Car', 218, 421, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (741, 'bol', 'ndjamena', '2020-03-25', '2020-03-25', true, '', 215, 442, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (742, 'ndjamena', 'bol', '2020-03-26', '2020-03-26', false, '', 218, 442, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (849, 'AMTIMAN', 'MONGO', '2020-04-25', '2020-04-25', false, 'Car', 218, 486, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (735, 'Moundou', 'Ndjamena', '2020-03-24', '2020-03-24', false, 'Car', 215, 438, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (707, 'Ndjamena', 'Darda', '2020-03-19', '2020-03-21', false, 'Car', 218, 429, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (736, 'Ndjamena', 'Moundou', '2020-03-27', '2020-03-27', false, 'Car', NULL, 438, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (737, 'Bol', 'N''Djamena', '2020-03-25', '2020-03-25', true, '', NULL, 439, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (738, 'N''Djamena', 'Bol', '2020-04-01', '2020-04-01', false, '', NULL, 439, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (711, 'MAO', 'MOUSSORO', '2020-03-25', '2020-03-25', true, 'Car', 218, 431, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (712, 'MOUSSORO', 'BOKORO', '2020-03-27', '2020-03-27', true, 'Car', 218, 431, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (713, 'BOKORO', 'MANI', '2020-03-30', '2020-03-30', true, 'Car', 218, 431, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (697, 'BOL', 'MAO', '2020-03-23', '2020-03-23', true, 'Car', 218, 426, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (698, 'MAO', 'MOUSSORO', '2020-03-25', '2020-03-25', true, 'Car', 218, 426, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (699, 'MOUSSORO', 'BOKORO', '2020-03-27', '2020-03-27', true, 'Car', 218, 426, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (700, 'BOKORO', 'MANI', '2020-03-30', '2020-03-30', true, 'Car', 218, 426, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (701, 'MANI', 'MASSAKORY', '2020-04-01', '2020-04-01', true, 'Car', 218, 426, 4); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (702, 'MASSAKORY', 'BOL', '2020-04-04', '2020-04-04', false, 'Car', 218, 426, 5); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (714, 'MANI', 'MASSAKORY', '2020-04-01', '2020-04-01', true, 'Car', 218, 431, 4); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (715, 'MASSAKORY', 'BOL', '2020-04-04', '2020-04-04', false, 'Car', 218, 431, 5); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (756, 'Moundou', 'Sarh', '2020-04-20', '2020-04-20', false, 'Car', 218, 450, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (757, 'Sarh', 'Maro', '2020-04-22', '2020-04-22', false, 'Car', 218, 450, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (758, 'Maro', 'Moundou', '2020-04-24', '2020-04-24', false, 'Car', 217, 450, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (587, 'Moundou', 'N''djamena', '2020-03-23', '2020-03-23', false, 'Plane', NULL, 372, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (588, 'N''djamena', 'Moundou', '2020-03-30', '2020-03-30', false, '', NULL, 372, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (795, 'Mongo', 'Amtiman', '2020-04-07', '2020-04-07', false, 'Car', 218, 462, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (374, 'N''Djamena', 'Douguia', '2020-02-24', '2020-02-24', true, 'Car', 218, 259, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (731, 'Moundou', 'Ndjamena', '2020-03-24', '2020-03-24', false, 'Car', 215, 436, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (732, 'Ndjamena', 'Moundou', '2020-03-27', '2020-03-27', false, 'Car', NULL, 436, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (375, 'Douguia', 'Dandi', '2020-03-01', '2020-03-01', true, 'Car', 218, 259, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (376, 'Dandi', 'N''djamena', '2020-03-06', '2020-03-06', false, 'Car', 218, 259, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (743, 'Moundou', 'Kelo', '2020-04-01', '2020-04-01', true, 'Car', 218, 443, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (739, 'Bol', 'Ndjamena', '2020-03-25', '2020-03-25', true, '', 215, 440, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (744, 'Kelo', 'Moundou', '2020-04-08', '2020-04-08', false, 'Car', NULL, 443, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (775, 'Oum Hadjer', 'Ati', '2020-04-17', '2020-04-17', true, 'Car', NULL, 458, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (683, 'Chadra', 'Michemire', '2020-03-27', '2020-03-27', true, 'Car', 218, 421, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (684, 'Michemire', 'Salal', '2020-03-29', '2020-03-29', true, '', 218, 421, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (685, 'Salal', 'Moussoro', '2020-03-30', '2020-03-30', true, 'Car', 218, 421, 4); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (686, 'Moussoro', 'Bol', '2020-03-31', '2020-03-31', false, '', 218, 421, 5); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (796, 'Amtiman', 'Mongo', '2020-04-11', '2020-04-11', false, 'Car', 218, 462, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (797, 'Mongo', 'Ati', '2020-04-12', '2020-04-12', false, 'Car', 218, 462, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (798, 'Ati', 'Mongo', '2020-04-15', '2020-04-15', false, 'Car', 218, 462, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (836, 'Benoye', 'Moundou', '2020-04-15', '2020-04-15', false, 'Car', NULL, 480, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (816, 'Bol', 'Bagasola', '2020-04-07', '2020-04-07', true, 'Car', 218, 469, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (817, 'Bagasola', 'Bol', '2020-04-21', '2020-04-21', false, 'Car', 218, 469, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (837, 'Moundou', 'krim-krim', '2020-04-14', '2020-04-14', false, 'Car', NULL, 481, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (838, 'krim-krim', 'Moundou', '2020-04-14', '2020-04-14', false, '', NULL, 481, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (839, 'Moundou', 'Benoye', '2020-04-15', '2020-04-15', false, 'Car', NULL, 481, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (840, 'Benoye', 'Moundou', '2020-04-15', '2020-04-15', false, 'Car', NULL, 481, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (750, 'Bol', 'Ndjamena', '2020-03-25', '2020-03-25', true, 'Car', 215, 446, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (803, 'Mongo', 'Amtiman', '2020-04-07', '2020-04-07', false, 'Car', 218, 464, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (804, 'Amtiman', 'Mongo', '2020-04-11', '2020-04-11', false, 'Car', 218, 464, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (805, 'Mongo', 'Ati', '2020-04-12', '2020-04-12', false, 'Car', 218, 464, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (806, 'Ati', 'Amtiman', '2020-04-15', '2020-04-15', false, 'Car', 218, 464, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (850, 'MONGO', 'ABOUDEIA', '2020-04-20', '2020-04-20', false, 'Car', 218, 487, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (823, 'Mongo', 'Bol', '2020-04-08', '2020-04-08', false, 'Car', 218, 475, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (811, 'Bagasola', 'Bol', '2020-04-21', '2020-04-21', false, 'Car', 218, 466, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (824, 'Bol', 'Baga Sola', '2020-04-09', '2020-04-09', false, 'Car', 218, 475, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (825, 'Baga Sola', 'Bol', '2020-04-25', '2020-04-25', false, 'Car', 218, 475, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (826, 'Bol', 'Mongo', '2020-04-26', '2020-04-26', false, 'Car', 218, 475, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (851, 'ABOUDEIA', 'AMTIMAN', '2020-04-22', '2020-04-22', false, 'Car', 218, 487, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (852, 'AMTIMAN', 'MONGO', '2020-04-25', '2020-04-25', false, 'Car', 218, 487, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (761, 'Moundou', 'Lai', '2020-04-07', '2020-04-07', false, 'Car', NULL, 453, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (762, 'Lai', 'Kelo', '2020-04-09', '2020-04-09', false, 'Car', NULL, 453, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (844, 'Moundou', 'krim-krim', '2020-04-16', '2020-04-16', false, 'Car', NULL, 485, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (845, 'krim-krim', 'Moundou', '2020-04-16', '2020-04-16', false, '', NULL, 485, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (547, 'Bol', 'N''djamena', '2020-03-09', '2020-03-09', false, 'Plane', 218, 344, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (767, 'Koumra', 'Moundou', '2020-04-24', '2020-04-24', false, '', NULL, 455, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (846, 'Moundou', 'Benoye', '2020-04-17', '2020-04-17', false, 'Car', NULL, 485, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (548, 'N''djamena', 'Bol', '2020-03-16', '2020-03-16', false, 'Plane', 218, 344, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (814, 'Bol', 'Bagasola', '2020-04-07', '2020-04-07', true, 'Car', 218, 468, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (815, 'Bagasola', 'Bol', '2020-04-21', '2020-04-21', true, 'Car', 218, 468, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (854, 'Baga sola', 'Liwa', '2020-04-24', '2020-04-24', true, 'Car', 218, 488, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (855, 'Liwa', 'Baga sola', '2020-04-25', '2020-04-25', true, 'Car', 218, 488, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (856, 'Baga sola', 'Bol', '2020-05-09', '2020-05-09', false, 'Car', 218, 488, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (808, 'Am-Timan', 'Ati', '2020-04-12', '2020-04-12', true, 'Car', 218, 465, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (809, 'Ati', 'Mongo', '2020-04-17', '2020-04-17', false, 'Car', 218, 465, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (722, 'MANI', 'MASSAKORY', '2020-04-01', '2020-04-01', true, 'Car', 218, 433, 4); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (723, 'MASSAKORY', 'BOL', '2020-04-04', '2020-04-04', false, 'Car', 218, 433, 5); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (710, 'BOL', 'MAO', '2020-03-23', '2020-03-23', true, 'Car', 218, 431, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (733, 'Moundou', 'Ndjamena', '2020-03-24', '2020-03-24', false, 'Car', 215, 437, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (734, 'Ndjamena', 'Moundou', '2020-03-27', '2020-03-27', false, 'Car', NULL, 437, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (835, 'Moundou', 'Benoye', '2020-04-15', '2020-04-15', false, 'Car', 218, 480, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (745, 'Moundou', 'Gore', '2020-04-15', '2020-04-15', true, 'Car', 218, 444, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (746, 'Gore', 'Moundou', '2020-04-21', '2020-04-21', false, '', NULL, 444, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (751, 'Bol', 'Ndjamena', '2020-03-25', '2020-03-25', true, 'Car', 215, 447, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (776, 'Moundou', 'Krim-Krim', '2020-01-25', '2020-01-25', true, 'Car', 218, 459, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (777, 'Krim-Krim', 'Moundou', '2020-01-27', '2020-01-27', false, '', NULL, 459, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (724, 'Bol', 'Moussoro', '2020-03-19', '2020-03-19', true, 'Car', 218, 434, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (725, 'Moussoro', 'Chadra', '2020-03-25', '2020-03-25', true, 'Car', 218, 434, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (726, 'Chadra', 'Michemire', '2020-03-27', '2020-03-27', true, 'Car', 218, 434, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (727, 'Michemire', 'Salal', '2020-03-29', '2020-03-29', true, '', 218, 434, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (728, 'Salal', 'Moussoro', '2020-03-30', '2020-03-30', true, 'Car', 218, 434, 4); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (729, 'Moussoro', 'Bol', '2020-03-31', '2020-03-31', false, '', 218, 434, 5); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (778, 'Moundou', 'Benoye', '2020-01-30', '2020-01-30', false, 'Car', NULL, 459, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (779, 'Benoye', 'Moundou', '2020-01-30', '2020-01-30', false, '', NULL, 459, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (740, 'Ndjamena', 'Bol', '2020-04-01', '2020-04-01', false, '', 218, 440, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (770, 'Ati', 'Oum Hadjer', '2020-04-07', '2020-04-07', true, 'Car', 218, 458, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (810, 'Bol', 'Bagasola', '2020-04-07', '2020-04-07', true, 'Car', 218, 466, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (841, 'Moundou', 'krim-krim', '2020-04-16', '2020-04-16', false, 'Car', NULL, 484, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (842, 'krim-krim', 'Moundou', '2020-04-16', '2020-04-16', false, '', NULL, 484, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (843, 'Moundou', 'Benoye', '2020-04-17', '2020-04-17', false, 'Car', NULL, 484, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (763, 'Kelo', 'Moundou', '2020-04-10', '2020-04-10', false, 'Car', NULL, 453, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (780, 'Moundou', 'Moundou', '2019-12-09', '2019-12-09', false, '', NULL, 460, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (781, 'Moundou', 'Moundou', '2019-12-10', '2019-12-10', false, '', NULL, 460, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (782, 'Moundou', 'Moundou', '2019-12-11', '2019-12-11', false, '', NULL, 460, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (783, 'Moundou', 'Deli', '2019-12-12', '2019-12-12', false, '', NULL, 460, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (718, 'BOL', 'MAO', '2020-03-23', '2020-03-23', true, 'Car', 218, 433, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (719, 'MAO', 'MOUSSORO', '2020-03-25', '2020-03-25', true, 'Car', 218, 433, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (720, 'MOUSSORO', 'BOKORO', '2020-03-27', '2020-03-27', true, 'Car', 218, 433, 2); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (721, 'BOKORO', 'MANI', '2020-03-30', '2020-03-30', true, 'Car', 218, 433, 3); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (784, 'Deli', 'Moundou', '2019-12-12', '2019-12-12', false, '', NULL, 460, 4); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (785, 'Moundou', 'Moundou', '2019-12-13', '2019-12-13', false, '', NULL, 460, 5); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (786, 'Moundou', 'Toul', '2019-12-14', '2019-12-14', false, '', NULL, 460, 6); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (787, 'Toul', 'Moundou', '2019-12-14', '2019-12-14', false, '', NULL, 460, 7); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (788, 'Moundou', 'Deli', '2019-12-15', '2019-12-15', false, '', NULL, 460, 8); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (789, 'Deli', 'Moundou', '2019-12-15', '2019-12-15', false, '', NULL, 460, 9); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (790, 'Moundou', 'Mbalkabra', '2019-12-16', '2019-12-16', false, '', NULL, 460, 10); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (791, 'Mbalkabra', 'Moundou', '2019-12-16', '2019-12-16', false, '', NULL, 460, 11); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (792, 'Moundou', 'Beinamar', '2019-12-17', '2019-12-17', false, '', NULL, 460, 12); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (793, 'Beinamar', 'Moundou', '2019-12-17', '2019-12-17', false, '', NULL, 460, 13); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (794, 'Moundou', 'Moundou', '2019-12-18', '2019-12-18', false, '', NULL, 460, 14); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (818, 'Bol', 'Bagasola', '2020-04-07', '2020-04-07', true, 'Car', 218, 470, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (819, 'Bagasola', 'Bol', '2020-04-21', '2020-04-21', false, 'Car', 218, 470, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (764, 'Moundou', 'Doba', '2020-04-14', '2020-04-14', false, 'Car', NULL, 454, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (765, 'Doba', 'Moundou', '2020-04-17', '2020-04-17', false, 'Car', NULL, 454, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (807, 'Mongo', 'Am-Timan', '2020-04-09', '2020-04-09', true, 'Car', 218, 465, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (820, 'Bol', 'Bagasola', '2020-04-07', '2020-04-07', true, 'Car', 218, 471, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (766, 'Moundou', 'Koumra', '2020-04-21', '2020-04-21', false, 'Car', NULL, 455, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (821, 'Bagasola', 'Bol', '2020-04-21', '2020-04-21', false, 'Car', 218, 471, 1); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (812, 'Bol', 'Bagasola', '2020-04-07', '2020-04-07', true, 'Car', 218, 467, 0); +INSERT INTO [[schema]].t2f_itineraryitem VALUES (813, 'Bagasola', 'Bol', '2020-04-21', '2020-04-21', false, 'Car', 218, 467, 1); INSERT INTO [[schema]].t2f_itineraryitem VALUES (219, 'Ndjamena', 'Moundou', '2019-11-12', '2019-11-12', false, 'Car', 218, 143, 0); INSERT INTO [[schema]].t2f_itineraryitem VALUES (220, 'Moundou', 'Koumra', '2019-11-14', '2019-11-14', false, 'Car', 218, 143, 1); INSERT INTO [[schema]].t2f_itineraryitem VALUES (221, 'Koumra', 'Moissala', '2019-11-15', '2019-11-15', false, 'Car', 218, 143, 2); @@ -16090,15 +18991,70 @@ INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (20, 130, 116); INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (21, 131, 116); INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (22, 134, 116); INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (31, 263, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (32, 282, 88); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (33, 283, 49); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (34, 308, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (35, 309, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (36, 275, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (37, 314, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (38, 326, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (39, 327, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (40, 334, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (41, 342, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (42, 345, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (43, 357, 49); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (44, 358, 49); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (45, 398, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (46, 399, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (47, 404, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (48, 405, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (49, 406, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (50, 461, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (51, 466, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (52, 467, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (53, 470, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (54, 471, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (55, 473, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (56, 474, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (57, 475, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (58, 476, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (59, 502, 49); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (60, 503, 49); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (61, 551, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (62, 554, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (63, 557, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (64, 558, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (65, 577, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (66, 587, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (67, 603, 152); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (68, 608, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (69, 609, 49); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (70, 610, 49); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (71, 611, 49); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (72, 612, 49); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (73, 618, 88); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (74, 627, 116); +INSERT INTO [[schema]].t2f_itineraryitem_airlines VALUES (75, 659, 116); -- -- Data for Name: t2f_travel; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].t2f_travel VALUES (6, '2019-09-30 14:27:52.324951+00', NULL, NULL, '2019-09-30 14:27:52.345157+00', NULL, '2019-10-01 07:53:59.193277+00', '', '', '', '', '', 'approved', '2019-10-23', '2019-11-02', 'R&R + AL', '', true, false, '2019/6', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11607, 177097, '2019-09-30 14:27:52.345171+00', NULL, 11); INSERT INTO [[schema]].t2f_travel VALUES (101, '2019-10-18 12:17:32.640679+00', NULL, NULL, '2019-10-18 12:17:32.707821+00', NULL, '2019-10-21 08:31:50.651934+00', '', '', '', '', '', 'approved', '2019-10-22', '2019-10-25', 'Supervision conjointe de activites PCIMA', '', false, false, '2019/128', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11514, 12378, '2019-10-18 12:17:32.707838+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (51, '2019-10-04 22:10:36.432172+00', NULL, NULL, '2019-10-04 22:10:36.469077+00', NULL, '2019-10-06 07:17:38.659396+00', '', '', '', 'Introduction +INSERT INTO [[schema]].t2f_travel VALUES (357, '2020-03-09 10:57:05.100975+00', NULL, NULL, '2020-03-09 10:57:05.147403+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-03-24', '2020-03-27', 'Revue de gestion 2019 / 25-26 Mars 2020', 'WBS: 0810/A0/05/880/006/003 Non-Grant +OIC: Ronel Hamat', false, false, '2020/468', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 9984, 12059, '2020-03-09 10:57:05.14741+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (448, '2020-03-25 08:46:11.118245+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-04-20', '2020-04-24', 'evaluation finale des partenaires APDI et CRT', '', false, false, '2020/621', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 9984, 13512, NULL, NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (26, '2019-10-02 10:12:14.116392+00', NULL, NULL, '2019-10-02 10:12:14.145147+00', NULL, '2019-10-04 07:27:53.684518+00', '', '', '', '', '', 'approved', '2019-11-08', '2019-11-15', 'Formation des partenaires de Mongo en HACT, gestion financiere et comptabilite de base', '', false, false, '2019/26', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 3701, 14006, '2019-10-02 10:12:14.145161+00', NULL, 12); +INSERT INTO [[schema]].t2f_travel VALUES (20, '2019-10-02 09:01:05.008627+00', NULL, NULL, '2019-10-02 09:01:05.022704+00', NULL, '2019-10-02 09:50:35.103402+00', '', '', '', '', '', 'approved', '2019-10-10', '2019-10-10', 'Field visit with High level DFID representative in Ngoura/Bokoro (Hadjer Lamis)', '', false, false, '2019/20', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 3701, 11647, '2019-10-02 09:01:05.022716+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (9, '2019-10-01 08:47:50.899225+00', NULL, NULL, '2019-10-01 08:53:08.654572+00', NULL, '2019-10-01 09:16:00.207307+00', '', '', '', '', '', 'approved', '2019-10-07', '2019-10-14', 'Monitoring visit', '', false, false, '2019/9', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11347, 21269, '2019-10-01 08:53:08.654586+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (140, '2019-10-31 12:26:25.200195+00', NULL, NULL, '2019-10-31 12:26:25.484898+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-04', '2019-11-08', 'Participer à la mission de visite RRM ECHO à Bagasola et ACF', '', false, false, '2019/187', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11347, 11514, '2019-10-31 12:26:25.484907+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (144, '2019-11-06 15:17:46.061065+00', NULL, NULL, '2019-11-06 15:17:46.085092+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-11', '2019-11-15', 'appui a la formation ANJE', '', false, false, '2019/197', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 9329, 13371, '2019-11-06 15:17:46.085102+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (13, '2019-10-02 07:22:39.187373+00', NULL, NULL, '2019-10-02 07:23:09+00', NULL, '2019-10-02 07:50:35+00', '', '', '', '', '', 'approved', '2019-10-03', '2019-10-13', 'Technical assistance to LQAS Survey in Guera Province', '', false, false, '2019/13', false, '{}', 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11672, 60199, '2019-10-02 07:23:09+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (23, '2019-10-02 10:01:24.075968+00', NULL, NULL, '2019-10-02 10:01:24.092682+00', NULL, '2019-10-04 07:29:12.62558+00', '', '', '', '', '', 'approved', '2019-10-12', '2019-10-19', 'Formation des partenaires de zone sud en HACT, gestion financiere et comptabilite de base.', '', false, false, '2019/23', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 3701, 14006, '2019-10-02 10:01:24.092689+00', NULL, 12); +INSERT INTO [[schema]].t2f_travel VALUES (11, '2019-10-02 01:59:00.33662+00', NULL, NULL, '2019-10-02 02:00:03.875475+00', NULL, '2019-10-02 07:36:28.83056+00', '', '', '', '', '', 'approved', '2019-10-09', '2019-10-21', 'Participation a la conference internationale des Ministres CRVS a Luzka', '', true, false, '2019/11', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11514, 25198, '2019-10-02 02:00:03.875484+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (24, '2019-10-02 10:06:40.808532+00', NULL, NULL, '2019-10-02 10:06:40.832191+00', NULL, '2019-10-04 07:26:21.463474+00', '', '', '', '', '', 'approved', '2019-10-21', '2019-10-25', 'Formation des partenaires de NDjamena en HACT, gestion financiere et comptabilite de base a Douguia', '', false, false, '2019/24', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 3701, 14006, '2019-10-02 10:06:40.8322+00', NULL, 12); +INSERT INTO [[schema]].t2f_travel VALUES (51, '2019-10-04 22:10:36.432172+00', '2019-11-29 12:26:13.325945+00', NULL, '2019-10-04 22:10:36.469077+00', NULL, '2019-10-06 07:17:38.659396+00', '', '', '', 'Introduction L’édition 2019 de la Réunion des Gestionnaires du Programme Elargi de Vaccination (PEV) a été organisée à Bujumbura au Burundi, du 15 au 17 octobre 2019 à l’Hôtel Club Lac Tanganyika. La réunion a regroupé des délégations des 10 pays d’Afrique Centrale à savoir Angola, Burundi, Cameroun, Congo, Gabon, Guinée Equatoriale, République Centrafricaine, République Démocratique du Congo, Sao Tome et Principe et T[[schema]], les cadres de l’UNICEF et de l’OMS des bureaux pays, des bureaux régionaux et des sièges, les représentants de GAVI, CDC, AMP, Croix Rouge Américaine, …. La méthodologie utilisée cette année pour l’organisation de la réunion est nouvelle. Il n’y a pas d’élaboration d’agenda au préalable. Ce sont les participants eux-mêmes qui ont conçu l’agenda et non les organisateurs. Au total, cinquante (50) thèmes proposés par les participants ont fait l’objet des « fora ouverts ». Celui qui a proposé le thème en était le « porteur ». @@ -16190,39 +19146,92 @@ Principales leçons apprises 3. Recommandations - Responsable - Echéance Restituer les conclusions de la réunion à l’équipe immunisation UNICEF - Sylvain - 21 octobre 2019 Partager avec la SDV les trois priorités retenues pour le T[[schema]] - Sylvain - 21 octobre 2019 -Appuyer la mise en œuvre des priorités retenues - Sylvain - Continue', '', 'approved', '2019-10-13', '2019-10-20', 'Participation a la reunion annuelle des Directeurs du PEV a Bujumbura', '', true, false, '2019/65', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11566, 9333, '2019-10-04 22:10:36.469084+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (16, '2019-10-02 08:27:44.346275+00', NULL, NULL, '2019-10-02 08:27:56.97255+00', NULL, '2019-10-02 09:49:52.161062+00', '', '', '', '', '', 'approved', '2019-10-07', '2019-10-12', 'Follow up of implementation of the recommendations of internal control mission with IHDL & spot check of Mentor Initiati', '', false, false, '2019/16', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 3701, 14006, '2019-10-02 08:27:56.972558+00', NULL, 12); -INSERT INTO [[schema]].t2f_travel VALUES (26, '2019-10-02 10:12:14.116392+00', NULL, NULL, '2019-10-02 10:12:14.145147+00', NULL, '2019-10-04 07:27:53.684518+00', '', '', '', '', '', 'approved', '2019-11-08', '2019-11-15', 'Formation des partenaires de Mongo en HACT, gestion financiere et comptabilite de base', '', false, false, '2019/26', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 3701, 14006, '2019-10-02 10:12:14.145161+00', NULL, 12); -INSERT INTO [[schema]].t2f_travel VALUES (20, '2019-10-02 09:01:05.008627+00', NULL, NULL, '2019-10-02 09:01:05.022704+00', NULL, '2019-10-02 09:50:35.103402+00', '', '', '', '', '', 'approved', '2019-10-10', '2019-10-10', 'Field visit with High level DFID representative in Ngoura/Bokoro (Hadjer Lamis)', '', false, false, '2019/20', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 3701, 11647, '2019-10-02 09:01:05.022716+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (9, '2019-10-01 08:47:50.899225+00', NULL, NULL, '2019-10-01 08:53:08.654572+00', NULL, '2019-10-01 09:16:00.207307+00', '', '', '', '', '', 'approved', '2019-10-07', '2019-10-14', 'Monitoring visit', '', false, false, '2019/9', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11347, 21269, '2019-10-01 08:53:08.654586+00', NULL, 3); -INSERT INTO [[schema]].t2f_travel VALUES (140, '2019-10-31 12:26:25.200195+00', NULL, NULL, '2019-10-31 12:26:25.484898+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-04', '2019-11-08', 'Participer à la mission de visite RRM ECHO à Bagasola et ACF', '', false, false, '2019/187', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11347, 11514, '2019-10-31 12:26:25.484907+00', NULL, 3); -INSERT INTO [[schema]].t2f_travel VALUES (144, '2019-11-06 15:17:46.061065+00', NULL, NULL, '2019-11-06 15:17:46.085092+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-11', '2019-11-15', 'appui a la formation ANJE', '', false, false, '2019/197', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 9329, 13371, '2019-11-06 15:17:46.085102+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (13, '2019-10-02 07:22:39.187373+00', NULL, NULL, '2019-10-02 07:23:09+00', NULL, '2019-10-02 07:50:35+00', '', '', '', '', '', 'approved', '2019-10-03', '2019-10-13', 'Technical assistance to LQAS Survey in Guera Province', '', false, false, '2019/13', false, '{}', 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11672, 60199, '2019-10-02 07:23:09+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (23, '2019-10-02 10:01:24.075968+00', NULL, NULL, '2019-10-02 10:01:24.092682+00', NULL, '2019-10-04 07:29:12.62558+00', '', '', '', '', '', 'approved', '2019-10-12', '2019-10-19', 'Formation des partenaires de zone sud en HACT, gestion financiere et comptabilite de base.', '', false, false, '2019/23', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 3701, 14006, '2019-10-02 10:01:24.092689+00', NULL, 12); -INSERT INTO [[schema]].t2f_travel VALUES (11, '2019-10-02 01:59:00.33662+00', NULL, NULL, '2019-10-02 02:00:03.875475+00', NULL, '2019-10-02 07:36:28.83056+00', '', '', '', '', '', 'approved', '2019-10-09', '2019-10-21', 'Participation a la conference internationale des Ministres CRVS a Luzka', '', true, false, '2019/11', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11514, 25198, '2019-10-02 02:00:03.875484+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (24, '2019-10-02 10:06:40.808532+00', NULL, NULL, '2019-10-02 10:06:40.832191+00', NULL, '2019-10-04 07:26:21.463474+00', '', '', '', '', '', 'approved', '2019-10-21', '2019-10-25', 'Formation des partenaires de NDjamena en HACT, gestion financiere et comptabilite de base a Douguia', '', false, false, '2019/24', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 3701, 14006, '2019-10-02 10:06:40.8322+00', NULL, 12); +Appuyer la mise en œuvre des priorités retenues - Sylvain - Continue', '', 'completed', '2019-10-13', '2019-10-20', 'Participation a la reunion annuelle des Directeurs du PEV a Bujumbura', '', true, false, '2019/65', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11566, 9333, '2019-10-04 22:10:36.469084+00', NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (70, '2019-10-08 10:22:31.4371+00', NULL, NULL, '2019-10-08 10:22:31.462941+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-14', '2019-10-17', 'Formation e Tools a Ndjamena (Module gestion Financiere)', '', false, false, '2019/93', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 9329, '2019-10-08 10:22:31.46295+00', NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (12, '2019-10-02 07:07:45.514591+00', NULL, NULL, '2019-10-02 07:25:57.023659+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-06', '2019-10-19', 'Participer à la retraite du Programme Protection de l''Enfant à N''Djamena.', '', false, false, '2019/12', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 390, 10707, 22244, '2019-10-02 07:25:57.023669+00', NULL, 10); INSERT INTO [[schema]].t2f_travel VALUES (15, '2019-10-02 08:22:53.638519+00', NULL, NULL, '2019-10-02 08:25:40.81366+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-11', '2019-10-19', 'Renforcement de capacities des partenaires en HACT, Comptabilite de base et gestion financiere', '', false, false, '2019/15', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11647, 7798, '2019-10-02 08:25:40.813669+00', NULL, 4); +INSERT INTO [[schema]].t2f_travel VALUES (423, '2020-03-17 16:00:19.91096+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-04-01', '2020-04-20', 'congé secto & AL', '', false, false, '2020/566', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 21331, 23117, NULL, NULL, 5); INSERT INTO [[schema]].t2f_travel VALUES (21, '2019-10-02 09:02:45.126705+00', NULL, NULL, '2019-10-02 09:02:45.15091+00', NULL, '2019-10-03 10:26:42.259003+00', '', '', '', '', '', 'approved', '2019-11-09', '2019-11-15', 'Capacity building of partners on HACT, accounting and financial management', '', false, false, '2019/21', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11647, 7798, '2019-10-02 09:02:45.15092+00', NULL, 4); INSERT INTO [[schema]].t2f_travel VALUES (25, '2019-10-02 10:09:42.579708+00', NULL, NULL, '2019-10-02 10:09:42.602711+00', NULL, '2019-10-04 07:28:32.438632+00', '', '', '', '', '', 'approved', '2019-11-04', '2019-11-08', 'Formation des partenaires de Bol en HACT, gestion financiere et comtpabilite de base a Dandi', '', false, false, '2019/25', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 3701, 14006, '2019-10-02 10:09:42.602719+00', NULL, 12); INSERT INTO [[schema]].t2f_travel VALUES (17, '2019-10-02 08:37:53.93237+00', NULL, NULL, '2019-10-02 08:37:53.948535+00', NULL, '2019-10-02 10:09:14.065235+00', '', '', '', '', '', 'approved', '2019-10-21', '2019-10-25', 'Capacity building of partners on HACT, accounting and financial management', '', false, false, '2019/17', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11647, 7798, '2019-10-02 08:37:53.948543+00', NULL, 4); INSERT INTO [[schema]].t2f_travel VALUES (27, '2019-10-02 10:17:11.81366+00', NULL, NULL, '2019-10-02 10:17:11+00', NULL, '2019-10-04 07:25:21+00', '', '', '', '', '', 'approved', '2019-11-15', '2019-11-20', 'Formation des partenaires d''Abeche en HACT, gestion financiere et comptabilite de base a Biltine', '', false, false, '2019/27', false, '{}', 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 3701, 14006, '2019-10-02 10:17:11+00', NULL, 12); INSERT INTO [[schema]].t2f_travel VALUES (35, '2019-10-02 15:04:25.298492+00', NULL, NULL, '2019-10-02 15:05:18.135257+00', NULL, '2019-10-02 15:07:19.516593+00', '', '', '', '', '', 'approved', '2019-10-04', '2019-10-05', 'Participer à la réunion de coordination humanitaire ; Contacter les hautes autorités; travailler avec ACF ;', '', false, false, '2019/35', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11347, 11514, '2019-10-02 15:05:18.135266+00', NULL, 3); -INSERT INTO [[schema]].t2f_travel VALUES (10, '2019-10-01 16:53:26.258389+00', NULL, NULL, '2019-10-01 16:53:45+00', NULL, '2019-10-01 18:07:39+00', '', '', '', '', '', 'approved', '2019-10-03', '2019-10-11', 'Field mission to support the coverage survey using LQAS method', '', false, false, '2019/10', false, '{}', 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11647, 11672, '2019-10-01 16:53:45+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (184, '2019-12-01 11:00:17.254712+00', NULL, NULL, '2019-12-01 11:00:17.274354+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-12-02', '2019-12-09', 'Participer aux discussions sur le SMR a ndjamena', '', false, false, '2019/244', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 9329, '2019-12-01 11:00:17.274367+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (419, '2020-03-17 14:05:01.616206+00', NULL, NULL, '2020-03-17 14:05:01.65375+00', NULL, '2020-03-17 14:06:54.634931+00', '', '', '', '', '', 'approved', '2020-03-24', '2020-03-27', 'Participation à la revue de gestion 2019', 'Mbainarem Nathaniel-N''Djamena, du 24 au 27 mars 2020', false, false, '2020/562', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 22244, '2020-03-17 14:05:01.653757+00', NULL, 10); INSERT INTO [[schema]].t2f_travel VALUES (32, '2019-10-02 12:11:22.333989+00', NULL, NULL, '2019-10-02 12:11:22.38807+00', NULL, '2019-10-02 12:18:09.312701+00', '', '', '', '', '', 'approved', '2019-10-13', '2019-10-18', 'Formation des partenaires en HACT a Koumra (Mandoul)', '', false, false, '2019/32', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12059, '2019-10-02 12:11:22.388082+00', NULL, 9); INSERT INTO [[schema]].t2f_travel VALUES (31, '2019-10-02 11:47:13.47217+00', NULL, NULL, '2019-10-02 11:59:34.933687+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-01', '2019-10-07', 'Supervision CPS du Guera/Baro du 3-5 octobre 2019', '', false, false, '2019/31', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 390, 10707, 12552, '2019-10-02 11:59:34.933699+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (73, '2019-10-08 14:01:57.971029+00', NULL, NULL, '2019-10-08 14:08:48.975668+00', NULL, '2019-10-08 15:13:03.131761+00', '', '', '', '', '', 'approved', '2019-10-14', '2019-10-16', 'participation a la formation E-tool', '', false, false, '2019/96', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 14616, '2019-10-08 14:08:48.975688+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (465, '2020-04-03 07:35:31.197865+00', NULL, NULL, '2020-04-03 07:39:37+00', NULL, '2020-04-08 18:10:53.445323+00', '', '', '', '', '', 'approved', '2020-04-09', '2020-04-17', 'Mission de Coaching en HACT et de suivi des activités VIH/Sida dans les délégations Sanitaires Provinciales du Batha et', '', false, false, '2020/638', false, '{}', 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 11347, 10707, '2020-04-03 07:39:37+00', NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (30, '2019-10-02 11:43:08.782227+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2019-11-25', '2019-11-30', 'Appui aux Activités de Vaccination Supplementaire, tour de novembre 2019', '', false, false, '2019/30', false, '{}', 0.0000, false, NULL, NULL, NULL, 145, 387, 11436, 23059, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (169, '2019-11-20 16:13:02.433004+00', '2020-02-26 08:25:59.949349+00', NULL, '2019-11-20 16:13:12.747356+00', NULL, '2019-11-20 16:29:51.814243+00', '', '', '', 'La province de Mayo Kebbi Est comme certaines provinces du T[[schema]], a été durement touchée par les intempéries durant la saison de pluie. Les départements de Mayo Lemié, Kabia, Mont Illi et Mayo Boneye ont été les plus touchés par des pluies torrentielles provoquant d’importants dégâts matériels et des pertes en vies humaines. + +Suite au rapport d’évaluation du Comité provincial de la Croix Rouge du Mayo Kebbi Est, le bilan fait état de 80.612 personnes sinistrées. Les dégâts matériels sont également très importants avec 14.491 maisons endommagées ou détruites et plus de 19.000 hectares de champs engloutis sous les eaux. Le rapport d’évaluation révèle que des milliers de familles se retrouvent actuellement sans abris ni assistance avec une exposition aux risques de contracter des maladies hydriques et le paludisme et ainsi aggraver considérablement leur vulnérabilité. De plus, de nombreuses personnes touchées vivent dans des zones difficiles à atteindre, ce qui rend la réponse humanitaire d''autant plus difficile. + +C’est donc ce rapport qui a donné l’alerte et l’équipe humanitaire du pays a décidé de procéder à une évaluation multisectorielle inter agences - services techniques étatiques afin d’évaluer l’ampleur des dégâts, les besoins prioritaires et voir dans quelles mesures une assistance d’urgence pourrait être apportée aux victimes, en soutien aux efforts des autorités provinciales et du Gouvernement du T[[schema]]. + +Cette mission qui s’est déroulée du 22 au 28/11/19 s’inscrit dans cette optique. Les principales Organisations suivantes : Unicef, OCHA, PAM, OMS, World Vision, CRF, World Concern Développent, et Solidarités internationales et CRT ont pris part à cette mission multisectorielle. + +L’objectif général de la mission est d’évaluer les besoins réels et prioritaires des communautés touchées ainsi que les lacunes de réponse. De façon spécifique, il s’agira de : +• S’informer sur les systèmes d’alerte mis en place dans la province +• Identifier les structures de prise en charge des questions liées à la préparation et la réponse aux urgences ainsi que leurs forces et faiblesses. +Compte tenue de zones affectées par la crise d’inondation, l’équipe de la mission s’est devise en deux axes. Il s’agit de : +Axe 1 : ils avaient la charge des villages cibles dans les Département de la Kabbia et de Mon Illi +Axe 2 : ils avaient en charge les villages dans les départements du Mayo Boneye et de Mayo Lemié. + +Il est a précisé que l’équipe de l’Unicef venant du BZ de Moundou était programme sur l’axe 1 avec les autres organisations. Après les civilités d’usage aux autorités locales au niveau de la Province du MKE, l’équipe de la mission a eu une séance debriefing avec l’ensembles des acteurs retenus pour cette mission. Cette rencontre a permis de passer en revue l’outil MIRA retenu pour cette évaluation multisectorielle en vue d’avoir une lecture et compréhension communes de l’ensembles des outils. +Le présent rapport présente les détails du déroulement de la mission au niveau de l’axe 1. +En effet, l’équipe de l’axe 1 a pris le départ à partir de Bongor en date du 23/11/19 pour se rendre dans les deux départements à savoir le Département de la Kabbia et de Mon Illi. Les principales étapes de la mission au niveau de ces deux départements se présentent comme suit : + +Etape de Département de la Kabbia : + +Dès son arrivée à Gounou-Gaya Chef-lieu du Département de la Kabbia, l’équipe de la mission a pris contact avec Mme le Préfet entouré de l’occasion de ses proches collaborateurs pour présenter les membres de l’équipe de la mission et les objectifs visés par cette évaluation multisectorielle. Dans ce département au total 5 villages ont été retenue pour cette évaluation. Après cette prise de contact pour les civilités d’usage l’équipe de la mission est descendue le même jour dans un des 5 villages. Et le lendemain, 3 autres villages ont été visités par l’équipe de la mission. Le 5eme village n’a pu être visité par les membres de la mission pour cause d’inaccessibilité pendant cette période de la mission. Ainsi les 4 villages qui ont été visités dans ce département sont les suivants : Domo-Bara 2, Baido 4, Kaswi et Tamboursou Guema. + +Au niveau de chacun de ces villages, un focus groupes a été organisé par chaque secteur avec la population de toutes les catégories selon l’objectifs recherche. Au cours de ces focus groupes organisés les questionnaires au niveau de chaque secteur ont été administres en vue de recueillir le maximum d’information au niveau de chaque secteur. Aussi il faut rappeler chaque secteur retenu ont de séances de travaille avec les services déconcentrés de l’état au niveau du département. Les secteurs concernés qui ont fait l’objet de cette mission d’évaluation sont les suivantes : Sante /nutrition, Protection, Abris/AME, éducation, Sécurité alimentaire et Wash. + +Etape de Département de Mont Illi : + +Au niveau de ce département également l’équipe de la mission dès son arrivée a pris contact avec le Préfet pour les civilités. Cette prise de contact a permis aux membres de la mission d’échanger avec lui autour des objectifs de la mission. Au total 4 villages ont été visités. Ces ont les villages de Dabana, Holom 3, N’gamndi et Yamtoka. Et comme dans le département précèdent, l’ensemble de secteurs ont pu administrer les questionnaires en vue d’avoir tous les éléments sur l’ampleur de la crise liée à l’inondation au niveau chacun des villages visités. + + +A la fin de cette mission sur le terrain l’ensemble de l’équipe de 2 axes se sont retrouvés une fois encore en date du 27/11/19 pour finaliser l’ensemble des outils de briefing au niveau de chaque secteur. A l’issue de cette séance qui a duré toute la journée a permis aux membres de la mission au niveau de 2 axes de finaliser cs outils et de faire la mise en commun des principaux résultats ou constats faits sur le terrain au niveau de l’ensemble des villages visites. Il en ressort de cette synthèse les principaux constats au niveau de chaque secteur retenu qui se résume en quelques points : + + +1. Abris/AME : Destruction des abris, insuffisance des abris, manque de NFI +Recommandations : Appui en kit de construction, distribution des NFI et construction des abris. +2. Education : Manque de fournitures scolaires, indisponibilité des enseignants qualifiés, Les écoles sont construites en matériaux locaux +Recommandations : Plaidoyer pour affectation des enseignants qualifiés, dotation en kits scolaires pour les élèves et enseignants, construction des écoles en matériaux durables +3. Protection : Enlèvement des filles et mariage forcé, Agression physique, /Abus/violence conjugale, difficulté d’obtention de document d’état civil +Recommandations : Plaidoyer auprès des autorités administratives et les leaders traditionnels pour sensibilisation et sanction, Sensibilisation des parents sur les méfaits de l’enlèvement des filles, création des espaces sûrs pour les femmes +4. Santé : Difficulté d’accès aux soins primaires lié à la cherté des coups de prestation /distance au centre de santé, difficultés dans le transport des malades en cas d’évacuation, nombre importants des enfants malnutris enregistres dans certains villages visités, Manque de personnel qualifié, insuffisance des médicaments et des équipements médicaux (boites d’accouchements, tables d’accouchements, tensiomètre, pèse personnes), Manque de salle d’observation, absence de Chaine de froid dans certains Centre de santé ; +Recommandations : Augmentation du nombre de personnel soignant, Approvisionnement en médicaments et consommables y compris les antipaludéennes, équipements médicaux et mise en place des UNA dans les Centres de santé affectés pour assurer la prise en charge des enfants malnutris, dotation des certains CS en chaine de froid ; +5. Sécurité alimentaire : Manque de nourriture, inaccessibilité des marchés locaux par faible pouvoir d’achat de la population, augmentation de prix de denrées alimentaires sur le marché et absence de semence pour la prochaine saison de pluie. +Recommandations : DGV, Appui en intrants agricoles, mise en place des AGR et appui en petits ruminants et distribution de semences + +6. Wash : Difficulté d’accès à l’eau potable et au respect au règles d’hygiène et assainissement + +Recommandations : Implantation de forages additionnels, réparations des forages en pannes promotion de l’hygiène et de l’assainissement +Au cours de la mission nous avions pu atteindre les principaux résultats suivants : + - L’évaluation a été effective dans les 4 départements. Au total 16 villages ont été touchés par les 2 équipes dans les 4 départements + - Les besoins réels et prioritaires des X sinistrés sont connus au niveau de chaque secteur retenu + - Les autorités locales et les leaders traditionnels sont bien impliqués a différents dans la réponse à cette crise + +Au cours de la mission les difficultes suivantes ont ete notifiees: + - Temps d’évaluation insuffisant (très court) ; + - La non maitrise de l’outil MIRA par certains participants à l’évaluation ; + - Absence de données de base dans certains villages ; + - Certains villages restent toujours coupés et inaccessibles. +Aussi au cours de la mission les lecons apprises suivantes ont ete retenues: + - La mission s’est déroulée après la période critique n’a pas permis de mesurer dans certains villages l’ampleur des dégâts + - Forte disponibilité et implication des autorités locales et les leaders traditionnels tout le long de la mission +A l''issue de cette mission nous avions retenu la recommandation suivante: +- Appuyer la finalisation du rapport global de la mission avec l’équipe de OCHA', '', 'completed', '2019-11-22', '2019-11-28', 'Participer a la mission d''evaluation multisectorielle de la population sinistree dans la Province du MKE', '', false, false, '2019/225', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13031, '2019-11-20 16:13:12.747369+00', NULL, 3); INSERT INTO [[schema]].t2f_travel VALUES (33, '2019-10-02 12:52:01.080816+00', NULL, NULL, '2019-10-02 12:52:01.113084+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-07', '2019-10-10', 'Retraite équipe protection de l''enfant à Mara', '', false, false, '2019/33', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 9109, 20384, '2019-10-02 12:52:01.113098+00', NULL, 10); -INSERT INTO [[schema]].t2f_travel VALUES (36, '2019-10-02 15:06:42.041385+00', NULL, NULL, '2019-10-02 15:07:29.015982+00', NULL, '2019-10-02 15:08:39.769088+00', '', '', '', '', '', 'approved', '2019-10-04', '2019-10-05', 'Participer à la réunion de coordination humanitaire ; Contacter les hautes autorités; travailler avec ACF ;', '', false, false, '2019/36', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11347, 24425, '2019-10-02 15:05:18.135266+00', NULL, 3); -INSERT INTO [[schema]].t2f_travel VALUES (37, '2019-10-02 15:08:19.773379+00', NULL, NULL, '2019-10-02 15:08:55.398111+00', NULL, '2019-10-02 15:09:54.284779+00', '', '', '', '', '', 'approved', '2019-10-04', '2019-10-05', 'Participer à la réunion de coordination humanitaire ; Contacter les hautes autorités; travailler avec ACF ;', '', false, false, '2019/39', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11347, 21076, '2019-10-02 15:05:18.135266+00', NULL, 3); INSERT INTO [[schema]].t2f_travel VALUES (19, '2019-10-02 08:57:11.568179+00', NULL, NULL, '2019-10-02 08:57:11.586165+00', NULL, '2019-10-02 10:10:33.134123+00', '', '', '', '', '', 'approved', '2019-11-04', '2019-11-08', 'Capacity building of partners on HACT, accounting and financial management.', '', false, false, '2019/19', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11647, 7798, '2019-10-02 08:57:11.586178+00', NULL, 4); -INSERT INTO [[schema]].t2f_travel VALUES (120, '2019-10-22 21:57:26.484076+00', NULL, NULL, '2019-10-22 22:02:13.762321+00', NULL, '2019-10-23 07:39:01.058985+00', '', '', '', '', '', 'approved', '2019-11-08', '2019-11-15', 'Formation des partenaires du Guera en HACT, Gestion Financière et Comptabilité de base à Mongo', '', false, false, '2019/157', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11607, 4606, '2019-10-02 10:12:14.145161+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (192, '2019-12-06 10:18:26.828246+00', NULL, NULL, '2019-12-06 10:18:42.588506+00', NULL, '2019-12-06 10:23:41.325981+00', '', '', '', '', '', 'approved', '2019-12-08', '2019-12-19', 'Mission de supervision de la vaccination contre la rougeole', '', false, false, '2019/256', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 7584, '2019-12-06 10:18:42.588526+00', NULL, 2); INSERT INTO [[schema]].t2f_travel VALUES (29, '2019-10-02 11:23:18.355378+00', NULL, NULL, '2019-10-02 11:32:58+00', NULL, '2019-10-08 11:35:24.972197+00', '', '', '', '', '', 'approved', '2019-10-09', '2019-10-12', 'Appuyer le nouveau gestionnaire à liquider les avances allouées pour les activités eTME avec reversement.', '', false, false, '2019/29', false, '{}', 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11436, 23059, '2019-10-02 11:32:58+00', NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (34, '2019-10-02 13:52:57.425899+00', NULL, '2019-10-22 10:38:38.726637+00', NULL, NULL, NULL, '', '', '', '', '', 'cancelled', '2019-10-01', '2019-10-07', 'Supervision CPS Guera 3eme tour', '', false, false, '2019/34', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 390, 10707, 12552, NULL, NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (72, '2019-10-08 11:28:43.323325+00', NULL, '2019-10-08 11:33:25.148628+00', NULL, NULL, NULL, '', '', '', '', '', 'cancelled', '2019-10-14', '2019-10-17', '', '', false, false, '2019/95', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11647, 11436, NULL, NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (114, '2019-10-22 09:23:30.841833+00', NULL, NULL, '2019-10-22 09:23:42.8134+00', NULL, '2019-10-22 11:14:02.746266+00', '', '', '', '', '', 'approved', '2019-10-27', '2019-11-26', 'R&R', '', true, false, '2019/149', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11607, 7750, '2019-10-22 09:23:42.813411+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (314, '2020-03-02 09:50:02.96429+00', NULL, NULL, '2020-03-02 09:50:02.985981+00', NULL, '2020-03-10 16:54:34.818244+00', '', '', '', 'Visite Programmatique Ennedi Est', '', 'approved', '2020-03-04', '2020-03-08', 'Mission de Plaidoyer', '', false, false, '2020/402', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 10933, 9329, '2020-03-02 09:50:02.985988+00', NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (49, '2019-10-04 11:17:59.162402+00', NULL, NULL, '2019-10-04 11:17:59.178477+00', NULL, '2019-10-08 15:30:35.635137+00', '', '', '', '', '', 'approved', '2019-10-21', '2019-10-25', 'Participer a la formation de renforcement de capacite en HACT, gestion financiere et comptabilite de base.', '', false, false, '2019/63', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 15628, 24429, '2019-10-04 11:17:59.178486+00', NULL, 12); INSERT INTO [[schema]].t2f_travel VALUES (146, '2019-11-07 12:47:02.094741+00', NULL, NULL, '2019-11-07 12:50:27.030777+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-14', '2019-11-21', 'Participer a la Revue Monitorage eTME', '', false, false, '2019/199', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 11436, 9329, '2019-11-07 12:50:27.030787+00', NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (22, '2019-10-02 09:10:26.413626+00', NULL, NULL, '2019-10-02 09:10:26.439731+00', NULL, '2019-10-03 10:25:29.636768+00', '', '', '', '', '', 'approved', '2019-11-15', '2019-11-23', 'Capacity building of partners on HACT, accounting and financial management', '', false, false, '2019/22', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11647, 7798, '2019-10-02 09:10:26.439858+00', NULL, 4); @@ -16235,38 +19244,42 @@ INSERT INTO [[schema]].t2f_travel VALUES (142, '2019-11-04 08:42:43.868361+00', INSERT INTO [[schema]].t2f_travel VALUES (45, '2019-10-03 11:49:20.382869+00', NULL, '2019-10-03 11:50:00.419746+00', '2019-10-03 09:22:46.04361+00', NULL, NULL, '', 'erreur', '', '', '', 'cancelled', '2019-10-14', '2019-10-18', 'Mission d''Appui C4D Abeche et Abougoudam', '', false, false, '2019/57', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11436, 5076, '2019-10-03 09:22:46.043633+00', NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (68, '2019-10-08 09:33:38.188669+00', NULL, NULL, '2019-10-07 16:01:05.899952+00', NULL, '2019-10-07 16:01:52.614977+00', '', '', '', '', '', 'planned', '2019-10-08', '2019-10-08', 'Participation a la reunion inter cluster a bagasola', '', false, false, '2019/89', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11347, 8725, '2019-10-07 15:57:55.957675+00', NULL, 3); INSERT INTO [[schema]].t2f_travel VALUES (65, '2019-10-07 16:00:55.73183+00', NULL, NULL, '2019-10-07 16:01:05.899952+00', NULL, '2019-10-07 16:01:52.614977+00', '', '', '', '', '', 'approved', '2019-10-08', '2019-10-08', 'Participation a la reunion inter cluster a bagasola', '', false, false, '2019/84', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11347, 12680, '2019-10-07 15:57:55.957675+00', NULL, 3); -INSERT INTO [[schema]].t2f_travel VALUES (60, '2019-10-07 15:32:04.184059+00', NULL, NULL, '2019-10-07 15:33:39.348436+00', NULL, '2019-10-07 15:42:23.115483+00', '', '', '', '', '', 'approved', '2019-10-09', '2019-10-16', 'Mission d’appui Logistique a Mao pour le déchargement de 5000 cartons de RUFT et la livraison des intrants nutritionnels', '', false, false, '2019/73', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11514, 12553, '2019-10-07 15:33:39.348445+00', NULL, 13); +INSERT INTO [[schema]].t2f_travel VALUES (488, '2020-04-20 10:42:52.401795+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-04-23', '2020-05-09', 'Mission d''appui a la reponse protection de l''enfant dans les departements de Kaya et Fouli.', '', false, false, '2020/677', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 24195, NULL, NULL, 10); INSERT INTO [[schema]].t2f_travel VALUES (137, '2019-10-30 10:01:08.692907+00', NULL, NULL, '2019-10-30 10:01:08.772174+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-01', '2019-11-13', 'Conge R&R', '', true, false, '2019/176', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 12319, '2019-10-30 10:01:08.772192+00', NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (46, '2019-10-03 13:32:13.496426+00', NULL, NULL, '2019-10-03 13:42:12.293236+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-07', '2019-10-10', 'Participer a la retraite de l''equipe protection de l''enfant', '', false, false, '2019/60', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 9109, 5068, '2019-10-03 13:42:12.293245+00', NULL, 10); INSERT INTO [[schema]].t2f_travel VALUES (47, '2019-10-03 15:30:40.82543+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2019-10-15', '2019-10-19', 'VP Programmatique dans l''Ennedi Ouest', '', false, false, '2019/61', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 9329, NULL, NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (56, '2019-10-07 10:50:53.572712+00', NULL, '2019-10-08 10:38:16.187216+00', '2019-10-07 10:50:53.595811+00', NULL, '2019-10-07 10:53:00.751938+00', '', '', '', '', '', 'cancelled', '2019-10-10', '2019-10-15', 'Mission de suivi de constructionmdes latrines et Visite programmatique avec IAS', '', false, false, '2019/69', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 9329, 8140, '2019-10-07 10:50:53.595826+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (173, '2019-11-22 13:36:30.420899+00', NULL, NULL, '2019-11-22 13:36:30.469694+00', NULL, '2019-11-28 12:43:14.791896+00', '', '', '', '', '', 'approved', '2019-11-24', '2019-12-01', 'Appuyer la formation HIAB et ANJE du personnel des hopitaux provinciaux de Bongor et Pala', '', false, false, '2019/229', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12528, '2019-11-22 13:36:30.469704+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (152, '2019-11-08 14:55:27.543737+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2019-11-19', '2019-11-23', 'Mission de suivi dans le cadre du Projet PRSSMI/PEV dans 4 districts sanitaires de la Province du Mandoul', 'Grant : SC180628; WBS : 0810/A0/05/881/002/005', false, false, '2019/205', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 9984, 11859, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (176, '2019-11-28 08:11:02.806833+00', NULL, NULL, '2019-11-29 12:56:14.696762+00', NULL, '2019-11-29 13:04:33.99247+00', '', '', '', '', '', 'approved', '2019-12-02', '2019-12-06', 'Mission de suivi PRSSMI-PEV dans la province de la Tandjile', '', false, false, '2019/232', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 11859, '2019-11-29 12:56:14.696776+00', NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (62, '2019-10-07 15:57:55.905104+00', NULL, NULL, '2019-10-07 15:57:55.957666+00', NULL, '2019-10-07 15:59:35.773505+00', '', '', '', '', '', 'approved', '2019-10-08', '2019-10-08', 'Participation a la reunion inter cluster a bagasola', '', false, false, '2019/77', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11347, 11514, '2019-10-07 15:57:55.957675+00', NULL, 3); -INSERT INTO [[schema]].t2f_travel VALUES (58, '2019-10-07 14:24:44.986945+00', NULL, NULL, '2019-10-07 14:25:20.424285+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-21', '2019-10-24', 'Visite programmatique et suivi des activtes ATPC et WASH in Nut au Kanem', '', false, false, '2019/71', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11399, 9148, '2019-10-07 14:25:20.424293+00', NULL, 8); INSERT INTO [[schema]].t2f_travel VALUES (59, '2019-10-07 14:30:07.862044+00', NULL, NULL, '2019-10-07 14:30:07.877045+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-11', '2019-11-15', 'Visite programmatique et suiv des activtes ATPC et WASH in Nut', '', false, false, '2019/72', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11399, 9148, '2019-10-07 14:30:07.877054+00', NULL, 8); -INSERT INTO [[schema]].t2f_travel VALUES (61, '2019-10-07 15:32:50.253912+00', NULL, NULL, '2019-10-07 15:34:06.124494+00', NULL, '2019-10-07 15:44:42.718929+00', '', '', '', '', '', 'approved', '2019-10-09', '2019-10-16', 'Mission d’appui Logistique a Mao pour le déchargement de 5000 cartons de RUFT et la livraison des intrants nutritionnels', '', false, false, '2019/74', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11514, 10791, '2019-10-07 15:34:06.124503+00', NULL, 13); +INSERT INTO [[schema]].t2f_travel VALUES (482, '2020-04-10 09:55:54.857326+00', NULL, NULL, '2020-04-10 09:55:54.872577+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-04-14', '2020-04-14', 'Retour au bureau d''Abeche apres conge et teleworking a N''Djamena', '', false, false, '2020/668', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 13371, '2020-04-10 09:55:54.872584+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (439, '2020-03-23 14:16:11.444264+00', NULL, NULL, '2020-03-23 14:39:35.753846+00', NULL, '2020-03-23 15:10:15.197725+00', '', '', '', '', '', 'approved', '2020-03-25', '2020-04-01', 'Conge SECTO', '', false, false, '2020/612', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 14482, 5057, '2020-03-23 14:39:35.753855+00', NULL, 15); INSERT INTO [[schema]].t2f_travel VALUES (63, '2019-10-07 15:58:36.587754+00', NULL, NULL, '2019-10-07 15:58:47.792999+00', NULL, '2019-10-07 16:00:31.054699+00', '', '', '', '', '', 'approved', '2019-10-08', '2019-10-08', 'Participation a la reunion inter cluster a bagasola', '', false, false, '2019/78', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11347, 24425, '2019-10-07 15:57:55.957675+00', NULL, 3); INSERT INTO [[schema]].t2f_travel VALUES (71, '2019-10-08 10:44:06.409907+00', NULL, NULL, '2019-10-08 10:44:06.433208+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-11', '2019-10-16', 'Suivi et controle des travaux de construction des latrines et verification programmatique avec AFDI', '', false, false, '2019/94', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 8140, '2019-10-08 10:44:06.433216+00', NULL, 8); INSERT INTO [[schema]].t2f_travel VALUES (66, '2019-10-08 07:54:43.600392+00', NULL, '2019-10-08 09:47:48.660136+00', NULL, NULL, NULL, '', '', '', '', '', 'cancelled', '2019-10-12', '2019-10-16', 'Mission de suivi et controle de construction des blocs des latrines et Verification programmatique avec AFDI a Biltine', '', false, false, '2019/87', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 8140, NULL, NULL, 8); -INSERT INTO [[schema]].t2f_travel VALUES (41, '2019-10-03 09:06:48.773172+00', NULL, NULL, '2019-10-03 09:22:46.04361+00', NULL, '2019-10-08 11:24:09.189242+00', '', '', '', '', '', 'approved', '2019-10-14', '2019-10-18', 'Mission d''Appui C4D Abeche et Abougoudam', '', false, false, '2019/45', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11436, 20819, '2019-10-03 09:22:46.043633+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (28, '2019-10-02 10:44:57.382116+00', NULL, NULL, '2019-10-02 10:56:36.376461+00', NULL, '2019-10-08 11:34:14.280391+00', '', '', '', '', '', 'approved', '2019-10-07', '2019-10-08', 'Participer à la retraite de la section Protection de l''Enfant: Intervention sur la gestion du stress et le Bien-etre', '', false, false, '2019/28', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11436, 5069, '2019-10-02 10:56:36.37647+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (301, '2020-02-28 09:11:43.890587+00', NULL, NULL, '2020-02-28 09:11:43.909338+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-02-17', '2020-02-20', 'Spot check a Guelendeng', '', false, false, '2020/380', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 5061, 24493, '2020-02-28 09:11:43.909345+00', NULL, 6); INSERT INTO [[schema]].t2f_travel VALUES (69, '2019-10-08 09:38:28.022156+00', NULL, NULL, '2019-10-08 09:39:17.185238+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-12', '2019-10-16', 'Mission de suivi et controle de construction des blocs des latrines et Verification programmatique avec AFDI a Biltine', '', false, false, '2019/92', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 8725, '2019-10-08 09:39:17.18525+00', NULL, 8); INSERT INTO [[schema]].t2f_travel VALUES (64, '2019-10-07 15:59:20.459324+00', NULL, NULL, '2019-10-07 15:59:27.950383+00', NULL, '2019-10-07 16:01:00.088371+00', '', '', '', '', '', 'approved', '2019-10-08', '2019-10-08', 'Participation a la reunion inter cluster a bagasola', '', false, false, '2019/81', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11347, 25198, '2019-10-07 15:57:55.957675+00', NULL, 3); INSERT INTO [[schema]].t2f_travel VALUES (67, '2019-10-08 09:30:46.507632+00', NULL, NULL, '2019-10-08 09:36:26.1384+00', NULL, '2019-10-08 09:47:43.550054+00', '', '', '', '', '', 'approved', '2019-10-14', '2019-10-16', 'Participation a la formation e-tools: Module d''Assurance', '', false, false, '2019/88', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 10706, '2019-10-08 09:36:26.13841+00', NULL, 6); INSERT INTO [[schema]].t2f_travel VALUES (74, '2019-10-08 15:19:07.248999+00', NULL, NULL, '2019-10-08 10:44:06.433208+00', NULL, NULL, '', '', '', '', '', 'planned', '2019-10-11', '2019-10-16', 'Suivi et controle des travaux de construction des latrines et verification programmatique avec AFDI', '', false, false, '2019/97', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 8725, '2019-10-08 10:44:06.433216+00', NULL, 8); -INSERT INTO [[schema]].t2f_travel VALUES (84, '2019-10-10 07:41:52.307954+00', NULL, NULL, '2019-10-10 07:41:52.336474+00', NULL, '2019-10-10 08:21:55.714091+00', '', '', '', '', '', 'approved', '2019-10-21', '2019-10-25', 'Formation des partenaires de N''Djamena en HACT, Gestion Financiere et Comptabilise de base', '', false, false, '2019/111', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 177097, 4606, '2019-10-10 07:41:52.336484+00', NULL, 11); INSERT INTO [[schema]].t2f_travel VALUES (97, '2019-10-15 07:28:44.887565+00', NULL, '2019-10-15 07:34:39.546584+00', NULL, NULL, NULL, '', '', '', '', '', 'cancelled', '2019-10-24', '2019-11-04', 'Mission conjointe de suivi des indicateurs de résultats du projet ECW dans les 10 provinces affectées par les crises', '', false, false, '2019/124', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 5052, 14363, NULL, NULL, 9); INSERT INTO [[schema]].t2f_travel VALUES (107, '2019-10-21 13:14:10.480579+00', NULL, NULL, '2019-10-21 13:14:29.141079+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-23', '2019-10-24', 'Organisation de la reunion de sous cluster', '', false, false, '2019/140', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 12680, '2019-10-21 09:33:15.067319+00', NULL, 8); INSERT INTO [[schema]].t2f_travel VALUES (105, '2019-10-21 09:33:15.024243+00', NULL, NULL, '2019-10-21 09:33:15.067311+00', NULL, '2019-10-21 20:23:16.022507+00', '', '', '', '', '', 'approved', '2019-10-23', '2019-10-24', 'Organisation de la reunion de sous cluster', '', false, false, '2019/136', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11514, 24425, '2019-10-21 09:33:15.067319+00', NULL, 8); -INSERT INTO [[schema]].t2f_travel VALUES (152, '2019-11-08 14:55:27.543737+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2019-11-19', '2019-11-23', 'Mission de suivi dans le cadre du Projet PRSSMI/PEV dans 4 districts sanitaires de la Province du Mandoul', 'Grant : SC180628; WBS : 0810/A0/05/881/002/005', false, false, '2019/205', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 9984, 11859, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (185, '2019-12-03 11:51:32.039808+00', NULL, NULL, '2019-12-03 12:02:46.546411+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-12-05', '2019-12-15', 'Appui aux AVS Rougeole couplées à la supplementation en Vitamine A dans le district de Bodo.', '', false, false, '2019/245', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11436, 23059, '2019-12-03 12:02:46.546421+00', NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (78, '2019-10-08 16:29:58.906387+00', NULL, NULL, '2019-10-08 16:29:58.952392+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-14', '2019-10-16', 'Participer a la formation etools sur le module gestion financiere', '', false, false, '2019/103', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11347, 21331, '2019-10-08 16:29:58.952402+00', NULL, 9); INSERT INTO [[schema]].t2f_travel VALUES (77, '2019-10-08 16:17:48.706186+00', NULL, NULL, '2019-10-08 16:18:10.79992+00', NULL, '2019-10-09 08:54:07.013915+00', '', '', '', '', '', 'approved', '2019-10-10', '2019-10-11', 'Deposer le mobile 63 pour la reparation', '', false, false, '2019/100', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11514, 12680, '2019-10-08 16:15:44.074682+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (456, '2020-03-30 11:05:48.916107+00', NULL, NULL, '2020-03-30 11:05:48.942196+00', NULL, '2020-04-01 08:40:12.211471+00', '', '', '', '', '', 'approved', '2020-03-09', '2020-03-09', 'Preparation mission DFID', '', false, false, '2020/629', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12528, '2020-03-30 11:05:48.942202+00', NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (100, '2019-10-18 07:34:56.812022+00', NULL, NULL, '2019-10-18 07:34:56.834372+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-22', '2019-10-26', 'mission conjointe d''evaluation a Chokoyane', '', false, false, '2019/127', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 25042, '2019-10-18 07:34:56.834389+00', NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (76, '2019-10-08 16:15:43.832353+00', NULL, '2019-10-09 09:01:30.737442+00', '2019-10-08 16:15:44.074673+00', '2019-10-09 08:57:36.11636+00', NULL, 'trip ceer juste pour faire la duplication pour le chauffeur. Akaye ne va pas en mission', '', '', '', '', 'cancelled', '2019-10-10', '2019-10-11', 'Deposer le mobile 63 pour la reparation', '', false, false, '2019/99', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 5057, '2019-10-08 16:15:44.074682+00', NULL, 3); -INSERT INTO [[schema]].t2f_travel VALUES (92, '2019-10-11 07:00:15.570086+00', NULL, NULL, '2019-10-11 07:07:36.363967+00', NULL, '2019-10-11 07:10:15.567544+00', '', '', '', '', '', 'approved', '2019-10-21', '2019-10-27', 'Mission de suivi de distribution de kits scolaires dans 36 écoles de Bokor', '', false, false, '2019/119', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 14616, '2019-10-11 07:07:36.363976+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (449, '2020-03-25 08:55:39.47296+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-04-27', '2020-04-30', 'visite programmatique de terre verte', '', false, false, '2020/622', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 9984, 13512, NULL, NULL, 8); INSERT INTO [[schema]].t2f_travel VALUES (81, '2019-10-09 08:05:08.353585+00', NULL, NULL, '2019-10-09 08:06:02.792443+00', NULL, '2019-10-09 11:16:10.556019+00', '', '', '', '', '', 'approved', '2019-10-14', '2019-10-16', 'Participer a la formation etools sur le module gestion financiere', '', false, false, '2019/106', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11347, 11514, '2019-10-08 16:29:58.952402+00', NULL, 9); INSERT INTO [[schema]].t2f_travel VALUES (57, '2019-10-07 10:53:56.629182+00', NULL, NULL, '2019-10-07 10:53:56.652963+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-14', '2019-10-24', 'Visite programmatique auprès de JRS dans le Wadi Fira et l''Ennedi Est', '', false, false, '2019/70', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 25005, '2019-10-07 10:53:56.652972+00', NULL, 9); -INSERT INTO [[schema]].t2f_travel VALUES (80, '2019-10-09 07:47:56.851891+00', NULL, NULL, '2019-10-09 07:47:56+00', NULL, '2019-10-16 08:01:35.826408+00', '', '', '', '', '', 'approved', '2019-10-18', '2019-10-21', 'Appuyer a la mise en oeuvre des activites sur le terrain', '', false, false, '2019/105', false, '{}', 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11399, 14239, '2019-10-09 07:47:56+00', NULL, 8); -INSERT INTO [[schema]].t2f_travel VALUES (8, '2019-10-01 08:07:40.921357+00', NULL, NULL, '2019-10-01 08:13:00.885102+00', NULL, '2019-10-01 09:09:50.553725+00', '', '', '', '', '', 'approved', '2019-10-01', '2019-10-05', 'Visites programmatiques des Delegations de l''Action sociale de Lai, Koumra et Doba', '', false, false, '2019/8', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13372, '2019-10-01 08:13:00.88511+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (275, '2020-02-24 08:28:37.827496+00', NULL, NULL, '2020-02-24 08:31:14.913119+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-02-27', '2020-03-02', 'UNICEF representation at certification and celebration of open defecation free communities in Youe and Mbrao', '', false, false, '2020/348', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11399, 246704, '2020-02-24 08:31:14.913127+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (342, '2020-03-05 08:16:24.681489+00', '2020-03-18 07:38:08.643566+00', '2020-03-05 14:54:25.956418+00', '2020-03-05 15:03:05.416065+00', NULL, '2020-03-05 15:18:03.072062+00', '', '', '', 'La mission c''est bien deroulee dans l''ensemble! +Merci. +Mora.', '', 'completed', '2020-03-11', '2020-03-16', 'Ramener les collegues pour les sessions de refresh Etools', '', false, false, '2020/453', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 14482, 21076, '2020-03-05 08:16:24.75023+00', NULL, 6); INSERT INTO [[schema]].t2f_travel VALUES (14, '2019-10-02 07:25:47.321221+00', '2019-10-18 09:17:52.183993+00', NULL, '2019-10-02 07:47:39.623751+00', NULL, '2019-10-02 08:09:37.235108+00', '', '', '', 'RAPPORT DE MISSIONS Noms et titre du voyageur : NDEMIGN YEDENOU - N’DJAMENA - SANTE / PEV 11 octobre 2019 @@ -16314,58 +19327,108 @@ Envoyer une note d’explication à l’Unicef par suite des modifications appor Collecter les données du plan opérationnel de déploiement par rapport aux CS confectionnels dépendant de la zone de responsabilité du sous dépôt Tenir des réunions hebdomadaires afin de suivre l’évolution des travaux.', '', 'completed', '2019-10-04', '2019-10-07', 'Travaux de pose et mise en service du système photovoltaique au PEV Abéché et suivi de collecte de données du CCEOP-ODP', '', false, false, '2019/14', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11647, 23640, '2019-10-02 07:47:39.623762+00', NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (83, '2019-10-09 13:58:21.71179+00', NULL, NULL, '2019-10-09 13:59:18.526866+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-14', '2019-10-24', 'Visite programmatique auprès de JRS dans le Wadi Fira et l''Ennedi Est', '', false, false, '2019/110', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 8714, '2019-10-07 10:53:56.652972+00', NULL, 9); -INSERT INTO [[schema]].t2f_travel VALUES (94, '2019-10-14 11:49:55.351221+00', NULL, NULL, '2019-10-14 11:55:53.986665+00', NULL, '2019-10-14 16:34:29.34152+00', '', '', '', '', '', 'approved', '2019-10-21', '2019-10-25', 'suivi programmatique des actvites wash du partenaire APDI', '', false, false, '2019/121', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13512, '2019-10-14 11:55:53.986676+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (150, '2019-11-08 09:40:49.42474+00', NULL, NULL, '2019-11-08 09:42:44.406628+00', NULL, '2019-12-27 17:39:51.001375+00', '', '', '', '', '', 'approved', '2019-11-17', '2019-11-21', 'Revue de la section', '', false, false, '2019/203', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12059, '2019-11-08 09:42:44.406638+00', NULL, 9); INSERT INTO [[schema]].t2f_travel VALUES (87, '2019-10-10 09:02:39.49396+00', NULL, NULL, '2019-10-10 09:03:05.635095+00', NULL, '2019-10-14 14:13:06.629919+00', '', '', '', '', '', 'approved', '2019-10-26', '2019-10-31', 'Renforcer les capacités des logisticiens de l’UNICEF et du personnel national de santé et de vaccination', '', false, false, '2019/114', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11566, 8519, '2019-10-10 09:03:05.635104+00', NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (18, '2019-10-02 08:41:41.20518+00', '2019-11-05 07:21:09.898558+00', NULL, '2019-10-02 08:46:35.078391+00', NULL, '2019-10-02 09:00:32.166586+00', '', '', '', 'Rapport de mission d''appui au 3e Tour de la CPS', '', 'completed', '2019-10-03', '2019-10-07', 'Appui au 3e tour de la CPS à Mongo', '', false, false, '2019/18', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 21654, '2019-10-02 08:46:35.078405+00', NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (104, '2019-10-18 13:40:01.762695+00', NULL, NULL, '2019-10-18 13:40:31.49471+00', NULL, '2019-10-18 13:42:49.002982+00', '', '', '', '', '', 'approved', '2019-11-02', '2019-11-13', 'Atelier de formation sur la nouvelle version de la Gestion Efficace des Vaccins ‘’EVM 2.0 ‘’', '', false, false, '2019/135', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11566, 8519, '2019-10-18 13:40:31.49472+00', NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (145, '2019-11-06 16:15:48.893561+00', NULL, NULL, '2019-11-06 16:15:48.912238+00', NULL, '2019-11-06 16:31:39.144948+00', '', '', '', '', '', 'approved', '2019-11-11', '2019-11-17', 'Évaluation urgence Chokoyane', '', false, false, '2019/198', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 9329, 25166, '2019-11-06 16:15:48.912265+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (95, '2019-10-14 12:01:10.428113+00', NULL, NULL, '2019-10-14 12:07:10.190544+00', NULL, '2019-10-14 16:33:09.006547+00', '', '', '', '', '', 'approved', '2019-10-28', '2019-10-28', 'participation a la reunion sous cluster wash', '', false, false, '2019/122', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13512, '2019-10-14 12:07:10.190553+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (346, '2020-03-06 10:35:09.328689+00', NULL, NULL, '2020-03-08 08:59:28.826764+00', NULL, '2020-03-08 11:03:58.726158+00', '', '', '', '', '', 'approved', '2020-03-11', '2020-03-13', 'Field mission for content production within the CERF fund.', 'OIC: Rodrigue Ange Aye-Ake + +0810/A0/05/880/004/003– SM 190227', false, false, '2020/457', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 210807, '2020-03-08 08:59:28.826771+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (354, '2020-03-07 13:56:25.831646+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-04-26', '2020-05-02', 'Activities Monitoring, follow up and technical support to implementing partners', '', false, false, '2020/465', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11647, 11344, NULL, NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (93, '2019-10-14 11:36:01.757443+00', NULL, NULL, '2019-10-14 11:41:15.390196+00', NULL, '2019-10-14 16:34:07.306117+00', '', '', '', '', '', 'approved', '2019-10-14', '2019-10-18', 'mission exploratoire pour la phase préparatoire de l’initiative WASH education Nutrition securite alimentaire', '', false, false, '2019/120', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13512, '2019-10-14 11:41:15.390205+00', NULL, 8); INSERT INTO [[schema]].t2f_travel VALUES (89, '2019-10-10 19:12:57.380606+00', NULL, NULL, '2019-10-10 19:13:29.778241+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-10', '2019-10-10', 'Atelier d''elaboration du programme pluriannuel d''appui à la resilience du secteur educatif', '', false, false, '2019/116', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 5070, 19279, '2019-10-10 19:13:29.778256+00', NULL, 3); INSERT INTO [[schema]].t2f_travel VALUES (90, '2019-10-10 19:26:58.502417+00', NULL, NULL, '2019-10-10 19:27:13.46485+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-14', '2019-10-14', 'Renforcement des capacites du Groupe de Travail Education de Gore', '', false, false, '2019/117', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 5070, 19279, '2019-10-10 19:27:13.46486+00', NULL, 3); INSERT INTO [[schema]].t2f_travel VALUES (82, '2019-10-09 13:00:45.949758+00', NULL, NULL, '2019-10-09 13:01:56.484367+00', NULL, '2019-10-15 08:42:28.117692+00', '', '', '', '', '', 'approved', '2019-10-24', '2019-11-04', 'Verification programmatique CPPCT-U et Suivi des indicateurs ECW', '', false, false, '2019/109', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 5052, 14363, '2019-10-09 13:01:56.484378+00', NULL, 9); -INSERT INTO [[schema]].t2f_travel VALUES (96, '2019-10-14 16:45:14.15477+00', NULL, NULL, '2019-10-14 16:45:14.22107+00', NULL, '2019-10-14 16:53:25.840426+00', '', '', '', '', '', 'approved', '2019-10-15', '2019-10-16', 'Mission de supervision avec le Chef CSD dans le cadre de CFC a Benoye et Krim-Krim', '', false, false, '2019/123', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 11347, 9984, '2019-10-14 16:45:14.221089+00', NULL, 3); -INSERT INTO [[schema]].t2f_travel VALUES (150, '2019-11-08 09:40:49.42474+00', NULL, NULL, '2019-11-08 09:42:44.406628+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-17', '2019-11-21', 'Revue de la section', '', false, false, '2019/203', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 9984, 12059, '2019-11-08 09:42:44.406638+00', NULL, 9); -INSERT INTO [[schema]].t2f_travel VALUES (124, '2019-10-23 09:21:41.720565+00', NULL, NULL, '2019-10-23 09:22:06.214377+00', NULL, '2019-11-07 14:19:32.589077+00', '', '', '', '', '', 'approved', '2019-10-28', '2019-10-31', 'Participer a l''atelier de la revue des PCA Nutrition', '', false, false, '2019/162', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12528, '2019-10-23 09:22:06.214387+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (50, '2019-10-04 22:01:36.029022+00', NULL, NULL, '2019-10-04 22:02:30.995174+00', NULL, '2019-10-06 07:18:46.580284+00', '', '', '', 'La politique nationale de la Vaccination 2020-2030, le guide national de vaccination et les outils de gestion sont validés techniquement et les drafts de ces documents disponibles. - -Les prochaines étapes des activités pour la finalisation du document sont : - • Finalisation de la Politique, du Guide, et les outils de collecte des données, du 7 au 31 Octobre 2019; - • Validation des documents par le comité technique d’appui au PEV, le 05 Novembre 2019; - • Adoption par le CCIA sera organisé pour la validation le 15 Novembre 2019; - • Reproduction du support dans la période de 30 novembre 2019 et - • Diffusion du Guide et du PNV le 02 décembre 2019. - -L’atelier a été ouvert par le représentant du MSP, le DSRV accompagné par les représentants de l’Unicef et de l’OMS dans l’après-midi du 1er Octobre 2019. Aussitôt les groupes de travaux ont été mise en place pour faire la revue des différentes sections du document de la politique et du Guide. Bien qu’un retard soit connu pour le démarrage de l’atelier, les activités se sont bien déroulées avec une participation active des participants présents. La revue des travaux de groupes des différents sur le PNV, le guide et les outils a été faite par l’équipe de rédaction. -Le document de la Politique est passé de 19 à 30 Pages. La production était à 100%. -L’intégration de la production du guide était à 95%, -Pour ce qui concerne les outils de gestion, il reste le registre de pointage journalier qui sera rediscuté avec l’équipe de la DSIS pour une position sur la notion ZA et ZB. -Une équipe dirigée par le PEV avec l’appui de l’OMS et de l’UNCEF est mise sur pied pour la finalisation - -Les participants n’étaient pas tous arrivés à Douguia le matin du 1er octobre comme planifié. Ainsi toute la matinée du 1er octobre n’a pas été mise à profit. Les activités de l’atelier ont effectivement démarré à 15h00 le 1er jour. - -Le perdiem des conducteurs et les frais de carburant n’ont pas été payés à l’issue de l’atelier car l’un des signataires de chèque au ministère de la santé publique était en déplacement -La présence des participants n’a pas été constante durant l’atelier, certains participants passent la nuit à N’Djaména, il y a eu des activités à N’Djaména (installation de la nouvelle équipe de la SDV, réception des véhicules CPA par les délégués, …). Cette situation a perturbé le bon déroulement de l’atelier. -Cependant afin d’atteindre les résultats assignés malgré cette situation, les staffs UNICEF ont assuré le lead de la quasi-totalité des différents groupes de travail et la facilitation des discussions en collaboration avec ceux de de l’OMS - -Le principe présentiel de l’atelier n’a pas été observé par certains participants. - -Les principals recommandations etaient: -1) Appuyer la finalisation les documents de la PNV, du Guide et les outils de gestion - Equipe ad hoc mise en place (MSP/UNICEF/OMS) - 31 Octobre 2019 -2) Appuyer la validation de la PNV, du Guide et les outils de gestion par le CCIA - UNICEF/OMS - 15 Novembre 2019 -3) Reproduire les documents (PNV, Guide et outils de gestion) validés- SDV - 30 Novembre 2019 -4) Mettre les documents reproduits à la disposition des DSP, DS et CS - SDV/DSRV- 02 Décembre 2019 -5) Organiser une rencontre entre l’équipe communication de l’UNICEF et la nouvelle équipe communication de la SDV (PEV) - UNICEF (Communication Stratégique) - 10 octobre 2019', '', 'approved', '2019-10-01', '2019-10-05', 'Participation a l''atelier de validation technique de la politique nationale de la vaccination', '', false, false, '2019/64', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11566, 9333, '2019-10-04 22:02:30.995181+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (210, '2019-12-17 21:09:08.361518+00', NULL, NULL, '2019-12-17 21:09:08.394229+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-12-08', '2019-12-19', 'Appui a la supervision de la riposte contre la rougeole couplee a la supplementation en vitamin A et au deparasitage', '', false, false, '2019/273', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11566, 9333, '2019-12-17 21:09:08.394237+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (222, '2020-02-06 18:06:30.355987+00', NULL, NULL, '2020-02-06 18:06:43.285331+00', NULL, '2020-02-07 07:19:07.95042+00', '', '', '', '', '', 'approved', '2020-02-11', '2020-02-11', 'Mission conjointe preparation lancement et demarrgae projet AGAPE a Doba', '', false, false, '2020/287', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 11347, 9984, '2020-02-06 18:06:43.285339+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (189, '2019-12-04 14:27:37.118204+00', NULL, NULL, '2019-12-04 14:28:17.168038+00', NULL, '2019-12-09 07:18:09.630487+00', '', '', '', '', '', 'approved', '2019-12-14', '2019-12-18', 'Formation du personnel de Bol en HACT, nouvelles procedures de partenariat et utilisation de ECM', '', false, false, '2019/251', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11719, 7798, '2019-12-04 07:31:29.637417+00', NULL, 4); +INSERT INTO [[schema]].t2f_travel VALUES (287, '2020-02-25 13:23:47.975029+00', NULL, NULL, '2020-02-25 13:23:47.99034+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-03-22', '2020-03-28', 'supervision conjointe a Amdam', '', false, false, '2020/362', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 25042, '2020-02-25 13:23:47.990348+00', NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (102, '2019-10-18 12:19:06.27759+00', NULL, NULL, '2019-10-18 12:20:14.532112+00', NULL, '2019-10-21 08:01:38.596908+00', '', '', '', '', '', 'approved', '2019-10-22', '2019-10-25', 'Supervision conjointe de activites PCIMA', '', false, false, '2019/129', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11514, 8718, '2019-10-18 12:17:32.707838+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (223, '2020-02-09 18:22:57.967548+00', '2020-03-19 19:17:43.270891+00', NULL, '2020-02-09 18:22:58.02642+00', NULL, '2020-02-09 18:55:44.938102+00', '', '', '', 'La mission s’est déroulée en 5 grandes étapes : +1. Séances de travail +1ere rencontre s’est déroulée le lundi 10/02/2020 +• Introduction et autres points importants +- L’équipe de la mission a été présentée par le chef de bureau de zone suivi d’un bref briefing sécurité. Il a également fait mention de leur souhait de mettre en place un comité restreint de relecture des FACE des partenaires afin de limite les pertes de temps de correction. +- Il a ensuite décliné leurs priorités du moment qui s’articulent autour PPA et des PAS du staff. +- Il a ensuite parlé du retour d’un PO qui rentre d’une mission internationale et rajoute que le bureau a reçu des retours positifs le concernant. +- L’équipe de Ndjamena a tenue à porter un éclaircissement sur le circuite de traitement des requêtes qui voit la participation des Associates. +- Un point a été évoqué sur l’intersectorialité : le souhait du chef de bureau que chaque missionnaire présente l’objet de sa mission en pléniere en présence des PO des différents secteurs +- Discussion autour du traitement des requêtes : faire participer les programmes associates pour vérification des versions électroniques avant transmission aux partenaires pour signature +• Object de la mission +L’équipe de la mission de venue de Ndjamena a tenu à préciser l’objet de leur mission : +- Atelier de préparation de la collecte et de l’analyse des données du protocole simplifier +- Point sur l’état d’avancement du PPA de du bureau de zone de Mongo province de convergence +- Participation a l’atelier de capitalisation de l’approche Surge organisé par la croix rouge française dans le Batha +- Rencontre de travail avec l’ONG ASRADD sur la suite de la collaboration et présentation des résultats et leçons apprises du précédent PCA. +- Une mention particulière a été faite sur la nécessité que la délégation du Guera puisse fournir son plan d’action opérationnel (PAO) ainsi que l’ensemble des districts. + +2eme séance de travail vendredi 14/02/2020 +Elle s’est tenue avec les l’ensemble des PO nutrition : +- Finalisation des fiches de collecte de données +- Finalisation du budget de la collecte, de la validation et de l’analyse des données +- Finalisation des TDR de la mission de collecte des données + +2. Rencontre des autorités +La 1ere rencontre avec le délégué de la province du Guera s’est tenue le 10/02/2020 +L’objet de la mission a été présenté au Délégué Sanitaire et son équipe par le chef de bureau de zone. +Un accent particulier a été mis sur la nécessité que la DSP ainsi que l’ensemble des districts sanitaires puissent disposer d’un plan d’action opérationnel (PAO). +Il a également été clairement expliqué à l’équipe cadre de la délégation le choix de la province du Guera pour une convergence des actions de l’UNICEF. +Le délégué sanitaire à son tour a pris l’engagement de fournir les PAO et à veiller à la réussite des actions soutenues par l’UNICEF. +Il a également promis de fournir un draft du PAO DSP de Guera d’ici le 20 février 2020. Il a exprimé aussi le besoin d’appui pour dupliquer les canevas de PAO pour l’ensemble des districts sanitaires et des zones de responsabilité. +Recommandation a été faite qu’une équipe de la délégation et une de l’UNICEF se retrouvent pour proposer un plan de travail. +Le délégué conclu en évoquant un problème majeur qui pourrait entraver l’atteinte des résultats : la disponibilité de personnels qualifiés. Mais a cela, il rajoute qu’un plaidoyer a été fait eau niveau national et qu’il se pourrait que la DSP Guera bénéficient d’une affectation prochaine de personnel paramédical qualifiés. +2nd rencontre avec le délégué a eu lieu le 12/02/2020 +Ce fut une rencontre de debriefing de la mission auprès du Délégué sanitaire et de son équipe cadre. +Un point a été fait sur le déroulement des travaux, la constitution des groupes, la fixation de la date de début de collecte des données. Il a été demandé au DSP si la date du 29/02/2020 retenu en atelier pour le début de la phase de collecte pourrait être rapprocher au 27 pour des raisons de conflit d’agenda au sein de l’équipe internationale de l’UNICEF qui souhaite participer surtout à la phase d’analyse. Le délégué a émis la possibilité de revoir cette date mais après concertation avec les MCD concernés. +Il a été évoqué également la possibilité de fixer la date de validation régionale plus tard afin de permettre la représentation sous régionale de l’UNICEF d’y participer. +En fin de debriefing, le DSP a évoqué la dotation de moto prévue pour la DSP du Guera et qui tarde à se faire. A cela, l’UNICEF a tenu à faire comprendre que les motos sont en maintenance et devraient parvenir à la délégation dès que possible. Ainsi, une instruction a été donnée aux PO de Mongo de faire un suivi du dossier. +3. Atelier préparatoire +L’atelier a portée sur la préparation de la phase de collecte et d’analyse des données sur le protocole simplifié. +Il s’est tenu 2 jours durant, le 11 et 12 février 2020. Il a vu la participation de l’ONG de mise en œuvre du protocole simplifié IRC, du PAM, de l’UNICEF, de la DNTA, de la Délégation Sanitaire provinciale du Guera et des Districts sanitaires de Mongo, Melfi et Magalme. + Après la cérémonie d’ouverture et la présentation de l’objet de la rencontre, IRC a fait une présentation sur le déroulement du protocole simplifié et quelques résultats atteints. +Une phase de discussion a suivi cette présentation et elle a tournée essentiellement sur les difficultés rencontre lors de la mise en œuvre du protocole simplifiée et des leçons apprises : +- Personnel peu qualifie dans certains centres de sante surtout les nouvelles structures enrôlées dans la prise en charge de la malnutrition +- Superviseurs IRC peu compétents +- Non appropriation des activités par certains RCS +- Collaboration assez complexe entre les agents superviseurs de IRC et les infirmiers +- Début tardif dans certains centres de santé +- Rupture d’intrant dans certains centres de sante +- Manque d’orientation claire pour les équipes de mise en œuvre ; +- Des recommandations contradictoires au cours des supervisions ; +- Le non-respect des critères d’admission et de transfert ; +- Le manque d’une base de données de collecte ; +- Les responsabilités ne sont pas bien situées entre les parties prenantes rendant la coordination de ce protocole sur terrain très complexe créant de rupture ; +- L’insuffisance dans la communication entre les acteurs de terrain + + La phase de revue et validation des outils de collecte de données. Il s’agissait des outils suivants : +- La base de données Excel pour la collecte de données quantitatives sur la prise en charge de chaque enfant dans les structures sanitaires. +- Le questionnaire UNA/UNS pour la collecte de données qualitatives sur la prise en charge au niveau du centre de santé +- Le questionnaire UNT pour la collecte des données relatives aux enfants des UNA/UNS transférés dans cette UNT. +Après la validation de ces outils par les participants. L’atelier a procédé à la revue de la méthodologie de collectes des données dans les centres de santé. Ainsi, les modalités pratiques ont été défini, notamment le nombre d’équipes de collecte par districts, les axes, les nombre de jours de formation, de voyage, de collecte et de validation des données. Ainsi, le district de Mongo est organisé en cinq (5) axe, District de Mangalme trois (3) axes et district de Melfi 4 axes. Il a été convenu de constituer dix (10) équipes de vingt (20) personnes dont quatre (4) équipes pour le district de Mongo, deux (2) pour le district de Mangalme et quatre (4) autre pour le district de Melfi. La collecte se fera centre après centre. +4. Participation à l’atelier de capitalisation de l’approche SURGE +Cet atelier s’est déroulé dans le Batha le 13/02/2020 +Après la cérémonie d’ouverture, quatre (04) présentations ont été faites sur la méthodologie de l’approche Surge et les adaptations faites par la CRF, sur la mise en œuvre pratique, sur la capitalisation et sur le suivi et l’évaluation de l’approche. +Une série de question réponse s’en est suivie. Il ressort de cette phase : +- L’approche Surge dans le Batha a démarré avec un retard. +- Les données d’admission signalées par les responsables de centre ne se sont pas toujours juste et après vérification ces centres se retrouvent en situation sous tension et non d’urgence. +- L’équipe de la mission de l’UNICEF est revenue sur le faire que les différentes phases de classification de la Surge portent à confusion. Cette classification de « sous tension », « d’urgence » et de « Crise » parlent plutôt du dépassement du personnel du centre de santé et non d’une situation nutritionnelle de la zone. L’équipe a émis le souhait de voir ces appellations puissent être plus précises avec des termes spécifiques au dépassement la capacite des agents a gérer l’augmentation des cas de MAS. +- Aussi, l’équipe de la mission UNICEF souhaite que la CRF revois cette façon et faire et définir des critères qui puissent permettre de remonter jusqu’au niveau du district sanitaire, de la délégation sanitaire provinciale et pouvoir faire un appel national pour une prise d’action. +- L’assistance a regretté le fait que la CRF n’ait pas préparé de présentation sur les résultats de leur phase pilote. La CRF s’est justifié sur le fait qu’elle avait plutôt prévue que les résultats et les leçons apprises soient faits en discussions de groupe lors de l’atelier. +- L’assistance s’attendait également à une comparaison de la situation lors de la Surge et celle d’avant Surge afin de dégager l’impact éventuel. + +5. Rencontre avec ASRAAD +La rencontre avec ASRADD s’est tenue le vendredi 14/02/2020 +- Mot d’introduction de l’équipe UNICEF sur le fait que Mongo est désormais zone de convergence et que le PCA à venir sera pluri disciplinaire avec le concours de l’ensemble des sections de l’UNICEF. Il a été signalé également à ASRAAD que Mangalme ne fera plus partie de l’accord, l’accent sera mis sur Mongo a la recherchant de résultats d’impact et d’évidences. +- Présentation de ASRAAD sur les réalisations du PCA en cours. +Recommandation a ASRADD pour la bonne marche des collaborations a venir.', '', 'completed', '2020-02-09', '2020-02-15', 'Join Mission on the development of the ToR for simplified protocol data analysis', '', false, false, '2020/288', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11672, 60199, '2020-02-09 18:22:58.026429+00', NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (160, '2019-11-13 11:24:09.696166+00', NULL, NULL, '2019-11-12 17:15:58.366411+00', NULL, NULL, '', '', '', '', '', 'planned', '2019-11-21', '2019-11-28', 'Monitoring of recommendation of IHDL (site visits) & spot check of Mentor Initiative', '', false, false, '2019/216', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 3701, 12059, '2019-11-12 17:15:58.366478+00', NULL, 12); -INSERT INTO [[schema]].t2f_travel VALUES (106, '2019-10-21 09:37:55.62515+00', NULL, NULL, '2019-10-21 09:38:09.173439+00', NULL, '2019-10-21 20:22:15.981176+00', '', '', '', '', '', 'approved', '2019-10-23', '2019-10-24', 'Organisation de la reunion de sous cluster', '', false, false, '2019/137', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11514, 10791, '2019-10-21 09:33:15.067319+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (344, '2020-03-05 19:27:22.867416+00', NULL, '2020-04-07 08:53:24.997552+00', NULL, NULL, NULL, '', 'Mission planifiee , non soumise pour approbation.', '', '', '', 'cancelled', '2020-03-09', '2020-03-16', 'Conge de recuperation', 'Cpnge de recuperation SECTO', false, false, '2020/455', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 14482, 12553, NULL, NULL, 2); INSERT INTO [[schema]].t2f_travel VALUES (116, '2019-10-22 10:28:07.89474+00', NULL, NULL, '2019-10-22 10:29:10.629434+00', NULL, '2019-10-22 10:29:41.178057+00', '', '', '', '', '', 'approved', '2019-10-01', '2019-10-07', 'Supervision CPS du Guera/Baro du 3-5 octobre 2019', '', false, false, '2019/151', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 9327, '2019-10-02 11:59:34.933699+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (122, '2019-10-23 06:56:49.76217+00', NULL, NULL, '2019-10-23 06:56:59.720283+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-27', '2019-10-27', 'Suivi post-declenchement des activites ATPC au Kanem', '', false, false, '2019/159', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 24425, '2019-10-23 06:56:59.720304+00', NULL, 8); INSERT INTO [[schema]].t2f_travel VALUES (159, '2019-11-13 08:17:27.730574+00', NULL, NULL, '2019-11-13 08:17:27.850105+00', NULL, '2019-11-13 08:22:49.484475+00', '', '', '', '', '', 'approved', '2019-11-25', '2019-11-27', 'Field mission with the donor (ECHO) in the Lake province', '', false, false, '2019/215', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 210807, '2019-11-13 08:17:27.850113+00', NULL, 2); INSERT INTO [[schema]].t2f_travel VALUES (123, '2019-10-23 07:00:24.482571+00', NULL, NULL, '2019-10-23 07:03:03.111752+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-27', '2019-10-27', 'Suivi post-declenchement des activites ATPC au Kanem', '', false, false, '2019/160', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 10791, '2019-10-23 06:56:59.720304+00', NULL, 8); -INSERT INTO [[schema]].t2f_travel VALUES (119, '2019-10-22 21:50:28.813351+00', NULL, NULL, '2019-10-22 21:56:12.625294+00', NULL, '2019-10-23 07:44:49.066979+00', '', '', '', '', '', 'approved', '2019-11-04', '2019-11-08', 'Formation des partenaires de Bol en HACT, Gestion Financière et Comptabilité de base à Dandi', '', false, false, '2019/156', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11607, 4606, '2019-10-02 10:09:42.602719+00', NULL, 11); -INSERT INTO [[schema]].t2f_travel VALUES (121, '2019-10-22 22:03:01.75382+00', NULL, NULL, '2019-10-22 22:04:06.685798+00', NULL, '2019-10-23 07:45:04.412763+00', '', '', '', '', '', 'approved', '2019-11-15', '2019-11-23', 'Formation des partenaires d''Abéché en HACT, Gestion Financière et Comptabilité de base à Biltine', '', false, false, '2019/158', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11607, 4606, '2019-10-02 10:17:11.839473+00', NULL, 11); INSERT INTO [[schema]].t2f_travel VALUES (55, '2019-10-07 10:48:45.913193+00', NULL, NULL, '2019-10-07 10:48:45.939661+00', NULL, '2019-10-07 10:52:32.64577+00', '', '', '', '', '', 'approved', '2019-11-03', '2019-11-09', 'travailler avec les agents de l''UNT', '', false, false, '2019/68', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 9329, 25042, '2019-10-07 10:48:45.93967+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (351, '2020-03-06 14:30:21.67581+00', NULL, NULL, '2020-03-06 14:49:16.79629+00', NULL, '2020-03-06 15:30:38.189554+00', '', '', '', '', '', 'approved', '2020-03-11', '2020-03-18', 'Conge SECTO', '', false, false, '2020/462', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 14482, 12378, '2020-03-06 14:49:16.796297+00', NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (99, '2019-10-18 07:19:01.415925+00', NULL, NULL, '2019-10-18 07:19:01.455498+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-28', '2019-11-01', 'Évaluation Urgence Chokoyane', '', false, false, '2019/126', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 25166, '2019-10-18 07:19:01.455507+00', NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (79, '2019-10-09 07:35:27.255643+00', NULL, NULL, '2019-10-09 07:35:56+00', NULL, '2019-10-11 09:02:17.82544+00', '', '', '', 'A. Résultats : • L’état de lieu des intrants envoyés à ASD pour la réponse à l’épidémie est connu. @@ -16379,64 +19442,1680 @@ a.1 : Journée Mondiale du Lavage des Mains. La mission a coïncidé avec la cé B. Contraintes. (i) Accès difficile dans les villages à cause de la saison des pluies prolongée cette année. (ii) Retard dans l’acheminement des intrants pour le partenaire de mise en œuvre. (iii) Le volet WASH dans les UTC pause problème (pas de lit cholérique. Pas des latrines dans les UTC pour gérer de manière sécurisée les sels des malades. Pas de hangars de for. C. Leçons apprises. Il n’y a pas des cas notifiés dans les DS où interviennent les équipes mobiles de ASD (Youé, Fianga et Binder depuis un peu plus de 2 semaines). Bonne coordination de la réponse entre les équipes de la DSP et ASD.', '', 'approved', '2019-10-13', '2019-10-20', 'Appui a la reponse a l''epidemie de cholera dans les 2 provinces du Mayo kebbi', '', false, false, '2019/104', false, '{}', 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11399, 9032, '2019-10-09 07:35:56+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (195, '2019-12-06 10:38:37.011521+00', NULL, NULL, '2019-12-06 10:38:44.739502+00', NULL, '2019-12-06 11:06:55.52689+00', '', '', '', '', '', 'approved', '2019-12-23', '2020-01-06', 'R&R and AL', '', false, false, '2019/259', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 7584, '2019-12-06 10:38:44.73952+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (405, '2020-03-16 08:30:09.761872+00', NULL, NULL, '2020-03-16 08:38:03.966773+00', NULL, NULL, '', 'p', '', '', '', 'submitted', '2020-03-30', '2020-04-01', 'reception definitive des 06 EAE', '', false, false, '2020/546', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 9984, 13372, '2020-03-16 08:38:03.966781+00', NULL, 10); INSERT INTO [[schema]].t2f_travel VALUES (129, '2019-10-25 15:30:19.468212+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2019-10-21', '2019-10-24', 'Assurer une mission de supervision et de VP de la DSP du Mandoul pour les activites PTME', '', false, false, '2019/167', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 9984, 13031, NULL, NULL, 7); INSERT INTO [[schema]].t2f_travel VALUES (127, '2019-10-24 15:02:54.613925+00', NULL, NULL, '2019-10-24 15:03:31.63086+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-27', '2019-10-29', 'Suivi post formation sur la prise en charge de la malnutrition aigue', '', false, false, '2019/165', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 12352, 22317, '2019-10-24 15:03:31.630868+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (158, '2019-11-12 17:15:58.318085+00', NULL, NULL, '2019-11-12 17:15:58.366411+00', NULL, '2019-11-13 13:31:08.626346+00', '', '', '', '', '', 'approved', '2019-11-21', '2019-11-28', 'Monitoring of recommendation of IHDL (site visits) & spot check of Mentor Initiative', '', false, false, '2019/214', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 3701, 14006, '2019-11-12 17:15:58.366478+00', NULL, 12); +INSERT INTO [[schema]].t2f_travel VALUES (440, '2020-03-23 16:04:57.128318+00', NULL, NULL, '2020-03-23 16:27:01.624432+00', NULL, '2020-03-23 16:28:51.634078+00', '', '', '', '', '', 'approved', '2020-03-25', '2020-04-01', 'Conge SECTO', 'wbs 885/005/001 NG', false, false, '2020/613', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 14482, 21331, '2020-03-23 16:27:01.62444+00', NULL, 9); INSERT INTO [[schema]].t2f_travel VALUES (154, '2019-11-12 08:50:17.490068+00', NULL, NULL, '2019-11-12 08:50:17.563414+00', NULL, '2019-11-13 12:12:33.857318+00', '', '', '', '', '', 'approved', '2019-11-18', '2019-11-29', 'Supervision de la collecte des donnees de l''enquete MICS6', '', false, false, '2019/207', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11607, 24025, '2019-11-12 08:50:17.56343+00', NULL, 11); -INSERT INTO [[schema]].t2f_travel VALUES (131, '2019-10-25 15:45:38.60949+00', NULL, NULL, '2019-10-26 13:59:13.037959+00', NULL, '2019-10-28 08:49:44.233986+00', '', '', '', '', '', 'approved', '2019-10-28', '2019-10-31', 'Participer a l''atelier de la revue des PCA de l''Unite Nutrition', '', false, false, '2019/169', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 21654, 13031, '2019-10-26 13:59:13.037968+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (135, '2019-10-29 07:59:59.275064+00', NULL, NULL, '2019-10-29 07:59:59.314083+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-30', '2019-11-02', 'Appui a l''installation des membres du comite provincial de protection de L''Enfant (CPPE)', '', false, false, '2019/172', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 24195, '2019-10-29 07:59:59.314094+00', NULL, 10); -INSERT INTO [[schema]].t2f_travel VALUES (133, '2019-10-28 11:51:00.137344+00', NULL, NULL, '2019-10-28 11:51:24.844344+00', NULL, '2019-10-28 11:53:56.08876+00', '', '', '', '', '', 'approved', '2019-10-31', '2019-11-04', 'Se rendre a Moundou pour contribuer a l''elabotation du PCA ATP et WASH IN School du 31 oct au 4 nov 2019 avec ACF', '', false, false, '2019/170', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 13750, 9032, '2019-10-28 11:51:24.844355+00', NULL, 8); -INSERT INTO [[schema]].t2f_travel VALUES (136, '2019-10-29 08:00:44.588862+00', NULL, NULL, '2019-10-29 08:01:57.836408+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-30', '2019-11-02', 'Appui a l''installation des membres du comite provincial de protection de L''Enfant (CPPE)', '', false, false, '2019/173', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 9330, '2019-10-29 07:59:59.314094+00', NULL, 10); -INSERT INTO [[schema]].t2f_travel VALUES (125, '2019-10-24 11:47:53.099206+00', NULL, NULL, '2019-10-24 11:49:38.577417+00', NULL, '2019-10-24 12:01:44.972885+00', '', '', '', '', '', 'approved', '2019-11-04', '2019-11-17', 'Formation des prestataires de service de sante et sages femmes en CIP et techniques d''accueil', '', false, false, '2019/163', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 5056, '2019-10-24 11:49:38.577431+00', NULL, 2); -INSERT INTO [[schema]].t2f_travel VALUES (91, '2019-10-11 06:32:26.062839+00', NULL, NULL, '2019-10-11 06:33:00.591726+00', NULL, '2019-10-11 06:57:17.778733+00', '', '', '', 'CANEVAS DE RAPPORT AUTRES TYPES DE MISSIONS - -A. Informations générales -1. Date de Soumission du Rapport au superviseur : 25/10/2019 -2. Identification Bureau Section/Unité Date et Signature -2.1 Noms et titre du voyageur : DJEKONBE GREGOIRE - MONGO NUTRITION -2.2 Noms et titre du superviseur : Dr Bambe Lamtouin, OIC Chef de bureau - MONGO VIH -3. Commentaires Superviseur : -4.Type de mission - -0 Formation -0Livraison des intrants -0Plaidoyer -0 Evaluation -1Autres à spécifier : +INSERT INTO [[schema]].t2f_travel VALUES (347, '2020-03-06 10:54:49.538121+00', NULL, NULL, '2020-03-06 10:55:27.408898+00', NULL, '2020-03-09 08:50:15.244459+00', '', '', '', '', '', 'approved', '2020-03-12', '2020-03-18', 'Conduire une mission Co-faciliter a l’atelier de renforcement de capacité des acteurs locaux en PRU', '', false, false, '2020/458', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12130, '2020-03-06 10:55:27.408906+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (16, '2019-10-02 08:27:44.346275+00', NULL, NULL, '2019-10-02 08:27:56.97255+00', NULL, '2019-10-02 09:49:52.161062+00', '', '', '', 'Dans le cadre de la revue de partenariat (de la documentation et des réalisations sur le terrain conformément à l’accord signé), une mission de contrôle interne a été effectuée au sud en aout 201 auprès du partenaire IHDL dans le cadre de la mise en œuvre du projet « Appui d’urgence aux enfants affectés par la crise centrafricaine, accueillis dans les cantons Békan, Kaba-Roangar / Oudoumian et installés dans les camps/villages des départements des Monts de Lam et de la Nya-Pendé dans la Région du Logone Oriental, au Sud du T[[schema]] ». Lors de cette mission, des recommandations ont été adressées au partenaire IHDL relatives à la reprise des travaux de salle de jeu à l’Espace Amis des Enfants (EAE) de Bédangkoussang. En effet, en comparant cette construction a celles des sites de Békan et Dom, les normes de réalisations n’ont pas été respectées (réduction de la superficie de la salle, trou entre les bois et les tôles et sur l’EAE de Békan, des tôles rouillées ont été installés). - Avec TA 1 -Numéro de la TA :1852751 - -Sur le lieu de résidence /duty station(ne nécessitant pas de TA) : 0 -Date de Début : 13/10/2019 Date de fin : 19/10/2019 -Lieux : (si multiples, indiquer les lieux additionnels sur chaque ligne) Partenaire Nom et titre du point focal du Partenaire -Aboudeia District sanitaire d’Aboudeia Dr Adoum Garba, Medecin chef du district Sanitaire d’Aboudeia -Amtiman Delegation Sanitaire du Salamat Dr Idriss El Hadji Ahmed, Delegue Sanitaire Provincial du Salamat - - - +Pendant l’analyse des documentations supplémentaires en avril 2019, le contrôle interne a identifié certaines difficultés rencontrées par le partenaire IHDL pendant la planification et la réalisation des constructions des EAE en 2018 qui ont concouru au non-respect des spécifications évoquées. +- Le premier défi concerne le budget alloué. Selon le partenaire, le fonds demandé pour réaliser le travail était de 750,000 FCFA. Cependant, suite à l’indisponibilité de fonds, le programme a donné 570,800 FCFA (soit 76%) du budget demandé. +- Ensuite, il n’y avait pas une spécification pour les EAE fournie par la Protection au moment de la finalisation du budget ni avant le commencement des constructions. +- Puis, selon les analyses du coût des activités, il n’y avait pas des lignes pour la supervision régulière des différents sites. Ce problème a aussi fait que la supervision de l’entreprise n’a pas été régulière ; +- Enfin il y a eu d’interminables discussions entre le partenaire IHDL et UNICEF. Ceci a eu des répercussions sur la période de mise en œuvre, les travaux ayant commencé en saison de pluies. L’augmentation des prix de certains matériels de construction ainsi que le coût de transport des matériels a eu un impact négatif sur la construction du site de Bédankoussang. -5. Noms/Titre/membres de l’équipe de mission y compris les partenaires +Malgré ces difficultés, IHDL a continué les travaux jusqu’au moment des constats lors de la mission de la préparation de la visite de la Directrice régionale en Juillet 2018 et du contrôle interne en Aout 2018 avec pour conséquence, l’invalidation des travaux. +Pendant le spot check d’avril 2019, IHDL a fourni l’information sur l’état d’avancement de mise en œuvre des recommandations de la revue de partenariat d’Aout 2018 (concernant les EAE de Békan et Bédangkoussang). Et à la date de 4 juin 2019, les photos des réalisations sur les sites de Békan et Bédangkoussang ont été partagés avec l’UNICEF. +L’objet de ladite mission est de s’assurer que les recommandations ont été mise en œuvre et faire une recommandation a la section Protection de l’enfant afin de rétablir la collaboration avec le partenaire IHDL. +Pour adresser les recommandations, IHDL a repris les travaux de toitures de Békan et a construit une autre salle de jeu respectant les normes en remplacement de celle invalidée, laquelle a été réaménagée pour servir de salle d’écoute. Le toit de l’EAE de Békan aussi été reconstruit avec des nouvelles tôles. +La mission a mis à profit l’occasion pour faire +- la vérification de l’état de mise en œuvre des recommandations de latrines réalisées par SECADEV suite à la mission du Chef de bureau de zone et du PO WASH de Moundou du 03 au 04 avril 2019, recommandations relatives au projet « appui à la réponse pour l’acces a l’eau potable et aux services d’hygiène et assainissement de base au bénéfice des réfugiés centrafricains et de la communautés hôtes dans la région du Logone Oriental, mars 2018 » +- la visite des EAE par le partenaire INTERSOS. Des travaux d’aménagement sur les bâtiments construit par AFRICARE en 2007 et des latrines sont en cours de réalisation.', '', 'approved', '2019-10-07', '2019-10-12', 'Follow up of implementation of the recommendations of internal control mission with IHDL & spot check of Mentor Initiati', '', false, false, '2019/16', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 3701, 14006, '2019-10-02 08:27:56.972558+00', NULL, 12); +INSERT INTO [[schema]].t2f_travel VALUES (135, '2019-10-29 07:59:59.275064+00', NULL, NULL, '2019-10-29 07:59:59.314083+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-30', '2019-11-02', 'Appui a l''installation des membres du comite provincial de protection de L''Enfant (CPPE)', '', false, false, '2019/172', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 24195, '2019-10-29 07:59:59.314094+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (133, '2019-10-28 11:51:00.137344+00', NULL, NULL, '2019-10-28 11:51:24.844344+00', NULL, '2019-10-28 11:53:56.08876+00', '', '', '', '', '', 'approved', '2019-10-31', '2019-11-04', 'Se rendre a Moundou pour contribuer a l''elabotation du PCA ATP et WASH IN School du 31 oct au 4 nov 2019 avec ACF', '', false, false, '2019/170', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 13750, 9032, '2019-10-28 11:51:24.844355+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (136, '2019-10-29 08:00:44.588862+00', NULL, NULL, '2019-10-29 08:01:57.836408+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-30', '2019-11-02', 'Appui a l''installation des membres du comite provincial de protection de L''Enfant (CPPE)', '', false, false, '2019/173', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 9330, '2019-10-29 07:59:59.314094+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (190, '2019-12-06 09:25:58.446918+00', NULL, NULL, '2019-12-06 09:26:11.938916+00', NULL, '2019-12-06 09:28:49.087659+00', '', '', '', '', '', 'approved', '2019-12-08', '2019-12-19', 'Riposte contre la rougeole couplée à la Vitamine A à Benoye', '', false, false, '2019/254', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 14362, '2019-12-06 09:26:11.938987+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (39, '2019-10-02 16:59:55.052126+00', '2019-11-05 07:54:48.761473+00', NULL, '2019-10-03 08:33:12.696803+00', '2019-10-02 17:11:00.463636+00', '2019-10-03 09:13:59.471182+00', 'Séparer la mission de Meeting au visites programmatiques', '', '', 'Il s''est tenu du 6 au 10 octobre 2019 un atelier de planification de l''evaluation du programme national d''Eradication du Ver de Guinee. l''atelier a regroupe l''ensemble des acteurs impliques dans la mise en oeuvre de ce programme. A la fin de cet atelier les principaux résultats suivants ont été atteints : +- Une compréhension commune des différentes phases par les différents acteurs a été obtenue ; +- Un calendrier et un budget du processus ont été proposés et validés ; +- Les outils du processus ont été passés en revu et validés ; +- Les TDR de processus de la revue internes et externes ont été validés.', '', 'completed', '2019-10-06', '2019-10-14', 'Participer a l''atelier d''evaluation du PNE du Ver de Guinee et assurer la VP des DSP de Tandjile et du LOR', 'Le travail de groupe restreint sur les differents documents elabores vont se poursuivre.', false, false, '2019/43', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13031, '2019-10-02 17:00:13.765679+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (138, '2019-10-30 11:25:02.885594+00', NULL, NULL, '2019-10-30 11:26:12.946195+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-01', '2019-11-13', 'Conge R&R', '', true, false, '2019/177', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 21076, '2019-10-30 10:01:08.772192+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (139, '2019-10-30 11:41:57.058415+00', NULL, NULL, '2019-10-30 11:43:57.905219+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-01', '2019-11-13', 'Conge R&R', '', true, false, '2019/182', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 8718, '2019-10-30 10:01:08.772192+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (216, '2020-01-28 08:54:25.549442+00', NULL, NULL, '2020-01-28 08:54:54.379395+00', NULL, '2020-01-28 17:52:24.104788+00', '', '', '', '', '', 'approved', '2020-01-30', '2020-01-30', 'appui technique a l''atelier ToC Immunisation / GAVI', '', false, false, '2020/281', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11647, 11607, '2020-01-28 08:54:54.379401+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (134, '2019-10-29 07:22:51.670062+00', NULL, NULL, '2019-10-29 07:24:47.115422+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-07', '2019-10-11', 'Visite programmatique du PCA avec Secours Islamiques France', '', false, false, '2019/171', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 13512, 5064, '2019-10-29 07:24:47.115433+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (166, '2019-11-15 17:34:07.336438+00', NULL, NULL, '2019-11-15 17:35:13.907803+00', NULL, NULL, '', '', '', 'Constats: +1. Les formations sanitaires visitées ne semblent pas suffisamment préparées pour faire face de façon efficace à une situation plus grave, cela en dépit des appuis fortement appréciés reçus de l’UNICEF et du Ministère, en raison de : +- L’accès difficile à l’eau en quantité et en qualité et l’absence de latrines constituent un handicap majeur qui va impacter la qualité de la réponse surtout en présence de cas plus élevés. Le nombre de malades par UTC ayant jusqu’ici été maitrisable, il est important que les DS et les centres de santé soient préparés au pire des scenarii. +- La répartition, la fluidité des approvisionnements des intrants, leurs dispositions, stockage et gestion du niveau provincial au niveau des centres de santé en passant par le DS restent à améliorer. On a constaté des ruptures (SRO) ou des pré ruptures de certains intrants et items (Seau, dispositif de stockage d’eau, produits d’hygiène et d’assainissement) au niveau du centre de santé de Léourouba tandis que ces mêmes intrants sont abondants au niveau du District et au niveau de la Province. +- Quelques divergences dans le protocole de prise en charge des malades notamment l’importance du SRO a coté de la perfusion; +- Les conditions d’hygiène notamment la destruction des déchets médicaux restent un défi. En l’absence d’incinérateurs, les responsables des structures sanitaires visités brulent ces déchets dans des trous peu profonds et en général partiellement ensevelis et consumés; +- L’enclavement et la faible coordination avec leurs homologues de l’autre côté de la frontière (Cameroun) constitue un facteur important en termes de vulnérabilité. + +2. L’engagement des partenaires notamment le Délégué Sanitaire, l’ASD et le personnel sanitaire en dépit des contraintes mentionnées ci-dessus est heureusement à son plus haut niveau ; +3. Les relais communautaires rencontrés sont dynamiques et ont une maitrise de leur rôle en tant qu’interface entre la Communauté et les formations sanitaires qu’ils appuient ; +4. Un besoin de formation et d’harmonisation des approches et méthodes à l’endroit du personnel de santé et des relais. Nous avons coïncidé avec une mission du Ministère de la Santé venue pour renforcer les capacités des agents de santé pour mieux faire face à la situation ; +5. La périodicité des SitRep et la nécessité de leur régularité restait à clarifier avec l’ASD qui se contentait d’un rapport mensuel et des communications par email et au téléphone e façon réactive pour rendre compte de la situation sur le terrain. + + La présence de Wiveka et de Ronel sur le terrain a été d’un grand apport pour évaluer la qualité de la réponse et apporter les orientations et conseils pour l’améliorer. + +On peut se rejouir du fait que: +- Les autorités, les partenaires techniques, les communautés sont mobilisées et engagées dans la réponse en cours ; +- Les forces et les faiblesses de la réponse sont identifiées et les mesures correctives préconisées ; +- Des orientations et conseils formulés pour une meilleure gestion et utilisation des intrants ; +- La coordination inter acteurs se met en place de façon plus active.', '', 'submitted', '2019-11-17', '2019-11-21', 'Mission Supervision Reponse Cholera dans les MKO et MKE', '', false, false, '2019/222', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 11347, 9984, '2019-11-15 17:35:13.907814+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (489, '2020-04-21 10:42:49.375104+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-04-25', '2020-05-01', 'L''objectif de cette mission vise à renforcer les activités communautaires sur le COVID-19 et le PEV de routine.', '', false, false, '2020/678', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 14047, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (128, '2019-10-25 11:17:55.999304+00', NULL, NULL, '2019-10-25 11:17:56.024647+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-01', '2019-11-02', 'Evaluation urgence chokoyane', '', false, false, '2019/166', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 9329, 25166, '2019-10-25 11:17:56.024657+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (48, '2019-10-04 10:25:31.173573+00', '2019-11-08 07:37:55.399369+00', NULL, '2019-10-04 10:25:31.197788+00', NULL, '2019-10-04 11:48:35.576179+00', '', '', '', 'La visite visait à discuter avec les partenaires chargés de la mise en œuvre des projets au nom de la section de l''éducation et de la section de la protection de l''enfance. C’était l’occasion de vérifier les données communiquées mensuellement par le partenaire. +Temps fort du déroulement de la mission : (Faire une description succincte et analytique du travail fait durant la mission soit par activité réalisée soit par jour d’activité) +- La première visite a eu lieu dans l''espace ami d’enfants (EAE) qui accueille les enfants de Doholo village. L’espace compte au total 500 enfants, dont 223 filles inscrites, mais le jour de la visite, seuls 162 enfants, dont 75 filles, étaient présents. +- Deux animateurs d''Intersos et trois volontaires de la communauté, dont l''un joue le rôle de point focal dans la communauté, sont présents sur le site. +- Les enfants fréquentant l’EAE sont répartis en 4 groupes d’âge ; 0-5, 6-10, 11-13 et 14-17 (ce dernier groupe se rend à la salle l''après-midi). +- La visite de l’EAE de Kobiteye : l’EAE compte 502 enfants dont 222 filles mais le jour de la visite, il a été dénombré 219 enfants dont 112 filles. +Activités du projet : +- Le projet vise à réhabiliter la structure qui sert d''abri au groupe des 0 à 5 ans, la cuisine, construire un bloc de latrines séparées pour les enfants et les animateurs et une clôture. +- Le projet a identifié un service traiteur qui fournit des repas aux enfants 3 fois par semaine. +- Le projet vise à délivrer 400 actes de naissance, dont 85 ont déjà été délivrés. +- Le partenaire soutient actuellement 52 familles d''accueil par le biais de formations sur la protection de l''enfance et le développement d''activités génératrices de revenus. Les familles d’accueil doivent former 5 groupes qui développeront des propositions pour l’AGR et bénéficieront d’un financement de 500 000 FCFA. +- Les activités de recherche de la famille et la réunification commencera une fois que le HCR aura achevé la collecte de données biologiques d''avoir des informations plus précises sur les enfants séparés et non accompagnés +- Intersos intervient sur 6 sites au total ; 2 communautés hôtes (Kobiteye et Danamadja), 2 camps de réfugiés (Gondjé et Amboko) et 2 villages (Doholo et Bédankoussang). +Ecole primaire de Kobiteye +- Des échanges ont été faits avec le directeur de l’école et le Président de l’Association des parents d’élèves. Les inscriptions ne se font pas normalement mais les enfants du Site de Kobiteye sont déjà à l’école ; Selon le Directeur, certains parents de Sandana et Danmongo ont préféré envoyer leurs enfants à l’école de Kobiteye pour des raisons de bonne qualité de l’enseignement ; +- L’école n’est pas prête à accueillir les élèves : certains travaux notamment le défrichage des alentours ne sont pas encore faits. +Principaux produits obtenus (Faire une présentation des réalisations majeures comme conséquences directes et immédiates de votre travail fait pendant la mission et en lien avec les résultats attendus préalables définis y compris les conséquences effectives mais non prévues) +Un rappel à la propreté de l’école et au suivi des mobiliers et interpellation a été fait à l’endroit de l’APE pour les travaux de défrichage de l’école pour la sécurité des enfants. +Contraintes/problèmes majeurs (Faire le résumé des difficultés majeures rencontrées ayant entravé l’atteinte des objectifs de la mission) +- Bien que l''école ait officiellement commencé, la majorité des enfants ne viennent pas encore à l''école car ils aident leurs parents aux travaux champêtres notamment les enfants de la communauté hôte. +- Certains enseignants ne sont pas encore affectés ce qui fait que les élèves de différents niveaux ne sont pas dans leurs classes respectives. +Actions prises (Au regard des difficultés majeures signalées ci-dessus, dire quelles sont les actions concrètes et immédiates prises pour remédier à une partie ou la totalité de ces difficultés) +- Le Président de l’Associations des parents d’élèves a promis de trouver un individu pour faire les travaux nécessaires dès que possible. +Principales leçons apprises (Formuler les principaux enseignements positifs ou négatifs tirés de la mission +- Il n''y a pas de modèle de durabilité pour les EAE. Lorsqu''un projet cesse d''être financé, aucun système n''est mis en place pour permettre aux communautés de prendre en charge et de poursuivre leurs activités. +- Les parents ne priorisent toujours pas l’éducation de leurs enfants. +3. Recommandations Responsable Echéance +Identifier un mécanisme de durabilité pour la consolidation des acquis a la fin du projet. Section Protection de l’Enfant Continue +Poursuivre la sensibilisation pour encourager les parents à donner la priorité à l’école pour leurs enfants pendant l’année scolaire (aux côtés des travaux champêtres.) Section Education Continue +Planifier la distribution des fournitures scolaires prédisposés à AIRD à Goré PO Education - IPEP Octobre 2019 +Faire le suivi des activités du projet PE (réhabilitation des hangars, …) PO Protection de l’enfant Octobre 2019 +NB : Joindre les termes de références ou autres documents qui justifient la mission', '', 'completed', '2019-10-08', '2019-10-08', 'Visite d''une EAE a Doholo et d''une ecole a Danamadja/Gore avec Staff (Urgences Ndjamena)', '', false, false, '2019/62', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12059, '2019-10-04 10:25:31.197797+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (276, '2020-02-24 12:23:31.166096+00', NULL, NULL, '2020-02-24 12:23:31.193917+00', NULL, '2020-02-24 14:23:03.587887+00', '', '', '', '', '', 'approved', '2020-02-25', '2020-02-25', 'Participation à la revue de l''AMP à Ndjamena.', '', false, false, '2020/349', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11347, 11514, '2020-02-24 12:23:31.193938+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (98, '2019-10-15 09:08:29.997445+00', NULL, NULL, '2019-10-15 09:08:30.092491+00', NULL, '2019-11-07 14:19:14.231729+00', '', '', '', '', '', 'approved', '2019-10-22', '2019-10-26', 'Verification programmatique (Suivi de distribution des fournitures scolaires) et organisation de la reunion de Sous clus', '', false, false, '2019/125', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12059, '2019-10-15 09:08:30.092506+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (484, '2020-04-14 15:50:50.40882+00', NULL, NULL, '2020-04-14 15:50:50.470739+00', NULL, '2020-04-15 10:51:12.2979+00', '', '', '', '', '', 'approved', '2020-04-16', '2020-04-17', 'Mission conjointe de collecte des données sur l''enregistrement des naissances a krim-krim et Benoye', '', false, false, '2020/670', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 11859, 13372, '2020-04-14 15:50:50.470746+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (161, '2019-11-13 11:28:09.368303+00', NULL, NULL, '2019-11-13 11:28:09.403768+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-23', '2019-12-02', 'Formation des agents sur la PCIMAS', '', false, false, '2019/217', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 9329, 25166, '2019-11-13 11:28:09.403777+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (126, '2019-10-24 12:06:06.482235+00', '2019-11-08 13:13:07.398048+00', NULL, '2019-10-24 12:42:46.387791+00', NULL, '2019-10-24 15:50:55.485213+00', '', '', '', '4. Progrès vers l’atteinte des résultats - Dr Djekonbe Gregoire, nutrition officer -Abdel kader Gosdoum, Driver -Dr Adoum Garba, MCD d’Aboudeia -Dr Hamat Hassan Boulmaye, Consultant nutrition -Nathaniel Mbainarem, PO protection -Yamtemadji Kameldy, Driver +Cette mission d’Appui C4D et de suivi des recommandations issues de la Vérification Programmatique au niveau des DS des Provinces du Ouaddaï et du Wadi Fira en juin 2019 dans le cadre de la mise en œuvre des activités PTME/é-TME a permis d’avoir les résultats suivants : + Quelques axes d’appui aux interventions communautaires sont définis à la suite de la rencontre d’échanges avec l’équipe cadre du DS d’Abougoudam et les relais communautaires ; + Des propositions favorisant l’engagement des organisations de femmes pour la promotion de la santé maternelle et infantile, de la PTME (Prévention de la transmission du VIH de la Mère à l’enfant) sont faites en soutien aux interventions communautaires dans le DS d’Abougoudam ; + Des stratégies sont proposées avec la contribution des jeunes et adolescents ainsi que des responsables de la Maison de Culture Ahmat Pacos d’Abéché en appui aux interventions de communication et l’élaboration de la carte de vulnérabilité en milieu jeune ; + Une histoire d’intérêt humain et un social média package sont produits valorisant les interventions communautaires et PTME à Abeche et Abougoudam ; + Des contraintes/difficultés et les forces dans la mise en œuvre des interventions communautaires et C4D sont identifiés. -6. Personnes rencontrées [si la liste est longue, la mettre en annexe] - -VOIR LA LISTE EN ANNEXE -B. Description de la mission -1. Nom(s) partenaires d’Exécution faisant l’objet de la visite : Délégation sanitaire provinciale du Salamat +Lundi 14 octobre 2019 – Abeche, Maison de la Culture Ahmat Pecos +Rencontre avec les pairs éducateurs de la Maison de Culture Ahmat Pecos d’Abeche. Sur 30 pairs éducateurs, 12 ont pris part à cette rencontre parmi lesquels 5 jeunes filles. Echanges sur le travail des pairs éducateurs, les difficultés rencontrées et les recommandations pour améliorer. +1. Difficultés +- Difficultés des pairs éducateurs à maîtriser leurs cibles. Tenue des séances dans les carrefours, les écoles, les lycées, au marché. Pas de programme spécifique de mise en oeuvre. +- Mauvaise appréhension du travail des paires éducateurs par la population ; +- Rupture et Cherté de préservatifs paquet de 4 à 250 fcfa ; (Voir le BZ d’Abeche) +- Besoins de dépliants pour distribuer aux jeunes après les séances de causeries éducatives ; +2. Recommandations +- Fournir des badges pour la reconnaissance du travail des pairs éducateurs ; +- Fournir la fiche de rapportage pour améliorer le suivi des interventions de causeries éducatives ; +- Renforcer les interventions auprès des PS mineurs pour améliorer leurs niveaux de connaissance (identifier des pairs éducateurs dans cette communauté pour faire ce travail de communication) +- Améliorer les séances de causeries en élaborant des plannings des pairs éducateurs (Séances mensuelles avec 12 – 15 personnes avec 5 séances sur les 5 thèmes principaux qui donnent des connaissances nécessaires pour le plan de prévention) +- Fournir la Loi 019 ; +- Renforcer le suivi des PVV et leur traitement (Ex de Meram, une dame séropositive : l’inviter à faire dépister son enfant de 3 ans et la suivre pour renforcer ses capacités pour négocier des rapports sexuels protégés). +Mardi 15 octobre 2019 – Abougoudam +Rencontre avec le Point Focal PTME du DS d’Abougoudam. Briefing sur l’agenda de la mission. Adaptation de l’agenda avec le programme du Centre de Santé et des acteurs à rencontrer. Dans le cadre de la pTME et de la PECP, 4 femmes séropositives sont suivies régulièrement au DS d’Abougoudam. 2 d’entre elles ont eu des enfants et ces deniers ont été dépistés à l’appareil Gen’Xpert. + +Mercredi 16 octobre 2019 – Abougoudam +Interview avec une femmes séropositive sur le suivi de son traitement et la pratique de la PTME. Elle est suivie par le Centre de Santé depuis 8 ans et a eu deux enfants séronégatifs. Dans un contexte où les questions de santé sexuelles sont taboues et de discrimination à l’égard des personnes séropositives, elle fait office de figure de proue pour son courage et sa détermination. + +Echange avec la Sagefemme sur les questions de consultations prénatales. Le Centre de Santé reçoit en moyenne 100 femmes par mois pour la CPN et entre 30-40 femmes pour les accouchements. Plus d’une vingtaine de femmes viennent pour la planification familiale par mois. + +Rencontre avec les relais communautaires. Le DS d’Abougoudam dispose de 8 relais communautaires dont 3 femmes qui couvrent 29 villages. En collaboration avec le Centre de Santé, les chefs de villages et le COGES (Comité de gestion), ces relais communautaires organisent des séances de dialogues communautaires. Ils rencontrent des difficultés à couvrir les 29 villages dont certains un peu éloignés d’Abougoudam. + +Rencontre avec les l’Union des groupements des femmes d’Abougoudam. Plus d’une trentaine de femmes ont répondu à cette rencontre d’échanges sur leurs activités quotidiennes en appui à la PTME, la CPN, la vaccination, la lutte contre le mariage des enfants, la malnutrition. Elles profitent des rencontres ordinaires de femmes ou des cérémonies de baptêmes pour partager les connaissances et aider les femmes à changer de comportement. Toutefois, la plupart n’ont pas reçus de formation sur ces thématiques. + +Jeudi 17 octobre 2019 – Abeche, Maison de la culture Ahmat Pecos +Production de contenus : interviews avec deux jeunes dames séropositives, dont l’une habitante une maison close et l’autre servante dans un maquis sur le suivi de leur traitement et leur vie sexuelle. Interview aussi avec un adolescent de 17 ans, homosexuel, exploité dans une maison close. Ces interviews révèlent un faible niveau de connaissance de ces jeunes et adolescents présents dans le circuit des professionnels de sexe et leur faible capacité à négocier des relations sexuelles protégés.', '', 'completed', '2019-10-28', '2019-11-03', 'Mission d''Appui C4D et de planification', 'RAS', false, false, '2019/164', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 5069, 20819, '2019-10-24 12:42:46.387801+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (153, '2019-11-08 14:55:42.084352+00', NULL, NULL, '2019-11-08 14:55:42.214282+00', NULL, '2019-11-08 15:22:13.22064+00', '', '', '', '', '', 'approved', '2019-11-19', '2019-11-23', 'Mission de suivi dans le cadre du Projet PRSSMI/PEV dans 4 districts sanitaires de la Province du Mandoul', 'Grant : SC180628; WBS : 0810/A0/05/881/002/005', false, false, '2019/206', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 11859, '2019-11-08 14:55:42.214292+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (151, '2019-11-08 09:56:51.396+00', NULL, NULL, '2019-11-08 09:56:51.465882+00', NULL, '2019-11-15 17:39:14.576251+00', '', '', '', '', '', 'approved', '2019-11-21', '2019-11-27', 'Spotcheck et Suivi des recommandantions des partenaires The Mentor Initiative et IHDL', '', false, false, '2019/204', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12059, '2019-11-08 09:56:51.465892+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (292, '2020-02-26 08:29:02.954415+00', NULL, NULL, '2020-02-26 08:29:02.99259+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-03-04', '2020-03-08', 'Paidoyer auprès des leaders et autorités administratives', '', false, false, '2020/371', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 25005, '2020-02-26 08:29:02.992597+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (172, '2019-11-22 13:25:31.404913+00', NULL, NULL, '2019-11-22 13:25:57.58948+00', NULL, '2019-11-22 13:29:13.680097+00', '', '', '', '', '', 'approved', '2019-11-19', '2019-11-21', 'Formation ANJE pour le personnel de sante des Districts de Pala et Torrock', '', false, false, '2019/228', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12528, '2019-11-22 13:25:57.589504+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (149, '2019-11-07 13:53:05.115603+00', NULL, NULL, '2019-11-07 13:54:11.282611+00', NULL, '2019-11-07 14:13:05.946789+00', '', '', '', '', '', 'approved', '2019-10-28', '2019-11-01', 'Mission de suivi des activites PRSSMI/PEV dans la Province du Logone Oriental', '', false, false, '2019/202', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 11859, '2019-11-07 13:54:11.282663+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (290, '2020-02-25 15:15:54.086158+00', NULL, NULL, '2020-02-25 15:42:30.978634+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-02-01', '2020-02-07', 'Collecte et verification des donnees sur le protocol simplifie DS Mangalme', '', false, false, '2020/369', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 390, 10707, 173864, '2020-02-25 15:42:30.978642+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (224, '2020-02-10 07:51:35.959669+00', NULL, NULL, '2020-02-10 07:53:18.968318+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-02-11', '2020-02-11', 'Mission conjointe (OCHA, PAM, FAO, OMS, HCR, UNICEF) de suivi des activités d''urgence à Chokoyane', '', false, false, '2020/289', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 25166, '2020-02-10 07:53:18.968325+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (125, '2019-10-24 11:47:53.099206+00', '2019-12-30 15:50:44.636619+00', NULL, '2019-10-24 11:49:38.577417+00', NULL, '2019-10-24 12:01:44.972885+00', '', '', '', 'Synthèse des rapports de formation en CIP, Techniques d’accueil, PFE + +Dans le cadre du projet KFW 2, afin de renforcer les capacités techniques des prestataires des services de santé, des sages-femmes et des leaders des organisations des femmes, une série de formation en technique de communication et d’accueil s’est tenu dans les provinces suivantes du 5 au 16 novembre 2019. Au total 160 participants dont 2/3 des femmes ont amélioré leur connaissance dans le domaine de la communication et d’accueil. +Dans la délégation sanitaire de Moussoro province du Bahr El Gazel, 80 participants issus des districts sanitaires de Salal, Michemiré, Chadra et Moussoro ont été formés en 2 sessions de 3 jours soit 40 participants par session. +Dans la délégation sanitaire de Massakory province de Hadjer Lamis, 80 participants issus des districts sanitaires de Gama, Bokoro, Massaguet, Massakory, Mani et Karal ont egalement renforcé leur capacite en 2 sessions 3 jours de formation soit 40 participants par session. + A noter que les 4 sessions de formation,ont regroupé les RCS, les infirmiers, les sages-femmes, les matrones, les leaders des organisations des femmes. +Les ateliers ont été ouverts et clôturer par le Délégué Provincial Sanitaire du Barh El Gazel et le représentant du Délégué sanitaire de Hadjer Lamis (en mission). Tous ont salué l’initiative du renforcement des capacités des prestataires des services de santé et des sages-femmes en techniques de communication interpersonnelle et en techniques d’accueil face au faible taux de fréquentation des services de sante et d’accouchement dans les structures sanitaires. +La formation il faut le noter vise à améliorer et à renforcer les connaissances des prestataires des services de santé communautaires sur les techniques de communication interpersonnelle, en mettant l’accent sur les techniques d’accueil, vis-à-vis des utilisateurs de services, ainsi que les communautés avoisinantes afin de renforcer la confiance et l’accès des populations aux services de santé. +De manière spécifique, à la fin de la formation les participants auront : +• Acquis une meilleure connaissance des principes et des techniques de communication interpersonnelle +• Acquis les aptitudes et le savoir-faire nécessaire en ce qui concernent les techniques d’accueil. +Renforcé leur connaissance des messages clés et de la communication sur les Pratiques Familiales Essentielles +Ces deux provinces il faut le souligner ont un taux très faible de fréquentation du non seulement aux pesanteurs sociaux-culturels mais aussi au service de l’accueil qui n’est pas favorable. +La première présentation a porté sur une brève introduction de la communication interpersonnelle. Par Définition, la communication interpersonnelle qui est un processus de dialogue par lequel un émetteur transmet un message pour persuader son récepteur en vue d’un changement de comportement qui lui est bénéfique, a été illustré en plénière. Cette simulation nous a permis de ressortir concrètement les défauts que nous commettons pendant la sensibilisation à savoir la distorsion du message et la mauvaise écoute. A retenir que La communication interpersonnelle est une discipline psycho moteur qui doit obéir scrupuleusement aux normes afin d’atteindre son apogée. C’est ainsi qu’il a été recommandé largement aux relais communautaires de prendre leurs dispositions pour contrôler la diffusion des messages qui s’adressent aux groupes cibles. +Suite à cette présentation, le thème portant sur la Communication pour le Développement(C4D) a fait l’objet d’une présentation en plénière également. Par Définition la C4D qui est un processus de communication stratégique, systématique, planifié et basé sur les faits, les droits humains et l’équité ; En vue de promouvoir des changements positifs, durables et mesurables de comportements individuels et de normes sociales; est un nouveau concept de communication sociale qui s’inscrit dans la logique de la « Recherche Action » pour s’imprégner d’abord de prédispositions comportementales afin de mieux appréhender et adapter les techniques de communication devant permettre d’aboutir à un véritable changement de comportement à l’échelon communautaire. +Ainsi ; pendant la plénière ; les participants se sont appesantis sur la promotion des approches normatives à savoir (les normes sociales, les normes Religieuses et les normes légales) qui constituent de véritables équations des facteurs de Renforcements qui interagissent pour mettre en valeurs absolues les comportements négatifs. Il en est de même pour les quatre stratégies de la C4D : +• Le Plaidoyer : Pour obtenir l’engagement et le soutien actif (politiques, législation, leaders locaux etc.) +• La Mobilisation Sociale : Pour obtenir l’adhésion et accroître la participation des institutions, des réseaux communautaires, des groupes sociaux et religieux. +• La Communication pour le changement de comportement (CCC): informe, stimule et influe sur les ménages en vue de l’adoption des comportements spécifiques au niveau de l’individu. +• La communication pour le changement social (CCS): engage et rend les communautés/réseaux sociaux capables d’influencer ou de renforcer les normes sociales et les comportements au niveau d’une communauté +Poursuivant la formation Conformément à l’agenda ; le thème portant sur les techniques d’accueil a été présenté également en plénière. + +Par Définition ; l’accueil qui n’est autre que le premier contact entre le Prestataire et le client qui reste le plus longtemps mémorisé ; consiste à recevoir allègrement, informer ou renseigner, faire patienter, filtrer les visiteurs ou les orienter en vue de leur assurer une prise en charge thérapeutique idoine ; répondant à la plus grande satisfaction des victimes. Relativement à sa dimension morale ; il mérite une attention particulière pour susciter un réel engouement. C’est ainsi que pendant la plénière ; Il a été assorti les mauvais comportements des prestataires des services de santé à l’égard des patients qui éprouvent d’énormes difficultés pour accéder aux soins qui leur sont nécessaires. Il est important de noter que les nouvelles dispositions déontologiques en matière de prise en charge thérapeutique exigent que les patients soient considérés au même titre que les clients afin qu’ils puissent bénéficier des traitements idoines et répondant à leurs aspirations. Bref ; les règles de conduite d’un bon accueil reposent généralement sur les disciplines de l’équité et de la Déontologie médicale. +Avant d’entamer la dernière présentation qui porte sur la promotion des Pratiques Familiales Essentielles, une brève introduction situant le contexte de l’avènement de la Santé du Couple Mère Enfant a fait l’objet d’une illustration pragmatique à travers l’analyse de la Fenêtre de Johari. Il en est de même pour la Fenêtre de 1000 jours qui a édifié largement les participants sur la problématique nutritionnelle de l’enfant pendant la période de deux ans. + La principale recommandation issue des différentes formations c’est d’intensifier le renforcement de capacite en technique d’accueil qui constitue un véritable problème dans les 2 provinces. +Les organisations des femmes ont quant a elles demandé de mettre à leur disposition les outils de sensibilisation notamment les boites a images et les former à leur utilisation.', '', 'completed', '2019-11-04', '2019-11-17', 'Formation des prestataires de service de sante et sages femmes en CIP et techniques d''accueil', '', false, false, '2019/163', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 5056, '2019-10-24 11:49:38.577431+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (308, '2020-03-02 08:31:51.99793+00', NULL, NULL, '2020-03-02 11:19:19.757947+00', '2020-03-06 07:25:19.696749+00', NULL, 'A revoir les TDRs pour une nouvelle planification du voyage', '', '', '', '', 'rejected', '2020-03-09', '2020-04-04', 'Appui aux bureaux de zones', 'WBS: 0810/A0/05/880/006/003 NG', false, false, '2020/387', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 5062, 25308, '2020-03-02 11:19:19.757954+00', NULL, 6); +INSERT INTO [[schema]].t2f_travel VALUES (284, '2020-02-24 17:05:52.507358+00', NULL, NULL, '2020-02-24 17:05:52.524376+00', NULL, '2020-02-24 18:09:02.384169+00', '', '', '', '', '', 'approved', '2020-02-29', '2020-03-06', 'R&R mission', 'WBS 0810/A0/05/887/005/001', false, false, '2020/357', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11399, 11607, '2020-02-24 17:05:52.524383+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (117, '2019-10-22 16:36:26.629432+00', '2019-11-08 08:58:07.953231+00', NULL, '2019-10-22 16:36:26.699799+00', NULL, '2019-11-07 14:20:01.339488+00', '', '', '', 'La formation consiste à maîtriser les procédures à suivre pas à pas pour enregistrer les projets en ligne. +1. Les étapes clés à maîtriser +1.1 : Login et inscription (Propriétaires des projets) +1.2 Créer et soumettre un projet +1.3 Trouver un projet +1.4 Modifier un projet (non encore soumis) : Coordinateurs de cluster +1.5 Approuver ou rejeter un projet +1.6 Générer des rapports +Après cette étape, l’attention des coordinateurs de clusters a été attiré pour l’étape suivante dans les onglets Cluster et approval status : +2. Le remplissage du module projet +2.1 Informations de base +2.2 Plan de réponse (projets à ventiler sur plusieurs critères à totaliser à 100% ; Thématique transversale (la question du Cas ; du marqueur genre, …) +2.3 Emplacements (bien spécifier les régions, les départements, les sous-préfectures, …) +2.4 Cluster/sector (s’aligner toujours derrière la stratégie), veuillez au remplissage du caseloads, de la désagrégation et des activites (à définir par priorite a implémenter sur le terrain) +2.5 Budgets +2.6 Revue +A ce niveau, il y a 3 choix à faire : +• Soumettre le projet +• Ajouter à la revue ou +• Retirer le projet pour éditer/rejeter le projet ou approuver le projet en tant que cluster lead +Remarques +Soumettre si possible autant de commentaires pour soutenir le projet.', '', 'completed', '2019-10-28', '2019-10-31', 'Prendre part a la formation sur la soumission des projets a OPS 2020 par OCHA', '', false, false, '2019/154', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12059, '2019-10-22 16:36:26.699809+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (141, '2019-11-04 07:26:23.21675+00', NULL, '2019-11-04 10:33:40.782758+00', '2019-10-10 13:50:41.816763+00', NULL, '2019-10-10 14:32:07.032578+00', '', 'Duplicate error', '', '', '', 'cancelled', '2019-10-17', '2019-10-30', 'Identification des participants à la formation sur les urgences et du lancement du Système d’Alerte Precoce (SAP)', '', false, false, '2019/188', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11347, 14362, '2019-10-10 13:50:41.816774+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (148, '2019-11-07 12:52:08.633296+00', NULL, NULL, '2019-11-07 12:52:19.420767+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-14', '2019-11-21', 'Participer a la Revue Monitorage eTME', '', false, false, '2019/201', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 11436, 24207, '2019-11-07 12:50:27.030787+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (115, '2019-10-22 10:13:35.681071+00', NULL, NULL, '2019-10-22 10:14:19.473169+00', NULL, '2019-11-07 14:18:27.555466+00', '', '', '', '', '', 'approved', '2019-10-24', '2019-11-15', 'Supervision activités MobSoc Riposte cVDPV2 de Mandelia', '', false, false, '2019/150', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 14045, '2019-10-22 10:14:19.473179+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (73, '2019-10-08 14:01:57.971029+00', '2020-03-16 08:44:25.156722+00', NULL, '2019-10-08 14:08:48.975668+00', NULL, '2019-10-08 15:13:03.131761+00', '', '', '', 'Rapport de formation etools.', '', 'completed', '2019-10-14', '2019-10-16', 'participation a la formation E-tool', '', false, false, '2019/96', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 14616, '2019-10-08 14:08:48.975688+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (75, '2019-10-08 15:55:05.491652+00', '2019-11-07 14:25:09.159245+00', NULL, '2019-10-08 15:55:20.42226+00', NULL, '2019-10-08 16:27:33.976923+00', '', '', '', 'Organiser dans un bref delai une restitution sur l''atelier aux collegues de bureau de Moundou.', '', 'completed', '2019-10-14', '2019-10-17', 'Participer à 2eme Formation E-Tools: Module d''Assurance Financière', '', false, false, '2019/98', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 11068, '2019-10-08 15:55:20.42227+00', NULL, 12); +INSERT INTO [[schema]].t2f_travel VALUES (171, '2019-11-22 08:07:07.892147+00', '2019-12-17 15:10:37.606615+00', NULL, '2019-11-22 08:07:34.695883+00', NULL, '2019-11-22 08:19:39.375112+00', '', '', '', 'La formation des formateurs en matière de préparation et de réponse aux urgences a été organisée du 20 au 23 novembre 2019 à N''djamena et sera suivie d’une formation élargie dans les provinces cibles ( Logone Oriental et le Lac ) avec pour participants le personnel gouvernemental déconcentré ainsi que des autres partenaires (ONG, société civile). +Cette formation a pour objectif de développer un pool de formateurs nationaux en matière de Préparation et de Réponse aux Urgences mobilisable rapidement pour faciliter les formations en PRU au niveau du pays.', '', 'completed', '2019-11-24', '2019-12-02', 'Participation a la revue annuelle', '', false, false, '2019/227', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13372, '2019-11-22 08:07:34.695893+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (28, '2019-10-02 10:44:57.382116+00', NULL, NULL, '2019-10-02 10:56:36.376461+00', NULL, '2019-10-08 11:34:14.280391+00', '', '', '', 'Les presentation au staff Protection de l''Enfant ont porté sur les points suivants en 2 sessions : + +Session 1: Le bien-etre du staff +1. Définir le bien-être +2. Qu’est-ce que le soin personnel ? +3. L’évaluation du soin personnel +4. Pratiques liées au bien-être +5. Elaboration du plan d’action du bien-être +6. Remarques personnelles + +Cette session qui est interactive a permis aux participants de faire l’évaluation de leur soin personnel et d’élaborer un plan d’action personnel de bien-être. + +Session 2: La Gestion du stress. +Elle s’articule autour des points suivants : +1. Définir le stress et l''épuisement +2. Types de stress +3. Comment se manifeste le stress +4. Résilience +5. Gérer le stress +6. Styles d’adaptation +Cette session s’est terminée par des exercices sur les caractéristiques d’une personne résiliente', '', 'approved', '2019-10-07', '2019-10-08', 'Participer à la retraite de la section Protection de l''Enfant: Intervention sur la gestion du stress et le Bien-etre', '', false, false, '2019/28', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11436, 5069, '2019-10-02 10:56:36.37647+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (237, '2020-02-13 11:30:33.391807+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-02-13', '2020-02-15', 'Participation l''évaluation MIRA à Fourkouloum, Malmarie et Kaya 2, Département de Kaya, Province du Lac au T[[schema]] du 14 f', '', false, false, '2020/302', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 21331, NULL, NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (96, '2019-10-14 16:45:14.15477+00', '2019-12-21 12:52:28.554202+00', NULL, '2019-10-14 16:45:14.22107+00', NULL, '2019-10-14 16:53:25.840426+00', '', '', '', 'Plusieurs missions ont été effectuées pour s’enquérir de l’évolution de l’initiative intersectorielle CFC RTM. Une mission multisectorielle conduite par la Deputy accompagnée de la plupart des chefs de Section en juillet 2019. Des points d’action en sont sorties et des missions de suivi du BZ de Moundou avec l’appui de Ndjamena se sont déroulées pour renforcer l’approche. C’est dans ce cadre que le Chef de Section CSD porteur de l’incitative et qui n’avait pas pu faire le déplacement avec la DepRep a effectué une visite programmatique (cf. Rapport Celestin) dans la zone pour mieux apprécier les résultats et formuler des recommandations pour les maximiser. Cette mission a été accompagnée par le Chef de Bureau et certains de ses collaborateurs (voir liste des membres de la mission). + +L’initiative communautés amies des enfants avec un système de suivi en temps réel (CFC/RTM) est une approche multisectorielle intégrée pour la survie et le développement de l’enfant mise en œuvre dans 2 zones de responsabilité de la Province du Logone Occidental depuis octobre 2017. Elle a pour but de renforcer l’approche et le système de santé communautaire pour apporter des services de santé promotionnels, préventifs et curatifs, les plus proches possible des familles et des individus en vue de permettre aux populations en particulier les enfants et les femmes d’atteindre leur plein potentiel et vivre en bonne santé. Elle permet aux communautés de prendre des décisions et des actions collectives, pour réduire les multiples privations des enfants et améliorer la santé maternelle, néonatale et infantile à travers la mise en œuvre et le suivi d’interventions à haut impact au niveau communautaire. +Les ASC sélectionnés et formes offrent des services sociaux et de santé de qualité à leurs populations, en vue d’améliorer leur bien-être, tout particulièrement les enfants et les femmes. Compte tenu du nombre important de communautés dans les 2 ZR (67 villages, quartiers et ferricks), la formation et la mise en place des ASC sont prévues en deux sessions. La première session concernant 31 communautés (14 à Bénoye et 17 à Krim-Krim) a permis de former 62 ASC en juillet 2018 et les recycler en février 2019. Déployés sur le terrain, ces ASC ont enregistré systématiquement toutes les femmes enceintes et les enfants de 0-59 mois de leurs communautés et assurent leur suivi personnalisé sur l’utilisation des services clés de santé. + +Temps fort du déroulement de la mission : + + Bénoye : 6 séances de travail réalisées dont 1 avec les autorités communales, 3 avec les membres des communautés et 2 autres avec l’ECDS de Bénoye. + Krim-Krim : 7 séances de travail réalisées dont 1 avec les autorités administratives, 1 avec les autorités communales, 2 avec les membres des communautés, 1 avec les agents de sante communautaires et 2 autres avec l’ECDS de Laokassy. +Mise à jour la base des données communautaires : L’appui a été donné aux acteurs locaux pour 11 communautés de Krim-Krim. Le Mobilisateur, le PF du DS et le RPEV sont chargés de réaliser dans les 6 communautés restantes. + +Contraintes/problèmes majeurs : + La rupture en vaccins et la défaillance su système d’approvisionnement sont récurrents et handicapent l’atteinte des résultats + La non prise en charge des enfants dépistés malnutris dans les centres de santé de Benoe et Krim-Krim ; + L’absence d’une SFDE ou ATS/Accoucheuse au centre de santé de Bénoye Urbain ; non-respect de calendrier vaccinal dans l’administration des vaccins et remplissage de carte de vaccination par les agents vaccinateurs ; + Les centres de santé de Benoyé et Krim-Krim ne disposent pas de réfrigérateurs ; + La rupture de registre d’acte de naissance ; + L’absence de motos pour renforcer les activités en stratégie avancée et la supervision des ASC ; + L’insuffisance de communication entre les acteurs locaux (Délégation, District, Centre de Sante- Mobilisateur – ASC) et les communautés ; + L’insuffisance de supervision régulière et de qualité entrainant la démotivation et relâchement de certains ASC ; + La faiblesse articulation « Plateformes Communautaires – CDA » pour une meilleure appropriation par les structures décentralisées de gouvernance locale ; + La faible capacitée d’organisation des services de certains agents de santé au niveau des centres de santé et du district au niveau de Benoyé + Le climat délétère a Benoye entre d’une part la population, les autorités et le MCD de l’hôpital en arrestation et entre d’autre part le District Sanitaire et les relais qui se syndicalisent. + Il reste beaucoup à faire à Benoye, cela va nécessiter un suivi régulier et rapproché + +Principales leçons apprises: + +- Susciter la demande sans s’assurer que l’offre est là peut compromettre l’engagement des communautés et l’atteinte des résultats +-L’implication des autorités est sans doute un facteur de mobilisation et d’engagement des communautés.', '', 'completed', '2019-10-15', '2019-10-16', 'Mission de supervision avec le Chef CSD dans le cadre de CFC a Benoye et Krim-Krim', '', false, false, '2019/123', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 11347, 9984, '2019-10-14 16:45:14.221089+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (164, '2019-11-13 16:16:59.245754+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2019-11-14', '2019-11-25', 'Participer a la Mission d''Etude sur la Sante Communautaire au Niger', '', false, false, '2019/220', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 9329, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (175, '2019-11-26 12:34:44.102507+00', NULL, NULL, '2019-11-26 12:43:19.278408+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-12-09', '2019-12-20', 'Appui a la formation des jeunes pairs éducateurs en conseil et dépistage volontaire en 2 pools (Mao/Moussoro et Bongor)', '', false, false, '2019/231', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11436, 5069, '2019-11-26 12:43:19.278448+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (162, '2019-11-13 15:20:29.799236+00', NULL, NULL, '2019-11-13 15:22:04.444315+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-15', '2019-11-20', 'Participer à la revue de la section éducation', '', false, false, '2019/218', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 9329, 25005, '2019-11-13 15:22:04.444335+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (194, '2019-12-06 10:27:38.249247+00', NULL, NULL, '2019-12-06 10:27:53.349753+00', NULL, '2019-12-06 10:30:32.563933+00', '', '', '', 'La Vérification Programmatique s’est déroulée dans le cadre de la mise en œuvre de la 2ème tranche de l’Accord de Programme au titre du Programme N°18/PCA/COMMUNICATION/CELIAF, signé entre UNICEF et la CELIAF, le 16/11/2017. Le montant faisant l’objet de la Vérification Programmatique est de : 10 779 000 FCFA.', '', 'approved', '2019-10-22', '2019-10-22', 'Vérification Programmatique CELIAF-Antenne de N''Djamena (3èT PCA)', '', false, false, '2019/258', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 12058, '2019-12-06 10:27:53.349762+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (177, '2019-11-28 12:50:05.70928+00', '2019-12-21 10:49:36.832261+00', NULL, '2019-11-28 12:50:05.777492+00', NULL, '2019-11-29 07:58:56.085767+00', '', '', '', 'La rencontre s''est deroulée en 2 temps: + +1. Phase de Pre SMR : +Le Pre-SMR s’est déroulé en 3 jours en présence du Management, des Sections et Unités et de certains conseillers du Bureau Régional. Durant les 3 jours les participants ont pu passer en revue les principaux résultats et l’évolution des indicateurs clés des sections suivantes : +- WASH +- Protection +- CSD +- Education +- Gestion efficace du Programme +Il faut rappeler que chaque présentation a fait l’objet de discussions en plenière. Il en ressort les principales recommandations suivantes : +- Renforcer la coordination des urgences +- Renforcer le rôle des BZ dans le ciblage des nos interventions +- Besoin de renforcer l’offre de service au niveau du secteur sante +- Renforcer l’intersectorialité : Planification conjointes entre les sections + +- Besoin de développer des stratégies novatrices en vue d’accélérer la réduction des cas de décès maternel et des enfants +- Besoin d’harmonisation et d’intégration de l’approche communautaires +- Besoin d’appui de BZ pour l’orientation et les sites de mise en œuvre de l’ATPC +- Besoin de renforcer la coordination des acteurs de Wash pour plus d’efficacité et d’efficience. +A l’issue de ce processus, un brainstorming sur la question des zones de convergences prioritaires pour la période 2020-2021 a été engagé. Il ressort de ces discussions que les 2 prochaines années les 7 Provinces suivantes sont retenues comme des Provinces prioritaires : Ouaiddai, Hadjer Lamis, Barh El gazel, Batha, Guera, Kanem et le Lac. Aussi les approches communautaires seront centrées dans les 2 Provinces : Guera et Kanem. + +La question de priorisation a suscité beaucoup de débats du fait qu’elle semble remettre en cause en partie la cartographie des zones prioritaires initialement retenue. +2. Phase SMR: +L’ouverture de cet atelier a été marquée par 2 temps forts : +- La Représentante de l’Unicef a pris la parole pour situer le contexte dudit atelier et a précisé que cette réflexion stratégique commune est une étape cruciale du Programme de coopération et va permettre de poser les bases des priorités pour les 2 ans avenir. Elle a aussi rappelé à l’endroit des participants les objectifs spécifiques de cet atelier. Et elle a fini son allocution en précisant que l’investissement dans les enfants est un droit pour les enfants. +- La Directrice Générale du Ministère de l’économie, du Plan et de coopération a pris la parole pour ouvrir officiellement l’atelier. Elle a aussi situé le contexte de cet atelier qui s’inscrit dans le cadre de processus de la revue de plan de coopération T[[schema]] Unicef. +Après cette phase protocolaire, les participants à l’atelier ont suivi avec beaucoup d’intérêt une présentation faite par un membre de l’équipe du Bureau Régional de l’Unicef qui a accompagné le T[[schema]] dans ce processus de réflexion stratégique. Il ressort de cette présentation les points essentielles suivants : +- 11% des enfants dans le monde vivent en Afrique de l’ouest et du Centre +- 32% de décès chez les enfants de moins de 5 ans et 42% décès maternels sont observés dans cette région +- La prévalence des mariages des enfants reste élevée +- Taux de défécation a l’aire libre reste élevé +Aussi, la région de l’Afrique de l’ouest et du Centre est confrontée à des nombreux défis : +- Forte croissance démographique +- Urgences chronique +- Phénomène de changement climatique +- Migration +- Terrorismes +D’où la nécessité de continuer à investir dans cette partie du monde. +Lors de cette présentation, la situation du T[[schema]] du T[[schema]] par rapport à l’ensemble de l’Afrique de l’ouest et du Centre a été faite. Il en ressort les points suivants : +- Sur les 8 résultats clés définis par le BR le T[[schema]] s’est engagé à atteindre quatre (4) +- Le taux de mortalité chez les enfants de moins de 5 ans quand bien même a diminué reste au-dessus de la moyenne de la région +- La couverture en Penta3 reste faible (70%) +- Taux des enfants en dehors de l’école reste élevé (43%) +- Taux d’enregistrement des naissances chez les enfants moins d’un an reste faible +- Taus défécation a l’aire libre reste élevé (54%. 2eme pays ou le taux est le plus élevé) + +Après cette présentation, 2 panels se sont suivis : +- 1er panel a porté sur : Points de vue sur la contribution du Programme de coopération a la réalisation des droits des enfants au T[[schema]] +- 2eme panel a porté sur : Regards croises sur l’évolution de la situation des enfants, adolescents et jeunes au T[[schema]] +A l’issue de 2 panels nous pouvons retenir de points de vue des panelistes les points suivants : +- Appui conséquent et très apprécié des panelistes par rapport aux interventions de l’Unicef dans les différents secteurs +- Nécessité de changement de paradigme par rapport aux innovations dans les stratégies pour plus de résultats dans certains secteurs ont des stratégies développées jusqu’à-là ont montré leurs limites +- Toutes intervention doivent avoir un volet de renforcement institutionnel +- Impliquer davantage les acteurs de terrains dans le processus d’engagement communautaire +- Renforcement de budget de l’État dans les secteurs de santé et de l’éducation +- Renforcer l’éducation de la petite fille (plus impact) +- Renfocre la qualité de l’éducation par des enseignants qualifiés +- Mobilisation davantage des ressources domestiques +A la fin de la présentation de 2 panels, les participants ont suivi la présentation des principaux résultats et indicateurs clés au niveau de différents secteurs. Il faut rappeler que la présentation de chaque secteur a été suivi de discussions + +3. Les principaux résultats obtenus à l’issue de cette mission sont les suivants : +- L’évolution de la situation des enfants, des adolescents et des jeunes est passée en revue : des faiblesses sont identifiées et constitueront les socles des interventions de l’Unice pour les prochaines années ; +- La revue des résultats et des indicateurs dans les différents secteurs est faite : des progrès mitigés sont observés d’un secteur a un autre ; +- Les contraintes sont identifiées et analysées +- Des orientations stratégiques pour la période 2020-2021 sont données pour une meilleure planification +- 7 provinces prioritaires sont retenues pour la période 2020-2021. + +4. Lecons apprises: +- Renforcer la communication avec les acteurs externes au chaque secteur pour plus d’efficacité et d’efficience de nos interventions +- Nécessité de définir la cartographie de nos interventions pour mieux montrer notre valeur ajoutée +-- Les BZ doivent jouer un rôle déterminant lors de ciblages des zones d’intervention.', '', 'completed', '2019-12-01', '2019-12-07', 'Participation au SMR et processus Revues approfondies', '', false, false, '2019/233', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 11347, 9984, '2019-11-28 12:50:05.777505+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (310, '2020-03-02 09:24:48.080154+00', NULL, NULL, '2020-03-02 09:28:45.37192+00', NULL, '2020-03-05 06:49:45.306743+00', '', '', '', '', '', 'approved', '2020-03-09', '2020-03-16', 'Appui Technique pour la formation sur les outils WASH dans les écoles et visite des activités ATPE/ATPC', 'RAS', false, false, '2020/391', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11399, 9032, '2020-03-02 09:17:26.725311+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (187, '2019-12-04 07:35:57.76325+00', NULL, NULL, '2019-12-04 07:35:57.823793+00', NULL, '2019-12-04 13:47:07.358271+00', '', '', '', '', '', 'approved', '2019-12-23', '2019-12-26', 'Formation du personnel de Moundou en HACT, nouvelles procedures de partenariat et utilisation de ECM', '', false, false, '2019/247', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 177097, 4606, '2019-12-04 07:35:57.823801+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (211, '2019-12-23 15:45:16.478796+00', NULL, NULL, '2019-12-23 15:45:45.651401+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-01-02', '2020-01-09', 'Mission de recrutement et de formation des lanceurs et du Comité Provincial d’Action (CPA) pour la mise en œuvre du s', '', false, false, '2019/274', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 28663, 14362, '2019-12-23 15:45:45.65141+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (180, '2019-11-29 13:18:19.911428+00', NULL, NULL, '2019-11-29 13:18:19.945774+00', NULL, '2019-11-29 15:06:39.91862+00', '', '', '', '', '', 'approved', '2019-12-03', '2019-12-15', 'Supervision Sav', '', false, false, '2019/236', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 9329, 25005, '2019-11-29 13:18:19.945783+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (94, '2019-10-14 11:49:55.351221+00', '2019-12-26 16:59:21.671208+00', NULL, '2019-10-14 11:55:53.986665+00', NULL, '2019-10-14 16:34:29.34152+00', '', '', '', 'La mission s''est bien deroulee.', '', 'completed', '2019-10-21', '2019-10-25', 'suivi programmatique des actvites wash du partenaire APDI', '', false, false, '2019/121', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13512, '2019-10-14 11:55:53.986676+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (259, '2020-02-18 11:03:14.280436+00', NULL, NULL, '2020-02-18 11:08:40.999581+00', NULL, NULL, '', '', '', 'Atelier bilan de Dandi + +Le Ministère de la santé publique à travers la coordination Nationale PTME avec l’appui technique de l’UNICEF a organisé une série de d’ateliers bilan de coordination et de validation des données PTME du second semestre 2019. + +L’atelier de Dandi a eu lieu du 02 au 06 mars 2020. Il a regroupé les délégués des provinces du Guera, du Batha, du Salamat, du Borkou, du Tibesti, de l’Ennedi Ouest, de l’Ennedi Est, du Mayo Kebbi Est, du Hadjer Lamis, du Chari Baguirmi, du Barh El Gazel, du Kanem et du Sila ainsi que les points focaux PTME de ces provinces. Le niveau central est représenté par les responsables des directions et programmes (PSLS, PTME, CNLS, DSIS, CLAC, RNTAP+…) en plus des partenaires d’appuis techniques et financiers. Plus de 50 participants sont conviés et ont effectivement pris part à cette rencontre. + +L’objet de cet atelier est d’évaluer la mise en œuvre des activités PTME du 2nd semestre 2019. De discuter les goulots d’étranglements pour la prise en charge des femmes enceintes vues en CPN, la prise en charge du sida pédiatrique. En d’autres termes, il s’agit d’identification les difficultés qui entravent la mise en œuvre correcte du paquet PTME/PECP et de proposer des solutions idoines en vue de lever les goulots. Le système d’approvisionnement en intrants, Le système de collecte des échantillons pour l’analyse PCR et le circuit transmission des données ne sont pas occultés. + + +Les travaux de la première journée ont commencé par le mot de bienvenue du coordinateur national de la PTME. Dans son allocution, il a remercié les participants d’avoir honoré de leur présence à cet atelier malgré leurs multiples tâches. Il a exhorté les participants à être attentifs et donner les meilleurs d’eux-mêmes pour la réussite de cet atelier. Puis intervient le mot de l’UNICEF. Dans son allocution le Représentant du Représentant a rappelé que l’UNICEF est toujours au côté du MSP surtout en ce qui concerne la santé de la mère et de l’enfant. Beaucoup d’efforts ont été consentis concernant la santé de la mère, cependant, la prise en charge des enfants reste un défi à relever. + +Dans son mot d’ouverture, le Directeur General adjoint du Ministère de la Santé publique dit qu’il constate un développement du programme de la PTME à deux vitesses entre les 13 provinces prioritaires et les 10 autres ne recevant pas d’appui conséquent des partenaires. Ce qui contribue à une faible performance des indicateurs dans ces provinces. Les ressources du fonds Mondial permettront de corriger les gaps et d’accélérer les indicateurs étant donné que le T[[schema]] fait partie de quatre pays hyper prioritaires de l’Afrique de l’Ouest et du centre pour en arriver à l’élimination de la transmission mère enfant du VIH dans les 13 provinces prioritaires qui totalisent 72% des besoins non couverts en PTME. En effet il a demandé aux participants d’être assidus pour la réussite de cet atelier. Après la présentation individuelle des participants un présidium composé d’un président et de deux rapporteurs a été mis en place. Après les annonces administratives, l’agenda de l’atelier a été déroulé puis amandé par les participants. + +La première présentation de la journée était celle de la coordination PTME, qui a porté sur le contexte/justification de l’atelier et une brève évaluation des recommandations de la réunion bilan précédente. Au cours des échanges sur cette présentation, il ressort que les recommandations ont été partiellement réalisées, notamment le ravitaillement en intrants et médicaments ARVs surtout pour les DSP éloignés tels que le Tibesti, le Borkou, les deux Ennedis, ainsi que le Chari Baguirmi. Concernant la gratuité du suivi des PVVIH, les DSP doivent prendre leurs responsabilités pour que cette gratuité soit effective dans leurs provinces respectives au lieu d’attendre l’acte venant du Ministère de la santé qui pourrait retarder la prise des décisions aux nouveaux intermédiaires. Il a été recommandé que le CNLS, le PSLS et la coordination PTME précisent où déposer les bons de commandes des intrants et médicaments. A cet effet il a été clairement indiqué que tous les bons des commandes venant des provinces doivent être déposés à la coordination PTME qui s’occupera du suivi chez les partenaires. + +Dans les échanges, un participant a évoqué la question des fausses ruptures observées dans les structures sanitaires du Pays au cours de leurs supervisions. Dans certaines structures sanitaires, les intrants et les médicaments sont périmés alors que dans d’autres, il en manque. Il faut donc plutôt parler de la mauvaise gestion des intrants au lieu des ruptures pour le T[[schema]]. Néanmoins, cette notion de fausse rupture doit être nuancée d’une délégation à une autre, selon certains participants. + +Puis interviennent successivement les présentations des DSP du Chari Baguirmi et du Bahr Elgazel. Il ressort de la présentation du Chari Baguirmi que 95 FE séropositives ont été dépistées parmi lesquelles 78 ont été nouvellement incluses sous TARV au second semestre 2019. On note une faiblesse du dépistage dans les DS de Mandelia et de Massenya. Aucune FE sero+ n’a été dépistée dans le DS de Mandelia. Les activités de prise en charge pédiatrique ne sont pas réalisées. + +Dans la présentation de la DSP du Bahr Elgazel, on note que 24 Femmes enceintes séropositives + ont été dépistées, 22 FE+ sont nouvellement incluses sous TARV au second semestre 2019. Au total 29 FE+ sont actuellement sous TARV. 04 enfants nés de mères séropositives ont été mis sous prophylaxie ARV, mais aucun de ces enfants n’a été dépisté positifs à la PCR dans les 4 à 6 semaines. +Au cours des échanges sur ces deux présentations, il a été observé une forte déperdition des femmes qui ne sont pas venues prendre leurs résultats. Selon le présentateur, les patientes préfèrent aller se faire suivre à Ndjamena à cause de la forte stigmatisation. Pour le Chari Baguirmi, selon un participant, il faut plutôt instruire les RCS à réaliser le dépistage dans leurs Zones de responsabilité et au cours de leurs consultations que d’attendre le dépistage de masse en milieux communautaires. Pour le suivi biologique des PVVIH qui ne se fait pas au Chari Baguirmi, un participant a commenté qu’il serait nécessaire d’orienter le PVVIH vers les hôpitaux de N’Djamena ou les suivis biologiques sont faisables. Beaucoup d’activités sont organisées sur le terrain mais ne sont pas documentées, notamment les activités de prise en charge pédiatrique. Il se pose donc un réel problème de rapportage des données. +Concernant le manque des UNT dans le Chari Baguirmi, il a été précisé que le dépistage ne se fait pas seulement dans les UNT mais dans toutes les portes d’entrée telles que dans les consultations pédiatriques et dans les services pédiatriques hospitaliers. A cause de cas manquants, la DSP du Chari Baguirmi est prise comme une province prioritaire. Selon le présentateur, la délégation de tâche constitue un grand défi à relever car les personnels ne sont pas formés sur la PTME/PECP. Les intrants doivent être disponibles en quantité suffisante dans toutes les FOSA, car, dit-il que, certaines activités ne sont pas réalisées à cause des ruptures des intrants au second semestre 2019. +Pour la DSP du Bahr Elgazel, il est proposé qu’il faille inviter les partenaires clés à toutes les réunions de validation. Un bon système de rapportage des données doit être mis en place, car il y a une déperdition importante des enfants nés de mères séropositives lorsqu’on compare le nombre d’enfants nés des mères séropositives et ceux mis sous TARV. + +Au retour de la pause, la présentation sur les approches d’accélération de la PECP fut faite. Les points saillants ressortis de cette présentation sont entre autres : le faible taux de prise en charge pédiatrique du VIH au T[[schema]], (seuls 23,7% des enfants de 0-14 ans séropositifs sont sous traitement). Le risque de perdre les enfants faute de retard dans la mise sous traitement ARV (Plus de 50% des enfants infectés sans traitement ARV mourront avant leur deuxième anniversaire). Le pays dispose des opportunités pour booster la prise en charge des enfants il s’agit entre autres : +• Plan d’accélération de la PECP 2019-2023 élaboré, validé, distribué aux provinces et aux districts ; +• Micros plans des Districts élaborés et validés ; +• Documents de références; +• Engagement politique : Lancement officiel par la Première Dame du PoC ; +• Disponibilité des intrants, gratuité ; +• Réunions mensuelles du 24 sous la haute autorité du pays ; +En outre, il existe des stratégies nouvelles et prometteuses en cours d’expérimentation au T[[schema]] : +• Le dépistage familial (3,06%), le dépistage dans les Unités Nutritionnelles thérapeutiques (UNT) et les services de pédiatrie. +• Les Nouvelles technologies/Innovantes comme la PoC grâce à la disponibilité des machines GenXpert ; +• La Mise à échelle de la PTME ; 84% de centres de santé couverts ; +• L’Existence de textes réglementant le dépistage communautaire etc. + +Les stratégies des dépistages communautaires doivent être développées avec la participation communautaire et selon les convenances propres à chaque communauté. Rien ne devrait être fait pour la communauté sans la communauté. Les collectivités touchées devraient participer systématiquement à la conception des actions et influencer leurs orientations. Le premier pilier de la PTME c’est la prévention. Grace aux molécules ARV disponibles, on peut prendre en charge normalement les enfants séropositifs. Au cours de discussion sur cette présentation il est à retenir que certains défis sont les insuffisances et les faiblesses du personnel soignants dans la mise en œuvre des approches communautaires pour les activités PTME/VIH. + +Il s’en est suivi les présentations des DSP du Guéra et du Tibesti. Dans la présentation de la DSP Guéra, 21 FE séropositives dépistées pendant les CPN ont été toutes mises sous TARV. 23 FE séropositives sont sous TARV au second semestre 2019. Les enfants nés des mères séropositives sont au nombre de 08, tous ces enfants ont été mise sous TARV. Il s’est posé un problème de suivis biologique de ces enfants. L’utilisation du GenXpert n’a pas été satisfaisante au deuxième semestre 2019. + +Les discussions sur les deux présentations ont permis de relever qu’il est difficile d’organiser la campagne de sensibilisation et de dépistage de masse dans le Tibesti. Des solutions locales doivent être trouvées pour booster le dépistage communautaire. Les laborantins et les pharmaciens doivent coordonner pour que les réactifs et les médicaments parviennent aux différents DS et aux FOSA. Parlant des canevas de présentation, un participant a suggéré qu’il est préférable d’appeler la coordination de la PTME, en cas de difficulté dans le remplissage de certaines informations, afin d’être mieux renseigner les résultats atteints dans les DSP. Les goulots d’étranglement de chaque CS doivent être identifiés et traités aux comités directeurs des DS afin de proposer des pistes concrètes des solutions. + + +La deuxième journée a commencé avec la lecture et l’amendement de la synthèse des travaux de J1, ensuite fut la désignation du présidium. Le présidium quant à lui après un bref rappel de l’agenda de j2, a donné la parole aux présentateurs des délégations sanitaires provinciales de Batha puis Kanem. Il ressort de la présentation du Batha que la cascade des FE il y a une discordance entre les données femmes enceinte (84,70%) et les FE vues à la CPN1 (31,70%). +On constate aussi que le suivi biologique ne sont pas réalisés car l’appareil CD4 est tombé en panne. La Délégation note comme force l’effectivité de la mise en œuvre de la PTME mais il se pose comme problème l’accessibilité de certaines aires Géographiques. +La deuxième présentation est celle de la province du Kanem, d’où on constate un problème de promptitude des rapports 13% et aussi celui de la complétude qui est de 83% : le district sanitaire de Rig Rig n’a pas du tout rapporté durant les six mois. Le DSP de Kanem a respecté la cascade dont le taux de la CPN1 est de 64%, 57% des FE dépistée au cours du 2ème semestre 2019. +Après la pause-café la présentation sur la POC (Point Of Care) a été faite, le présentateur a fait un Etat de lieu de la POC au T[[schema]] qui est de mettre à l’échelle les points de soins (PoC) pour le diagnostic précoce du VIH chez les nourrissons. Il a signalé que le T[[schema]] fait partie des 10 pays d’Afrique de l’Ouest et du Centre ou le Dépistage Précoce des Nourrissons est à la traine et présente une faible couverture du TARV en raison d''un diagnostic faible et/ou tardif du VIH. 8 nourrissons sur 10 exposés au VIH ne sont pas testés avant 8 semaines (2017). Ils sont 8 sur 10 sans accès au traitement. +Pour ce fait, les pays d’Afrique de l’Ouest et du Centre se sont fixés des objectifs : passer de 21% en fin 2019 à 64 % en 2022. Ces objectifs sont déclinés en activités clés entre autres : +• Décentraliser le dépistage des enfants grâce aux Sites de dépistages précoces aux niveaux décentralisés (Point Of Care), +• Utiliser la technologie innovante pour le diagnostic précoce du VIH (GenXpert, Mpima. Amplyx, Samba II) ; +• Le T[[schema]] a opté pour les GenXpert et Amplix afin d’optimiser l’utilisation des appareils et améliorer la performance du programme ; +• Accroitre la prise de sang sur papier buvard chez les enfants entre 2 et 8 semaines et l’envoyer au site PoC ; +• Assurer le suivi ; +• Récupérer le résultat puis remettre à la maman. + +Tout cela a permis la couverture du dépistage du VIH chez les nourrissons qui est passée de 0,5% en 2018 à 21,3 % en octobre 2019 grâce à la mise en marche effective des appareils GenXpert, de meilleurs résultats auraient été possibles si les 15 appareils étaient utilisés de manière optimale. + +La présentation suivante fut celle du RNTAP+ qui est axée sur le dépistage du cas Index réalisé dans deux Provinces : Batha et Hadjer Lamis. Il ressort de cette présentation que sur 3918 cibles prévues, 61% ont été atteints dont 8% sont dépistés positifs référés pour une prise en charge adéquate dans les structures des soins. Cette présentation a suscité beaucoup de discussions en termes de capitalisation par les DSP du dépistage familial ou cas index, la gestion des intrants, la documentation des cas… + +Une pause est observée à partir de 13 heures quarante-cinq minutes. A la reprise, les présentations en séries des délégations suivantes ont été faites, il s’est agi de la présentation de la DSP du Salamat, de l’Ennedi Est, du Sila et de l’Ennedi Ouest. Sur ces présentations il ressort une faible couverture dans la cascade PTME/PECP, on note également la rupture d’intrants ainsi que le manque criard des préservatifs qui est une des causes d’exposition des jeunes/adolescents au VIH et aux IST en plus des grossesses non désirées dans les provinces. + +Sur base des résultats atteints et partagés dans les quatre présentations, des discussions intéressantes se sont poursuivies. Il ressort des échanges quelques questionnement : pourquoi les provinces sanitaires du Nord ne sont pas dotées en équipements adéquats à l’exemple des appareils CD4, des GenXpert et autres matériels médico-techniques pour une prise en charge correctes des PVVIH ? Dans les discussions, il est aussi ressorti que ces provinces ne sont pas perdues de vue dans la nouvelle subvention (NFM2, 2020-2021), néanmoins le gap dans ces provinces est important et nécessite un appui consistant pour améliorer les indicateurs du pays en termes d’atteintes des objectifs « 90-90-90 » dont le T[[schema]] s’est fixé. + +Un témoignage a été fait sur le dépistage des cas index « il s’agit d’un cas rencontré dans une des provinces. La discordance entre le résultat d’un enfant dépisté positif et les résultats des parents qui se sont révélés négatifs. La prétendante mère est négative mais après plusieurs investigations, il a été constaté que cette mère n’est pas la mère génétique mais elle est la grand-mère ». +La deuxième journée a pris fin à 17 heures trente-cinq minutes après une synthèse faite par les facilitateurs. + +La troisième journée a commencé par la lecture, amendement et adoption du rapport de la journée précédente. Il s’en est suivi la présentation de la Province du Borkou, du Hadjer Lamis et du Mayo Kebbi Est. Il est retenu de ces présentations que la mise en œuvre des recommandations des réunions précédentes n’est faite que partiellement dans toutes les DSP citées. En ce qui concerne la transmission des RMA, la DSP du Borkou est à 89.4% tant disque celles du Hadjer Lamis et du MKE sont à 100%. Il ressort de la présentation du DSP de Borkou que seule 20,41% de FE sont vues en CPN1, 17% sont conseillées et dépistées 100% de celle qui se sont révélées positives sont mises sous ARV. Tous les enfants nés des mères séropositives ont bénéficié de la prophylaxie ARV à la naissance en revanche le dépistage précoce n’a pas été réalisé faute de l’absence d’appareil GenXpert à proximité. Le présentateur a évoqué l’insuffisance du personnel qualifié et la faiblesse dans la prise en charge pédiatrique ainsi que l’acceptabilité des FE a l’utilisation de service. Dans la présentation de la DSP du Hadjer Lamis, la promptitude est à 97.8% et que 66% de personnel sont formés avec 0% de ruptures des intrants de plus de 7 jours. A la fin du deuxième semestre, 134 FE séropositives sont mis sous ARV, seuls 02 enfants sont dépistés précocement entre 4 à 6 mois. En somme il y a 37 enfants inclus dans la file active en fin 2019. La PECP reste un problème dans les FOSA. + +Pour le Mayo Kebbi-Est, Il ressort de la présentation que la promptitude est de 90.4%, pour 100% de complétude, 100% de personnel ont été formés en PTME et 0% de rupture des intrants. Les données partagées font ressortir que 147 femmes enceintes dépistées positives nouvellement incluses et 42 anciennes pour un total de 189, qui sont mises sous traitement ARV ainsi que 56 Femmes enceintes séropositives sous ARV qui ont accouché. Le dépistage à l’UNT ne se réalise qu’à Bongor car les autres Districts ne disposent pas des UNT. 22 adolescents de 15-19 ans sont dépistées positives au niveau des CLACs mais seulement 11 sont mis sous traitement cela est dû à la proximité avec le Cameroun ou les jeunes/ados viennent se faire dépister mais ne reviennent pas retirer leurs résultats. Pour résoudre ce problème de déperdition et de faible dépistage précoce, il est proposé de mettre en place une équipe de surveillance inter frontalier. + +Quelques difficultés ont été relevées lors des discussions sur les résultats présentés par les trois provinces, il s’agit entre autres : +• Insuffisances de la collecte des données et la promptitude des données pose un problème ; +• Insuffisance dans la gestion des intrants avec rupture périodique en intrant et des ARV pédiatriques ; +• Insuffisance des supervisions formatives ; +• Manque d’appareil GenXpert dans la zone du grand Nord ; +• L’inaccessibilité de certaines zones de responsabilité ; +• Insuffisance de formation du personnel. +Plusieurs questions de compréhension et d’éclaircissement ont été posées et des réponses satisfaisantes ont été apportées par les présentateurs des DSP. +Après la pause, les travaux ont repris avec la présentation du CLAC qui s’est focalisée sur les résultats en termes des données des structures. Il s’agit de la sensibilisation et la prise en charge des adolescents et jeunes pour les deux semestres de l’année 2019. Il ressort de cette présentation qu’il y’a 98% en termes de complétudes et 89% de promptitudes des RMA. Pour ce qui est l’offre de services 210 pairs éducateurs, 36 CPS, 7 encadreurs et 6 prestataires ont été formés. Au vu des résultats 41247 adolescents et jeunes ont été dépistés, 31929 ont eu connaissance de leur statut sérologique pour 268 cas positifs mais seulement 241 ont été pris en charge à cause de déperdition. + +Au cours des échanges, il est recommandé aux CLACs de partager les données avec les DSP concernées et de mettre en œuvre des nouvelles approches pour minimiser la déperdition des cas positifs. Il s’en est suivi la présentation des résultats globaux des 13 DSP. Les résultats montrent qu’on observe un progrès en 2019 en matière de CPN (62%), dépistages de FE (55%) et 55% de femmes révélées positives. On remarque globalement un Gap dans l’offre de service PTME dû au réel problème de rapportage des données. +Pour ce qui est de la présentation sur la qualité des données, on note que pour avoir des données fiables, il faut respecter les quatre règles suivantes : +• L’exhaustivité et ponctualité des données ; +• La cohérence interne des données notifiées ; +• La cohérence externe des données ; +• La comparaison externe des données sur la population. +Concernant la méthodologie de vérification de rapportage, on utilise un coefficient de vérification compris entre 0,95 et 1,05. Si le Coefficient de Vérification (CV) est inférieur à 0,95 ceci correspond à une situation de sous-rapportage, à l’inverse, un CV supérieur à 1,05 correspondrait à une situation de sur-rapportage. A la fin de la présentation des recommandations pour l’amélioration de la qualité des données ont été faites à l’endroit de toutes les délégations : +• Mettre en place par un acte, une équipe de vérification et de validation des données dans chaque district, hôpital et centre de santé ; +• Tenir chaque mois avant la transmission des données à l’échelon supérieur une réunion de vérification et de validation des données avec compte rendu archivé ; +• Comparer les données agrégées sur les RMA, RMP, RMV entre elles d’une part et refaire le dépouillement des registres et effectuer à nouveau une comparaison ; +• Transmettre dans les délais les rapports mensuels à la coordination nationale PTME ; +• Renforcer les activités de supervision formative ; +• Faire un feedback pour apporter des corrections aux lacunes constatées sur les données transmises à chaque échelon +• Disposer les outils conforme de collecte des données (masque de saisi). +Après la pause, les participants sont repartis en groupe par DSP pour faire une analyse approfondie des forces, goulots d’étranglements et contraintes présentés et/ou discutés tout au long de l’atelier, il s’en suivi une restitution globale qui a été discuté. +La rédaction, adoption en plénière des recommandations générales de l’atelier était la dernière étape de l’atelier. Le coordonnateur de la PTME représentant le DGA du MSP a clôturé l’atelier sur une note de satisfaction. + + + +Atelier bilan de Douguia + + + +L’objectif des ateliers bilan est de faire une analyse critique des données des activités de la PTME/PECP et de proposer des solutions correctrices qui peuvent aider à l’atteinte des résultats que sont : +1. L’amélioration de la promptitude, de la complétude et de la qualité des données ; +2. Les propositions de solutions aux goulots d’étranglement identifiés lors de la mise en œuvre de la PTME/PECP sur le terrain ; +3. Les approches d’accélération de la PECP notamment le dépistage précoce par le PoC, le dépistage des enfants à travers les autres portes, le dépistage des adolescents/jeunes sont partagées et mises en œuvre ; +4. La gestion des intrants dans les PPA, DSP, districts et CS est améliorée ; +5. Le dépistage des cas index est intégré dans toutes les FOSA ; +6. La revue des micros plans et la planification du semestre prochain sont faites ; +7. La problématique de la mise en place des outils de collecte des données est résolue ; +Pendant 3 jours, les délégations du Ouaddai, Lac, Ndjamena et Wadi Fira ont présenté les résultats de leurs activités suivies de discussions. Les rapports de ces 3 journées sont les suivants : + +Rapport de J1 : L’atelier a débuté par la session d’ouverture officielle avec la mise en place des participants, le mot de bienvenue du coordinateur de la PTME et de celui du Directeur général adjoint de la Santé Publique. Les participants se sont présentés, l’agenda a été adopté et un présidium a été mis en place. +Il a été demandé aux participants d’être attentifs et de suivre avec intérêt les différentes présentations afin de mieux relever les goulots qui empêchent la bonne mise en œuvre des activités de PTME et de la PECP +Le coordonnateur de la PTME a présenté le contexte actuel du T[[schema]] et a mis en exergue l’insuffisance du dépistage et la mise sous traitement ARV des mères, la faiblesse de l’identification des enfants, adolescents et jeunes infectés. Après cette présentation, une discussion a porté sur les difficultés du système d’approvisionnement en intrants au niveau des provinces par manque de communication entre les acteurs de terrain. +Après c’est la présentation des activités de PTME de la DSP Lac. Les discussions ont porté sur le problème de la séroprévalence du VIH au Lac qui est élevée par rapport à la moyenne nationale de 1,2 chez les femmes enceintes. Toutes les DSP doivent utiliser les femmes enceintes séro+ attendues comme dénominateur dans les calculs. La situation de braquage de véhicule contenant des médicaments a été relevé de même que la faible supervision, le faible contrôle de la qualité de données et la faible réalisation des activités par retard ou absence de financement. Des réponses d’éclaircissement, de contributions et remarques ont été apportées par les facilitateurs. + +La 3ème présentation a porté sur quelques pistes pour booster la prise charge pédiatrique. Il s’agit des approches d’accélération comme le dépistage familial de cas index, le dépistage précoce au point de prestation de service par les appareils GenXpert (15 dans le pays). La dernière présentation du jour a été celle de la DSP Ouaddaï. Les points retenus sont le retard dans le financement, la non-réalisation des activités dans le temps, l’insuffisance dans le suivi des FE+ et des enfants nés des mères séropositives, l’insuffisance du prélèvement sur papier buvard. +Rapport J2 : +Après la lecture du rapport de J1, le RNTAP+ a présenté les résultats du dépistage communautaire des cas index réalisé dans les provinces de Batha et Hadjer Lamis. Le dépistage n’a touché que 30% de la cible à Hadjer Lamis et 20% dans le Batha. 203 cas positifs sur un total de 2401 testés soit 8% de taux de positivité. On note également le taux de séropositivité élevé dans la tranche d’âge de 20 à 24 ans. Des réponses ont été données aux questions et préoccupations des participants sur la méthodologie utilisée pour la sélection des cas, le critère d’inclusion et de non-inclusion, le processus de réalisation des examens de cas index. +La DSP Ndjamena a fait sa présentation et beaucoup d’insuffisances ont été relevées dans la mise en œuvre des activités de la PTME. Seul le District du Sud a produit des données quelque peu cohérentes. Après discussion houleuse, la DSP de Ndjamena a pris l’engagement d’améliorer la situation en se rapprochant des hôpitaux nationaux ou du MSP pour collecter les données PTME avec le concours de la coordination PTME et l’implication des autorités. +La coordination des CLAC a présenté les données sur la prise en charge des adolescents et des jeunes. Il y a une déperdition importante dans la prise en charge de ces jeunes par défaut de personnel de prise en charge dans leurs structures. Une collaboration s’impose entre les CLAC et les équipes cadres de District pour l’analyse de leur données et la prise en charge des jeunes infectés. +La coordination de la PTME a présenté les constats faits lors des supervisions effectuées dans les provinces. Malgré la disponibilité des intrants dans toutes les provinces, par faiblesse de communication entre acteurs ou de commandes adéquates, certaines structures sont en rupture. Un engagement a été pris par les responsables des PPA pour apporter les corrections. La DSP WADI FIRA a présenté ses résultats. Il ressort de cette présentation que de manière globale, les résultats sont acceptables. Toutefois il faut noter que l’insuffisance du personnel qualité freine les activités de la PTME dans certains Centres de santé. Elle a souligné la situation du stock actuel des intrants qui est préoccupante et le gap des enfants séropositifs à rechercher pour leur mise sous ARV. La dernière présentation de la journée a porté sur les états de lieu de la POC au T[[schema]]. La couverture de dépistage s’est améliorée et est passée de 5% en 2018 à 21,3% en 2019 grâce à la mise en marche effective des 15 appareils GeneXpert. Cependant les difficultés existent : mauvaises collectes et faible respect du circuit de DBS, insuffisance des ressources humaines qualifiées, faible utilisation de la PCR de certains sites. L’adoption de la stratégie d’intégrer la PTME, le dépistage précoce et la prise en charge des enfants dans les services SMNI ainsi que la collaboration avec les associations des PVV locales à tous les niveaux pourraient améliorer les résultats. +Rapport J3 +La 3ème journée des travaux a démarré avec la lecture, l’amendement et l’adoption de la synthèse des travaux de la 2ème journée et quelques explications sur le POC. La coordination PTME a présenté les résultats globaux de la PTME 2019. Il ressort une légère augmentation des indicateurs en couverture de CPN et dépistage de l’année 2019 par rapport à l’année 2018 (CPN 62% en 2019 contre 57% en 2018, dépistage VIH 55% en 2019 contre 45% en 2018). Le taux d’acceptabilité de dépistage est de 95% pour toutes les 4 délégations sanitaires prioritaires du pool de Douguia. Cependant les taux de couverture en ARV maternel et pédiatrique ainsi que le suivi et la rétention du couple mère-enfant reste faible dans presque toutes les délégations. +La 2nde présentation de la journée a porté sur les performances des services PTME dans les 4 délégations sanitaires de 2017 à 2019. Selon cette présentation, les performances des services sont en dents de scie, il n’y a pas de croissances véritables de tous les indicateurs et selon le facilitateur plusieurs facteurs peuvent expliquer cette stagnation dans la croissance des indicateurs des services PTME dans les 4 délégations sanitaires. Le mauvais rapportage des données ainsi que le non-exhaustivité de la collecte des données influencent négativement sur les performances des indicateurs. +La 3ème et dernière présentation de la journée est axée sur la qualité des données, un nouveau challenge. Selon le facilitateur, les données ne seront de bonne qualité si les 4 dimensions suivantes sont respectées : +- 1 : Exhaustivité et ponctualité des données +- 2 : Cohérence interne des données notifiées +- 3 : Cohérence externe +- 4 : Comparaison externe des données sur la population. +Un calcul du coefficient de vérification des données (CV= NC dans les DSP/ NC dans la BD) a été fait. Si le CV est inférieur à 0,95 alors c’est un sous rapportage et si le CV est supérieur à 1,5 alors c’est un sur rapportage. L’analyse de la promptitude et la vérification des concordances des données des 4 délégations sanitaires ont montré combien il était important de voir les performances de chaque DSP pour corriger les gaps. A l’issue de cette présentation et discussion, une feuille de route pour chaque DSP a été faite pour améliorer les indicateurs.', '', 'submitted', '2020-02-24', '2020-03-06', 'Participer aux reunions bilan avec la PTME a Douguia et Dandi', 'WBS 0810/A0/05/883/004/002 Grant SC 190605', false, false, '2020/324', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11436, 12023, '2020-02-18 11:08:40.999589+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (130, '2019-10-25 15:30:20.177459+00', '2019-11-08 12:34:22.212599+00', NULL, '2019-10-25 15:30:37.348398+00', NULL, '2019-11-07 14:20:42.324277+00', '', '', '', 'Il s''agi d''un rapport de Verification Programmatique de la DSP du Mandoul sur un FACE d''un montant de 16 771 000 FCFA pour le financement des activites des microplans de districts sanitaires du Mandoul. Toutes les activites ont ete realisees par la delegation sanitaire et les DS. Les principaux resultats sont les suivants: amelioration de la qualite des donnees a travers la validation mensuelles des donnees, le renforcement des capacites des agents a travers les missions de supervisions, et 107 agents de sante ont ete formes sur les outils de gestions des donnees et la technique de prelevement des enfants sur papiers buvards. Par ailleurs nous avions aussi constates que le plateau technique des CS visites au cours de cette mission est faible(insuffissance des boites d''accouchements, tensiometre, pese enfant, materiel de reanimation du nouveau ne..). il ya necessite de renforcer le plateau technique des CS du DS de Koumra. Aussi Les activités des agents de santé communautaires se sont poursuivies dans l’ensemble de DS. La mise en œuvre de cette activité dans les différents DS a permis d’atteindre les résultats suivants : +- 2 529 femmes enceintes ont sensibilisées et référées à la CPN +- 5970 jeunes et adolescents ont sensibilises sur la prévention du VIH +- 359 leaders communautaires ont été sensibilisés et ont mené des activités de promotions en faveur de la PTME', '', 'completed', '2019-10-21', '2019-10-24', 'Assurer une mission de supervision et de VP de la DSP du Mandoul pour les activites PTME', 'la mission s''est bien deroule. par ailleurs au cours de cette mission nous avions aussi pris part au funeraile de notre collegue chauffeur Djaingue decede', false, false, '2019/168', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13031, '2019-10-25 15:30:37.348408+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (103, '2019-10-18 13:09:37.834154+00', '2019-11-13 10:17:07.884301+00', NULL, '2019-10-18 13:09:53.781053+00', NULL, '2019-11-07 14:18:53.755163+00', '', '', '', 'Deux pools de formations de 5 jours chacun, sur la prise en charge intégrée de la malnutrition aigüe en ambulatoire sans complication médicale ont été organisées à l’intention des agents de santé des districts sanitaires de Goré et Bessao. Au totale, 34 agents dont 20 agents de santé (3 femmes et 17 hommes) et 14 ASC ont bénéficié la formation. +Ces formations concernent 8 centres de santé (Timbiri et Peuleuh dans le DS de Goré, Dodang II, Laoukoueamassi, Gadjibian, Bendjimoudou, Manang, et Bekor II dans le DS de Bessao, identifiés pour abriter les UNA. +- la première partie organisée dans le district sanitaire de Goré, regroupant 11 participants dont 3 femmes, constitués de 9 professionnels de santé, venus des centres de santé, DS de Goré et du partenaire Mentor et 2 agents de santé communautaire (ASC) ont été formés du 22 au 26 octobre 2019. +Cette section de formation a connu la participation de 7 participants au pré-test et 11 participants au post-test. Au pré-test les notes avaient varié de 3/20 à 16,5/20 soit une moyenne de 7/20. Au post test, les notes ont varié de 6/20 à 18,5/20. La note moyenne était de 12/20. Ceci note une progression de 5 points du niveau de connaissance moyenne des participants sur la PCIMA. +- Un deuxième pool de formation organisé dans le DS de Bessao regroupant 23 participants composés de 14 professionnels de santé (10 IDE, 2 ATS, 1 technicien supérieur en soins infirmier 1 technicien de laboratoire) et 9 ASC venus des centres de santé, du district et de l’ONG MEMTOR, ont été formés du 28 octobre au 1er novembre 2019. +Pour cette deuxième section de formation, 22 participants ont pris part au pré-test et 23 participants au post-test. Au pré-test les notes avaient varié de 0/20 à 17/20 soit une moyenne de 5/20. Au post test, les notes ont varié de 3,5/20 à 17,5/20. La note moyenne était de 11,5/20. Ceci note une progression de 6,5 points du niveau de connaissance des participants sur la PCIMA. +Les deux sections de formation ont eu la participation de deux MCD de Goré, Bessao et ont été un succès. +A cet effet, un lot de matériels anthropométriques ( 8 cartons de toises (16 unités), 8 balances électroniques, MUAC), les outils de gestion UNA (15 registres de UNA, 15 registres de stock, 500 fiches de suivi UNA, 500 fiches de ration et tables de rapport P/T, ainsi que des intrants nécessaires (450 ATPE, Albendazole…) pour le lancement des activités dans ces nouvelles UNA , ont été sortis du magasin de l’Unicef et remis au partenaire Mentor Initiative en vue de remettre aux centres de santé concernés pour l’ouverture des nouvelles UNA.', '', 'completed', '2019-10-21', '2019-11-02', 'Mission de visite programmation et formation des agents de santé sur le paquet PCIMAS', '', false, false, '2019/134', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 22479, '2019-10-18 13:09:53.781063+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (143, '2019-11-04 16:52:00.461973+00', NULL, NULL, '2019-11-04 16:54:26.618499+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-12', '2019-11-20', 'Installation de refrigérateurs a Krim-Krim et Benoye, puis collecter les données pour la mise à jour l''ODP - DSP Mandoul', '', false, false, '2019/196', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 8519, 23640, '2019-11-04 16:54:26.618509+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (50, '2019-10-04 22:01:36.029022+00', '2019-11-29 12:27:23.327621+00', NULL, '2019-10-04 22:02:30.995174+00', NULL, '2019-10-06 07:18:46.580284+00', '', '', '', 'La politique nationale de la Vaccination 2020-2030, le guide national de vaccination et les outils de gestion sont validés techniquement et les drafts de ces documents disponibles. + +Les prochaines étapes des activités pour la finalisation du document sont : + • Finalisation de la Politique, du Guide, et les outils de collecte des données, du 7 au 31 Octobre 2019; + • Validation des documents par le comité technique d’appui au PEV, le 05 Novembre 2019; + • Adoption par le CCIA sera organisé pour la validation le 15 Novembre 2019; + • Reproduction du support dans la période de 30 novembre 2019 et + • Diffusion du Guide et du PNV le 02 décembre 2019. + +L’atelier a été ouvert par le représentant du MSP, le DSRV accompagné par les représentants de l’Unicef et de l’OMS dans l’après-midi du 1er Octobre 2019. Aussitôt les groupes de travaux ont été mise en place pour faire la revue des différentes sections du document de la politique et du Guide. Bien qu’un retard soit connu pour le démarrage de l’atelier, les activités se sont bien déroulées avec une participation active des participants présents. La revue des travaux de groupes des différents sur le PNV, le guide et les outils a été faite par l’équipe de rédaction. +Le document de la Politique est passé de 19 à 30 Pages. La production était à 100%. +L’intégration de la production du guide était à 95%, +Pour ce qui concerne les outils de gestion, il reste le registre de pointage journalier qui sera rediscuté avec l’équipe de la DSIS pour une position sur la notion ZA et ZB. +Une équipe dirigée par le PEV avec l’appui de l’OMS et de l’UNCEF est mise sur pied pour la finalisation + +Les participants n’étaient pas tous arrivés à Douguia le matin du 1er octobre comme planifié. Ainsi toute la matinée du 1er octobre n’a pas été mise à profit. Les activités de l’atelier ont effectivement démarré à 15h00 le 1er jour. + +Le perdiem des conducteurs et les frais de carburant n’ont pas été payés à l’issue de l’atelier car l’un des signataires de chèque au ministère de la santé publique était en déplacement +La présence des participants n’a pas été constante durant l’atelier, certains participants passent la nuit à N’Djaména, il y a eu des activités à N’Djaména (installation de la nouvelle équipe de la SDV, réception des véhicules CPA par les délégués, …). Cette situation a perturbé le bon déroulement de l’atelier. +Cependant afin d’atteindre les résultats assignés malgré cette situation, les staffs UNICEF ont assuré le lead de la quasi-totalité des différents groupes de travail et la facilitation des discussions en collaboration avec ceux de de l’OMS + +Le principe présentiel de l’atelier n’a pas été observé par certains participants. + +Les principals recommandations etaient: +1) Appuyer la finalisation les documents de la PNV, du Guide et les outils de gestion - Equipe ad hoc mise en place (MSP/UNICEF/OMS) - 31 Octobre 2019 +2) Appuyer la validation de la PNV, du Guide et les outils de gestion par le CCIA - UNICEF/OMS - 15 Novembre 2019 +3) Reproduire les documents (PNV, Guide et outils de gestion) validés- SDV - 30 Novembre 2019 +4) Mettre les documents reproduits à la disposition des DSP, DS et CS - SDV/DSRV- 02 Décembre 2019 +5) Organiser une rencontre entre l’équipe communication de l’UNICEF et la nouvelle équipe communication de la SDV (PEV) - UNICEF (Communication Stratégique) - 10 octobre 2019', '', 'completed', '2019-10-01', '2019-10-05', 'Participation a l''atelier de validation technique de la politique nationale de la vaccination', '', false, false, '2019/64', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11566, 9333, '2019-10-04 22:02:30.995181+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (163, '2019-11-13 15:53:22.093498+00', NULL, NULL, '2019-11-13 15:53:22.12237+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-18', '2019-11-20', 'Suivi des activites de PCA avec l''ONG PUI', '', false, false, '2019/219', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 9329, 13371, '2019-11-13 15:53:22.122385+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (183, '2019-11-29 15:43:33.298638+00', NULL, NULL, '2019-11-29 15:44:01.417669+00', NULL, '2019-11-29 15:45:35.873652+00', '', '', '', '', '', 'approved', '2019-11-22', '2019-11-28', 'Participer a la mission d''evaluation multisectorielle de la population sinistree dans la Province du MKE', '', false, false, '2019/239', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13512, '2019-11-20 16:13:12.747369+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (179, '2019-11-29 12:30:07.432351+00', NULL, NULL, '2019-11-29 12:30:07.453003+00', NULL, '2019-11-29 15:07:09.600722+00', '', '', '', '', '', 'approved', '2019-12-03', '2019-12-15', 'Supervision de la champagne SAV', '', false, false, '2019/235', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 9329, 13371, '2019-11-29 12:30:07.453011+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (236, '2020-02-13 11:30:01.378561+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-02-13', '2020-02-15', 'Participation l''évaluation MIRA à Fourkouloum, Malmarie et Kaya 2, Département de Kaya, Province du Lac au T[[schema]] du 14 f', '', false, false, '2020/301', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 11514, NULL, NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (178, '2019-11-29 12:21:19.888826+00', NULL, NULL, '2019-11-29 12:21:19.919564+00', NULL, '2019-11-29 15:08:04.429247+00', '', '', '', '', '', 'approved', '2019-12-03', '2019-12-15', 'SUPERVISION CAMPAGNE SUPPLEMENTATION VITAMINE A', '', false, false, '2019/234', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 9329, 24390, '2019-11-29 12:21:19.919573+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (209, '2019-12-12 16:32:26.099465+00', NULL, NULL, '2019-12-12 16:32:26+00', NULL, '2019-12-12 18:07:05+00', '', '', '', 'La mission est marquée par 4 temps forts. + +1.Mise à niveau des formateurs +Cette activité a été menée du 21 au 22 janvier 2020 dans la salle de réunion de la DSP/LOC du Logone Occidental à Moundou. Elle a permis aux 10 participants dont 8 facilitateurs de se familiariser avec le contenu des modules et des travaux de groupes tout en s’accordant sur la méthodologie d’animation des modules. On note une fois de plus l’absence du staff de Bureau de Zone de Moundou à cette séance. En revanche, l’occasion a été saisie pour faire la présentation, la revue et la validation des outils de gestion des données communautaires (Base des données, fiche mensuelle de bilan et de restitution au niveau communautaire) avec les équipes locales du MSP. + +2.Supervision de la formation des agents de santé communautaire du 23 au 27 janvier 2020 +En regard du nombre et du niveau d’études des 86 apprenants, la formation a été réalisée en 2 pool de 43 ASC. La facilitation des modules a été renforcée par l’appui de 4 staff de l’Unicef dont 3 du Bureau de Zone de Moundou. L’atelier de formation a été ouvert et clôturé par Monsieur le Préfet du Département de Guéni en présence de plusieurs de ses collaborateurs locaux (S/Préfet, Maire, Commissaire de Police, Chef de Canton, etc.). + +Le test de niveau des 86 apprenant au début de la formation a mis en exergue des insuffisances de connaissances concernant la perception de l’ASC dans sa communauté (ACS est l''infirmier du village), le minimum de CPN à faire par une femme enceinte avant l’accouchement, les signes de danger chez une femme enceinte et les moyens de prévention contre le paludisme, la perception des apprenants sur le colostrum, le moment de lavage des mains relatif aux repas et l’importance de support pendant les causeries éducatives. Ce sont au total 48% des participants (41/86) qui ont donné au moins 50% des réponses justes aux questions du pré-test. + +Six modules de formation sur les sept prévus ont été dispensés. La méthodologie utilisée comprend les présentations Powerpoint, les séances de réflexion en plénière sur des histoires des pratiques négatives et celles positives les travaux de groupe et des démonstrations. Les thèmes développés pendant la formation sont relatifs : +A l’approche « Communauté Amie des Enfants » et ses implications : Rôle et responsabilité de l’ASC dans le système de santé, Outils de travail et activités préparatoires des ASC et L’ASC comme agent de changement de comportement +A la promotion des soins pour la femme enceinte (Rôle de l’ASC dans la consultation prénatale recentrée, Rôle de l’ASC dans l’accouchement, rôle de l’ASC dans les Soins Obstétricaux et Néonatals d’Urgence (SONU) et le rôle de l’ASC dans la consultation postnatale) ; +A la promotion des soins pour le nouveau-né : l’avantage du lait maternel pour le bébé, la bonne pratique de l’allaitement maternel +Prendre soin du nouveau-né, les signes de danger chez un nouveau-né et la délivrance systématique des actes et bulletins de naissance +A la promotion des soins pour l’enfant notamment la promotion et le suivi de l’état vaccinal de l’enfant, la rechercher les signes de malnutrition aigüe sévère, la nutrition des enfants, la supplémentation en vitamine A et déparasitage des enfants et les signes de danger chez l’enfant ; +A la promotion des soins pour le ménage (utilisation de moustiquaires imprégnées à longue durée d’action, l’utilisation des toilettes/latrines et lavage des mains avec de l’eau propre et du savon) ; +Aux bonnes techniques de communication interpersonnelle et en groupe (conseils pour une bonne communication, étapes de la visite à domicile et réunion de groupe de femmes dans un cycle participatif d’apprentissage et d’action ) ; +A l’utilisation et le remplissage des registres communautaires notamment la tenue du registre communautaire et le dénombrement initial. + +Cependant, le dernier module sur la production du rapport mensuel et l’utilisation et partage des données produites n’a pas été abordé car la durée de la formation a été réduite de 5 à 4 jours suite à une erreur décelée dans le budget. + +Les résultats d’évaluation des connaissances des apprenants après la formation montrent que 90% des ASC (77/86) ont eu au moins 50% de réponses justes contre 41% au prétest. Les résultats relèvent que les notions de base sur la promotion des soins pour la femme enceinte méritent d’être rappelées à chaque supervision de proximité au sein des communautés. Globalement, 67% des réponses données sont justes contre 47% au prétest. + +3.Mise à jour de la base des données communautaires de la zone de Bénoye Urbain du 29 au 30 janvier 2020 +Durant 3 jours, une équipe composée de 7 personnes (4 Staff/Unicef, 2 Points Focaux CFC/RTM (DSP/LOC et DS/Bénoye) et du Mobilisateur Communautaire) a passé en revue tous les enregistrements des registres des 14 communautés. Plusieurs manquement ont été relevés du fait de l’insuffisance qualitative et quantitative de supervision des ASC et du Mobilisateur communautaire. Malgré le redressement fait, il est convenu d’organiser une session de transfert des données corrigées dans des nouveaux registres communautaires à chaque quartier. Cela constituera une base des données de 2020 et une occasion de recyclage des ASC surtout qu’il y a de remplacement suite au désistement des certains anciens ASC. Le mobilisateur reversera les données de janvier 2020 dans le masque de base des données et de monitorage des 7 interventions qui sera mis à sa disposition après finalisation. + +4. Mise en place des outils de suivi des interventions y compris les mécanismes d’assurance qualité des données communautaires le 31 janvier 2020 +Des discussions avec les acteurs locaux, les bases de l’évaluation de la performance au niveau de chaque Centre de Santé et de chaque Mobilisateur Communautaire à travers le travail au niveau communautaire (synthèse du travail des ASC) ont été arrêtées et traduites dans le masque de base des données et de monitorage des 7 interventions pour chaque zone de mise en œuvre. Il en est de même pour le renforcement des mécanismes d’assurance qualité des données par l’instauration d’un système rotatif de mission de supervision mensuelle par le Staff du Bureau de Zone de l’Unicef de Moundou. En outre, en réponse aux besoins supplémentaires exprimés par les acteurs de terrain, chaque masque sera amélioré par une incrémentation en Dashboard avec graphique pour chaque communauté (performance de binômes d’ASC de chaque communauté). +Pour la zone de Krim-Krim, le mobilisateur communautaire a besoin d’un renfort périodique en ressources humaines supplémentaires pour assurer une supervision de qualité des ASC au regard du nombre élevé de communautés à suivre par mois (55 à Krim-Krim contre 14 à Bénoye Urbain).', '', 'approved', '2020-01-13', '2020-01-25', 'Appui à la formation des ASC et visite programmatique de mise en œuvre de l''initiative CFC/RTM dans la DSP/LOC', 'La mission s''est effectuée avec un décalage d''une semaine tout en gardant la durée prévue', false, false, '2019/272', false, '{}', 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 177097, 12132, '2019-12-12 16:32:26+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (124, '2019-10-23 09:21:41.720565+00', '2019-12-04 13:43:23.213778+00', NULL, '2019-10-23 09:22:06.214377+00', NULL, '2019-11-07 14:19:32.589077+00', '', '', '', 'Les principes du partenariat ne sont pas totalement compris par les partenaires et l’atelier a été une opportunité pour situer les partenaires sur les principes fondamentaux du partenariat ; +Le renforcement de communication avec les autorites locales est un gage d''appropriation des acquis de principaux resultats issu de l''ensemble du partenariat avec les ONG', '', 'completed', '2019-10-28', '2019-10-31', 'Participer a l''atelier de la revue des PCA Nutrition', '', false, false, '2019/162', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12528, '2019-10-23 09:22:06.214387+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (186, '2019-12-04 07:31:29.591235+00', NULL, NULL, '2019-12-04 07:31:29.637409+00', NULL, '2019-12-04 13:48:20.103147+00', '', '', '', '', '', 'approved', '2019-12-14', '2019-12-18', 'Formation du personnel de Bol en HACT, nouvelles procedures de partenariat et utilisation de ECM', '', false, false, '2019/246', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 177097, 4606, '2019-12-04 07:31:29.637417+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (193, '2019-12-06 10:23:28.380017+00', NULL, NULL, '2019-12-06 10:23:28.394461+00', NULL, '2019-12-06 11:00:57.883828+00', '', '', '', '', '', 'approved', '2019-12-08', '2019-12-19', 'Riposte contre la rougeole couplée à la Vitamine A à Moundou', '', false, false, '2019/257', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 8462, 28663, '2019-12-06 10:23:28.39447+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (191, '2019-12-06 10:16:11.977539+00', NULL, NULL, '2019-12-06 10:16:22.801641+00', NULL, '2019-12-06 10:24:38.884804+00', '', '', '', '', '', 'approved', '2019-12-08', '2019-12-19', 'Supervision riposte rougeole à Bahai', '', false, false, '2019/255', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 12058, '2019-12-06 10:16:22.801649+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (196, '2019-12-06 13:36:22.41901+00', NULL, NULL, '2019-12-06 13:36:34.684503+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-12-08', '2019-12-19', 'Supervision de la campagne Rougeole couplée à la supplémentation de la Vitamine A', '', false, false, '2019/260', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 11436, 20819, '2019-12-06 13:36:34.684512+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (10, '2019-10-01 16:53:26.258389+00', '2019-11-29 10:08:26.22389+00', NULL, '2019-10-01 16:53:45+00', NULL, '2019-10-01 18:07:39+00', '', '', '', 'Description de la mission: +Dans le cadre de la prévention de malnutrition, l’UNICEF en partenariat avec l’ONG Alliance Sahélienne de Recherche Appliquée et de Développement Durable (ASRADD) expérimente une approche novatrice dénommée de « « Prévention de la malnutrition par une approche à base communautaire centrée sur les 1000 premiers jours à travers les « Care Group », Femmes et Hommes Amis des Bébés (FHAB) ». Cette approche mis en œuvre dans la province de Guera et plus précisément dans les districts sanitaires de Mongo et Mangalme vise à accompagner les femmes à se doter des capacités nécessaires pour adopter des comportements favorables à une bonne santé et nutrition pour elle-même et leurs progénitures. +Afin d’évaluer l’impact de cette initiative, une enquête de couverture sur les pratiques familiales essentielles dans la zone d’intervention avec la méthode LQAS (Assurance par lot pour l’assurance qualité) a été conduite du 5 au 13 octobre 2019. Etant donné que le partenaire ne disposait des capacités techniques pou conduire ce type d’enquête, cette mission a été organisée pour fournir un appui technique au partenaire ASRADD et assurer la qualité de l’information collectée. +La mission a commencé par une session préparatoire avec l’équipe cadre d’ASRADD le 4 octobre suivi d’une formation de deux jours sur la méthodologie LQAS. Cette session a permis de finalise l’échantillonnage de s’entendre sur les données à collecter à travers un questionnaire et le calendrier de collecte. Sous la conduite de l’UNICEF, les enquêteurs, superviseurs et l’équipe de coordination de ASRADD ainsi qu’un Représentant du ministère de la santé ont pu améliorer leur connaissance et compétence dans la conduite des enquêtes de couverture avec la méthode LQAS. La méthodologie ainsi que les différentes étapes de la collecte ont été passées en revue et la composition des équipes finalisées. Nous avons enfin procédé au partage des villages a enquêter. La journée a pris fin par un test de standardisation et une phase pratique d’utilisation du HemoCue. +Le lendemain, les équipes ont commencé la collecte des données dans les différents villages sélectionnés. Nous avons ainsi pu superviser la collecte des données et apporter quelques rectificatifs sur les insuffisances que nous avons observé. De façon général, le planning a pu être suivi comme initialement prévu avec juste quelques changements pratiques. Ainsi, au niveau de la zone de responsabilité du centre de sante de Benda, le village Dofadé inaccessible a été remplacé par Kikingué. Au niveau de la zone de responsabilité du centre de sante de Barbeza, un village non care groupe de 12 femmes n’a pu être enquêtées car non existant. Un choix secondaire a été fait et le centre de sante de Croix Rouge proche de Barbeza a été retenu pour enquêter 19 femmes dans 03 villages non care groupe. Cela été signalé a ASRADD sur la qualité des données fournies lors du debriefing de fin de journée. Au niveau de la zone de responsabilité du centre de sante de Niergui, on s’est rendu compte que le village de Dibere appartient à la zone de responsabilité de Bougou et un autre village a été tiré au hasard pour le remplacer. Le village de Diet a été celui choisi pour remplacer Diberé. Au niveau de la zone de responsabilité du centre de Eref, les villages Rouaba, Adalla et Hille Fidez étaient soient inexistants soient inaccessibles. Ils ont été respectivement remplacés par Abaya, Bourdei. En ce qui concerne les difficultés rencontrées lors du déroulement de l’enquête, des solutions ont été apportées séance tenante. Par exemple, il n’y avait pas de fiches de référence pour les cas MAS et les anémies sévères. On a ainsi donné des instructions pour l’utilisation de feuille pour référer au centre de santé. On a aussi noté les insuffisances suivantes +- Incompréhension parfois du questionnaire électronique par certains enquêteurs : briefing les soirs à toutes les équipes et mis au point des incompréhensions. +- Non information de certaines autorités sanitaires et responsables de centre de santé. +- Les enquêteurs disaient avoir été recrutés pour 10 jours (2 jours de voyages, 2 jours de formation et 6 jours d’enquête) et le planning se déroulait sur 11 jours (2 jours de voyage, 2 jours de formation et 7 jours d’enquête). Ils ont pu trouver une entente avec ASRADD. + +Tous ces manquements ont pu trouver des solutions suite aux séances de debriefing sur le terrain. Au cours de la collecte des données, nous avons visité quelques centres de santé +En marge de la supervision de l’enquête LQAS, j’ai pu visiter quelques centres de santé dans le district de Mongo. J’ai pu confirmer la présence de RUTF dans deux des trois centres de santé (Mongo centre, Niergui et Domaye) visités conformément à la directive de la Représentante de repositionner le RUTF dans les centres de santé de Mongo afin de faciliter la reprise de la prise en charge de la MAS avec le RUTF en lieu et place du RUCF du PAM. Suite à ce constat, nous avons demandé au PO nutrition la raison de cette exécution partielle de la directive. J’ai ainsi été informé que tous les 17 UNA du District de Mongo et c’est seulement les 7 que le PAM a ajouté qui ne l’était pas encore. Toutefois, 200 cartons sont déposés au niveau de la délégation pour un acheminement vers ces centres de santé. Nous avons instruit les collègues à procéder à la location de pick-up pour envoyer les intrants vers les centres de santé sans attendre. + +Suite à cette mission a Mongo, nous sommes partis a Bokoro ou nous avons accompagné les Représentants de DFID a la visite du centre de santé de Ngoura. Cette visite a été l’occasion pour faire le point sur la mise en œuvre du programme PCIMAS dans le district de Bokoro avec la contribution de DFID. Le partenaire a pu ainsi discuter avec les autorités dont le préfet, le maire, le médecin chef de district et le Responsable du centre de santé. Se basant sur une présentation faite le Préfet, le partenaire est revenu sur la nécessité de renforcer la contribution de l’etat et renforcer ainsi l’intégration dans le système de santé. La visite s’est poursuivie à l’école ou l’équipe de DFID a rencontre le directeur, les enseignants et présence des élèves. Cela a été une opportunité pour discuter du système éducatif et des défis qu’il rencontre. +La mission s’est terminée par une séance de discussion au niveau de la préfecture ou le médecin de district a fait une présentation générale du district en termes de résultats atteints mais aussi des défis et difficultés rencontrés dans l’exercice de leur travail. Le Préfet a ensuite pris la parole pour compléter sur les aspects administratifs et de gestion du département. Il a terminé ses propos pour un plaidoyer en faveur d’un appui du partenaire aux services de sociaux de base qui souffrent d’un manque de moyens. Prenant la parole, le représentant de DFID a salué la collaboration entre les acteurs gouvernementaux et les partenaires dont l’UNICEF avant de réaffirmer l’engagement de la Grande Bretagne à accompagner le T[[schema]] +Principaux resultats +- Les responsables de l’ONG ASRADD et du ministère de la santé ont été formés sur la méthodologie LQAS +- Le calcul de l’échantillon, le calendrier de collecte et la sélection des villages ont été finalisés et utilises dans la conduite de l’enquête +- La collecte des données s’est déroulée conformément à la planification +- La mission avec DFID a été exécutée conformément au plan préalable défini avec le donateur +Recommandations: + +Recommandation 1: Faire le suivi de l’analyse des données et la publication du rapport +Responsable: :Nutrition Surveillance Officer +Echeance: 30 Novembre 2019 +Recommandation 2: Présenter les constats observés sur les ruptures en intrants du PAM dans le district de Mongo +Responsable Nutrition Manager +Echeance: Prochaine reunion du comite technique', '', 'completed', '2019-10-03', '2019-10-11', 'Field mission to support the coverage survey using LQAS method', '', false, false, '2019/10', false, '{}', 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11647, 11672, '2019-10-01 16:53:45+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (41, '2019-10-03 09:06:48.773172+00', '2019-12-07 09:45:37.513545+00', NULL, '2019-10-03 09:22:46.04361+00', NULL, '2019-10-08 11:24:09.189242+00', '', '', '', '4. Progrès vers l’atteinte des résultats + +Cette mission d’Appui C4D et de suivi des recommandations issues de la Vérification Programmatique au niveau des DS des Provinces du Ouaddaï et du Wadi Fira en juin 2019 dans le cadre de la mise en œuvre des activités PTME/é-TME a permis d’avoir les résultats suivants : + + Quelques axes d’appui aux interventions communautaires sont définis à la suite de la rencontre d’échanges avec l’équipe cadre du DS d’Abougoudam et les relais communautaires ; + Des propositions favorisant l’engagement des organisations de femmes pour la promotion de la santé maternelle et infantile, de la PTME (Prévention de la transmission du VIH de la Mère à l’enfant) sont faites en soutien aux interventions communautaires dans le DS d’Abougoudam ; + Des stratégies sont proposées avec la contribution des jeunes et adolescents ainsi que des responsables de la Maison de Culture Ahmat Pacos d’Abéché en appui aux interventions de communication et l’élaboration de la carte de vulnérabilité en milieu jeune ; + Une histoire d’intérêt humain et un social média package sont produits valorisant les interventions communautaires et PTME à Abeche et Abougoudam ; + Des contraintes/difficultés et les forces dans la mise en œuvre des interventions communautaires et C4D sont identifiés. + +Lundi 14 octobre 2019 – Abeche, Maison de la Culture Ahmat Pecos +Rencontre avec les pairs éducateurs de la Maison de Culture Ahmat Pecos d’Abeche. Sur 30 pairs éducateurs, 12 ont pris part à cette rencontre parmi lesquels 5 jeunes filles. Echanges sur le travail des pairs éducateurs, les difficultés rencontrées et les recommandations pour améliorer. +1. Difficultés +- Difficultés des pairs éducateurs à maîtriser leurs cibles. Tenue des séances dans les carrefours, les écoles, les lycées, au marché. Pas de programme spécifique de mise en oeuvre. +- Mauvaise appréhension du travail des paires éducateurs par la population ; +- Rupture et Cherté de préservatifs paquet de 4 à 250 fcfa ; (Voir le BZ d’Abeche) +- Besoins de dépliants pour distribuer aux jeunes après les séances de causeries éducatives ; +2. Recommandations +- Fournir des badges pour la reconnaissance du travail des pairs éducateurs ; +- Fournir la fiche de rapportage pour améliorer le suivi des interventions de causeries éducatives ; +- Renforcer les interventions auprès des PS mineurs pour améliorer leurs niveaux de connaissance (identifier des pairs éducateurs dans cette communauté pour faire ce travail de communication) +- Améliorer les séances de causeries en élaborant des plannings des pairs éducateurs (Séances mensuelles avec 12 – 15 personnes avec 5 séances sur les 5 thèmes principaux qui donnent des connaissances nécessaires pour le plan de prévention) +- Fournir la Loi 019 ; +- Renforcer le suivi des PVV et leur traitement (Ex de Meram, une dame séropositive : l’inviter à faire dépister son enfant de 3 ans et la suivre pour renforcer ses capacités pour négocier des rapports sexuels protégés). +Mardi 15 octobre 2019 – Abougoudam +Rencontre avec le Point Focal PTME du DS d’Abougoudam. Briefing sur l’agenda de la mission. Adaptation de l’agenda avec le programme du Centre de Santé et des acteurs à rencontrer. Dans le cadre de la pTME et de la PECP, 4 femmes séropositives sont suivies régulièrement au DS d’Abougoudam. 2 d’entre elles ont eu des enfants et ces deniers ont été dépistés à l’appareil Gen’Xpert. + +Mercredi 16 octobre 2019 – Abougoudam +Interview avec une femmes séropositive sur le suivi de son traitement et la pratique de la PTME. Elle est suivie par le Centre de Santé depuis 8 ans et a eu deux enfants séronégatifs. Dans un contexte où les questions de santé sexuelles sont taboues et de discrimination à l’égard des personnes séropositives, elle fait office de figure de proue pour son courage et sa détermination. + +Echange avec la Sagefemme sur les questions de consultations prénatales. Le Centre de Santé reçoit en moyenne 100 femmes par mois pour la CPN et entre 30-40 femmes pour les accouchements. Plus d’une vingtaine de femmes viennent pour la planification familiale par mois. + +Rencontre avec les relais communautaires. Le DS d’Abougoudam dispose de 8 relais communautaires dont 3 femmes qui couvrent 29 villages. En collaboration avec le Centre de Santé, les chefs de villages et le COGES (Comité de gestion), ces relais communautaires organisent des séances de dialogues communautaires. Ils rencontrent des difficultés à couvrir les 29 villages dont certains un peu éloignés d’Abougoudam. + +Rencontre avec les l’Union des groupements des femmes d’Abougoudam. Plus d’une trentaine de femmes ont répondu à cette rencontre d’échanges sur leurs activités quotidiennes en appui à la PTME, la CPN, la vaccination, la lutte contre le mariage des enfants, la malnutrition. Elles profitent des rencontres ordinaires de femmes ou des cérémonies de baptêmes pour partager les connaissances et aider les femmes à changer de comportement. Toutefois, la plupart n’ont pas reçus de formation sur ces thématiques. + +Jeudi 17 octobre 2019 – Abeche, Maison de la culture Ahmat Pecos +Production de contenus : interviews avec deux jeunes dames séropositives, dont l’une habitante une maison close et l’autre servante dans un maquis sur le suivi de leur traitement et leur vie sexuelle. Interview aussi avec un adolescent de 17 ans, homosexuel, exploité dans une maison close. Ces interviews révèlent un faible niveau de connaissance de ces jeunes et adolescents présents dans le circuit des professionnels de sexe et leur faible capacité à négocier des relations sexuelles protégés.', '', 'completed', '2019-10-14', '2019-10-18', 'Mission d''Appui C4D Abeche et Abougoudam', '', false, false, '2019/45', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11436, 20819, '2019-10-03 09:22:46.043633+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (188, '2019-12-04 14:24:18.027609+00', NULL, NULL, '2019-12-04 14:26:25.846109+00', NULL, '2019-12-09 07:19:22.799628+00', '', '', '', '', '', 'approved', '2019-12-23', '2019-12-26', 'Formation du personnel de Moundou en HACT, nouvelles procedures de partenariat et utilisation de ECM', '', false, false, '2019/248', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11719, 7798, '2019-12-04 07:35:57.823801+00', NULL, 4); +INSERT INTO [[schema]].t2f_travel VALUES (58, '2019-10-07 14:24:44.986945+00', NULL, NULL, '2019-10-07 14:25:20.424285+00', '2019-12-09 09:42:39.49937+00', NULL, 'No travel date due to SMR and WASH REview', '', '', '', '', 'rejected', '2019-10-21', '2019-10-24', 'Visite programmatique et suivi des activtes ATPC et WASH in Nut au Kanem', '', false, false, '2019/71', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11399, 9148, '2019-10-07 14:25:20.424293+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (170, '2019-11-21 12:24:52.887221+00', '2020-01-06 09:58:26.502426+00', NULL, '2019-11-21 12:25:23.45819+00', NULL, '2019-12-09 09:27:16.997525+00', '', '', '', ' Le partenaire a reconnu le retard accusé pour certaines activités, il s’engage à finaliser ces activités à condition que l’UNICEF leurs cumule les deux tranches pour leur permettre de rattraper le retard ; + Le partenaire s’engage à finaliser avec la certification de tous les villages d’ici fin janvier 2020,', '', 'completed', '2019-12-16', '2019-12-23', 'Visite programmatique SIF et suivi declenchement ATPC Comite Moyen', '', false, false, '2019/226', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11399, 5064, '2019-11-21 12:25:23.458199+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (84, '2019-10-10 07:41:52.307954+00', '2019-12-11 07:38:31.994991+00', NULL, '2019-10-10 07:41:52.336474+00', NULL, '2019-10-10 08:21:55.714091+00', '', '', '', 'La vérification programmatique a eu lieu du 22 au 24 à Douguia. +Cette formation a rassemblé 43 partenaires gouvernementaux et des organisations de la société civile de N’Djamena. +Durant les 3 jours de formation, les 43 participants ont : + +- Maitrisé les directives et procédures de gestion conformes au HACT (des agences du SNU) et le remplissage de formulaires FACE pour les modalités des remises des fonds ; +- Maitrisé la checklist pour les différentes catégories des dépenses et pièces justificatives ; +- Maitrisé la comptabilité de base afin d’enregistrer, classifier, analyser et produire les synthèses (par ex. tableau comparatif de budget et dépenses) et rapport financier + +RECOMMANDATION : + +- Faire le suivi avec les Sections / Unités afin de contacter tous les partenaires de la société civile nationale à s’enregistrer sur la Portail des Partenaires des Nations Unies (UNPP), Responsable : Faba Vonki, Echéance : 29/02/2020 +- Faire le suivi pour que le MEPD puisse justifier avant le 31 décembre 2019, les dépenses liées à la formation en HACT, Responsable : Faba Vonki, Echéance : 30/12/2019', '', 'completed', '2019-10-21', '2019-10-25', 'Formation des partenaires de N''Djamena en HACT, Gestion Financiere et Comptabilise de base', '', false, false, '2019/111', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 177097, 4606, '2019-10-10 07:41:52.336484+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (7, '2019-09-30 16:46:46.696059+00', '2019-10-30 10:45:57.450664+00', NULL, '2019-09-30 16:46:46.790467+00', NULL, '2019-10-01 16:30:10.16805+00', '', '', '', 'La mission a realise: + + Bénoye : 6 séances de travail réalisées dont 1 avec les autorités communales, 3 avec les membres des communautés et 2 autres avec l’ECDS de Bénoye. + Krim-Krim : 7 séances de travail réalisées dont 1 avec les autorités administratives, 1 avec les autorités communales, 2 avec les membres des communautés, 1 avec les agents de sante communautaires et 2 autres avec l’ECDS de Laokassy. + Mise à jour la base des données communautaires : L’appui a été donne aux acteurs locaux pour 11 communautés de Krim-Krim. Le Mobilisateur, le PF du DS et le RPEV sont chargés de réaliser dans les 6 communautés restantes. Le masque de saisie des données a été corrigé et mis à la disposition du mobilisateur pour utilisation. La PF de la DSP/LOC est mandatée d’appuyer l’équipe de Bénoye pour la correction et validation des données de Bénoye Urbain avant la fin du mois d’octobre 2019. + +En termes d''offre de services, les problemes se resument a i) la rupture en vaccins et la défaillance su système d’approvisionnement sont récurrents et handicapent l’atteinte des résultats; ii) la non prise en charge des enfants dépistés malnutris dans les centres de santé de Bénoye et Krim-Krim ; iii) l’absence d’une SFDE ou ATS/Accoucheuse au centre de santé de Bénoye Urbain ; non-respect de calendrier vaccinal dans l’administration des vaccins et remplissage de carte de vaccination par les agents vaccinateurs ; iv) les centres de santé de Bénoye et Krim-Krim ne disposent pas de réfrigérateurs ; v) a la rupture de registre d’acte de naissance ; vi) l''absence de motos pour renforcer les activités en stratégie avancée et la supervision des ASC ; + +Concernant la demande , les problemes se rapportent i) a la faible demande de services de CPN et d’accouchement assistés et non présentation des nouveau-nés au centre de santé pour une prise en charge postpartum par la majorité des femmes enceintes ; ii) aux plateformes communautaires insuffisamment opérationnelles ; iii) au fait que les pratiques familiales essentielles à promouvoir ne sont pas harmonises et systématiquement promues par les ASC, les responsables administratifs et coutumiers et les agents de santé + +S''agissant de l''environnement favorable les problèmes concernent i) l''insuffisance de communication entre les acteurs locaux (Délégation, District, Centre de Sante- Mobilisateur – ASC) et les communautés ; ii) l''insuffisance de supervision régulière et de qualité entrainant la démotivation et relâchement de certains ASC ; iii) la faiblesse articulation « Plateformes Communautaires – CDA » pour une meilleure appropriation par les structures décentralisées de gouvernance locale ; iv) la faible capacité d’organisation des services de certains agents de santé au niveau des centres de santé et du district au niveau de Bénoye. + +Pour la qualité , on note l''interruption d’utilisation des services (CPN, Vaccination des enfants de 0 à 11 mois) ; ii) la non maitrise du calendrier vaccinal par certains agents vaccinateurs et iii) la rupture d’approvisionnement en intrants, médicaments, cartes de vaccination et de registres d’actes de naissance', '', 'completed', '2019-10-14', '2019-10-19', 'Suivi des activités de CFC/RTM et des indicateurs CSD dans le BZ/Moundou', '', false, false, '2019/7', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 177097, 12132, '2019-09-30 16:46:46.790477+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (490, '2020-04-21 15:30:42.368546+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '0810/AO/05/886/004', '', 'planned', '2020-04-27', '2020-04-29', 'Mission de reception definitive des EAE dans la zone de Gore', '', false, false, '2020/679', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 11859, 13372, NULL, NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (168, '2019-11-19 15:04:17.291323+00', '2019-12-09 11:23:28.277792+00', NULL, '2019-11-19 16:01:26.228776+00', NULL, '2019-11-20 14:58:29.137232+00', '', '', '', 'Introduction +Dans le cadre du renforcement du cadre institutionnel et opérationnel de la protection sociale au T[[schema]], une Stratégie Nationale de Protection Sociale (SNPS) a été élaborée, validée et adoptée en Conseil des Ministres en juillet 2015. Cependant, le constat est que la plupart des acteurs clés de mise en œuvre de la SNPS ont une faible connaissance des mécanismes et outils de la protection sociale. C’est pourquoi, afin de pallier cette situation, il était prévu dans le Programme de Coopération 2017-2021 entre le Gouvernement du T[[schema]] et l’UNICEF, le renforcement des capacités en protection sociale de ces acteurs afin de permettre à ceux-ci de mieux participer à la mise en œuvre de cette stratégie. + +C’est dans ce contexte que le Ministère de l’Economie et de la Planification du Développement avec l’appui de l’UNICEF a lancé une série d’ateliers de renforcement de capacités en protection sociale aux parties prenantes. Ainsi, trois sessions de formation ont été organisées en 2017 et 2018 respectivement à N’Djamena, Moundou et Mongo et ont permis de renforcer les capacités sur les instruments et les mécanismes de la protection sociale d’environ cent trente acteurs, issus du parlement national, des structures administratives, de la société civile et des responsables des projets et programmes concernés par la protection sociale. C’est dans cette logique que s’est déroulée du 25 au 30 novembre 2019 à Dandi l’atelier de formation en protection sociale, destinée principalement aux acteurs clés de quatre (4) provinces (Bahr Ghazel, Kanem, Hadjer Lamis, Lac) de la zone Ouest du pays. L’atelier a regroupé 38 participants représentant les structures administratives, les ONGs et la société civile. Il a été facilité par le bureau UNICEF T[[schema]] avec l’appui du Ministère de l’Economie et de la Planification du Développement. + +Methodologie et contenu de la formation +La méthodologie utilisée lors de cet atelier a consisté en des présentations et discussions en plénière suivies des travaux de groupe. Les différentes sessions ont porté sur les concepts et les instruments de la protection sociale, la protection sociale pour la gestion des risques, la protection sociale réactive aux chocs, la cohérence entre PS et sécurité alimentaire/ nutritionnelle , les différents mécanismes des transferts sociaux, le ciblage, les conditionnalités des transferts sociaux, les expériences de transferts sociaux en Afrique en général et au T[[schema]] en particulier (cas des projets filets sociaux, PARCA et DIZA) , les enjeux liés au financement des programmes/ projets de protection sociale, le suivi et évaluation et un aperçu sur la SNPS. + +Recommandations +A l’issue de cette formation, un certain nombre de recommandations ont été formulées en vue d’améliorer les prochaines formations. Il s''agit de: + Faire plus d''exercices pratiques, notamment sur le ciblage ; + Accorder plus du temps (une semaine) à la formation.', '', 'completed', '2019-11-25', '2019-11-30', 'Faciliter la formation en protection sociale des acteurs clés des provinces (Lac, Kanem, Bahr El Gazal et Hadjer-Lamis)', 'Draft TdR Atelier de formation en protection sociale; BSAFE certificate', false, false, '2019/224', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11607, 5074, '2019-11-19 16:01:26.228827+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (80, '2019-10-09 07:47:56.851891+00', '2019-12-10 12:52:30.316412+00', NULL, '2019-10-09 07:47:56+00', NULL, '2019-10-16 08:01:35.826408+00', '', '', '', 'La mission s''etait passee comme planifiee. Elle a permis d''evaluer le progress realisé, de verifier l''execution des recommendation de la precedente mission et d''en faire d''autres.', '', 'completed', '2019-10-18', '2019-10-21', 'Appuyer a la mise en oeuvre des activites sur le terrain', '', false, false, '2019/105', false, '{}', 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11399, 14239, '2019-10-09 07:47:56+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (206, '2019-12-10 16:00:32.821287+00', NULL, '2019-12-10 16:06:25.61732+00', '2019-12-10 16:00:46.979453+00', '2019-12-10 16:05:31.26332+00', NULL, 'correct dates of the mission', 'error data', '', '', '', 'cancelled', '2019-12-21', '2019-12-21', 'suivi programmatique revue a mi-parcours du PND a Dandi', '', false, false, '2019/269', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11607, 8721, '2019-12-10 16:00:46.979462+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (95, '2019-10-14 12:01:10.428113+00', '2019-12-26 17:01:49.214861+00', NULL, '2019-10-14 12:07:10.190544+00', NULL, '2019-10-14 16:33:09.006547+00', '', '', '', 'la mission n''a pas eu lieu', '', 'completed', '2019-10-28', '2019-10-28', 'participation a la reunion sous cluster wash', '', false, false, '2019/122', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13512, '2019-10-14 12:07:10.190553+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (88, '2019-10-10 13:50:23.815758+00', '2020-01-20 11:43:16.502902+00', NULL, '2019-10-10 13:50:41.816763+00', NULL, '2019-10-10 14:32:07.032578+00', '', '', '', 'La mission s''est bien passee et les points d''action ont ete suivi et les actions prises', '', 'completed', '2019-10-17', '2019-10-30', 'Identification des participants à la formation sur les urgences et du lancement du Système d’Alerte Precoce (SAP)', '', false, false, '2019/115', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11347, 14700, '2019-10-10 13:50:41.816774+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (198, '2019-12-09 11:25:06.956435+00', NULL, NULL, '2019-12-09 11:26:47.943695+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-12-17', '2019-12-22', 'Assurer le coatching du nouveau gestionnaire et aider à la liquidation de DCT agé de plus de 5mois.', '', false, false, '2019/262', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11436, 23059, '2019-12-09 11:26:47.943706+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (304, '2020-02-28 11:29:20.907037+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-02-04', '2020-02-07', 'Spot Check DSP Hadjer Lamis', '', false, false, '2020/383', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11672, 5076, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (200, '2019-12-09 15:38:59.103417+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2019-12-10', '2019-12-16', 'Field mission for documenting the launch of measles vaccination campaign and the launch of a child-development flour', '', false, false, '2019/264', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 28663, 210807, NULL, NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (219, '2020-01-31 11:46:25.581719+00', NULL, NULL, '2020-01-31 11:46:44.884305+00', NULL, '2020-02-06 18:02:30.446277+00', '', '', '', '', '', 'approved', '2020-02-06', '2020-02-17', 'Prendre part a la reunion du Reseau Education sur les KR4C', '', false, false, '2020/284', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12059, '2020-01-31 11:46:44.884314+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (225, '2020-02-10 08:01:31.029249+00', NULL, NULL, '2020-02-10 08:01:31.045851+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-02-23', '2020-02-29', '3. Objectifs +- Faire une visite programmatique +- Visiter toutes les UNT de Sila avec l’appui en RH +- Evaluer l’UNT', '', false, false, '2020/290', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 25166, '2020-02-10 08:01:31.045857+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (238, '2020-02-13 11:31:10.255538+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-02-13', '2020-02-15', 'Participation l''évaluation MIRA à Fourkouloum, Malmarie et Kaya 2, Département de Kaya, Province du Lac au T[[schema]] du 14 f', '', false, false, '2020/303', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 25198, NULL, NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (229, '2020-02-10 10:10:43.502451+00', NULL, NULL, '2020-02-10 10:10:43.516607+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-02-11', '2020-02-11', 'Conduire la mission conjointe OCHA, PAM, UNICEF, FAO, OMS dans le site de Moura', '', false, false, '2020/294', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 8725, '2020-02-10 10:10:43.516614+00', NULL, 6); +INSERT INTO [[schema]].t2f_travel VALUES (207, '2019-12-10 16:07:32.854046+00', NULL, NULL, '2019-12-10 16:10:18.014278+00', NULL, '2019-12-10 16:11:44.683891+00', '', '', '', '', '', 'approved', '2019-12-16', '2019-12-21', 'suivi programmatique revue a mi-parcours du PND a Dandi', '', false, false, '2019/270', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 177097, 8721, '2019-12-10 16:10:18.014287+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (205, '2019-12-09 20:23:09.890178+00', NULL, '2019-12-09 21:48:14.585869+00', NULL, NULL, NULL, '', 'duplication with another trip', '', '', '', 'cancelled', '2019-12-16', '2019-12-19', 'Faciliter l’atelier de pré-revue du plan de Développement de la Province du Ouaddaï', '', false, false, '2019/268', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11607, 5074, NULL, NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (167, '2019-11-16 16:06:03.832426+00', '2019-12-26 16:56:38.699651+00', NULL, '2019-11-16 16:06:03.960645+00', NULL, '2019-11-28 12:44:04.690963+00', '', '', '', 'la mission s''est bien deroulee.', '', 'completed', '2019-11-17', '2019-11-22', 'Appui la mission de la specialist cholera et la formation ATPC', '', false, false, '2019/223', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13512, '2019-11-16 16:06:03.960657+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (221, '2020-02-04 14:30:25.50288+00', NULL, NULL, '2020-02-04 14:30:25.555947+00', NULL, '2020-02-04 17:15:34.707777+00', '', '', '', '', '', 'approved', '2020-02-05', '2020-02-08', 'Evaluer la mise en place des cellules de soutien a l''allaitement maternel et des structures IHAB', '', false, false, '2020/286', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12528, '2020-02-04 14:30:25.555954+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (181, '2019-11-29 15:36:22.750147+00', '2019-12-31 14:32:53.985404+00', NULL, '2019-11-29 15:36:51.128649+00', NULL, '2019-12-09 10:44:04.067811+00', '', '', '', 'Les catastrophes causées par le climat, la crise économique et, surtout, les conflits armés, continuent de répondre aux besoins humanitaires, notamment le taux de faim, la malnutrition et les maladies. Dans un tel contexte, les quatre secteurs (WASH, Sante, Nutrition, Sécurité Alimentaire) de la présente note reconnaissent l''impératif de renforcer l''intégration. +Dans cette direction, et avec l’intention de mieux exploiter le potentiel d’intégration programmatique, le groupe composé des clusters Sécurité alimentaire mondiale, Nutrition, Santé et WASH vise à unir leurs forces et à intégrer les efforts en cours et soutenir une meilleure intégration programmatique intersectorielle. En outre, le groupe veillera à ce que les quatre clusters s’impliquent de manière cohérente lorsqu’ils s’intègrent aux interventions de développement et de résilience dans le but commun de réduire la vulnérabilité globale et les besoins non satisfaits, de renforcer les capacités de gestion des risques et de s''attaquer aux causes profondes des conflits. +Ce faisant, le groupe des quatre clusters profitera de toutes les initiatives d’intégration programmatique pertinentes, qu’il s’agisse d’activités aux niveaux national et sous-national, ou d’activités relevant du secteur humanitaire, du développement ou de stabilisation.', '', 'completed', '2019-12-01', '2019-12-06', 'participation a la formation sur l ''integration du cluster et la protection transversale', '', false, false, '2019/237', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13512, '2019-11-29 15:36:51.128658+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (457, '2020-03-30 11:13:00.369667+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-03-17', '2020-03-17', 'Suivi de la mise en place de l''ISSAB a l''Hopital de Pala', '', false, false, '2020/630', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 9984, 12528, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (204, '2019-12-09 17:30:05.27577+00', '2019-12-31 21:39:54.97006+00', NULL, '2019-12-09 17:30:27.860581+00', NULL, '2019-12-10 07:32:19.389161+00', '', '', '', 'Trip Report Mission Lancements Farine MANISA à Pala , Campagne rougeole a Moulkou et Supervision Campagne Rougeoles et SVAM dans les 2 Logones ( 2DS ) +Du 11 au 16 Décembre 2019 +Introduction : + +La mission s’inscrit dans le cadre de la Visite de la Représentante dans la zone Sud pour les lancements successifs de la farine MANISA à Pala (Mayo Kebbi Ouest), de la Campagne rougeole et SVAM a Moulkou (Mayo Kebbi Est), et la Supervision de Campagne rougeole et SVAM dans les DS de Moundou dans le Logone Occidental et de Larmana dans le Logone Oriental. + +- Visite à Pala (MKO) dans le cadre du Lancement de la farine MANISA, le 11 Décembre 2019: + +Dans le cadre de la prévention et la lutte contre la malnutrition, une initiative de transformation locale de farine enrichie est mise en œuvre par le Gouvernement t[[schema]]ien avec l’appui de 4 Agences du système des Nations Unies (FAO, PAM, OMS et UNICEF) avec l’appui de l’Union Européenne. Elle vise à renforcer la résilience des ménages les plus vulnérables en améliorant l’accès, la disponibilité, la stabilité et l’utilisation des aliments de compléments à haute valeur nutritive pour les enfants de 6 à 24 mois dans les régions de Mayo Kebbi Est, Mayo Kebbi Ouest, Kanem et Ouaddai. L’UNICEF s’occupe du volet renforcement de la demande de service et de la définition d’un cadre propice pour le soutien aux bonnes pratiques d’alimentation du nourrisson et du jeune enfant (ANJE). La présente mission concerne la zone Sud notamment les deux Mayo Kebbi. + +Les Ministres de la Santé et la Ministre de l’Agriculture accompagnés de leurs délégations respectives, du Gouverneur de la Province, des Représentants des Agences concernées, des autorités départementales et communales, des services techniques ont procédé par la voix du MSP au lancement officiel de l’intrant nutritionnel dont il a loué les vertus pour les enfants dont la tranche d’âges est ciblée. + +La mission UNICEF et ses partenaires ( Délégations Sanitaires, DS, Réseau des Journalistes, World Vision) ont saisi cette occasion pour visiter sur la route Pala-Fianga en partance pour Bongor, une UNA encadrée avec l’appui de l’UNICE, par World Vision au niveau d’un centre de santé et aussi pour échanger avec la communauté, les leaders traditionnels, les relais, les agents de l’ONG sur la mise en œuvre des activités et les résultats obtenus. + +- Lancement Campagne Rougeole et SVAM a Moulkou (MKE) le 12 Décembre 2019 : + +On note selon les rapports du Ministère de la sante, une persistance de l’épidémie de rougeole depuis avril 2018 malgré les différentes ripostes vaccinales dans 56/117 DS (2018) et 15/126 DS en 2019. Cette épidémie survient dans un contexte caractérisé par une couverture vaccinale faible (VAR 66% données administratives 2019, 37% ECV 2017) et une surveillance de faible qualité. +La riposte est couplée avec l’administration de la vitamine A et le déparasitage. Les carences en vitamine A exposant les enfants de la même cible la riposte aux infections et aux maladies courantes telles que la rougeole et la diarrhée contribuant l’augmentation de la mortalité infantile, le Ministère de la sante a pris l’option de saisir l’opportunité de cette riposte pour intégrer la supplémentation en vitamine A. + +La campagne ainsi lancée par le Ministre de la Sante après l’intervention de la Représentante de l’UNICEF à Moulkou en présence de certains cadres de son département, du Gouverneur, des autorités locales, du Délégué sanitaire et du personnel de Sante de la localité concerne pour l’instant 14 Districts sanitaires dont 13 dans la zone Sud couverte par le Bureau de zone de Moundou. + +Elle se donne pour objectif de circonscrire l’expansion de l’épidémiques de rougeole dans les districts cibles afin de protéger les personnes les plus à risque et contribuer à la réduction de la morbidité et de la mortalité liées à cette maladie. + +Pour parvenir à cet objectif, le Ministère de la santé, ses démembrements et l’UNICEF ont mis en place des équipes d’intervention, d’appui et de suivi pour s’assurer que : + +- Au moins 95% des enfants de 6 mois-5 ans soient vaccinées afin de contribuer à rompre la chaine de propagation de l’épidémie +- Au moins 95% des enfants de 6 mois-5 ans soient Supplémentés en vitamine « A » pendant la campagne +- 100% des déchets soient éliminés à la fin de la riposte dans chaque district +- Tous les cas de MAPI survenus au cours de la riposte soient pris e charge +- Au moins 95% des parents des districts cibles soient informés sur la riposte contre la rougeole + +La cible au niveau de la zone Sud est de 412.709 enfants sur les 424.507 visés par cette campagne, soit 97,22%. + +- Supervision Campagne dans les DS de Moundou et de Larmanaye du 13 au 15 Décembre 2019 : + +En plus du maillage déjà organisé en termes de supervision tant du côté de l’UNICEF que du Ministère et des structures sanitaires sur place, la Représentante s’est rendue sur plus d’une dizaine de sites dans 2 les DS , a coordonné depuis Moundou la supervision dans son ensemble, participé aux réunions de coordination de fin de journée qui se tiennent régulièrement au niveau du District Sanitaire de Moundou et contribué à la résolution de certains problèmes d’ordre pratiques et/ou stratégiques. + +1. Temps fort du déroulement de la mission : + +Durant la mission, de nombreuses rencontres et discussions ont été organisées avec les autorités tant centrales, provinciales que départementales ( Décideurs politiques, responsables techniques), ONG, communautés…etc. : + +1.1. Lancement Farine MANISA à Pala : + +Le lancement de Pala a été marqué par 3 moments forts : + +- L’accueil de la mission : La mission a été accueillie par le Gouverneur, les autorités locales, les services techniques centraux, les staffs UN ayant devancé l’arrivée de la mission, les services techniques provinciaux et départementaux. Après un bref passage à la résidence du Gouverneur, les membres de la mission se sont dirigés à la place retenue pour la cérémonie de lancement. + +Il faut noter l’affluence non contrôlée des écoliers mobilisées pour l’accueil des officiels avec des FDS débordés a suscité un moment une inquiétude quant la sécurité de l’appareil UNHAS. + +- Le lancement officiel : Le Ministre a procédé au lancement officiel de la farine MANISA après les interventions successives du Gouverneur, de la Représentante du PAM au nom des agences du SNU, du Representant de l’UE. Des remises symboliques de sachets de farines, de T-shirt et casquettes ont été faites à l’endroit de quelques mamans par le Ministre, le Gouverneur, les représentants des agences, le Reach, et le Directeur de la Nutrition…etc. + +- La Visite de l’Unité de Transformation : Une visite guidée a été organisée par les responsables de l’Unité, visite très édifiante suivie d’interviews des parties prenantes avec la Presse. Quelques interrogations subsistent quant à l’enchainement des taches au niveau de l’unité, l’aération, et la sécurité et protection des travailleurs. + + + + +Points d’actions: + +- Suite au débordement constaté après le débarquement des délégations, PAM et UNHAS doivent prendre les dispositions pour que les autorités assurent davantage la Sécurité de l’avion pour les prochaines missions similaires (UNHAS, PAM) +- S’assurer de la fiabilité au plan technique, fonctionnel et normes sécuritaires de l’Unité de transformation pour les travailleurs, sa durabilité…etc. + + +1.2. Visite UNA dans le cadre du partenariat avec Word Vision : Rencontre et échanges avec l’équipe World Vision, les leaders communautaires et les femmes de Mandou: + +Après les présentations et salutations d’usage, World Vision et le Personnel de santé ont directement et à travers les relais et certaines femmes de la communauté procédé à quelques tranches de séances d’animation et de sensibilisation sur les PFE à partir des outils mis à leur disposition en guise de démonstration. + +Au cours des échanges, l’état de 2 jumeaux mal en point, mal nourris au regard de leur âge a attiré l’attention de la mission qui a interpellé le responsable du centre de santé sur place qui, à travers leur historique a évoqué des obstacles socio-culturels et familiaux peu convaincants. Le référencement de ces enfants vers l’une des deux UNT les plus proches (Moundou, Bongor) selon le choix des parents a été retenu comme solution et action immédiate à prendre, Pala n’en disposant pas pour l’instant. L’équipe World Vision, le Responsable du Centre, le Délégué Sanitaire du MKO se sont engagés à s’y investir et tenir le BZ de Zone Unicef au courant de la démarche et de ses résultats. +Un autre constat relatif à la composition des relais et leur ancrage dans la communauté a fait ressortir le manque d’équité genre et de stratégie de sortie et d’appropriation par les communautés. Les relais au niveau de World Vision sont majoritairement, voire totalement des hommes recrutés à plein temps. De façon globale, les relais femmes lorsqu’il y est fait recours sont temporaires. A ce niveau également les arguments avancés n’étaient pas convaincants. + +Points d ’actions: + +- Suivi avec World Vision de la situation des 2 jumeaux mal en point +- Mettre à contribution le DSP du MKO pour lever les obstacles à la mise d’une UNT a Pala +- Revoir avec World Vision le respect de l’équité genre dans la composition des relais communautaires et leur ancrage a la communauté pour plus d’appropriation et de durabilité. + +1.3. Lancement Campagne Rougeole et SVAM a Moulkou : + +Le lancement a eu lieu à Moulkou dans la Province du Mayo Kebbi Est sous le haut patronage du Ministre de la Santé. Moulkou une sous-préfecture peuplée de 128,375 habitants ne disposant que centre de sante niveau DS. Trois interventions se sont succédés: + +- Le Gouverneur du MKE qui tout en souhaitant la bienvenue aux Délégations présentes a profité pour soumettre des doléances du Département de Moulkou dont la dotation d’un hôpital du District, vu le poids démographique et la position géographique, +- La représentante de l’UNICEF qui a rappelé le contexte de cette campagne, les défis les objectifs à atteindre la cible; +- Le Ministre qui après avoir salué toutes les personnalités présentes a aussi fait de la sensibilisation en français et en arabe et sollicité l’appui des leaders traditionnels pour mobiliser les familles afin d’aller au-delà de l’objectif de 95% sans lequel, il sera illusoire de juguler l’épidémie. + + +1.4. Supervision Campagne rougeole et SVAM dans les Districts de Moundou dans le Logone Occidental et de Larmana dans le Logone Oriental : + +Les points saillants de cette étape ont été les visites terrain, les échanges au cours desquelles nous avons pu apprécier : + +- Le degré d’affluence et de mobilisation qui a varié d’un point à l’autre et d’un moment à l’autre. La mobilisation était timide les 2 premiers jours et semblait grande en milieu rural( Larmanaye, PAO Tile….) qu’urbain (Taye, Dokab, Centre Koweitien, Béthanie, 15 ans…) +- La réunion de coordination qui se tient chaque jour au DS a permis de faire le point de la campagne, relever les goulots d’étranglement et de formuler des points d’action. +- La mise en place d’un groupe WhatsApp regroupant les superviseurs UNICEF a permis d’appréhender en temps réels la situation sur le terrain, apprécier l’évolution de la campagne, les défis et contraintes et y apporter autant que faire se peut des solutions. A cela s’est ajouté 2 tours de tous les superviseurs joignables par téléphone pour s’enquérir des goulots d’étranglement et des solutions en cours ou à rechercher. + +2. Principaux produits obtenus : + +- Révision et adaptation des micro plans au contexte local, +- Redéploiement de certaines équipes pour couvrir les omissions +- Renforcement de la chaine de froid et organisation du dispositif réapprovisionnements en intrant et accumulateurs +- Recadrage des équipes de vaccination pour le respect des tranches d’âges ciblées et du protocole de vaccination et SVAM +- Prise en compte des points d’actions issus des réunions de coordinations avec les partenaires et à l’interne ( pré ruptures, chaine de froid, faible implication des relais et des crieurs ayant un impact sur le niveau de mobilisation) +- Maintien du MDC sortant du DS de Moundou pour coordonner et superviser la campagne dans le DS +- Plus grande mobilisation avec des taux encourageants à partir du 4 ème jour + +3. Contraintes/problèmes majeurs : + +Les contraintes et difficultés mentionnées ici portent essentiellement sur la campagne rougeole : + +- Les erreurs et omissions dans les micros plans du fait de leur élaboration descendante, peu ou pas participative a eu un impact sur le démarrage de la Campagne ; +- Le niveau de préparation de la campagne n’a pas été suffisamment à la hauteur des attentes ( formation, composition, complétude et opérationnalité de certaines équipes, la Chaine de froid, acheminement des d’intrants a un certain moment) néanmoins les mesures correctives apportées au fur et à mesure çà et là ont contribué à améliorer son déroulement et l’atteinte des résultats ; +- La survenue de la passation de service entre les MCD sortant et entrant a failli compromettre le déroulement de la campagne dans le DS de Moundou qui compte 28 ZR ; +- Le vide au niveau du DS de Benoye aux premiers jours de la campagne, consécutifs à la mise à l’écart et la garde à vue du MCD par le Préfet du Département pour des raisons de gestion et autres ; +- Concomitance entre la période de la campagne et la distribution de l’ivermectine (mectisan) dans le cadre de l’Onchocercose ; +- Les problèmes structurels liés à la chaine de froid et a l’enclavement dans la plupart des localités +- La faible affluence les 1ers jours et la tendance de certaines équipes à vacciner les enfants hors cibles +- Le retard dans la disponibilité des fonds au niveau de certains Districts Sanitaires +- Faible prise en compte des MAPI + +L’arrivée d’une mission nationale d’inspection et de contrôle de Gestion dès le début de la Campagne au niveau de la délégation sanitaire de Moundou nous a un peu inquiété, heureusement qu’elle n’a pas eu d’impact sur la disponibilité du Délégué à s’investir pour la réussite de la Campagne. + +4. Actions prises : + +- Les délégations et les équipes de supervisions ont retravaillés les micro plans et pris en compte lorsque les ressources le permettent les omissions ou le cas échéant comblées les vides par la recomposition et le redéploiement des équipes en puisant dans les équipes mobiles ; +- L’encadrement des superviseurs et des chefs de zone a permis d’améliorer un tout petit peu cet aspect +- L’achat et l’installation de 4 congélateurs à Moundou pour les 3 DS et à Gore a nettement amélioré la situation ; +- Les deux MCD sortant en entrant ont accepté de rester ensemble pendant toute la durée de la Campagne, l’appui du Délégué été déterminant ; +- La mission du délégué a Benoye et l’apport des superviseurs sur place a Benoye ont permis de sauver la campagne a Benoye ; +- La distribution du Mectisan a été suspendue par le Délégué sur recommandation de la réunion de Coordination. Des actions en faveur de cette activité en coulisses était cependant signalées de façon marginale ; +- L’identification des points d’approvisionnement et de placement des accumulateurs de congélations +- La mobilisation des crieurs, des relais et l’utilisation de la technique du bras vers l’oreille au-dessus de la tête pour s’assurer que l’enfant n’est pas hors âge. + +4. Principales leçons apprises : + +Ces leçons apprises portent essentiellement sur la Campagne de vaccination : +- L’élaboration des micro plans se faisant jusqu’ici de façon descendante peut avoir une influence négative sur le maillage et la couverture optimale des ZR +- Une bonne préparation de la campagne incluant un état des lieux de l’existant en matière de chaine de froids, de ressources humaines, de logistiques… va largement contribuer à la prise anticipée des dispositions adéquates pour la réussite de la campagne +- La période de la campagne peut souffrir de certaines interférences ou planifications parallèles ou concomitantes ( affectation d’agent, formations et distributions mectisan, Inspection et contrôle de gestion…etc.) +- La communication et l’implication des leaders communautaire sont des éléments clés de la mobilisation. + +5. Recommandations : + +Relancer la mise en place d’une UNT a Pala +Suivre la Situation de l’UNT de Bongor menacée d’interruption suite a un problème de gestion +Plaidoyer auprès du Ministère pour élaborer des micros plans de façon ascendante et participative +Mettre l’accent sur la préparation de la campagne en faisant l’état des lieux en termes de disponibilités ( chaines de froid, ressources humaines, formations, logistiques, intrants…etc.) +S’assurer de l’effectivité des équipes et de leur composition et de la réalisation des formations avant le démarrage de la Campagne +Accentuer la communication, l’implication des chefs coutumier afin d’améliorer la performance au de la tranche des enfants de 6 à 11 mois moins touchée et stopper la prise en charges des hors âges + + + + + + + + + + + + + + +Annexes + +Composition de la mission : + +1. Viviane Van Steirteghem, Représentante +2. Mohamed Aly Ag Hamana Chef Bureau de Zone +3. Martina, communication +4. Christophe, Chef Communication ( étape Larmana) +5. Valentin Vounla, Driver + + +Personness rencontrées: + +1. Délégations Ministre Sante et Agricultures +2. Délégation Agences UN représentées à Pala +3. Le Délégué Sanitaire du Mayo Kebbi Ouest +4. Le Délégué du Mayo Kebbi Est +5. Les Gouverneurs des Mayo Kebbi Ouest et Est +6. Les Préfet et sous-préfet de Pala et Moulkou +7. Le Délégué sanitaire des Logone Occidental et Oriental +8. Le MCD sortant du DS de Moundou +9. Le MCD entrant +10. Les superviseurs nationaux +11. Le personnel de santé, les équipes des sites visites +12. Les autorités locales et les leaders traditionnels des localités visitées +13. Les collègues déployés pour la supervision à Moundou et a Larmana', '', 'completed', '2019-12-10', '2019-12-13', 'Accueil Représentante et supervision Campagne Rougeole', '', false, false, '2019/267', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 11347, 9984, '2019-12-09 17:30:27.860591+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (324, '2020-03-03 16:27:04.365627+00', NULL, NULL, '2020-03-03 16:27:04.425899+00', NULL, '2020-03-03 17:58:41.870278+00', '', '', '', '', '', 'approved', '2020-03-05', '2020-03-06', 'Suivi de la mise en ouvre de l''initiative CFC-RTM a Benoye et Krim-Krim', '', false, false, '2020/412', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 11859, '2020-03-03 16:27:04.425906+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (228, '2020-02-10 09:59:21.729312+00', NULL, NULL, '2020-02-10 09:59:21.751027+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-02-23', '2020-02-29', 'Conduire la mission de VP de l''équipe nutrition dans la DSP de Sila', '', false, false, '2020/293', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 8714, '2020-02-10 09:59:21.751034+00', NULL, 6); +INSERT INTO [[schema]].t2f_travel VALUES (239, '2020-02-13 11:31:50.156493+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-02-13', '2020-02-15', 'Participation l''évaluation MIRA à Fourkouloum, Malmarie et Kaya 2, Département de Kaya, Province du Lac au T[[schema]] du 14 f', '', false, false, '2020/304', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 10791, NULL, NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (231, '2020-02-10 17:11:12.462256+00', NULL, NULL, '2020-02-10 20:05:01.59304+00', NULL, '2020-02-12 10:22:02.723373+00', '', '', '', '', '', 'approved', '2020-03-16', '2020-03-23', 'R&R Entitlement Travel', 'My approved leave request and Security Clearance as well as mandatory courses are attached.', true, false, '2020/296', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11607, 177097, '2020-02-10 20:05:01.593048+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (232, '2020-02-11 09:34:16.966406+00', NULL, NULL, '2020-02-11 09:34:17.066605+00', NULL, '2020-02-11 11:14:32.506118+00', '', '', '', '', '', 'approved', '2020-02-13', '2020-02-29', 'Mission d''appui aux activites des delegations de l''Action sociale de Hadjer Lamis et Kanem sur les financements KFW/ECHO', '', false, false, '2020/297', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11514, 24195, '2020-02-11 09:34:17.066613+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (295, '2020-02-26 11:14:49.013643+00', NULL, '2020-03-24 14:41:09.697555+00', '2020-02-26 11:14:49.056226+00', NULL, '2020-02-26 22:45:23.944039+00', '', 'le voyage est annuler pour des raisons sanitaires du staff.', '', '', '', 'cancelled', '2020-03-24', '2020-03-27', 'visite programmatique DPAS lAI', '', false, false, '2020/374', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13372, '2020-02-26 11:14:49.056233+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (220, '2020-01-31 12:10:11.148875+00', NULL, NULL, '2020-01-31 12:10:22.970796+00', NULL, '2020-02-10 18:09:13.387502+00', '', '', '', '', '', 'approved', '2020-02-18', '2020-02-22', 'Présentation du programme pluriannuel de l’Education aux partenaires (Sous-cluster/Groupe de travail et ICC)', '', false, false, '2020/285', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12059, '2020-01-31 12:10:22.970804+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (230, '2020-02-10 16:09:06.608089+00', NULL, NULL, '2020-02-10 16:09:30.105684+00', NULL, '2020-02-11 11:29:27.813728+00', '', '', '', '', '', 'approved', '2020-02-16', '2020-02-19', 'ATELIER DE LANCEMENT DU PREBatha ET DISSEMINATION DU PLAN INTERIMAIRE POUR L’EDUCATION AU TCHAD (PIET) ET DU PROJET DE', '', false, false, '2020/295', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11719, 5052, '2020-02-10 16:09:30.105692+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (234, '2020-02-11 17:29:07.174263+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-02-17', '2020-02-20', 'Appuyer collecte d’informations/données sur le procesus d''elaboration et mise en oeuvre PDC Moundou et PDP Logone Occid.', '', false, false, '2020/299', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11607, 5074, NULL, NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (246, '2020-02-13 12:15:19.887302+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-01-09', '2020-01-15', 'Supervision Campagne SAV DS de Bokoro', '', false, false, '2020/311', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 12319, 12378, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (243, '2020-02-13 11:49:43.838899+00', NULL, NULL, '2020-02-13 11:50:08.94449+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-02-15', '2020-02-29', 'VP DSP BEG et Kanem pui mission Suivi financement KFW', '', false, false, '2020/308', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 8718, '2020-02-13 11:50:08.944498+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (241, '2020-02-13 11:32:36.218899+00', NULL, NULL, '2020-02-13 11:41:31.260646+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-02-13', '2020-02-15', 'Participation l''évaluation MIRA à Fourkouloum, Malmarie et Kaya 2, Département de Kaya, Province du Lac au T[[schema]] du 14 f', '', false, false, '2020/306', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 24425, '2020-02-13 11:41:31.260653+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (240, '2020-02-13 11:32:10.545443+00', NULL, NULL, NULL, NULL, NULL, '', '', '', 'La mission se bien passe.', '', 'planned', '2020-02-13', '2020-02-15', 'Participation l''évaluation MIRA à Fourkouloum, Malmarie et Kaya 2, Département de Kaya, Province du Lac au T[[schema]] du 14 f', '', false, false, '2020/305', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 9330, NULL, NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (247, '2020-02-13 12:17:11.950679+00', NULL, '2020-02-13 12:19:41.941008+00', NULL, NULL, NULL, '', '', '', '', '', 'cancelled', '2020-01-09', '2020-01-15', 'Supervision Campagne SAV DS de Bokoro', '', false, false, '2020/312', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 12319, 8718, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (245, '2020-02-13 12:01:04.354512+00', NULL, NULL, '2020-02-13 12:02:47.601148+00', NULL, '2020-02-13 13:22:05.906696+00', '', '', '', '', '', 'approved', '2020-01-19', '2020-02-07', 'VP DSP BEG et Mission conjointe DFID A bokoro au Hadjer Lamis', '', false, false, '2020/310', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 12319, 8718, '2020-02-13 12:02:47.601155+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (242, '2020-02-13 11:48:56.020438+00', NULL, NULL, '2020-02-14 06:56:43.205588+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-02-15', '2020-02-29', 'VP DSP BEG et Kanem pui mission Suivi financement KFW', '', false, false, '2020/307', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 12378, '2020-02-14 06:56:43.205596+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (244, '2020-02-13 12:00:14.274469+00', NULL, NULL, '2020-02-14 06:55:46.498535+00', NULL, '2020-02-14 08:40:50.832801+00', '', '', '', '', '', 'approved', '2020-01-19', '2020-02-07', 'VP DSP BEG et Mission conjointe DFID A bokoro au Hadjer Lamis', '', false, false, '2020/309', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 12319, 12378, '2020-02-14 06:55:46.498543+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (248, '2020-02-13 12:24:04.522372+00', NULL, NULL, '2020-02-14 06:50:06.767464+00', NULL, '2020-02-14 08:37:20.843774+00', '', '', '', '', '', 'approved', '2020-01-09', '2020-01-15', 'Supervision de la campagne SAV DS Bokoro', '', false, false, '2020/313', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 12319, 12378, '2020-02-14 06:50:06.767471+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (360, '2020-03-09 15:43:13.388235+00', NULL, NULL, '2020-03-09 15:43:13.434588+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-03-16', '2020-03-16', 'Evaluation physique du bureau de zone, visites autorite et appui au bureau sur des aspects lies a la securite', '', false, false, '2020/474', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 8462, 236414, '2020-03-09 15:43:13.434596+00', NULL, 16); +INSERT INTO [[schema]].t2f_travel VALUES (355, '2020-03-09 07:50:15.87565+00', NULL, NULL, '2020-03-09 08:15:00.935695+00', NULL, '2020-03-11 07:56:25.895062+00', '', '', '', '', '', 'approved', '2020-04-09', '2020-04-19', 'Reassignment travel', 'WBS: 2690A006800004, GC, non-grant', false, false, '2020/466', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 8357, 8788, '2020-03-09 08:15:00.935702+00', NULL, 12); +INSERT INTO [[schema]].t2f_travel VALUES (385, '2020-03-11 13:04:40.838583+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-04-19', '2020-04-26', 'Participation a la formation Wash', '', false, false, '2020/513', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 390, 10707, 14616, NULL, NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (381, '2020-03-11 10:04:36.954949+00', NULL, NULL, '2020-03-11 10:45:31.662683+00', NULL, '2020-03-11 18:15:19.845079+00', '', '', '', '', '', 'approved', '2020-03-21', '2020-03-21', 'R&R + AL', '', true, false, '2020/509', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11647, 12352, '2020-03-11 10:45:31.662691+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (250, '2020-02-14 07:02:28.935742+00', NULL, NULL, '2020-02-14 07:02:47.156431+00', NULL, '2020-02-14 08:39:44.964966+00', '', '', '', '', '', 'approved', '2020-01-19', '2020-02-07', 'VP DSP BEG et Mission conjointe DFID A bokoro au Hadjer Lamis', '', false, false, '2020/315', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 12319, 12680, '2020-02-14 06:55:46.498543+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (251, '2020-02-14 11:22:34.100008+00', NULL, NULL, '2020-02-14 11:22:34.126005+00', NULL, '2020-02-14 11:29:32.80218+00', '', '', '', '', '', 'approved', '2020-02-24', '2020-03-02', 'Mission conjointe (MENPC, UNICEF) de suivi ECW2', '', false, false, '2020/316', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 5052, 14363, '2020-02-14 11:22:34.126013+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (252, '2020-02-17 07:58:17.663213+00', NULL, NULL, '2020-02-17 07:58:17.688041+00', NULL, '2020-02-17 09:05:42.847194+00', '', '', '', '', '', 'approved', '2020-02-18', '2020-02-21', 'represent the UNDAF M&E Group to the UNCT retreat (actual dates 18, 20, 21 February)', '', false, false, '2020/317', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11399, 11607, '2020-02-17 07:58:17.688048+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (254, '2020-02-17 13:48:16.328011+00', NULL, NULL, NULL, NULL, NULL, '', '', '', 'Le rapport est disponible dans la section "Attachments & Notes"', '', 'planned', '2020-01-27', '2020-02-01', 'Visite médias nationaux et internationaux (MUSKOKA)', '', false, false, '2020/319', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 7584, 210807, NULL, NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (400, '2020-03-14 04:55:40.560016+00', NULL, NULL, '2020-03-14 04:57:47.902935+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-03-30', '2020-04-01', 'Mission de verification Programmatique dans la DSP de wadifira', '', false, false, '2020/532', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 9329, '2020-03-14 04:57:47.902943+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (450, '2020-03-25 11:04:22.427663+00', NULL, NULL, '2020-03-25 11:04:22.495974+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-04-20', '2020-04-24', 'Evaluation des centres de santé pour l''ouverture des UNT et suivi poste distributrion dans la province du Moyen Chari', '', false, false, '2020/623', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 9984, 22479, '2020-03-25 11:04:22.49598+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (258, '2020-02-18 09:24:56.682898+00', NULL, NULL, '2020-02-18 09:24:56.728162+00', NULL, '2020-02-18 10:20:30.516431+00', '', '', '', '', '', 'approved', '2020-02-16', '2020-02-23', 'Technical support on the training of agents in charge of nutritional data management. Programmatic Visit', '', false, false, '2020/323', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11672, 60199, '2020-02-18 09:24:56.728182+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (462, '2020-04-02 15:23:34.408944+00', NULL, NULL, '2020-04-02 15:26:07.949804+00', NULL, '2020-04-02 15:29:05.035512+00', '', '', '', '', '', 'approved', '2020-04-07', '2020-04-15', 'Mission de Coaching en HACT et de suivi des activités VIH/Sida', 'Mission de Coaching en HACT et de suivi des activités VIH/Sida', false, false, '2020/635', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 10706, '2020-04-02 15:26:07.949812+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (480, '2020-04-09 16:00:54.215342+00', NULL, '2020-04-10 09:36:00.889232+00', NULL, NULL, NULL, '', 'conflit d''agenda avec autres rencontres importantes sur le COVID 19 au niveau de la Délégation de l''Action sociale', '', '', '', 'cancelled', '2020-04-15', '2020-04-15', 'mission conjointe de suivi des activités d''enregistrement de naissances a krim-krim et Benoye', '', false, false, '2020/666', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 9984, 13372, NULL, NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (485, '2020-04-15 13:19:42.275558+00', NULL, NULL, '2020-04-15 13:21:31.996478+00', NULL, '2020-04-15 10:51:12.2979+00', '', '', '', '', '', 'submitted', '2020-04-16', '2020-04-17', 'Mission conjointe de collecte des données sur l''enregistrement des naissances a krim-krim et Benoye', '', false, false, '2020/671', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 23058, 13418, '2020-04-14 15:50:50.470746+00', NULL, 6); +INSERT INTO [[schema]].t2f_travel VALUES (349, '2020-03-06 11:59:14.093112+00', NULL, NULL, '2020-03-06 11:59:29.135744+00', NULL, '2020-03-06 12:10:25.427244+00', '', '', '', '', '', 'approved', '2020-03-11', '2020-03-13', 'Ramener les formateurs de session de refresh des modules de Etools.', '0810/A0/05/880/003/001 - Non GRANT', false, false, '2020/460', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 8719, '2020-03-06 11:59:29.135753+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (486, '2020-04-16 15:24:15.181233+00', NULL, NULL, '2020-04-16 15:24:15.260644+00', NULL, '2020-04-16 15:30:24.840493+00', '', '', '', '', '', 'approved', '2020-04-20', '2020-04-25', 'Mission visite programmatique appui institutionnel et cartographie des relais communautaires Salamat', '', false, false, '2020/675', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 173681, '2020-04-16 15:24:15.260652+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (302, '2020-02-28 10:01:16.240463+00', NULL, NULL, '2020-02-28 10:01:41.447963+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-03-18', '2020-03-24', 'Evaluation de la reponse sur nouveau site des refugies soudanais et suivi des infrastructures WASH dans les CS', '884/004/002 - SM189910', false, false, '2020/381', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 11647, 11399, '2020-02-28 10:01:41.447971+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (257, '2020-02-18 08:10:04.543445+00', NULL, '2020-02-18 12:03:38.747377+00', '2019-11-07 12:51:36.84484+00', NULL, NULL, '', '', '', '', '', 'cancelled', '2020-02-24', '2020-03-06', 'Participer aux réunions bilan de la PTME pools de Douguia et Dandi', '', false, false, '2020/322', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11436, 12023, '2019-11-07 12:50:27.030787+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (253, '2020-02-17 13:23:39.497787+00', NULL, NULL, '2020-02-17 13:24:50.449391+00', NULL, '2020-02-17 16:16:11.121019+00', '', '', '', '', '', 'approved', '2020-02-18', '2020-02-18', 'Visite ECHO- Activités DRR au Logone Oriental-Doba', '', false, false, '2020/318', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 11347, 9984, '2020-02-17 13:24:50.449399+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (147, '2019-11-07 12:51:12.172033+00', NULL, NULL, '2019-11-07 12:51:36.84484+00', NULL, NULL, '', '', '', 'L’atelier de monitorage des activités revue des micro-plans des DS des provinces prioritaires de l’Est dans le cadre de la PTME s’est tenu du 15 au 16 novembre 2019 à Biltine Chef-lieu de la Province du Wadi Fira. Cette assise a regroupé les DS de Biltine, Matadjana, Guereda, Iriba, Amzoer et Arada dans la Province du Wadi Fira, ceux de Abéché, Adré, Abougoudam et Amdam dans la Province du Ouaddaï et celui de Abdi dans la Province du Sila. + + +Prenant la parole pour l’ouverture officielle de l’atelier, le Secrétaire Général de la province de Wadi-Fira, a exhorté les participants à être assidus aux discussions et mener des échanges productifs pour améliorer la Prise en charge des patients du VIH et la prévention de la transmission mère-enfant afin d’inverser la tendance dans les deux Provinces et partant dans tout le pays. Avant le retrait des officiels, un tour de table a été fait pour la présentation individuelle et une photo de famille a été prise. + +Le DS d’Abdi a fait sa présentation après une pause. A l’issue de cette présentation, une série des questions-réponses et des discussions entre les participants et les équipes cadre des deux DS ont permis d’échanger sur les contenus des présentations. Des clarifications et contributions liées à l’insuffisance de la prise en charge pédiatrique, la rupture d’intrants, la coordination des activités et le mécanisme d’approvisionnement ont été discutées. La question des accoucheuses traditionnelles qui ne respectent pas les recommandations du MSP dans les DS d’Abdi a été discutée amplement et des orientations sont fournies pour l’utilisation de ces matrones par les Centre de Santé. Des discordances été constatées sur les données des deux DS. +Pour le dépistage des cas index et la prise en charge pédiatrique, il a été recommandé de renforcer le dépistage de la fratrie à travers les approches différenciées. La délégation des tâches et le dépistage précoce doivent être davantage renforcés dans les formations sanitaires. + +Intervient ensuite une série de quatre présentations des DS Biltine, Matadjana, Abéché et Iriba avant la pause-déjeuner. +A la reprise, les discussions et échanges se sont poursuivis sur les présentations faites par les DS. Pour Biltine la préoccupation concernant le dépistage de la fratrie a été relevée par le MCD, selon ce dernier, cette activité n’est pas planifiée dans le Micro-plan et il a des difficultés pour la mettre en œuvre compte tenu du contexte de forte stigmatisation et discrimination. Les orientations ont été données pour expliquer au MCD de Biltine et son équipe cadre que cette activité a été réalisée avec succès par le RNTAP+ dans les trois régions Wadi Fira, Ouaddaï et Lac en 2018 et des résultats intéressants ont été atteints, il s’agit ici de pérenniser cette approche. Le MCD pourrait faire appel au RNTAP+ + +Pour les autres DS, les problèmes de discordances des données, de calcul des indicateurs, l’analyse causale et aussi des interventions traceurs ne sont pas ressortis dans les présentations. + + +La deuxième journée a commencé par la lecture, l’amendement et l’adoption du rapport du premier jour. Le président de séance a demandé aux DS d’Arada, d’Abougoudam et Adré de faire leurs présentations. Ces présentations ont été accès sur les résultats et difficultés rencontrées des 10 trimestres d’activités des micro- plan é-TME adopté en 2017. + +Les discussions ont porté essentiellement sur : + La problématique de FS offrant la PTME avec faible délégation des taches ; + La faible couverture en CPN, PF, Accouchement assisté et TARV maternel et pédiatrique ; + La faible recherche des cas positifs et faible dépistage précoce des enfants exposés ; + La faible réalisation des activités issues du micro plan é-TME ; + La problématique de rapportage et collaborations des DS et DSP avec les autres services qui interviennent dans la riposte au VIH (cas du CLAC d’Adré), + L’identification des goulots d’étranglement qui entravent la mise en œuvre efficace des activités. +Le discussions et échanges qui ont succédé ces présentations ont permis d’apporter des contributions et clarifications pour l’amélioration de la mise en œuvre des micro-plan des DS. . +Une deuxième série des présentations qui ont portée sur ‘’les résultats globaux des activités de 2017 – 2019’’ ; par l’équipe venant du niveau central (Unicef et PSLS) à permis de faire la synthèse des résultats des micros-plan des DS. +Il ressort de ces deux interventions, la performance des 9 DS micro planifiés (Abéché, Adré, Abougoudam, Arada, Biltine, Guereda, Abdi, Iriba et Matadjana) : + Faiblesse dans le dépistage des enfants exposés (PCR) ; + Faible Appropriation du Dépistage des Fratries et dépistages dans les autres portes d’entrée (UNT, Consultation Curative, CPON etc…) ; + Faiblesse du dépistage au niveau communautaire pour booster la PTME/PECP ; + Faiblesse dans le Suivi, la supervision et la Coordination de la Mise en œuvre PTME/PECP ; + Absence de réalisation des activités CPN/PTME en stratégie Avancée ; + Insuffisance des ressources (humaines en quantité et en qualité, financières) ; + Faible intégration de la PECP dans la PEC des adultes. +Après les échanges sur les deux présentations, des recommandations/orientations ont été proposées et visent à : + Solliciter l’Appui de RNTAP+ dans l’organisation de la Campagne de Dépistage des Fratries ; + Renforcer la coordination des activités et le suivi de la mise en œuvre de dépistage des fratries aux DSP (Wadi Fira & Ouaddaï) ; + Impliquer les communautaires et leaders d’opinion pour réduire la stigmatisation et la discrimination.', '', 'submitted', '2019-11-14', '2019-11-21', 'Participer a la Revue Monitorage eTME', '', false, false, '2019/200', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 11436, 12023, '2019-11-07 12:50:27.030787+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (208, '2019-12-11 13:36:22.772491+00', '2020-02-19 11:37:56.908898+00', NULL, '2019-12-11 13:36:22.795896+00', NULL, '2020-02-11 09:59:35.650686+00', '', '', '', 'Les membres du comité de contrôle citoyen (CCC) de la province du Logone Oriental sont formés et maitrisent les techniques de signalement. Ils sont également motivés pour faire le suivi de la présence effective des enseignants à travers la plateforme. La plupart des membres du CCC dispose des téléphones et des cartes SIM Tigo leur permettant de faire le signalement. +Cependant, la couverture du réseau téléphonique Tigo n’est pas optimale dans toutes les communes visitées. Certains signalements n’aboutissent pas car certains enseignants ne sont pas encore enregistrés sur la base de l’OTFiP, de même plusieurs établissements n’y figurent pas dans la base de données.', '', 'completed', '2019-12-16', '2019-12-23', 'Mission Controle Citoyen Presence Effective des Enseignants Logone Oriental', '', false, false, '2019/271', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11719, 14363, '2019-12-11 13:36:22.795905+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (268, '2020-02-19 15:06:15.344243+00', NULL, NULL, '2020-02-19 15:06:15.375663+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-03-16', '2020-03-20', 'Mission de suivi des activtes WASH integrant une evaluation conjointe', '', false, false, '2020/333', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11399, 9148, '2020-02-19 15:06:15.37567+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (265, '2020-02-19 07:15:35.995985+00', NULL, NULL, '2020-02-19 07:15:36.024013+00', NULL, '2020-02-19 16:36:52.696707+00', '', '', '', '', '', 'approved', '2020-02-23', '2020-03-01', 'participation a la formation WASH en milieu scolaire', '', false, false, '2020/330', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13512, '2020-02-19 07:15:36.024022+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (273, '2020-02-21 10:28:24.399065+00', NULL, NULL, '2020-02-21 10:31:11.181603+00', NULL, '2020-02-21 12:05:40.873836+00', '', '', '', '', '', 'approved', '2020-02-25', '2020-02-25', 'participation a la réunion Intersectorielle a Gore', '', false, false, '2020/346', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13372, '2020-02-21 10:31:11.181612+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (282, '2020-02-24 16:12:12.187626+00', NULL, NULL, '2020-02-24 16:12:12.217223+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-03-15', '2020-03-21', 'Mission de suivi des activites PCIMAS dans la DSP BOURKOU', '', false, false, '2020/355', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 228874, '2020-02-24 16:12:12.21723+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (263, '2020-02-19 05:43:52.994507+00', '2020-02-26 09:26:26.604295+00', NULL, '2020-02-19 05:43:59.56948+00', NULL, '2020-02-19 16:35:40.46193+00', '', '', '', 'La Rougeole est une maladie virale hautement contagieuse dont l’homme est le seul réservoir. La transmission ne se fait essentiellement de personne à personne par voie respiratoire lorsqu’une personne infectée éternue ou tousse. Le T[[schema]] connait chaque année des épidémies de rougeole car il est l’un des pays ou la couverture vaccinale reste très faible. Cela se confirme à travers l’enquête de couverture vaccinale réalisée en 2017 qui montre un taux de couverture en VAR de 37% et en Penta3 (DTC-HepB-hib3) de 37%. De 2009 à 2019 le T[[schema]] a connu chaque année des épisodes d’épidémie de rougeole dont l’ampleur varie d’une année à une autre (35 DS touchés en 2014 et 25 DS en 2018). Par contre en 2019, Le T[[schema]] a commencé l’année 2019 avec des foyers épidémiques confirmés et d’autres en attente et ce malgré la campagne de vaccination de novembre 2018. Ainsi a la semaine 45 le T[[schema]] a notifié au total 25 464 cas suspects de rougeole répartis dans 122 sur les 126 districts du pays soit 97% DS affectés. Ceci montre bien l’ampleur de la situation épidémiologique. + +Le ministère de la santé publique avec l’appui de ses partenaires a entrepris une riposte à cette épidémie de rougeole dans le pays. En mois de décembre 14 DS ont bénéficié de la cette campagne et la délégation sanitaire de N’Djamena a été reporté pour le mois de Jancier 2020. +C’est ainsi que le Ministère de la santé Publique avec l’appui technique et financier de l’Unicef a organisé du 12 au 22/01/2020 une riposte contre la rougeole dans les 5 DS de la ville de N’Djamena. + +Pour assurer une bonne préparation de la campagne et une riposte de qualité pour atteindre l’objectif de 95% de couverture souhaitée par le Ministère de la Santé publique, l’Unicef a déployé de staff dans l’ensemble des districts sanitaires de la ville de N’djamena. + +Ainsi, nous avions eu l’opportunité d’appuyer le DS de Toukra dans le 9eme arrondissement dans la ville de N’Djamena. La mission s’est déroulée du 12 au 24/01/2020. Le présent rapport donne un aperçu sur les principaux résultats atteints et les difficultés auxquelles le DS a été confronté lors de cette riposte. + +1.1 Objectifs de la mission +L’Objectif général de la mission vise à apporter un appui technique au DS de Toukra dans le 9eme arrondissement de la ville de Ndjamena dans la préparation et l’organisation de cette riposte de qualité en vue d’atteindre la couverture souhaitée de 95% par le ministère de la santé publique. +De façon spécifique, elle vise à : + Appuyer le DS de Toukra dans la planification des activités notamment le plan de mise en œuvre du DS ; + Appuyer le DS de Toukra dans la gestion et le dispatching équitable des vaccins, consommables et les produits destines pour la supplémentation et le déparasitage ; + Appuyer les sessions de debriefing des ECD, RCS et dans les ZR pour s’assurer de la qualité de formation a différent niveau ; + Appuyer le DS et les 11 ZR à organiser les réunions de mobilisation sociales ; + Assurer la supervision régulière des équipes dans toutes les ZR selon la planification validée des axes de supervisons au niveau du DS ; + Veiller à l’assurance qualité de la riposte (évaluation rapide de la préparation de la riposte, supervision des équipes, procéder à des évaluations rapides pendante et après la riposte) ; + S’assurer de la bonne organisation des sites de vaccination et de la correcte répartition des taches ; + S’assurer d’une correcte administration du vaccin avec respect des conditions d’utilisation des seringues autobloquantes (SAB) et de condition d’asepsie ; + Contrôler le remplissage correct des outils de gestion (fiches de pointage, cartes de vaccination, fiches de synthèse journalière, …) ; + Collecter, compiler et analyser quotidiennement les données de la vaccination au niveau de chaque ZR en vue de faire de feed back en cas de problème constates ; + S’assurer du respect des directives concernant la sécurité des injections (Utilisation correcte des SAB, des boîtes de sécurité. Stockage, transport et destruction des déchets ); + S’assurer que des conseils appropriés sont donnés aux parents ou accompagnateurs des enfants ; + Appuyer la recherche active des maladies sous surveillance. + +1.2 Les principaux produits escomptés +Les principaux produits attendus de cette mission sont les suivants : + Les plans de mise en œuvre du DS et des 11 ZR sont élaborés et sont mis en œuvre par les différents acteurs ; + Les vaccins, consommables et les produits destinés pour la supplémentation et le déparasitage sont repartis dans les ZR selon le Micro- plan dudit DS ; + Des sessions de debriefing sont organisées à différent niveau et les agents sont aptes à conduire la riposte pour obtenir des résultats de qualité ; + Des réunions de mobilisations sociales sont organisées au niveau du DS et de chaque ZR en vue d’assurer la forte mobilisation effective de la population notamment les femmes ; + Des supervisions de qualité sont assurées dans les ZR durant la campagne ; + Assurance qualité de la vaccination est assuree à diffèrent niveau ; + Les outils afférents à la vaccination sont correctement remplis par les équipes de vaccination sur le terrain ; + Les directives de l’OMS en matière de la sécurisation de l’injection sont respectées par les équipes ; + La population au niveau de différentes zones de responsabilité est informée et mobilisée pour cette riposte ; + La recherche active des maladies sous surveillance (PFA, Rougeole et Ver de Guinée) est assurée. +La mission s’est déroulée du 12 au 24/01/20120 au niveau du DS de Toukra. L’équipe d’appui de l’Unicef était composée de : +- Dr Balthazar Teuyahbé Yandibé, PO CSD au BZ de Moundou +- Djafna Edouard, Consultant C4D +Il est à noter que la mission s’est déroulée en deux phases : +1.2.1 Phase Préparatoire : +La formation de l’ensemble des superviseurs de la campagne au niveau de la délégation sanitaire de N’Djamena a eu lieu du 10 au 11/01/2020 au niveau de la salle de réunion de la délégation sanitaire de Ndjamena. Au total 20 participants à cette session de formation. +Aussi durant cette phase nous avions eu a réalisé une évaluation en date du 12/01/2020 de niveau de préparation de la campagne de la riposte au niveau du DS. Les constats suivants ont été relevés : + Le plan de mise du DS est finalisé et partagé avec les acteurs + Le micro- plan de la riposte est disponible avec l’ECD du DS + Les vaccins, les consommables et les produits pour la supplémentation et le déparasitage ne sont pas encore disponibles au niveau du DS + 4 ZR sur un total 14 Zones de responsabilité possèdent une chaine de froids + 11 sur 14 ZR fonctionnelles du DS ont été micros planifiées. +A l’issue de ce constat, nous avions pu apporter un appui conséquent aux ZR pour la finalisation de leurs Plans respectifs. Dans le cadre de la mise en œuvre de plan de mise en œuvre les activités suivantes ont été réalisés : +1.2.2 Debriefing des ECD et des RCS +Le DS de Toukra a organisé la formation des ECD et des RCS en date du 13/01/2020. Cette session de formation a été animée par le MCD et l’équipe de l’Unicef. Cette session de formation a permis d’échanger avec eux sur quelques modules clés relatifs à la bonne réussite de cette riposte. Les modules suivants sont passés en revue : + Généralité sur la rougeole + Briefing sur la supplémentation + Leçons apprises des autres campagnes précédentes + Logistiques de la campagne VAR + Organisation d’un site vaccination VAR et rôle des prestataires + Sécurités des injections + Gestion des MAPI + Présentation des tous les outils pour la riposte. +A la fin de cette session avec les RCS, un planning pour la tenue des sessions de formations dans les ZR a été établi avec chaque RCS. Pour une bonne réussite de ces sessions de formation, les ZR ont été regroupées en 4 axes. Ceci a permis de faire un planning d’appui des superviseurs au niveau de chaque axe retenu. Notre équipe a eu l’opportunité d’apporter un appui pour le pool regroupant 3 ZR à savoir Ngoumna Ouest, Walia Est et Ngoumna Communautaire. +1.2.3 Tenue de la réunion de mobilisation sociale au niveau du DS : +La réunion de mobilisation sociale du DS a été organisée en date du 14/01/2020 dans la salle de spectacle du centre culturel des jeunes au niveau de la commune du 9eme arrondissement de la ville de N’Djamena. La réunion a été présidée par le Secrétaire General de la commune du 9eme arrondissements. Elle a regroupé tous les délégués de quartiers, les chefs de quartiers/Ferrick et les chefs de villages. Au total 80 participants dont 11 femmes ont pris part à cette réunion. Après la présentation de quelques données épidémiologiques de la rougeole et les complications de ladite maladie par l’équipe cadre du DS et de l’Unicef, s’en suit les échanges avec le public. De ces discussions on peut en retenir les points suivants : + Souhait des chefs de villages et quartiers pour leur implication effective dans la préparation et la réussite de la campagne + Problématique de la création des CS sans implication des chefs de quartiers et des villages + Souhait exprimé par les Chefs de villages et des quartiers d’identifier les relais mobilisateurs au sein de leurs communautés respectives +A l’issue de cette réunion, tous les leaders a différents niveau se sont engagés a accompagner le processus de la riposte pour contribuer aux résultats escomptés. +1.2.4 Débriefing des équipes de vaccination dans les ZR +Selon le programme établie les sessions de formations dans les ZR ont été organisées le 15/01/2020. Les superviseurs en appui au DS ont pu apporter leurs expertises nécessaires lors de ces sessions de formations dans l’ensemble des ZR micro planifiées. +1.2.5 Organisation des réunions de mobilisation sociales dans les ZR +Toutes les ZR ont organisé leurs réunions de mobilisation sociale au niveau de Chef-lieu de la ZR. Ces réunions ont vu la participation de leurs chefs de quartiers/villages respectifs. +1.2.6 Phase de déroulement de la campagne : +Le lancement de la campagne a eu lieu en date du 16/02/2020. Il a été présidé par le Ministre de la santé publique accompagné de ses partenaires traditionnels notamment la Représentante de l’Unicef. +Il est à noter que les activités de la vaccination ont démarrée effectivement dans l’ensemble de DS comme prévue le 16/01/2020. Au cours de déroulement de la riposte nous avions noté la réalisation des activités suivantes : + La tenue de la réunion de coordination regroupant les Superviseurs de DS, les superviseurs Nationaux et l’équipe de l’Unicef. Ces réunions ont permis chaque jour d’identifier des insuffisances constatées sur le terrain et de prendre des actions par rapport aux difficultés rencontrées par les équipes et assurer le suivi des recommandations. Aussi c’est au cours de cette réunion que les données sont compilées et analysées par zone de responsabilité. + La Supervision de proximité des équipes : elle est réalisée chaque jour selon les axes de supervision défis dans le plan de mise en œuvre du DS. Cette supervision de proximité a permis d’assurer le coaching des équipes sur le terrain. Il est aussi à noter que le DS de Toukra a reçu la visite de la Représentante de l’Unicef accompagné de ses proches collaborateurs. Elle a pu visiter quelques sites de vaccination de la ZR de Walia Ordre de Malte. Au vous de ces supervisions nous avions pu insister sur les points suivants : +• La bonne organisation des équipes de vaccinations en insistant sur le jeu de rôle de chaque agent ; +• Le coaching sur la sécurité des injections ; +• Le respect par les équipes de tranche d’âge des enfants concernés par la riposte (6-59 mois) +• L’assurance qualité de la gestion des vaccins (vérification systématique des portes vaccins des équipes, des cartes de vaccination, état des accumulateurs dans les portes vaccins…). + Evaluation rapide dans quartiers/villages vaccinés dans le DS de Toukra : au total 120 ménages ont été visités et nous avions rencontrés 362 enfants âgés de 6 à 59 mois. Sur les 362 enfants, 123 enfants n’ont pas été vaccinés soit 34%. Cependant tous ces enfants ont pu être rattrapés à chaque fois par les équipes de vaccination. + +Les principaux resultats obtenus a l''issue de cette campagne sont ls suivants: + 41 387 enfants de 6 à 59 mois ont été vaccinés soit une couverture de 136.2% et un taux de perte de 3.3%. Sur les 11 ZR, 2 n’ont pas pu atteindre la couverture escomptés (95%). Cette situation s’explique par la surestimation de la population de ces 2 ZR. De source du DS, le découpage de ces 2 ZR a été revu mais la population affectée à ces ZR n’a pas été changée. Du coup les ZR nouvellement crées se retrouvent avec une population affectée sur aucune base. + 41 387 enfants de 6 à 59 mois ont aussi reçu de la Vit A et du mebendazole + +Au cours de cette mission d’appui au DS nous avions pu faire les constats suivants en termes de coordination/Planification/Technique/Logistique/Communication : + Difficulté de tenir la réunion de coordination le soir car le DS n’est pas électrifié et les équipes de supervision reviennent tard le soir. Il a été convenu de tenir la réunion de coordination tous les matins à 7h. + Sous-estimation de la population de certaines ZR + Gap en vaccins et consommables au début de la campagne mais cela a été rattrape par la suite par la délégation avec le complément des vaccins reçus par le DS + 3 ZR du DS n’ont pas été micros planifiées + 4 ZR seulement du DS possèdent une chaine de froid soir une couverture de 36% + Les supports de communication étaient en nombre insuffisants notamment les tee shirts. A titre d’exemple les relais mobilisateurs et les crieurs n’ont pas reçu des tee shirts. + Certains outils fourmis au DS ne sont pas adaptés pour la campagne rougeole. + Le consultant C4D de l’Unicef n’a pu se libérer durant la période de la campagne pour accompagner le DS pour les aspects de communication.', '', 'completed', '2020-01-12', '2020-01-24', 'Participer a la campagne de riposte contre la Rougeole dans la ville de N''djamena', '', false, false, '2020/328', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13031, '2020-02-19 05:43:59.569487+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (267, '2020-02-19 10:45:58.443195+00', NULL, NULL, '2020-02-19 16:09:23.005549+00', NULL, '2020-02-19 20:19:40.180045+00', '', '', '', '', '', 'approved', '2020-02-25', '2020-02-28', 'Appui a la formation en Gestion Acces sur les resultats', 'WBS : 0810/A0/05/887/002/005 Non Grant', false, false, '2020/332', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 177097, 8721, '2020-02-19 16:09:23.005557+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (272, '2020-02-21 10:10:43.011863+00', NULL, NULL, '2020-02-21 10:16:31.202365+00', NULL, '2020-02-24 13:21:46.274618+00', '', '', '', '', '', 'approved', '2020-03-02', '2020-03-14', 'Renforcement des capacités du staff et des consultants des bureaux de zone de l’UNICEF en E-tools', 'WBS : 0810/A0/05/880/003/001 - Non GRANT +OIC : Hamid Ahmat conformément à son plan de voyage puis Jasmin Yu en cas de voyage de Hamid', false, false, '2020/337', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 177097, 8721, '2020-02-21 09:52:11.666227+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (278, '2020-02-24 14:58:18.546893+00', NULL, NULL, '2020-02-24 14:58:18.562185+00', NULL, '2020-02-25 15:58:23.074175+00', '', '', '', '', '', 'approved', '2020-03-02', '2020-03-09', 'Mission d''appui au BZ d''Abeche', '', false, false, '2020/351', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 21294, 10128, '2020-02-24 14:58:18.562193+00', NULL, 13); +INSERT INTO [[schema]].t2f_travel VALUES (215, '2020-01-21 11:09:14.948135+00', '2020-02-21 12:24:55.995925+00', NULL, '2020-01-21 11:09:14.990112+00', NULL, '2020-01-30 07:59:28.112041+00', '', '', '', 'Le Gouvernement du T[[schema]] et l’UNICEF mettent en œuvre depuis le début de l’année 2017 un nouveau programme quinquennal de coopération 2017-2021 articulé autour de cinq composantes : la survie et développement de l’enfant, l’éducation inclusive de qualité, la protection de l’enfant, l’eau, l’assainissement et l’hygiène, et l’inclusion sociale et l’efficacité du programme. + +A l’instar des années 2017-2019, les Plans de travail biennaux de l’UNICEF 2020-2021 vont être arrimés aux plans de travail conjoint (PTC) de l’UNDAF. Sur la base des recommandations de la revue à mi-parcours du programme de coopération, les spécificités dont la déclinaison des cibles par provinces pour les Bureaux de Zone (BZ) et la priorisation des Résultats Clés pour les Enfants (KRC) dans 7 provinces prioritaires (et 2 provinces de convergence) seront prises en considération dans l’élaboration du Plans de travail biennaux 2020-2021 de l’UNICEF. + +C’est sur la base de ces recommandations/ajustements que les PPA 2020-2021 seront élaborés en articulant les cibles pour les Plans de travail des BZ au niveau provincial et en assurant la pertinence des activités pour l’accélération de l’atteint des KRC d’ici 2021. Ainsi du 22/01 au 1er /02/2020, il s’est tenu à Ndjamena un atelier regroupant les participants des BZ, les sections et le Management en vue de finaliser les PPA 2020-2021 des sections et la déclinaison des PPA des 4 Bureaux de Zone. +Aussi en marge de cet atelier, Balthazar a pris part à l’atelier d’élaboration du plan conjoint PAM-UNICEF-UNFPA et pris part à mon tour à la réunion de CMT. + +Le présent rapport donne un aperçu sur le déroulement de la mission et les principaux résultats obtenus. +Du 23 au 24/01/20 les différentes sections ont eu à faire en plenière la présentation de leurs PPA 2020-2021 respectifs. Les sections suivantes ont présenté successivement leurs PPA : Education, Wash, Protection et CSD. Chaque présentation fait l’objet des observations et des inputs en plenière. Certains indicateurs ont été reformulés et d’autres supprimés selon leur pertinence. +2. Phase de discussion des BZ avec les sections : +Cette phase s’est déroulée du 27 au 29/01/2020. Cette première initiative qui est d’ailleurs à saluer, a permis aux membres des 4 BZ représentés de passer en revue tous les détails de chaque PPA avec les sections concernées. Il ressort de ces discussions les points suivants par section : + Feedback à chaud des BZ sur la présentation PPA CSD : +• APCV : S’assurer de la disponibilité des registres dans les districts sanitaires de Mongo et du Lac +• APCV : Besoin de recruter des consultants (Lac et Mongo) pour booster les résultats +• Ressortir clairement les indicateurs du KRC 1 tels que libellés dans le document des KRC +• Clarifier la logique de ciblage et les cibles par provinces/districts +• Mieux ressortir les activités intersectorielles notamment WASH In Nut, enregistrement des naissance VS vaccination… +• Mieux clarifier la logique de priorisation des zones. + + Feedback à chaud des BZ sur la présentation PPA Protection : +• Clarifier les cibles par province +• Clarifier la synergie des approches communautaire avec d’autres sections surtout avec la sante +• Question de disponibilité des registres, cahiers journaux dans les structures/communauté et d’acte de naissance dans les bureaux de l’état civil +• Orientation pour le KRC enregistrement des naissances : comment booster les résultats ? divergences entre état civil et ANATS, synergie avec la vaccination + + Feedback à chaud des BZ sur la présentation PPA WASH : +• Intégrer dans le PPA les activités de suivi des villages FDAL en associant les services décentralisés de l’état (santé, WASH et structures) et les structures communautaires. +• Que faire pour éviter la perte du statut FDAL des villages ? +• Clarifier les caseload par province +• Clarifier la logique de priorisation + + Feedback à chaud des BZ sur la présentation PPA Education : +• Pour les provinces, changer le mot achat des intrants par distribution des intrants (sauf si les achats seront fait au niveau du BZ) +• Expliciter la logique du ciblage pour U report +• Logique de priorisation des provinces : nécessité d’ajouter certaines provinces sur la base de la justification des BZ (même si pas prévu dans le PPA) +• Prévoir les activités de supervision des distributions des fournitures scolaires par le niveau provincial et pas seulement national (Prévoir mission du délégué et d’un membre du CPA) +• Clarifier les bases de la répartition des budgets +• Clarifier le circuit de reporting pour les activités WASH en éducation (capter dans quel indicateur de quelle section ?) +• Clarifier le design des latrines, points d’eau dans les écoles en lien avec la section WASH. + +Tous ces points soulevés lors de discussion seront pris en compte dans les versions finales de PPA de différentes sections pour permettre à chaque BZ d’extraire leurs PPA respectifs. + +Principales leçons apprises: +- Cette initiative de discussion préalable des BZ avec chaque section a facilité la compréhension de l’ensemble de PPA et de dégager les principales interventions intersectorielles ; +- L’arbitrage des sections dans les ciblages des BZ va contribuer sans nul doute à l’atteinte des résultats escomptés. +3. Recommandations Responsable et Echéancier +1. Organiser dans un bref délai la réunion de restitution de l’atelier de planification 2020-2021 par le BZ Le 3/02/2020 +2. Finaliser dans un bref délai le PPA de BZ de Moundou - CBZ Le 5/02/2020 +3. Obtenir les feedbacks des Sections et de la SPPME- CBZ/Chefs Sections Avant le 14 Février', '', 'completed', '2020-01-22', '2020-01-30', 'Participation Atelier de Planification et Orientations Planification 2020-202 a Ndjamena', '', false, false, '2020/280', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 11347, 9984, '2020-01-21 11:09:14.990119+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (199, '2019-12-09 11:46:32.829864+00', '2020-02-26 10:02:52.697929+00', NULL, '2019-12-09 17:06:32.69252+00', NULL, '2019-12-10 08:36:30.404015+00', '', '', '', 'Le T[[schema]] s’est lancé depuis quelques années dans la mise en œuvre progressive de sa politique de décentralisation avec la création des Communes, des Départements et des Provinces. Les textes régissant cette politique de décentralisation confèrent aux Collectivités Territoriales Décentralisées, la planification et la gestion du Développement Local. Dans le cadre du renforcement de cette décentralisation/gouvernance locale, l’UNICEF a fourni en 2015 et 2016 un appui technique et financier à l’élaboration du Plan de Développement de la Province du Ouaddaï avec l’implication des membres du Comité Provincial d’actions (CPA). Plusieurs activités ont été réalisées pour appuyer le processus d’élaboration du PDP. Il s’agit de : (i) la formation des membres du CPA sur la planification stratégique, suivie du lancement du processus ; (ii) l’analyse diagnostic de la Province ; (iii) la formulation de la vision et la définition des axes stratégiques du PDP ; (iv) l’élaboration et la validation du PDP. + +Deux ans après l’adoption par les membres du CPA du PDP du Ouaddaï, plusieurs changements au niveau national et local sont intervenus, notamment la mise en œuvre du Plan National de Développement (PND) 2017-2021, le découpage administratif de la province, la mise en place d’un cadre de concertation des ONG et d’une plateforme d’échanges et de partage des services public. Aussi, plusieurs projets et programmes sont en train d’être mis en œuvre et dont les résultats attendus pourraient contribuer significativement à l’amélioration des conditions de vies des populations de la Province du Ouaddaï. Il est donc nécessaire de faire le point sur l’état de mise en œuvre du PDP, de tenir compte des changements intervenus dans le contexte provincial et national et d’envisager une mise à jour dudit PDP. C’est dans ce contexte que s’est déroulé du 17 au 19 décembre 2019 à Abéché, l’atelier de pré-revue du PDP du Ouaddaï. Cet atelier a regroupé tous les membres du CPA, certaines ONGs et associations locales et les partenaires techniques et financiers intervenant dans la province, notamment l’UNICEF, le PAM, OCHA. + +C’est le Gouverneur de la Province du Ouaddaï qui a procédé à l’ouverture officielle dudit atelier. La méthodologie utilisée a consisté en une présentation globale du PDP suivie des discussions en plénière et des travaux de groupe sur l’évolution du contexte socio-économique de la province durant la période 2017-2019, les contraintes, les défis et les opportunités. Plus concrètement, les différents groupes ont travaillé sur les changements significatifs en termes de nouveaux projets, de nouvelles données et de nouveaux acteurs au niveau des secteurs concernés, le gap en termes d’informations/données à collecter pour la mise à jour du PDP, les principales contraintes rencontrées dans la mise en œuvre du PDP, les défis et les opportunités. + +A la fin de l’atelier, une feuille de route pour une mise à jour du PDP a été adoptée par les membres du CPA. A l’issue de cet atelier, un certain nombre de recommandations ont été formulées : (1) prendre en compte le nouveau contexte humanitaire de la province avec l’état d’urgence et les conflits intercommunautaires dans la révision du PDP ; (2) faire un suivi de la feuille de route pour une mise à jour u PDP élaborée et adoptée par les membres du CPA. + +Parallèlement à cet atelier, il y a eu des rencontres avec le Maire de la commune d’Abéché, le gouverneur de la province et le Délégué provincial de l’Economie et de la planification du développement sur le processus de capitalisation des expériences de l’élaboration et la mise en œuvre du PDP du Ouaddai et du PDC d’Abéché.', '', 'completed', '2019-12-16', '2019-12-19', 'Faciliter l’atelier de pré-revue du Plan de Développement de la Province du Ouaddaï prevue Abeche du 17 au 19 decembre', '', false, false, '2019/263', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11607, 5074, '2019-12-09 17:06:32.692528+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (274, '2020-02-21 13:26:55.872865+00', NULL, NULL, '2020-02-24 14:48:38.102535+00', NULL, '2020-02-24 15:18:57.957367+00', '', '', '', '', '', 'approved', '2020-02-25', '2020-03-03', 'Participer Revue Annuelle de Gestion, la célébration FDAL à Youe et Superviser début réponse Inondations au MKE', '', false, false, '2020/347', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 11347, 9984, '2020-02-24 14:48:38.102542+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (264, '2020-02-19 05:49:02.216399+00', '2020-02-26 08:39:02.460557+00', NULL, '2020-02-19 05:49:13.122665+00', NULL, '2020-02-19 16:36:25.595105+00', '', '', '', 'Le Gouvernement du T[[schema]] et l’UNICEF mettent en œuvre depuis le début de l’année 2017 un nouveau programme quinquennal de coopération 2017-2021 articulé autour de cinq composantes : la survie et développement de l’enfant, l’éducation inclusive de qualité, la protection de l’enfant, l’eau, l’assainissement et l’hygiène, et l’inclusion sociale et l’efficacité du programme. + +A l’instar des années 2017-2019, les Plans de travail biennaux de l’UNICEF 2020-2021 vont être arrimés aux plans de travail conjoint (PTC) de l’UNDAF. Sur la base des recommandations de la revue à mi-parcours du programme de coopération, les spécificités dont la déclinaison des cibles par provinces pour les Bureaux de Zone (BZ) et la priorisation des Résultats Clés pour les Enfants (KRC) dans 7 provinces prioritaires (et 2 provinces de convergence) seront prises en considération dans l’élaboration du Plans de travail biennaux 2020-2021 de l’UNICEF. + +C’est sur la base de ces recommandations/ajustements que les PPA 2020-2021 seront élaborés en articulant les cibles pour les Plans de travail des BZ au niveau provincial et en assurant la pertinence des activités pour l’accélération de l’atteint des KRC d’ici 2021. Ainsi du 22/01 au `1er /0/2020, il s’est tenu à Ndjamena un atelier regroupant les participants des BZ, les sections et le management en vue de finaliser les PPA 2020-2021 des sections et la déclinaison des PPA de 4 BZ. +Aussi en marge de cet atelier, nous avions pris part a l’atelier d’élaboration d’un plan conjointe PAM-UNICEF-UNFPA et a la réunion de CMT. +Le BZ de Moundou a été représenté par les personnes suivantes : +- Mohamed Aly Ag Hamana, Chef de BZ de Moundou +- Dr Balthazar Teuyahbe Yandibe, PO CSD/VIH +L’atelier a été ouvert par les mots de bienvenue par Mme la Représentante et elle a mis l’accent sur les points suivants : +- Bonne appropriation du Plan ; +- S’assurer que tout le monde a une compréhension commune de contenu dudit plan ; +- Faciliter les discussions intersectorielles entre les sections en vue de booster les résultats ; +- S’assurer que les cibles et les objectifs sont clairement identifiés et compris de tous. +Ledit atelier s’est déroulé en plusieurs étape : +1. Phase de présentation des PPA de différentes sections : +Du 23 au 24/01/20 les différentes sections ont eu à faire en plenière la présentation de leurs PPA 2020-2021 respectifs. Les sections suivantes ont présenté successivement leurs PPA : Education, Wash, Protection et CSD. Chaque présentation fait l’objet des observations et des inputs en plenière. Certains indicateurs ont été reformulés et d’autres supprimés selon leur pertinence. +2. Phase de discussion des BZ avec les sections +Cette phase s’est déroulée du 27 au 29/01/2020. Cette première initiative qui est d’ailleurs a salué a permis aux membres de 4 BZ représentés de passer en revue tous les détails de chaque PPA avec les sections concernées. Il ressort de ces discussions les points suivants par section : + Feedback à chaud des BZ sur la présentation PPA CSD : +• APCV : S’assurer de la disponibilité des registres dans les districts sanitaires de Mongo et du Lac +• APCV : Besoin de recruter des consultants (Lac et Mongo) pour booster les résultats +• Ressortir clairement les indicateurs du KRC 1 tels que libellés dans le document des KRC +• Clarifier la logique de ciblage et les cibles par provinces/districts +• Mieux ressortir les activités intersectorielles notamment WASH In Nut, enregistrement des naissance VS vaccination… +• Mieux clarifier la logique de priorisation des zones. + + Feedback à chaud des BZ sur la présentation PPA Protection : +• Clarifier les cibles par province +• Clarifier la synergie des approches communautaire avec d’autres sections surtout avec la sante +• Question de disponibilité des registres, cahiers journaux dans les structures/communauté et d’acte de naissance dans les bureaux de l’état civil +• Orientation pour le KRC enregistrement des naissances : comment booster les résultats ? divergences entre état civil et ANATS, synergie avec la vaccination + + Feedback à chaud des BZ sur la présentation PPA WASH : +• Intégrer dans le PPA les activités de suivi des villages FDAL en associant les services décentralisés de l’état (santé, WASH et structures) et les structures communautaires. +• Que faire pour éviter la perte du statut FDAL des villages ? +• Clarifier les caseload par province +• Clarifier la logique de priorisation + + Feedback à chaud des BZ sur la présentation PPA Education : +• Pour les provinces, changer le mot achat des intrants par distribution des intrants (sauf si les achats seront fait au niveau du BZ) +• Expliciter la logique du ciblage pour U report +• Logique de priorisation des provinces : nécessité d’ajouter certaines provinces sur la base de la justification des BZ (même si pas prévu dans le PPA) +• Prévoir les activités de supervision des distributions des fournitures scolaires par le niveau provincial et pas seulement national (Prévoir mission du délégué et d’un membre du CPA) +• Clarifier les bases de la répartition des budgets +• Clarifier le circuit de reporting pour les activités WASH en éducation (capter dans quel indicateur de quelle section ?) +• Clarifier le design des latrines, points d’eau dans les écoles en lien avec la section WASH +Toutes ces points soulevés lors de discussion seront pris en compte dans les versions finales de PPA de différentes sections pour permettre à chaque BZ d’extraire leurs PPA respectifs. +3. Phase atelier d’élaboration du plan conjoint WFP-UNICEF-UNFPA +Par ailleurs il est à noter qu’en marge d’atelier de planification du PPA 2020-2021, nous avions eu à prendre part à l’Hotel la T[[schema]]ienne a un atelier de planification d’un plan conjoint Unicef-UNFPA-PAM sur financement du Canada : +Le comité technique regroupant les points focaux des différentes agences parties prenantes de l’initiative AGAPE se sont réunis en conclave les 27 et 28 janvier en vue de procéder à l’élaboration d’un plan conjoint de mise en œuvre des activités inscrites dans le cadre du projet. L’atelier a regroupé l’ensemble des acteurs impliqués dans la mise en œuvre du projet aussi bien au niveau des bureaux de Ndjamena que des bureaux de terrains. + +L’objectif principal de l’atelier était de consolider les plans des différentes agences et de produire un seul plan conjoint de mise en œuvre émanant du consensus qui sera fait entre les trois agences sur la démarche conjointe pour la mise en œuvre des différentes activités inscrites dans le projet en vue d’atteindre les résultats du projet. + +Il était prévu également que les deux jours d’atelier, en plus du plan de mise en œuvre conjoint, permettront de : +- Valider le dispositif de pilotage et de coordination du projet ; +- Proposer une ébauche de plan de suivi et évaluation ; +- Proposer un canevas de plan de communication et de plaidoyer ; +- Définir les mécanismes de collaboration avec les acteurs gouvernementaux et de définir les rôles et responsabilités qui sont dévolues à chaque partie prenante. + +L’atelier a vu la participation des staffs du PAM, de l’UNICEF et de UNFPA au niveau des bureaux centraux de Ndjamena et des bureaux de terrain couvrant la zone de Lac (Bol et Bagasola) et du Logone oriental (Gore). +4. Réunion de CMT +Il s’est tenu le 31/01/20 la réunion des CMT N’Djamena. Le Chef de BZ de Moundou a pu prendre part à cette réunion. + +A l''issue de cette mision les lecons apprises sont les suivantes: +- Cette initiative de discussion préalable des BZ avec chaque section a facilité la compréhension de l’ensemble de PPA et de dégager les principales interventions intersectorielles ; +- L’arbitrage des sections dans les ciblages des BZ va contribuer sans nul doute a l’atteinte des résultats escomptés.', '', 'completed', '2020-01-25', '2020-02-01', 'Participer a l''atelier de planification du PPA 2020-2021', 'RAS', false, false, '2020/329', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13031, '2020-02-19 05:49:13.122675+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (388, '2020-03-11 18:01:47.292589+00', NULL, NULL, '2020-03-12 10:11:36.425604+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-03-23', '2020-04-04', 'RR & AL', '', true, false, '2020/516', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 8357, 21294, '2020-03-12 10:11:36.42561+00', NULL, 13); +INSERT INTO [[schema]].t2f_travel VALUES (437, '2020-03-20 07:06:05.08695+00', NULL, '2020-03-20 07:06:44.974132+00', '2020-03-20 06:58:25.940073+00', NULL, NULL, '', '', '', '', '', 'cancelled', '2020-03-24', '2020-03-27', 'Revue de gestion 2019 / 25-26 Mars 2020', 'WBS: 0810/A0/05/880/006/003 Non-Grant +OIC: Ronel Hamat', false, false, '2020/606', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 13031, 12131, '2020-03-09 10:57:05.14741+00', NULL, 12); +INSERT INTO [[schema]].t2f_travel VALUES (277, '2020-02-24 14:42:43.817337+00', NULL, NULL, '2020-02-24 14:43:04.546059+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-03-21', '2020-03-26', 'Atelier de renforcement des capacités de leadership en éducation et développement de la petite enfance (EDPE)', '', false, false, '2020/350', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11719, 5052, '2020-02-24 14:43:04.546068+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (182, '2019-11-29 15:41:34.653279+00', '2020-02-26 08:01:55.543664+00', NULL, '2019-11-29 15:41:42.830968+00', NULL, '2019-11-29 15:56:42.925858+00', '', '', '', 'Il s’est tenu du 2 au 5/12/19 un atelier de pré-SMR et de SMR organisé par le Bureau pays. Le moment de réflexion stratégique (SMR) est un exerce de réflexion stratégique et une étape dans le processus de consultation concernant l’appréciation de la performance du Programme de coopération à mi-parcours de sa mise en œuvre afin de guider l’orientation stratégique du Programme pour les prochaines années du cycle en cours. Et de manière spécifique ce processus a permis de : +- Examiner l’évolution recentre du contexte et de la situation des enfants, adolescents et jeunes au T[[schema]], et d’identifier les défis prioritaires den matière de réalisation des droits de l’enfant +- Dresser le bilan des résultats clés à mi-parcours du Programme de coopération sur la période 2017-2019 et apprécier la qualité de partenariat stratégique dans l’atteinte des résultats +- Identifier les contraintes liées à la mise en œuvre, analyser la pertinence et efficacité des solutions s et stratégies proposées, discuter des leçons apprises et identifier les innovations à mettre à échelle durant les deux prochaines années +- Définir les nouvelles orientation et perspectives pour la période 2020-2021 +Ce processus qui se veut inclusif s’est déroulé en 2 étapes : +- La Pre-SMR qui est reste un processus de discussion en interne sur les principaux résultats et l’évolution des indicateurs clés retenus dans le document programme pays +- La SMR proprement dit a regroupé l’ensemble des acteurs notamment les PTF, les ONG et les partenaires du Gouvernement de différents secteurs d’intervention de l’Unicef. +Phase de Pre SMR : +Place sous-direction de la Représentante, la Pre-SMR s’est déroulé en 3 jours. Durant les 3 jours les participants ont pu passer en revue les principaux résultats et l’évolution des indicateurs clés des sections suivantes : +- WASH +- Protection +- CSD +- Education +- Gestion efficace du Programme +Il faut rappeler que chaque présentation a fait l’objet de discussions en pleniere. Il en ressort les principales recommandations suivantes : +- Renforcer la coordination des urgences +- Renforcer le rôle des BZ dans le ciblage des nos interventions +- Besoin de renforcer l’offre de service au niveau du secteur sante +- Renforcer l’intersectorialité : Planification conjointes entre les sections +- +- Besoin de développer des stratégies novatrices en vue d’accélérer la réduction des cas de décès maternel et des enfants +- Besoin d’harmonisation et d’intégration de l’approche communautaires +- Besoin d’appui de BZ pour l’orientation et les sites de mise en œuvre de l’ATPC +- Besoin de renforcer la coordination des acteurs de Wash pour plus d’efficacité et d’efficience. +A l’issue de ce processus, un brainstorming sur la question des zones de convergences prioritaires pour la période 2020-2021 a été engagé. Il ressort de ces discussions que les 2 prochaines années les 7 Provinces suivantes sont retenues comme des Provinces prioritaires : Ouaiddai, Hadjer Lamis, Barh El gazel, Batha, Guera, Kanem et le Lac. Aussi les approches communautaires seront centrés dans les 2 Provinces : Guera et Kanem. +Phase de SMR +Le 5/12/19 s’est tenu a l’Hotel la T[[schema]]ienne l’atelier SMR proprement dit. L’ouverture de cet atelier a été marque par 2 temps forts : +- La Représentante de l’Unicef a pris la parole pour situer le contexte dudit atelier et a précisé que cette réflexion stratégique commune est une étape cruciale du Programme de coopération et va permettre de poser les bases des priorités pour les 2 ans avenir. Elle a aussi rappelé à l’endroit des participants les objectifs spécifiques de cet atelier. Et elle a fini son allocution en précisant que l’investissement dans les enfants est un droit pour les enfants. +- La Directrice Générale du Ministère de l’économie, du Plan et de coopération a pris la parole pour ouvrir officiellement l’atelier. Elle a aussi situé le contexte de cet atelier qui s’inscrit dans le cadre de processus de la revue de plan de coopération T[[schema]] Unicef. +Après cette phase protocolaire, les participants à l’atelier ont suivi avec beaucoup d’intérêt une présentation faite par un membre de l’équipe du Bureau Régional de l’Unicef qui a accompagné le T[[schema]] dans ce processus de réflexion stratégique. Il ressort de cette présentation les points essentielles suivants : +- 11% des enfants dans le monde vivent en Afrique de l’ouest et du Centre +- 32% de décès chez les enfants de moins de 5 ans et 42% décès maternels sont observés dans cette région +- La prévalence des mariages des enfants reste élevée +- Taux de défécation a l’aire libre reste élevé +Aussi, la région de l’Afrique de l’ouest et du Centre est confrontée à des nombreux défis : +- Forte croissance démographique +- Urgences chronique +- Phénomène de changement climatique +- Migration +- Terrorismes +D’où la nécessité de continuer à investir dans cette partie du monde. +Lors de cette présentation, la situation du T[[schema]] du T[[schema]] par rapport à l’ensemble de l’Afrique de l’ouest et du Centre a été faite. Il en ressort les points suivants : +- Sur les 8 résultats clés définis par le BR le T[[schema]] s’est engagé à atteindre quatre (4) +- Le taux de mortalité chez les enfants de moins de 5ans quand bien même a diminué reste au-dessus de la moyenne de la région +- La couverture en Penta3 reste faible (70%) +- Taux des enfants en dehors de l’école reste élevé (43%) +- Taux d’enregistrement des naissances chez les enfants moins d’un an reste faible +- Taus défécation a l’aire libre reste élevé (54%. 2eme pays ou le taux est le plus élevé) +Après cette présentation, 2 panels se sont suivis : +- 1er panel a porté sur : Points de vue sur la contribution du Programme de coopération a la réalisation des droits des enfants au T[[schema]] +- 2eme panel a porté sur : Regards croises sur l’évolution de la situation des enfants, adolescents et jeunes au T[[schema]] +A l’issue de 2 panels nous pouvons retenir de points de vue des panelistes les points suivants : +- Appui conséquent et très apprécié des panelistes par rapport aux interventions de l’Unicef dans les différents secteurs +- Nécessité de changement de paradigme par rapport aux innovations dans les stratégies pour plus de résultats dans certains secteurs ont des stratégies développées jusqu’à-là ont montré leurs limites +- Toutes intervention doivent avoir un volet de renforcement institutionnel +- Impliquer davantage les acteurs de terrains dans le processus d’engagement communautaire +- Renforcement de budget de l’État dans les secteurs de santé et de l’éducation +- Renforcer l’éducation de la petite fille (plus impact) +- Renfocre la qualité de l’éducation par des enseignants qualifiés +- Mobilisation davantage des ressources domestiques +A la fin de la présentation de 2 panels, les participants ont suivi la présentation des principaux résultats et indicateurs clés au niveau de différents secteurs. Il faut rappeler que la présentation de chaque secteur a été suivi de discussions.', '', 'completed', '2019-12-01', '2019-12-07', 'Participer a la Pre- SMR et SMR', '', false, false, '2019/238', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13031, '2019-11-29 15:41:42.830977+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (131, '2019-10-25 15:45:38.60949+00', '2020-02-26 10:19:44.454295+00', NULL, '2019-10-26 13:59:13.037959+00', NULL, '2019-10-28 08:49:44.233986+00', '', '', '', 'Le 30 octobre 2019, il s’est tenu à N’Djamena un atelier de revue des activités mises en œuvre dans le cadre de PCA avec les +Partenaires de Nutrition UNICEF T[[schema]]. + +L’objectif général de cet atelier était de faire le bilan à mi-parcours de la mise en œuvre des interventions, de renforcer la gestion efficiente et efficace des projets, en s’assurant que les mécanismes de coordination et de suivi des PCA fonctionnent de façon optimale. Plus spécifiquement, il s’agissait de : + Faire la revue de la mise en œuvre des partenariats signés entre l’UNICEF et les ONG ; + Identifier les insuffisances et goulots d’étranglements dans la mise en œuvre et le suivi de ces partenaires ; + Partager les expériences du terrain et les leçons apprises ; + Faire des recommandations réalistes et spécifiques à chaque ONG pour améliorer la mise en œuvre des activités pour la suite du projet. ; + Faire une mise à jour relative aux nouvelles procédures de partenariat, les activités d’assurance qualité et l’enregistrement des partenaires sur le portail UNPP. + +L’atelier a réuni les participants représentant les ONG partenaires (RTJN, ASSRAD, World Vision, PUI), l’équipe nutrition du bureau central, les PO nutrition des Bureaux de Zone (BZ) concernés par la mise en œuvre des PCA et les Chefs desdits BZ. +I. Présentation des activités mises en œuvre, commentaires/remarques et points d’actions issues des discussions qui ont suivi les présentations +Chaque partenaire a fait une présentation de la mise en œuvre des activités était faite suivant le plan ci-après : + Contexte et présentation de la zone d’intervention + Rappel des objectifs du projet + Mise en œuvre du projet + Activités réalisées (en spécifiant les zones couvertes) + Présentation des outils de collecte utilisés + Résultats attendus Vs obtenus + Défis et contraintes + Leçons apprises + Recommandations + Autres points importants à partager + +Les participants ont suivi durant la journée les présentations des partenaires suivants : le Réseau des journalistes, ONG ASRADD, World Vision et de PUI. A l’issue de ces différentes présentations il en ressort les constats suivants : + +1. Les ressources budgétaires allouées pour la mise en œuvre des activités à travers les PCA ne ressortent pas dans les différentes présentations alors que le but de l’atelier étant une revue des PCA, l’idéal était de savoir le cout des activités mises en œuvre et de faire ressortir les gaps existants. +2. Quelles sont les actions à prendre lorsque le projet prendra fin du moment où il n’y a pas une stratégie de sortie clairement défini faisant ressortir les différentes phases d’intervention avec les responsabilités du partenaire, celles du gouvernement à travers ses services déconcentrés ainsi que celles des communautés (bénéficiaires) ? +3. Le partenaire étant en appui, son rôle est d’aider les Centre de Santé (CS) à éviter les problèmes (ruptures…) avec des actions concrètes lors de suivi. +4. Les partenaires ne partagent pas suffisamment les informations sur leurs projets avec les autorités sanitaires de leurs zones d’intervention, ce qui ne facilite pas leur implication dans le processus de la mise en œuvre. Pour y remédier ils doivent exploiter les réunions de coordination pour faire connaitre aux partenaires (DSP/DS et autres partenaires) ce qu’ils font (activités menées, résultats attendus, approches, synergie d’actions etc) +5. Les présentations ne mentionnent pas l’engagement du partenaire, les difficultés rencontrées dans le cadre du PCA (le non-respect des engagements qu’il s’agisse de l’UNICEF ou du partenaire lui-même). Il faut recentrer le travail sur le partenariat. +6. Les processus n’apparaissent pas dans les présentations par exemple dans la présentation ASSRAD on ne perçoit pas quel est le lien entre les AGR et les activités de l’approche des 1000 premiers jours mises en œuvre ? quel est l’impact des AGR ? +7. les pratiques traditionnelles sont des défis liés à l’environnement de travail et non au partenariat. +8. Tout media a une méthode pour calculer son audience. Ainsi, il est important d’arriver à montrer comment on est arrivé aux chiffres (résultat RJTN peu expliqué : 80% de la population touchée par les médias) ; +La partie prévention a disparu dans la mise en œuvre du PCA avec WVI. En outre, Il y a un problème de ressources humaines en termes de compétence pour assurer la mise en œuvre et le suivi efficace des activités. A cela s’ajoute un problème de la communication avec les équipes du BZ de Moundou qui n’est pas en principe négociable. +Au vu de ces commentaires et suggestions il a été retenu que de groupes de travail composés des participants en provenance de chaque BZ (PO Nutrition et Chef de BZ) et de ceux de l’ONG qui met en œuvre les activités dans l’aire géographique couvert par le BZ soient organisés. Ces groupes de travail avaient eu comme tache de : + Faire ressortir les leçons apprises lors de l’exécution du partenariat ; + Identifier les goulots d’étranglements qui ont entravé le bon déroulement du partenariat ; + Formuler des recommandations pour améliorer le partenariat. +Il convient de noter que les collègues de l’unité nutrition du bureau central s’étaient repartis dans les différents groupes pour les appuyer lors du travail de groupe. Les principaux résultats issu de ces travaux de groupes ont été présentés en pleniere et débattu par l’ensemble des participants. +Principaux produits obtenus (Faire une présentation des réalisations majeures comme conséquences directes et immédiates de votre travail fait pendant la mission et en lien avec les résultats attendus préalables définis y compris les conséquences effectives mais non prévues) +Le travail de groupe sur la mise en œuvre du PCA, WVI-UNICEF à travers le Projet de Prévention et de prise en charge de la malnutrition aigüe chez les enfants âgés de 06 à 59 mois dans les Districts de santé de Guelendeng, Bongor, Pala et Torrock, a permis de dégager les leçons apprises, identifier les goulots d’étranglements et, formuler les recommandations. + +Quelques lecons apprises: + Les principes du partenariat ne sont pas totalement compris par les partenaires et l’atelier a été une opportunité pour situer les partenaires sur les principes fondamentaux du partenariat ; + Le renforcement de communication avec les autorités locales est un gage d’appropriation des acquis des principaux résultats issus de l’ensemble de partenariat avec les ONG', '', 'completed', '2019-10-28', '2019-10-31', 'Participer a l''atelier de la revue des PCA de l''Unite Nutrition', 'RAS', false, false, '2019/169', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 21654, 13031, '2019-10-26 13:59:13.037968+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (6, '2019-09-30 14:27:52.324951+00', '2020-02-27 11:02:02.615672+00', NULL, '2019-09-30 14:27:52.345157+00', NULL, '2019-10-01 07:53:59.193277+00', '', '', '', 'Voyage R&R + AL terminé.', '', 'completed', '2019-10-23', '2019-11-02', 'R&R + AL', '', true, false, '2019/6', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11607, 177097, '2019-09-30 14:27:52.345171+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (299, '2020-02-27 13:51:11.087252+00', NULL, NULL, '2020-02-27 13:51:11.1257+00', NULL, '2020-02-27 14:20:40.764397+00', '', '', '', '', '', 'approved', '2020-03-10', '2020-03-11', 'Mission d''échange avec les collègue zone de convergence', '', false, false, '2020/378', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 10933, 25005, '2020-02-27 13:51:11.125708+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (279, '2020-02-24 15:13:36.123701+00', NULL, NULL, '2020-02-24 15:17:58.772438+00', NULL, '2020-02-24 15:32:16.392815+00', '', '', '', '', '', 'approved', '2020-03-02', '2020-03-05', 'To attend the Kick off meeting between UNICEF and WFP', '', true, false, '2020/352', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11719, 193970, '2020-02-24 15:17:58.772447+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (340, '2020-03-05 00:20:35.455684+00', NULL, '2020-03-05 07:51:26.869879+00', NULL, NULL, NULL, '', '', '', '', '', 'cancelled', '2020-03-23', '2020-03-25', 'Participation a l''atelier intersectoriel sur le Cholera', '', false, false, '2020/451', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11647, 11344, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (296, '2020-02-26 11:43:54.681947+00', NULL, NULL, '2020-02-26 13:24:24.887689+00', NULL, '2020-02-26 16:28:35.335257+00', '', '', '', '', '', 'approved', '2020-03-02', '2020-03-19', 'Co-faciliter l''atelier de renforcement des acteurs locaux en PRU au Lac et au Logone Or.', '', false, false, '2020/375', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11347, 14700, '2020-02-26 13:24:24.887698+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (270, '2020-02-21 09:51:48.107767+00', '2020-03-19 14:38:19.616458+00', NULL, '2020-02-21 09:52:11+00', NULL, '2020-02-24 13:18:08+00', '', '', '', 'Il s’est tenu à Abéché le 12 novembre 2019 dernier, la revue annuelle qui a été organisée par le CPA (comité provinciale d’actions du Ouaddaï) grâce à l’appui technique et financier de l’UNICEF. La cérémonie d’ouverture a été marquée par la présence du Gouverneur de la Province du Ouaddaï qui a souhaité la bienvenue aux invités et a lancé officiellement les travaux. Cette ouverture a été précédé par le mot de remerciement du Représentant du chef de bureau de zone (BZ) de l’UNICEF à Abéché. Outre ces deux officiels, la revue a regroupé, les Secrétaires Généraux des Provinces qui dépendent du BZ d’Abéché, les Délégués provinciaux, les représentants des ONG et certains cadres de la localité. + +Une session des présentations des résultats et suivis des questions réponses a marqué la journée, il s’agit de : +- La délégation sanitaire de Wadi Fira +- La délégation sanitaire du Borkou +- La délégation sanitaire du Sila +- La délégation sanitaire du Ouaddaï +- La délégation sanitaire de l’Ennedi Est +- La délégation sanitaire de l’Ennedi Ouest +- La délégation de l’action sociale et de la femme du Ouaddaï +- La présentation groupée des Délégations de l’éducation de l’Ennedi Est, Sila, Wadi Fira et Ouaddaï. +Les travaux de groupe ont suivi la session des présentations et il s’est constitué 4 groupes à s’avoir : +- Le groupe Sante/nutrition/VIH composée des délégués de la sante +- Le groupe Education, des délégués, des planificateurs et de certains cadres des associations et ONG ; +- Le groupe Protection, de la déléguée de l’action sociale, du PF protection enfant de la Délégation de l’Action Sociale, des SG provinciaux ; +- Le groupe Wash, de délégué de l’environnement et certains représentants des ONG. + A la fin de la revue, les résultats suivants ont été atteints : +- tel que définis dans les Plans de travail pluriannuels pour l’année 2019 ont atteint leur niveau de progrès escompté ; +- tel que défini par les provinces prioritaires / de convergence de mise en œuvre suivant les résultats de la nouvelle cartographie et l’analyse de priorisation en faveur des résultats clés pour les enfants ; +- sur la base des identifications et de l’analyse des stratégies de mise en œuvre (innovations, évidences, partenariats, collaboration avec le SNU, engagement avec le secteur privé, etc.) et des goulots d’étranglement et les écarts d’équité et de genre dans la réalisation des résultats ; +- grâce à l’analyse des forces, des faiblesses, des opportunités et des menaces dans la mise en œuvre des composantes de programme ; +- grâce aux leçons tirées de la mise en œuvre du Programme de Coopération sur la période écoulée ; +- grâce à la formulation des recommandations et des actions correctrices pour assurer l’alignement sur les nouvelles priorités de 2019.', '', 'completed', '2020-03-02', '2020-03-14', 'Renforcement des capacités du staff et des consultants des bureaux de zone de l’UNICEF en E-tools et Verification Programmatique du CPA de OUADDAI', 'WBS : 0810/A0/05/880/003/001 - Non GRANT + +OIC : Thomas Morban et Mokein Caleb Mian-Gainda + +NOUVEAUX ITINERAIRES : + +N’Djamena - Abéché : Arrivée le 02 en avion, formation le 03 et 04, retour en avion le 05 mars 2020 +N’Djamena - Moundou : Arrivée le 09 en avion, formation le 10 et le retour en voiture le 11 mars 2020 +N’Djamena - Bol : Arrivée le 12 en voiture, formation le 13 et le retour en voiture le 14 mars 2020', false, false, '2020/335', false, '{}', 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 177097, 4606, '2020-02-21 09:52:11+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (436, '2020-03-20 06:56:45.793734+00', NULL, NULL, '2020-03-20 06:58:25.940073+00', '2020-03-20 12:29:53.42651+00', NULL, 'Meeting cancelled', '', '', '', '', 'rejected', '2020-03-24', '2020-03-27', 'Revue de gestion 2019 / 25-26 Mars 2020', 'WBS: 0810/A0/05/880/006/003 Non-Grant +OIC: Ronel Hamat', false, false, '2020/603', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 11859, 11068, '2020-03-09 10:57:05.14741+00', NULL, 12); +INSERT INTO [[schema]].t2f_travel VALUES (298, '2020-02-27 08:06:05.829598+00', NULL, NULL, '2020-02-27 08:10:11.210489+00', NULL, '2020-03-02 08:30:56.118142+00', '', '', '', '', '', 'approved', '2020-03-04', '2020-03-10', 'Participer à la mission de suivi avec la consultante des financements KFW à Bokoro', '', false, false, '2020/377', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11399, 5052, '2020-02-27 08:10:11.210496+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (305, '2020-02-28 22:28:12.256409+00', NULL, NULL, '2020-02-28 22:36:24.687219+00', NULL, '2020-03-01 08:45:39.480117+00', '', '', '', '', '', 'approved', '2020-02-27', '2020-03-08', 'Mission de collecte des donnees du protocole simplifie', 'WBS Element + GRANT: SM190227; WBS: 0810/A0/05/882/004/002', false, false, '2020/384', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11672, 22317, '2020-02-28 22:36:24.687226+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (309, '2020-03-02 09:06:13.45354+00', NULL, NULL, '2020-03-02 09:10:11.497779+00', NULL, '2020-03-03 08:52:01.606165+00', '', '', '', '', '', 'approved', '2020-03-08', '2020-03-14', 'Appuyer la formation des agents de santés de la Province du Chari Baguimi en paquets PTME.', '', false, false, '2020/388', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11436, 20436, '2020-02-26 15:30:51.294503+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (335, '2020-03-04 11:37:13.342486+00', NULL, NULL, '2020-03-04 11:37:13.357632+00', NULL, '2020-03-04 15:23:25.237937+00', '', '', '', '', '', 'approved', '2020-03-09', '2020-03-17', 'Mission d''appui Polio dans le Ouaddai', '', false, false, '2020/439', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11347, 14482, '2020-03-04 11:37:13.357639+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (330, '2020-03-04 09:28:31.463798+00', NULL, '2020-03-04 10:47:12.02293+00', NULL, NULL, NULL, '', '', '', '', '', 'cancelled', '2020-03-05', '2020-03-11', 'Participation a la mission d''evalution KFW', '', false, false, '2020/430', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 14482, 24195, NULL, NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (312, '2020-03-02 09:33:44.27804+00', NULL, NULL, '2020-03-02 09:34:04.802343+00', NULL, '2020-03-02 10:00:45.628991+00', '', '', '', '', '', 'approved', '2020-01-08', '2020-01-10', 'Vérification Programmatique de l''Association des Femmes Allaitantes AFA - Bol', '', false, false, '2020/400', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 5056, '2020-01-02 13:17:42.039816+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (317, '2020-03-02 10:51:36.740642+00', NULL, NULL, '2020-03-02 10:42:01.765195+00', NULL, NULL, '', '', '', 'Visite programmatque (au bureau du partenaire a N''djamena)sur les activites menees dans les provinces', '', 'planned', '2019-11-27', '2019-11-27', 'Visite programmatique chez le partenaire UAFAT A N''djamena', '', false, false, '2020/405', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 28663, 5056, '2020-03-02 10:42:01.765202+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (435, '2020-03-19 17:22:51.466369+00', '2020-04-10 12:00:55.648903+00', NULL, '2020-03-19 17:24:47.840265+00', NULL, '2020-03-19 17:37:12.604554+00', '', '', '', 'The trip report is attached in the attachment & notes section ! The action points are included in the action points sections', '', 'completed', '2020-03-18', '2020-03-19', 'Visite programmatique du programme WASH dans les écoles à N''Djamena', 'The trip doesn''t require any DSA as it is in the capital of N''Djamena.', false, false, '2020/602', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11399, 13750, '2020-03-19 17:24:47.840272+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (315, '2020-03-02 09:56:16.692008+00', NULL, NULL, '2020-03-02 09:56:28.192906+00', NULL, '2020-03-02 14:32:56.066709+00', '', '', '', '', '', 'approved', '2019-12-31', '2019-12-31', 'Verification Programmatique 1ere Tranche PCA URPT (22/PCA/209/COM/URPT', '', false, false, '2020/403', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 5056, '2020-03-02 09:56:28.192913+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (481, '2020-04-10 09:46:10.709685+00', NULL, NULL, '2020-04-10 09:46:10.787445+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-04-14', '2020-04-15', 'Mission conjointe de collecte de donnees sur l''enregistrement des naissances a krim-krim et Benoye', '', false, false, '2020/667', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 9984, 13372, '2020-04-10 09:46:10.787452+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (441, '2020-03-24 06:51:28.248511+00', NULL, NULL, '2020-03-24 09:41:18.934902+00', NULL, '2020-03-24 10:41:16.184896+00', '', '', '', '', '', 'approved', '2020-03-25', '2020-03-26', 'Rejoindre mon nouveau poste a Ndjamena', 'Charger WBS 881/002/008 SC 190427', false, false, '2020/614', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 12378, 14482, '2020-03-24 09:41:18.93491+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (451, '2020-03-26 14:18:42.558642+00', NULL, NULL, '2020-03-26 14:18:42.590538+00', NULL, '2020-03-26 14:21:15.46862+00', '', '', '', '', '', 'approved', '2020-03-31', '2020-03-31', 'Regagner mon nouveau poste a ndjamena', '', false, false, '2020/624', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 11859, 13418, '2020-03-26 14:18:42.590546+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (261, '2020-02-19 05:33:45.937022+00', '2020-03-31 10:28:12.73631+00', NULL, '2020-02-19 05:33:54.671867+00', NULL, '2020-02-19 16:37:23.762706+00', '', '', '', 'Il s’est déroulé du 10 au 17/02/20, une mission de supervision et de suivi des activités PTME dans les districts sanitaires (DS) de la Province du Moyen Chari. Dès notre arrivée dans la Province du Moyen Chari nous avions pris contact avec les autorités sanitaires et administratives pour partager avec elles les objectifs de cette mission. En effet, cette mission avait pour but de passer en revue l’ensemble des activités VIH/PTME d’une part et d’autre part examiner la performance de chaque DS des 6 DS que compte la DSP du Moyen Chari au cours de 2019. +De manière spécifique il s’agit de : +• Passer en revue toutes les activités VIH/PTME au niveau de chaque district ; +• Présenter la performance de chaque DS selon les principaux indicateurs retenus pour cette mission de supervision avec les ECD ; +• Identifier les points forts et les points a améliorés et y proposer des pistes des solutions ; +• Assurer la collecte des données des mois de janvier dans les DS supervisés ; +• Assurer l’inventaire des intrants (ARV et réactifs) par district ; +• Assurer l’assurance qualité des données ; +• Assurer le suivi de la mise en œuvre des activités financées dans les 6 DS. +Au cours de cette mission, le support de la supervision a été utilisé. La méthodologie adoptée au cours de cette mission de supervision au niveau de chaque DS est d’échanger avec l’équipe cadre de DS et de visiter au moins un CS au niveau opérationnel. Les détails au niveau de chaque DS se présente de la manière suivante : +1. DS de Maro : +Situe à 100 km du Chef de lieu de la Province, le DS de Maro compte 7 ZR fonctionnelles. 100% de ces ZR mettent en œuvre la délégation des taches. Au cours des échanges avec l’équipe cadre du DS il en ressort les points suivants : +- 3 RCS (nouveaux) sur les 7 ne sont pas formés sur le paquet PTME +- 7 enfants exposés prélevés pour le PCR au cours de 2019 +- Disponibilité actuellement des intrants PTME au niveau du DS et des CS. Cependant l’équipe a signalé une rupture d’intrants pendant 2 semaine dans certains CS au cours de l’année 2019. Aussi très souvent les besoins exprimes par le DS ne sont pas respectés par la délégation. Ceci explique ces cas de ruptures. +- Retrait des partenaires UNHCR et UNFPA du district : les Sages-femmes recrutés et mises à dispositions des CS affectes par la présence des retournes/Refugiés ont cesse le travail faut de contrat. Ceci a eu de répercussion sur les activités PTME dans les ZR de Maingama, Maro urbain, Sido Ouest et Est. +Après les échanges avec l’ECD, un centre de sante a été supervision. Il s’agit de CS e MARO. Les constats relevés au niveau de cette structure sont les suivants : +- Pas de registre PTME +- Absence de mécanismes de suivi des femmes enceintes dépistées séropositives et des enfants exposes +- 4 sages-femmes sont présentes au niveau du CS mais aucune n’est formée sur le paquet PTME +- Insuffisance des boites d’accouchements au niveau du CS +Pour ce qui est de l’analyse des données PTME du DS en 2019, la situation a été présenté à l’ECD : +- Sur ls 6 060 grossesses attendues du DS, 3869 femmes enceintes ont été consultées en CPN1 soit une couverture de 63.8%. Il existe une disparité entre les ZR. La couverture varie de 42.6% à 109.2%. Il faut rappeler que les données de la ZR de Site Sido sont incluses dans les données de la ZR de Sido Est. Ci-dessus l’évolution par ZR : + +- Sur les 31 femmes enceintes séropositifs attendues, 21 ont été dépistés soit 60% +- Sur les 15 enfants séropositifs attendus au niveau du DS, aucun enfant n’est dépisté. +- 7 enfants nés des mères séropositifs ont été prélevés pour le PCR. Aucun résultat ne s’est révélé positif. +2. DS de Danamadji +Ce DS est situé à 50 km du chef de lieu de la Province. Il compte 15 ZR fonctionnelles en 2019. Il faut souligner que le DS a été divisé en 2. Désormais 6 Zones de responsabilités seront rattachées en 2020 au DS de Koumogo. Après échanges avec l’équipe cadre du DS les constats suivants ont été relevés : +- Toutes les ZR mettent en œuvre la délégation des taches +- Rupture fréquente des détermines et de Névirapine car la quantité servie par la Délégation ne respecte pas les besoins exprimés par le DS. Cependant actuellement les intrants sont disponibles. +- Les agents impliqués dans la mise en œuvre sont formés +Aussi un centre de sante a supervise. Il s’agit de CS de Danamadji Est. Après les échanges avec le RCS, nous pouvons faire les constats suivants : +- 2 agents qualifié au niveau du CS dont le RCS. Seul le RCS est forme. +- Il existe un registre de CPN et de PTME : cependant le registre de PTME n’est pas bien rempli. Une explication a été donnée à l’équipe pour le remplissage correcte du registre +- Aucun mécanisme pour enregistrer les enfants nés des mères séropositives. Il a été suggéré à l’équipe de mettre en place un cahier pour enregistre tous les enfants nés des mères séropositives avec toutes les informations afférentes. +- Difficulté dans l’obtention des résultats de PCR (3 prélèvements sont faits et transmis à Sarh mais l’équipe n’a pas reçu les résultats) ; +Enfin l’analyse de la performance du DS en 2019 révèle aussi les faits suivants : +- Sur les 10 833 grossesses attendues au cours de l’année 2019, 8720 femmes enceintes ont été reçues en CPN1 soit une couvrure de 80.5%. 4 ZR (Danamadji Ouest, Maimana, Ndakono et Manda 2) ont une couverture entre 51.5 % à 65.3%. Ce sont ces ZR qui tirent le DS vers le bas. + +- Sur les 130 femmes enceintes séropositives attendues au niveau du DS, 56 ont été dépistées soit une couverture de 43% +- Sur les 16 enfants séropositifs attendus par le DS, un seul enfant a été dépisté séropositif soit une couverture de 6%. + +3. DS de Sarh : +Le DS compte 13 ZR fonctionnelles. Toutes les ZR appliquent la délégation des taches. Cependant au cours de l’année 2019 un CS a été fermé suite à une crise au niveau du CS (départ du RCS et fermeture du CS durant presque toute l’année). Le CS a été réouvert vers fin décembre 2019 suite à un compromis trouve avec la communauté par l’ECD. +Au cours des échanges avec l’ECD, nous avions pu retenir les points suivants : +- Insuffisance/absence des registres dans certains CS +- Difficultés de suivi des Femmes enceintes dépistées séropositives dans les CS urbains. Car tous les CS urbain ne font pas d’accouchements. De ce fait une fois accouchée à l’hôpital provincial, les RCS concernés n’ont plus les traces de ces femmes. +- Manque de coordination des activités PTME tant au niveau du DS qu’au niveau de la délégation. +- Difficultés de tenus de réunion de d’analyse et de validation avec les RCS par faute financement durant l’année 2019 +- Manque de mécanismes adéquat pour le suivi des femmes enceintes dépistées séropositives et des enfants exposés dans les CS +- Absence de mécanisme de recherche de perdu de vu des femmes enceintes dépistées séropositives +Suite a ces constats nous avions analysé ensemble ces points et nous avions formulé des pistes de solutions sous forme des recommandations : +- Mettre en place un mécanisme de traçabilité des données entre les CS urbains et l’hôpital Provincial +- Encourager les CS à faire accoucher les femmes au niveau de chaque CS pour minimiser les perdues de vues +- Mettre en place dans tous les CS un cahier pour enregistrer les femmes enceintes dépistés séropositives et les enfants exposés +- Définir es cibles par ZR pour permettre à chaque RC d’abord un tableau de bord +- Développer les activités promotionnelles à base communautaires +- Renforcer le dépistage a toutes les portes d’entrées pour renforcer la prise en charge pédiatrique +- 4 médecins ne sont pas formés sur la prise en charge pédiatrique +Concernant l’analyse de la performance du DS de Sarh on peut noter les points suivants : +- Sur les 10 650 grossesses attendues au niveau DS, 7178 femmes enceintes ont été vues en CPN1 soit une couverture de 67.4%. Cette situation cache une disparité entre les zones de responsabilité. 6 ZR (Kemdere, Banda CST, Banda Canton, Kassai, 15 ans et Badara) ont une couverture en dessous de 60% et par conséquent ces ZR tirent les indicateurs en matière de la PTME du DS vers le bas. Cependant il est à noter aussi que Badara et 15 ans ont une couverture de moins de 30%. Le centre de 15 ans était pratiquement fermé durant l’année 2019. Il a repris les activités timidement en décembre 2019. +- Sur les 128 femmes enceintes séropositives attendues durant l’année 2019, 95 femmes enceintes ont été rattrapes soit une couverture de 74%. Cependant un effort doit être fait dans certains CS notamment les CS de Kemdéré, Banda CST, Kokaga, Quinze ans, Yalnas et Badara. +- Sur les 24 enfants séropositifs attendus, seul un enfant a été dépistés séropositifs et a été mis sous traitement ARV soit une couverture de 4%. +- 57 prélèvements ont été réalisés au niveau du DS de Sarh pour le dépistage précoce. + +4. DS de Biobe +Le DS de Biobe est situé de 175 km de chef-lieu de la province. Il compte 8 ZR fonctionnelles et toutes appliquent la délégation des taches. Suite a nos échanges avec l’ECD nous pouvions faire les constats suivants : +- Instabilité du personnel +- Les 8 RCS et agents de l’hôpital sont formés sur le paquet PTME/PECP +- Difficulté d’accessibilité dans la plupart des ZR du DS : 2 CS (Bomkebir et Mallley) sont accessibles pendant la période de mars -mai et 5 CS sont inaccessible durant la période de juillet-Novembre. Ceci rend difficile l’approvisionnement en intrants de ces ZR et même la supervision. +- Absence de moyen roulant pour la supervision +- Tous les RCS disposent de registres des CPN et de la PTME +- Dépistage à travers les autres portes d’entrées ne se réalise pas au nveau du DS +La visite au CS de Biobe Singako nous a permis de faire les constats suivants : +- Présence de registre de PTME mais pas bien rempli. Un coaching du RCS sur le remplissage correct a été assuré +- Le RCS est formé +- Les intrants sont disponibles au niveau du CS. +L’analyse des données PTME du DS de Biobe a permis de faire les constats suivants : +- Sur les 5 149 grossesses attendues, 3 322 femmes enceintes ont été vues en CPN1 soit une couverture de 64.5%. 2 ZR (Koutou Guere et Missidi) ont néanmoins une couverture de moins de 50%. L’accent doit être mis sur la ZR de Koutou Guere ou la couverture est resté très faible (22.1%). Il est à noter aussi que ces Zones sont difficiles d’accès. Il a été suggéré a l’ECD de mettre à disposition des ZR difficiles d’accès les intrants pour une période de 6 mois pour éviter les ruptures. + +- Sur les 61 femmes enceintes séropositives attendues, 30 sont dépistées soit une couverture de 49% +- Sur les 13 enfants séropositifs attendus, aucun enfant n’a été dépisté séropositif +- 5 prélèvements des enfants exposés pour le dépistage précoce ont été réalisés mais aucun enfant ne s’est révélé séropositif. + +5. DS de Kyabé +Le DS est situé à environ 100 km du Chef-lieu de la Province. Il reste l’un plus de grand DS de la Province. Il compte 21 ZR fonctionnelles. +Comme dans les autres DS, les échanges ont eu lieu avec l’ECD. Les constats suivants sont faits : +- Les réunions de validation se tiennent même en l’absence de financement des partenaires +- La délégation des taches est effective dans toutes les ZR du DS +- Les données de dépistage des enfants à travers les autres portes d’entrée de l’hôpital de DS ne sont pas intégrées dans la fiche de collecte des données mensuelles +- Très peu de ZR pratiquent la stratégie en avancée en CPN +- Les autres intrants PTME sont disponibles en dehors de détermines ou l’équipe signal une rupture au niveau DS. Aussi il est à noter que les quantités servies au DS ne couvrent pas tous les besoins +- 18 agents sur les 22 sont formés sur le paquet PTME. + +Concernant la performance du DS nous avions noté les faits suivants : +- Faible couverture en CPN1 pour le DS de Kyabe (58%) : sur les 8 355 grossesses attendues, 4 870 femmes enceintes ont été vues en CPN1. Cette tendance est d’autant plus accentuée dans certaines ZR où les taux de couverture en CPN1 sont à moins de 40%. +- 73 femmes enceintes dépistées séropositives sur les 100 femmes enceintes séropositives attendues soit une couverture de 73%. Cependant on note une déperdition de 4 femmes qui n’ont été mises sous ARV. Un mécanisme de suivi des femmes enceintes dépistées séropositives doit être mise en place pour éviter la déperdition des femmes enceintes dépistées séropositives. +- Faible couverture en prise en charge pédiatrique : au total 2 enfants sont dépistés séropositifs par rapport aux enfants attendus séropositifs (21) soit une couverture de 9.5% +- 10 prélèvements pour le dépistage ont été réalisés par le DS. +Cette mission de supervision au niveau de chaque DS nous a permis d’atteindre les principaux résultats suivants : +• Une analyse des principaux indicateurs de la PTME a été faite au niveau de chaque DS. Elle a permis à chaque ECD de mettre l’accent sur leurs faiblesses respectives. Et les ZR à faible performance ont été identifiées. Des pistes de solutions en termes de stratégies ont été passées en revue et des recommandations ont été faites à l’endroit de chaque ECD pour booster les résultats en 2020. +• Les principaux goulots d’étranglement par DS ont été identifiés : La faiblesse dans la prise en charge pédiatrique et la gestion des intrants demeurent un défi pour la Province. La formation des nouveaux médecins affectés dans les DS et le renforcement des outils de gestion pourraient aider les DS à renforcer ces indicateurs en 2020. +• La situation des intrants a été faite au niveau de chaque DS. Il manque cependant un mécanisme de gestion rationnelle des intrants a différents niveaux. Des outils de gestion des intrants doivent être mis en place très rapidement. Par ailleurs il a aussi été constaté qu’il y a une rupture de certains intrants dans la plupart de DS. Les besoins de DS ne sont exprimés en tenant compte de cibles au niveau de chaque ZR. +• Un approvisionnement à partir de la PPA (pharmacie Provinciale d’approvisionnement) de Koumra a été faite pour la délégation sanitaire du Moyen Chari pour résoudre l’épineuse question de la rupture des intrants sur l’ensemble des DS. +• Le coaching des ECD de l’ensemble des DS supervisés été assuré selon les faiblesses identifiées. +• Le besoin en formation sur la PECP a été exprimé dans l’ensemble de DS supervisés. L’accent doit être mis surtout sur les nouveaux médecins affectes dans l’ensemble de ces DS. +Les principales leçons apprises lors de cette mission de supervision sont les suivantes : + Le déficit de communication entre les acteurs de DS d’une part et avec l’équipe cadre de la délégation ne favorise pas une bonne gestion des intrants et on assiste à une rupture artificielle au niveau des DS et des ZR ; + Non implication de la PPA de Sarh dans le suivi et la commande des intrants ; + Le dépistage des enfants a toutes les portes d’entrée de formations sanitaires notamment des hôpitaux de DS n’est pas effectif partout.', '', 'completed', '2020-02-10', '2020-02-17', 'Mission de supervision conjointe dans les DS de la DSP du Moyen Chari', 'OIC Dr Kebfene +WBS: 0810/AO/05/883/004/003-NON GRANT', false, false, '2020/326', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13031, '2020-02-19 05:33:54.671912+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (262, '2020-02-19 05:37:18.679842+00', '2020-03-31 10:26:49.351634+00', NULL, '2020-02-19 05:37:26.184244+00', NULL, '2020-02-19 16:32:26.40603+00', '', '', '', 'Il s’est tenu du 18 au 20/02/2020, un atelier de coordination et bilan des activités PTME/PECP et communautaires pour le Pool du sud. L’atelier a regroupé les participants venant des six (6) Provinces du sud à savoir : le Logone Occidental, le Logone Oriental, la Tandjilé, le Moyen Chari, le Mandoul et le Mayo Kebbi Ouest. + La cérémonie d’ouverture a vu la participation du Secrétaire Général de la Province du MKO représentant son Excellence le Gouverneur de la Province du Mayo Kebbi Ouest. Quatre temps forts ont marqué cette cérémonie : +- Mot de Bienvenue du Délégué Sanitaire intérimaire du MKO +- Mot introduction de la coordination nationale de la PTME +- Mot du Chef d’Unité VIH de l’Unicef +- Mot d’ouverture du Secrétaire General de la Province du MKO + +L’’intérimaire du délégué sanitaire provincial du Mayo Kebbi Ouest a pris la parole pour souhaiter la bienvenue aux participants et a remercié les autorités de la place d’avoir rehaussé de leur présence, la cérémonie d’ouverture de l’atelier bilan PTME du 2eme Semestre 2019. +Le coordonnateur national de la PTME dans ses mots de circonstances n’a pas manqué de souligner que les indicateurs PTME demeurent faibles notamment la couverture de la prise en charge pédiatrique. + +Dans son mot introductif, le Chef d’Unité VIH de l’Unicef a adressé ses remerciements à tous les participants qui ont fait le déplacement de Pala pour prendre part à cet atelier donc l’importance n’est plus a démontré. Il a noté au passage que les indicateurs en matière de la cascade PTME sont en nette progression. Cependant, la prise en charge pédiatrique demeure défis entiers. Il a encouragé tous les acteurs à mettre à profit les nouvelles stratégies pour maximiser le dépistage des enfants et des jeunes/adolescents. En fin, il a souligné l’engagement de Unicef pour accompagner le Gouvernement du T[[schema]] à relever les défis en matière de la PTME et de la prise en charge pédiatrique. +Dans son mot d’ouverture, le Secrétaire Général de la Province du MKO a mis l’accent sur l’importance de ces assises et a précisé que cette rencontre permettra de faire un état de lieu de la mise en œuvre des recommandations issues de la première réunion bilan du 1er semestre de l’année 2019 et de faire la revue de l’ensemble des résultats obtenus en 2019. Il a aussi rappelé les objectifs spécifiques de cet atelier qui sont entre autres : +• D’examiner et valider la mise en œuvre PTME/PECP du 2ème semestre de l’année 2019 ; +• Discuter sur les modalités de la prise en charge du SIDA pédiatrique ; +• D’identifier les goulots d’étranglements qui entravent la mise en œuvre intégrale du paquet PTME/PECP et proposer des solutions correctrices ; +• Discuter et valider le système d’approvisionnement en intrants au niveau décentralisé ; +• Discuter de la problématique des collectes des données, de leur analyse et transmission dans le délai avec les équipes cadres des Délégations et Districts ; +• Faire le point sur la mise en œuvre des différents micros plans 2017 – 2021 de l’ensemble des DS ; +• Discuter de l’intégration des approches innovantes du dépistage ciblé et du circuit de collecte des échantillons pour le diagnostic précoce +Après le mot d’ouverture du Secrétaire Général, un présidium a été mis en place, suivi de la présentation individuelle des participants. L’atelier a effectivement démarré par les différentes présentations prévues dans l’agenda. +Après la cérémonie d’ouverture officielle, la première journée a démarré par la présentation du contexte et des objectifs de cet atelier. En rappel, le présentateur a souligné que le T[[schema]] il a rappelé que le T[[schema]] a souscrit aux engagements mondiaux pour l’atteinte des objectifs: + 90-90-90 en fin 2020 et + 95-95-95 en fin 2030 +L’atteinte de ces résultats passe nécessairement par la PTME dont l’e-TME constitue le pilier central. Pour atteindre les résultats escomptés, le Ministère de la Santé Publique et les partenaires de lutte contre le VIH/Sida se sont résolument engagés pour inverser la tendance de l’épidémie. Pour cela les objectifs suivants ont été rappeler aux participants : +• D’examiner et validés les résultats de la mise en œuvre de la PTME/PECP en 2019 ; +• Discuter sur les modalités de prise en charge du Sida pédiatrique ; +• Identifier les goulots d’étranglements qui entravent la mise en œuvre de la PTME/PECP et de proposer des solutions correctrices ; +• Discuter et évaluer le système d’approvisionnement en intrants au niveau décentraliser +• Discuter les modalités de suivi renforcé de la gestion des intrants dans les districts et centres de santé ; +• Discuter de la problématique des outils de collecte des données, de leur analyse et transmission dans le délai avec les équipes cadres des DSP/DS ; +• Discuter des modalités d’intégration du dépistage des cas index dans toutes les structures de prise en charge ; +• Faire le point sur la mise en œuvre des différents micros plans 2017-2021et dégager un plan de revue des micros plans des districts +Il est aussi à noter qu’en plus de 10 Provinces prioritaires traditionnelles, 3 autres Provinces ont été ajoutées pour l’année 2020. Ce sont entre autres : le Chari Baguirmi, le Hadjer Lamis et le Guéra. L’état de la mise en œuvre des recommandations de la réunion précédente a été présenté aux participants. Sur les 5 recommandations formulées, une seule n’a pu être réalisée. + +A l’issu de cette présentation introductive, les participants ont suivi les présentations suivantes : + +1. Présentation de la DSP du MKO : +A travers cette présentation, on note une amélioration des indicateurs (en 2019 vs 2018) notamment la couverture en CPN1, la proportion des femmes enceintes dépistées et mises sous ARV, Proportion des enfants dépistés et mis sous ARV. 89% du personnel impliqué dans la mise en œuvre sont formés sur le parquet PTME/PECP. Le dépistage des enfants à travers les autres portes d’entrée est effectif. Cela à contribuer à l’augmentation des cas des enfants infectés. Cette présentation a été suivie de discussion par les participants. Il en ressort les points suivants : +- Il serait souhaitable de ressort dans la présentation la PTME de sauvetage +- La mise en place d’un mécanisme pour collecter toutes les données de dépistage des enfants a toutes les portes d’entrée +- Le besoin de revoir l’outil de collecte des données pour prendre en compte les enfants dépistés aux autres portes d’entrée +- Le besoin d’intégrer le dépistage familiale/ cas index dans les activités de routine dans les centres de soins et au niveau communautaire + +2. Présentation portant sur les points d’accélération sur la prise en charge pédiatrique : +Un plan d’accélération de la PECP 2019-2023 élaboré, validé, distribué aux provinces et aux districts. Les stratégies définies dans ce plan pourront contribuer à booster la PECP d’ici 2023. Les approches innovantes sont les suivantes : +- Dépistage des cas index/dépistage familiale : il s’agit donc d’un dépistage familial au niveau communautaire et au niveau centre de soins. Pour cela il serait nécessaire de renforcer les capacités des agents communautaires. +- La PoC ou dépistage au point de prestation de services est effective. Cela est une réalité à travers la mise en place de 8 GenXpert dans les 7 Provinces couvertes par le BZ de Moundou +- Le dépistage communautaire par les PVVIH et par les pairs : cela est effective par le rôle des CPS sur le terrain. Cependant nous devrions passer a échelle. +- Les observatoires de traitement communautaire : Les communautés doivent être placées au centre de la riposte au VIH et leurs capacités doivent être renforcées pour plus d’efficacité. Il est impératif de mettre à contribution les réseaux de personnes vivant avec le VIH qui ont en leur sein des enfants. On ne doit pas attendre que les enfants tombent malade pour les faire dépister. Un accent particulier doit être mis aussi sur la prévention des jeunes et des adolescents(es). + +3. Présentation de la DSP du LOR +Au 2eme semestre 2019, les indicateurs de la cascade PTME ont connu une progression : 42% des femmes enceintes attendues ont été consultées et 95% ont été dépistées. Pour ce qui de la cascade de la PECP, 100 enfants sont nés des mères séropositives dont 98 ont été mis sous traitement prophylactique. 98 enfants ont été dépistés dont 3 se révélés séropositifs et ont été mis sous traitement. Par ailleurs 127 enfants et adolescents âgés de 10 – 14 ans dépistés dont 10 sont dépistés positifs soit 7,8 %. Aussi 547 enfants et adolescents âgés de 15 – 19 ans dépistés ,19 sont dépistés positifs soit 3,47%. Tous ces jeunes/adolescents dépités séropositifs ont été mis sous ARV. Suite à cette présentation, les participants ont recommandé à la DSP de renforcer le dépistage des enfants à travers les autres portes d’entrée notamment les UNT pour booster les indicateurs sur la PECP. +4. Présentation de la DSP du Mandoul +Comme pour les autres délégations, la délégation sanitaire du Mandoul a présenté les principaux résultats obtenus pendant le 2eme semestre 2019. Il ressort de cette présentation les faits suivants : +• 69% de couverture en CPN1 qui reste faible par rapport à 2018 ; +• 96% de taux d’acceptabilité pour le dépistage des femmes enceintes ; +• 97% des femmes enceintes dépistées séropositives sont mises sous ARV ; +• 31% des jeunes et adolescents dépistés dans le CLAC n’ont pas retiré leurs résultats +• 147 enfants sont nés de mères séropositives dont 145 ont été mis sous ARV prophylactique et 128 ont été dépistés par le PCR entre 4 à 6 semaine. Il faut signaler au total 328 enfants ont été dépités dont 11 enfants se révélés séropositifs et sont mis sous traitement. +• 893 enfants ont été dépistés à travers les autres portes d’entrées dont 12 se sont révélés séropositifs. Ces enfants ont été mis sous traitement. +• 445 femmes enceintes séropositives dont 300 nouvellement dépistées au cours de 2019 sont suivies dans les formations sanitaires +Après discussion il a été recommandé à la délégations les points suivants : +- Prendre en compte les besoins de la DSP du Moyen chari lors de la commande des intrants par la PPA du Mandoul pour éviter la rupture +- Présenter prochainement la situation de PCR par DS pour une meilleure évaluation au niveau de chaque DS +- Envisager le dépistage des cas index lors des activités de routine dans les formations sanitaires +- Renforcer le dépistage à toutes les portes d’entrées + +Deuxième journée + La journée a commencé par la lecture et amendement du rapport de J1. Le rapport a été adopté par acclamation sous réserve de prise en compte des amendements. Après cela les thématiques suivantes ont été présentés aux participants : + +1. Résultats du dépistage communautaire à partir des cas index réalisée dans les provinces du Batha et Hadjer Lamis +La première présentation de la journée a porté sur le dépistage communautaire à partir des Cas Index réalisé dans les provinces de Hadjer Lamis et Batha. Il ressort de cette présentation que pour une cible de 3918 personnes cibles au départ, 2 401 personnes dont 1 218 femmes ont été dépistées. Deux cent trois (203) personnes se révélés séropositives dont 123 femmes soit un taux de 8%. Les points forts et faibles, les opportunités n’ont pas été perdues de vus. Les questions relatives à la méthodologie de l’approche ainsi que sa généralisation dans les provinces ont permis de bien appréhender le problème à travers les explications fournies par les intervenants. A l’issue de la discussion il en ressort les constats suivants : +- Besoin de définir les stratégies pour le dépistage familial/cas index +- Besoin de centrer le dépistage des cas index sur les enfants enfin de booster la couverture des enfants ARV +- Besoin de documenter ces expériences de dépistage à travers les Provinces et en tirer des leçons au niveau chaque Provine afin de passer a échelle pour ce dépistage +- Besoin d’élargir ou décentraliser cette approche à travers le réseau des PPVIH dans les Provinces. +- Besoin de quantifier les intrants pour la mise en œuvre du dépistage cas index + +2. Présentation de la DSP de la Tandjile : +Il ressort de la présentation les faits : +- Une régression de la couverture de la CPN1 (35%) +- 123 femmes enceintes dépistées séropositives ont été suivies durant l’année 2019 dont 91 nouveaux cas sont mis sous traitement pendant cette période +- 58 enfants sont nés des mères séropositives et 22 ont été dépistés par le PCR dont 1 s’est révélé séropositif. 44 enfants ont été dépistés par le test rapide et 1 enfant s’est révélé séropositif +- 106 enfants ont été dépistés à travers les autres portes d’entrées dont 1 enfant s’est révélé séropositif +- 7857 jeunes de 10-24 ans ont été dépistés à travers les 2 structures d’encadrement des jeunes de la Province dont 12 se sont révélés séropositives et ont bénéficié de la mise sous ARV +- Rupture de détermine au cours du mois de décembre 2019 +Il faut aussi signaler que la DSP de la Tandjilé a bénéficié d’un financement pour la mise en œuvre des activités des micro plans de DS. + +3. Présentation de la DSP du Logone Occidental +Il est à noter que dans cette Province, 95% du personnel est forme sur le paquet PTME et 95% des formations sanitaires appliquent la délégation des tâches. Les autres indicateurs de la cascade de la PTME et de PECP se présente comme suit : +- 42% de couverture en CPN1 au semestre 2 (VS 84% globalement en 2019) +- 48% de couverture en ARV chez les femmes enceintes séropositives +- 334 femmes enceintes séropositives sont suivies dans la Provinces en 2019 dont 164 nouveaux cas +- 363 enfants sont nés de mères séropositives dont 358 ont bénéficié de la mise sous traitement prophylactique +- 548 enfants exposes ont été dépistés (dont 160 par le PCR) et 36 se sont révélés séropositives soit un taux de 6.5%. Ces enfants ont été mis sous traitement. +- 215 enfants dépistés à travers les autres portes d’entrées dont 10 se sont révélés séropositifs +On note globalement une régression des indicateurs par rapport à 2018 au niveau de la province du Logone Occidental. Aussi la délégation n’a pas présenté les données communautaires pourtant les activités s’y sont menées. La délégation a signalé la rupture de certains intrants notamment le détermine et la névirapine sirop au niveau de la Province. + +4. Présentation sur la prise en charge des jeunes et des adolescents +La synthèse des activités réalisées et les principaux résultats obtenus en 2019 dans les 11 CLAC/Maison de cultures de la zone méridionale a été présenté aux participants. Il ressort de cette présentation les principaux résultats suivants : +- 145,967 adolescents âgés de 10-19 ans ont été sensibilisés, 45,718 dépistés et 217 se sont révélés séropositifs soit 0.47%. 192 de ces jeunes ont bénéficié de la mise sous traitement ARV soit une déperdition 15 adolescents soit 6.9% +- 93,425 jeunes âgés de 20-24 ans ont été sensibilisés, 26,369 ont été dépistés dont 298 sont dépistés séropositifs. 276 de ces jeunes ont été mis sous traitement ARV soit une déperdition de 22 jeunes (7.3%) +Apres présentation de ces résultats s’en est suivi la discussion. Il ressort de ces discussions les points suivants en termes de recommandations : +- Renforcer la collaboration entre les CLAC/MC et les services de santé pour éviter les déperditions des adolescents et jeunes dépistés séropositifs +- Améliorer le mécanisme de recherche des perdus de vus, la prise en charge au niveau des sites de dépistage et l’implication des CLAC dans la validation des données PTME des districts. + +5. Restitution de la mission de supervision +Il ressort de cette mission de supervision les constats suivants : + +Points Forts +1. Disponibilité du personnel formé en PTME ; +2. Proximité de appareils Gen Xpert des DSP ; +3. Toutes les FS des DSP supervisées ont intégré le dépistage et la PEC des mères dépistées positives dans le PMA et le PCA ; +4. Disponibilité des intrants de dépistage et ARV maternel dans les FS lors de la supervision ; +5. PTME de sauvetage fait en salle d''accouchement ; +6. Confection manuelle des outils de collectes des données/tracer à la main à chaque rupture ; +7. Réalisation des formations sur les outils du SIS et le paquet PTME/PECP ; +8. Protocole de prise en charge affiché dans la plupart des maternités et des salles de CPN ; + +Points à améliorer + +1. Insuffisance de dépistage des enfants et la PEC pédiatrique (difficultés a suivre les enfants nés de mères VIH+ jusqu’au dépistage) ; +2. Insuffisance dans le dépistage des maris ; +3. La question du counseling mal conduit ; +4. Rupture des outils des registres ; +5. Insuffisance dans l’utilisation du registre de PTME (toutes les femmes enceintes vues à la CPN) aussi bien les enfants nés de mère VIH + (Registre mal tenu Registre mal tenu) ; +6. Utilisation des anciens formats des registres CPN et PTME +7. Insuffisance dans les supervisions ; +8. Insuffisance a s’adhéré aux stratégies de dépistage comme le cas index, les POC etc ; +9. Insuffisance de confirmation des tests positifs ; +10. Insuffisance dans le contrôle qualité (collaboration avec les labo); +11. Insuffisance dans l’utilisation des outils de gestion de stock. + +6. Présentation de CDN +Cette présentation porte sur la problématique de la prise en charge des enfants et adolescents sous traitement ARV de 2e ligne suivis au Centre Djenandoum Naasson. Il s’agit d’une étude retro-perspective à propos de 12 cas. Cette étude a été motivé par le constat au niveau du CDN des cas de décès élevés chez les enfants et les adolescents au niveau de ce centre. Il a été noté c’est l’absence de la charge virale qui reste un handicap dans le suivi et un facteur favorisant la résistance des molécules. +7. Présentation de la DSP du Moyen Chari +L’évolution des indicateurs se présentent comme suit : +- 71% de couverture en CPN1 en 2019 vs 66% en 2018 +- 100% des enfants nés des mères séropositives ont bénéficié de traitement ARV +- 42 enfants exposes ont bénéficié d’un dépistage précoce d 4- 6 semaines dont 3 se sont révélés séropositifs et ont été mis sous traitement +- 408 enfants ont été dépistés à travers les autres portes d’entrée dont 7 se révélés séropositifs +- 20 enfants/adolescents de 0-14 ans dépistés séropositifs ont été mis sous traitement ARV +En somme on note une régression des indicateurs au niveau de la Province par rapport à 2018. +8. Présentation sur le PoC +La couverture d’EID du VIH est passée de 05% en 2018 à 21,5 % en octobre 2019, grâce à la mise en marche effective des appareils GenXpert. Sur un total de 8 appareils Gen Xpert installés dans les 7 Provinces du sud, nous avions pu notifier au total 1 101 prélèvements effectués dont 1 096 ont été testés. 72 de ces prélèvements se sont révélés séropositifs. Il faut aussi rappeler que 18 prélèvements ont été invalidés faute d’erreur de prélèvements. La technique de PoC présente les avantages suivants : + Livraison cohérente d''une plus grande proportion des résultats de test plus rapidement. + Diagnostic rapide d''un plus grand nombre de nourrissons séropositifs. + Délai plus court entre le prélèvement de l''échantillon et le début du traitement antirétroviral pour les nourrissons séropositifs +Il est recommandé à tous les acteurs qu’il faut procéder aux prélèvements des enfants nés des enfants des mères séropositives dans le délai de 2-8 semaines. + +Troisième journée : +Les activités de la journée ont commencé par la lecture et amendement du rapport de la deuxième journée. Ensuite les présentations des thématiques suivantes se sont succédé : +1. Présentation sur la qualité des données +A travers cette présentation nous pouvons retenir les points suivants : +- La promptitude des données /rapports au niveau de 6 Provinces reste faible soit 7,95% +- Il existe dans toutes ces Provinces de discordance entre les données transmises et les sources des données. Cette situation semble être accentuée au niveau de des Provinces du MKO, LOR, Tandjile et Moyen Chari. +A l’issu de ces constats, quelques recommandations ont été formulées à l’endroit des délégations sanitaires : + + Mettre en place par un acte, une équipe de vérification et de validation des données dans chaque district, hôpital et centre de santé + Tenir chaque mois avant envoi des données à l’échelon supérieur une réunion de vérification et de validation des données avec compte rendu + Comparer les données agrégées sur les RMA, RMP, RMV entre elles d’une part et refaire le dépouillement des registres et effectuer à nouveau une comparaison + Transmettre dans les délais les rapports mensuels à la coordination nationale + Formuler des recommandations actionnables + Intensifier la supervision +2. Présentation sur la performance des indicateurs de la PTME +Globalement les indicateurs sont relativement faibles en 2019 vs 2018 au niveau de la cascade PTME dans la plupart des provinces. Pour ce qui est de la couverture en ARV maternel 37% à 110% soit une moyenne de 70% pour les 6 Provinces. La Province de la Tandjilé reste la Province où la couverture est très faible soit 37%. Cependant en ce qui concerne la cascade PECP, on note légère amélioration de la plupart des indicateurs notamment en termes des enfants exposés dépistés par le PCR et la couverture en ARV chez les enfants infectés. Pour ce qui de la couverture en ARV pédiatrique elle varie de 12 à 22% en fonction des Provinces. + +3. Présentation de résultats globaux de la PTME +Pour ce qui est de la CPN1, 3 Provinces ont une couverture au-delà de 80%. Ce sont les Provinces du LOR, LOCC et du MKO. Par contre dans les 3 autres Provinces la couverture est faible et varie de 58% à 67%. La couverture des femmes enceintes nouvellement infectée varie de 35,97% a 59% selon les Provinces. Par ailleurs il est à noter que la couverture en accouchement assisté reste faible dans la plupart des Provinces. Elle varie de 24% à 43%. Le taux le plus faible est observé dans la Tandjilé. La PTME de sauvetage se pratique dans l’ensemble des Provinces. Le dépistage précoce de 4- 6 semaines a considérablement évolué en 2019 même s’il y a des efforts à fournir pour certaines Provinces notamment le Moyen Chari et la Tandjilé. + +A l’issue de cet atelier bilan, les principaux résultats suivants ont été atteints : +- Les principaux résultats PTME/PECP du second semestre et de l’année 2019 ont été analysés pour chaque Province ; +- Les Principaux goulots d’étranglements relatifs à la mise en œuvre de la PTME en général et de la PECP en particulier ont été identifiés, analysés et des pistes des solutions appropriées sont proposées ; +- Les principaux résultats sur la PECP, le dépistage des enfants à travers les autres portes d’entrée, les adolescents/jeunes et le PoC sont examinés et des solutions proposées ; +- La situation de la gestion des intrants dans les districts et CS a été présentée, discutée et analysée pour chaque Province ; +- Le principe de la décentralisation et de l’intégration du dépistage des cas index dans toutes les FOSA sont compris de tous ; +- La problématique des outils de collecte des données, de l’analyse des données, de leur promptitude et complétude est discutée et des mesures sont prises. + +A travers cet atelier bilan l''on retenir deux lecons apprises: +- Une bonne volonté des délégations à s’engager pour améliorer la faible couverture de la prise en charge pédiatrique ; +- La décentralisation et l’intégration du dépistage centré sur les cas index permettra de booster les indicateurs PECP', '', 'completed', '2020-02-17', '2020-02-21', 'Participer a l''atelier Bilan pool du sud', 'OIC Dr Kebfene +WBS: 0810/AO/05/883/004/003-NON GRANT', false, false, '2020/327', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13031, '2020-02-19 05:37:26.184251+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (452, '2020-03-27 06:01:52.765395+00', '2020-04-01 10:59:12.012279+00', NULL, '2020-03-27 06:02:12.240245+00', NULL, '2020-04-01 10:50:28.712604+00', '', '', '', 'il s''agit simplement de mon retour de conge a mon poste a moundou.', '', 'completed', '2020-03-30', '2020-03-30', 'Retour de mes conges a mon poste a Moundou', 'WBS est 0810/A0/05/883/004/0003 – NON GRANT +OIC: Dr Kebfene', false, false, '2020/625', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 11859, 13031, '2020-03-27 06:02:12.240253+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (91, '2019-10-11 06:32:26.062839+00', '2019-12-02 07:56:20.313046+00', NULL, '2019-10-11 06:33:00.591726+00', NULL, '2019-10-11 06:57:17.778733+00', '', '', '', 'CANEVAS DE RAPPORT AUTRES TYPES DE MISSIONS + +A. Informations générales +1. Date de Soumission du Rapport au superviseur : 25/10/2019 +2. Identification Bureau Section/Unité Date et Signature +2.1 Noms et titre du voyageur : DJEKONBE GREGOIRE + MONGO NUTRITION +2.2 Noms et titre du superviseur : Dr Bambe Lamtouin, OIC Chef de bureau + MONGO VIH +3. Commentaires Superviseur : +4.Type de mission + +0 Formation +0Livraison des intrants +0Plaidoyer +0 Evaluation +1Autres à spécifier : + + Avec TA 1 +Numéro de la TA :1852751 + +Sur le lieu de résidence /duty station(ne nécessitant pas de TA) : 0 +Date de Début : 13/10/2019 Date de fin : 19/10/2019 +Lieux : (si multiples, indiquer les lieux additionnels sur chaque ligne) Partenaire Nom et titre du point focal du Partenaire +Aboudeia District sanitaire d’Aboudeia Dr Adoum Garba, Medecin chef du district Sanitaire d’Aboudeia +Amtiman Delegation Sanitaire du Salamat Dr Idriss El Hadji Ahmed, Delegue Sanitaire Provincial du Salamat + + + + +5. Noms/Titre/membres de l’équipe de mission y compris les partenaires + + + + + + Dr Djekonbe Gregoire, nutrition officer +Abdel kader Gosdoum, Driver +Dr Adoum Garba, MCD d’Aboudeia +Dr Hamat Hassan Boulmaye, Consultant nutrition +Nathaniel Mbainarem, PO protection +Yamtemadji Kameldy, Driver + + +6. Personnes rencontrées [si la liste est longue, la mettre en annexe] + +VOIR LA LISTE EN ANNEXE +B. Description de la mission +1. Nom(s) partenaires d’Exécution faisant l’objet de la visite : Délégation sanitaire provinciale du Salamat 2. Référence de la mission avec le PMA-PPA Extrant 2 Les structures sanitaires des régions d''interventions ont des capacités humaines et matérielles accrues leur permettant d''offrir des services préventifs et curatifs nutritionnels de qualité aux femmes, adolescentes et enfants de < de 5 ans Activité 2.2.11.e) Fournir l''appui technique (supervision formative, élaboration des requêtes, réunions de coordination/validation des données/PDD etc.) aux structures de prise en charge nutritionnelle @@ -16695,150 +21374,509 @@ Centre de sante de Amtiman nord : Bordereau de livraison sur le registre de stoc -AMT nord : fiche de synthese des donnees de depistage actif de la malnutrition aigue', '', 'approved', '2019-10-13', '2019-10-19', 'Reunion de coordination nutrition sante et supervision conjointe dans le Salamat', '', false, false, '2019/118', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 173681, '2019-10-11 06:33:00.591736+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (39, '2019-10-02 16:59:55.052126+00', '2019-11-05 07:54:48.761473+00', NULL, '2019-10-03 08:33:12.696803+00', '2019-10-02 17:11:00.463636+00', '2019-10-03 09:13:59.471182+00', 'Séparer la mission de Meeting au visites programmatiques', '', '', 'Il s''est tenu du 6 au 10 octobre 2019 un atelier de planification de l''evaluation du programme national d''Eradication du Ver de Guinee. l''atelier a regroupe l''ensemble des acteurs impliques dans la mise en oeuvre de ce programme. A la fin de cet atelier les principaux résultats suivants ont été atteints : -- Une compréhension commune des différentes phases par les différents acteurs a été obtenue ; -- Un calendrier et un budget du processus ont été proposés et validés ; -- Les outils du processus ont été passés en revu et validés ; -- Les TDR de processus de la revue internes et externes ont été validés.', '', 'completed', '2019-10-06', '2019-10-14', 'Participer a l''atelier d''evaluation du PNE du Ver de Guinee et assurer la VP des DSP de Tandjile et du LOR', 'Le travail de groupe restreint sur les differents documents elabores vont se poursuivre.', false, false, '2019/43', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13031, '2019-10-02 17:00:13.765679+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (138, '2019-10-30 11:25:02.885594+00', NULL, NULL, '2019-10-30 11:26:12.946195+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-01', '2019-11-13', 'Conge R&R', '', true, false, '2019/177', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 21076, '2019-10-30 10:01:08.772192+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (139, '2019-10-30 11:41:57.058415+00', NULL, NULL, '2019-10-30 11:43:57.905219+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-01', '2019-11-13', 'Conge R&R', '', true, false, '2019/182', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 8718, '2019-10-30 10:01:08.772192+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (88, '2019-10-10 13:50:23.815758+00', NULL, NULL, '2019-10-10 13:50:41.816763+00', NULL, '2019-10-10 14:32:07.032578+00', '', '', '', '', '', 'approved', '2019-10-17', '2019-10-30', 'Identification des participants à la formation sur les urgences et du lancement du Système d’Alerte Precoce (SAP)', '', false, false, '2019/115', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11347, 14700, '2019-10-10 13:50:41.816774+00', NULL, 3); -INSERT INTO [[schema]].t2f_travel VALUES (134, '2019-10-29 07:22:51.670062+00', NULL, NULL, '2019-10-29 07:24:47.115422+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-10-07', '2019-10-11', 'Visite programmatique du PCA avec Secours Islamiques France', '', false, false, '2019/171', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 13512, 5064, '2019-10-29 07:24:47.115433+00', NULL, 8); -INSERT INTO [[schema]].t2f_travel VALUES (147, '2019-11-07 12:51:12.172033+00', NULL, NULL, '2019-11-07 12:51:36.84484+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-14', '2019-11-21', 'Participer a la Revue Monitorage eTME', '', false, false, '2019/200', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 11436, 12023, '2019-11-07 12:50:27.030787+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (128, '2019-10-25 11:17:55.999304+00', NULL, NULL, '2019-10-25 11:17:56.024647+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-01', '2019-11-02', 'Evaluation urgence chokoyane', '', false, false, '2019/166', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 9329, 25166, '2019-10-25 11:17:56.024657+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (143, '2019-11-04 16:52:00.461973+00', NULL, NULL, '2019-11-04 16:54:26.618499+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-12', '2019-11-20', 'Installation de refrigérateurs a Krim-Krim et Benoye, puis collecter les données pour la mise à jour l''ODP - DSP Mandoul', '', false, false, '2019/196', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 8519, 23640, '2019-11-04 16:54:26.618509+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (48, '2019-10-04 10:25:31.173573+00', '2019-11-08 07:37:55.399369+00', NULL, '2019-10-04 10:25:31.197788+00', NULL, '2019-10-04 11:48:35.576179+00', '', '', '', 'La visite visait à discuter avec les partenaires chargés de la mise en œuvre des projets au nom de la section de l''éducation et de la section de la protection de l''enfance. C’était l’occasion de vérifier les données communiquées mensuellement par le partenaire. -Temps fort du déroulement de la mission : (Faire une description succincte et analytique du travail fait durant la mission soit par activité réalisée soit par jour d’activité) -- La première visite a eu lieu dans l''espace ami d’enfants (EAE) qui accueille les enfants de Doholo village. L’espace compte au total 500 enfants, dont 223 filles inscrites, mais le jour de la visite, seuls 162 enfants, dont 75 filles, étaient présents. -- Deux animateurs d''Intersos et trois volontaires de la communauté, dont l''un joue le rôle de point focal dans la communauté, sont présents sur le site. -- Les enfants fréquentant l’EAE sont répartis en 4 groupes d’âge ; 0-5, 6-10, 11-13 et 14-17 (ce dernier groupe se rend à la salle l''après-midi). -- La visite de l’EAE de Kobiteye : l’EAE compte 502 enfants dont 222 filles mais le jour de la visite, il a été dénombré 219 enfants dont 112 filles. -Activités du projet : -- Le projet vise à réhabiliter la structure qui sert d''abri au groupe des 0 à 5 ans, la cuisine, construire un bloc de latrines séparées pour les enfants et les animateurs et une clôture. -- Le projet a identifié un service traiteur qui fournit des repas aux enfants 3 fois par semaine. -- Le projet vise à délivrer 400 actes de naissance, dont 85 ont déjà été délivrés. -- Le partenaire soutient actuellement 52 familles d''accueil par le biais de formations sur la protection de l''enfance et le développement d''activités génératrices de revenus. Les familles d’accueil doivent former 5 groupes qui développeront des propositions pour l’AGR et bénéficieront d’un financement de 500 000 FCFA. -- Les activités de recherche de la famille et la réunification commencera une fois que le HCR aura achevé la collecte de données biologiques d''avoir des informations plus précises sur les enfants séparés et non accompagnés -- Intersos intervient sur 6 sites au total ; 2 communautés hôtes (Kobiteye et Danamadja), 2 camps de réfugiés (Gondjé et Amboko) et 2 villages (Doholo et Bédankoussang). -Ecole primaire de Kobiteye -- Des échanges ont été faits avec le directeur de l’école et le Président de l’Association des parents d’élèves. Les inscriptions ne se font pas normalement mais les enfants du Site de Kobiteye sont déjà à l’école ; Selon le Directeur, certains parents de Sandana et Danmongo ont préféré envoyer leurs enfants à l’école de Kobiteye pour des raisons de bonne qualité de l’enseignement ; -- L’école n’est pas prête à accueillir les élèves : certains travaux notamment le défrichage des alentours ne sont pas encore faits. -Principaux produits obtenus (Faire une présentation des réalisations majeures comme conséquences directes et immédiates de votre travail fait pendant la mission et en lien avec les résultats attendus préalables définis y compris les conséquences effectives mais non prévues) -Un rappel à la propreté de l’école et au suivi des mobiliers et interpellation a été fait à l’endroit de l’APE pour les travaux de défrichage de l’école pour la sécurité des enfants. -Contraintes/problèmes majeurs (Faire le résumé des difficultés majeures rencontrées ayant entravé l’atteinte des objectifs de la mission) -- Bien que l''école ait officiellement commencé, la majorité des enfants ne viennent pas encore à l''école car ils aident leurs parents aux travaux champêtres notamment les enfants de la communauté hôte. -- Certains enseignants ne sont pas encore affectés ce qui fait que les élèves de différents niveaux ne sont pas dans leurs classes respectives. -Actions prises (Au regard des difficultés majeures signalées ci-dessus, dire quelles sont les actions concrètes et immédiates prises pour remédier à une partie ou la totalité de ces difficultés) -- Le Président de l’Associations des parents d’élèves a promis de trouver un individu pour faire les travaux nécessaires dès que possible. -Principales leçons apprises (Formuler les principaux enseignements positifs ou négatifs tirés de la mission -- Il n''y a pas de modèle de durabilité pour les EAE. Lorsqu''un projet cesse d''être financé, aucun système n''est mis en place pour permettre aux communautés de prendre en charge et de poursuivre leurs activités. -- Les parents ne priorisent toujours pas l’éducation de leurs enfants. -3. Recommandations Responsable Echéance -Identifier un mécanisme de durabilité pour la consolidation des acquis a la fin du projet. Section Protection de l’Enfant Continue -Poursuivre la sensibilisation pour encourager les parents à donner la priorité à l’école pour leurs enfants pendant l’année scolaire (aux côtés des travaux champêtres.) Section Education Continue -Planifier la distribution des fournitures scolaires prédisposés à AIRD à Goré PO Education - IPEP Octobre 2019 -Faire le suivi des activités du projet PE (réhabilitation des hangars, …) PO Protection de l’enfant Octobre 2019 -NB : Joindre les termes de références ou autres documents qui justifient la mission', '', 'completed', '2019-10-08', '2019-10-08', 'Visite d''une EAE a Doholo et d''une ecole a Danamadja/Gore avec Staff (Urgences Ndjamena)', '', false, false, '2019/62', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12059, '2019-10-04 10:25:31.197797+00', NULL, 9); -INSERT INTO [[schema]].t2f_travel VALUES (149, '2019-11-07 13:53:05.115603+00', NULL, NULL, '2019-11-07 13:54:11.282611+00', NULL, '2019-11-07 14:13:05.946789+00', '', '', '', '', '', 'approved', '2019-10-28', '2019-11-01', 'Mission de suivi des activites PRSSMI/PEV dans la Province du Logone Oriental', '', false, false, '2019/202', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 11859, '2019-11-07 13:54:11.282663+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (98, '2019-10-15 09:08:29.997445+00', NULL, NULL, '2019-10-15 09:08:30.092491+00', NULL, '2019-11-07 14:19:14.231729+00', '', '', '', '', '', 'approved', '2019-10-22', '2019-10-26', 'Verification programmatique (Suivi de distribution des fournitures scolaires) et organisation de la reunion de Sous clus', '', false, false, '2019/125', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12059, '2019-10-15 09:08:30.092506+00', NULL, 9); -INSERT INTO [[schema]].t2f_travel VALUES (161, '2019-11-13 11:28:09.368303+00', NULL, NULL, '2019-11-13 11:28:09.403768+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-23', '2019-12-02', 'Formation des agents sur la PCIMAS', '', false, false, '2019/217', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 9329, 25166, '2019-11-13 11:28:09.403777+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (151, '2019-11-08 09:56:51.396+00', NULL, NULL, '2019-11-08 09:56:51.465882+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-21', '2019-11-27', 'Spotcheck et Suivi des recommandantions des partenaires The Mentor Initiative et IHDL', '', false, false, '2019/204', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 9984, 12059, '2019-11-08 09:56:51.465892+00', NULL, 9); -INSERT INTO [[schema]].t2f_travel VALUES (126, '2019-10-24 12:06:06.482235+00', '2019-11-08 13:13:07.398048+00', NULL, '2019-10-24 12:42:46.387791+00', NULL, '2019-10-24 15:50:55.485213+00', '', '', '', '4. Progrès vers l’atteinte des résultats - -Cette mission d’Appui C4D et de suivi des recommandations issues de la Vérification Programmatique au niveau des DS des Provinces du Ouaddaï et du Wadi Fira en juin 2019 dans le cadre de la mise en œuvre des activités PTME/é-TME a permis d’avoir les résultats suivants : - - Quelques axes d’appui aux interventions communautaires sont définis à la suite de la rencontre d’échanges avec l’équipe cadre du DS d’Abougoudam et les relais communautaires ; - Des propositions favorisant l’engagement des organisations de femmes pour la promotion de la santé maternelle et infantile, de la PTME (Prévention de la transmission du VIH de la Mère à l’enfant) sont faites en soutien aux interventions communautaires dans le DS d’Abougoudam ; - Des stratégies sont proposées avec la contribution des jeunes et adolescents ainsi que des responsables de la Maison de Culture Ahmat Pacos d’Abéché en appui aux interventions de communication et l’élaboration de la carte de vulnérabilité en milieu jeune ; - Une histoire d’intérêt humain et un social média package sont produits valorisant les interventions communautaires et PTME à Abeche et Abougoudam ; - Des contraintes/difficultés et les forces dans la mise en œuvre des interventions communautaires et C4D sont identifiés. - -Lundi 14 octobre 2019 – Abeche, Maison de la Culture Ahmat Pecos -Rencontre avec les pairs éducateurs de la Maison de Culture Ahmat Pecos d’Abeche. Sur 30 pairs éducateurs, 12 ont pris part à cette rencontre parmi lesquels 5 jeunes filles. Echanges sur le travail des pairs éducateurs, les difficultés rencontrées et les recommandations pour améliorer. -1. Difficultés -- Difficultés des pairs éducateurs à maîtriser leurs cibles. Tenue des séances dans les carrefours, les écoles, les lycées, au marché. Pas de programme spécifique de mise en oeuvre. -- Mauvaise appréhension du travail des paires éducateurs par la population ; -- Rupture et Cherté de préservatifs paquet de 4 à 250 fcfa ; (Voir le BZ d’Abeche) -- Besoins de dépliants pour distribuer aux jeunes après les séances de causeries éducatives ; -2. Recommandations -- Fournir des badges pour la reconnaissance du travail des pairs éducateurs ; -- Fournir la fiche de rapportage pour améliorer le suivi des interventions de causeries éducatives ; -- Renforcer les interventions auprès des PS mineurs pour améliorer leurs niveaux de connaissance (identifier des pairs éducateurs dans cette communauté pour faire ce travail de communication) -- Améliorer les séances de causeries en élaborant des plannings des pairs éducateurs (Séances mensuelles avec 12 – 15 personnes avec 5 séances sur les 5 thèmes principaux qui donnent des connaissances nécessaires pour le plan de prévention) -- Fournir la Loi 019 ; -- Renforcer le suivi des PVV et leur traitement (Ex de Meram, une dame séropositive : l’inviter à faire dépister son enfant de 3 ans et la suivre pour renforcer ses capacités pour négocier des rapports sexuels protégés). -Mardi 15 octobre 2019 – Abougoudam -Rencontre avec le Point Focal PTME du DS d’Abougoudam. Briefing sur l’agenda de la mission. Adaptation de l’agenda avec le programme du Centre de Santé et des acteurs à rencontrer. Dans le cadre de la pTME et de la PECP, 4 femmes séropositives sont suivies régulièrement au DS d’Abougoudam. 2 d’entre elles ont eu des enfants et ces deniers ont été dépistés à l’appareil Gen’Xpert. - -Mercredi 16 octobre 2019 – Abougoudam -Interview avec une femmes séropositive sur le suivi de son traitement et la pratique de la PTME. Elle est suivie par le Centre de Santé depuis 8 ans et a eu deux enfants séronégatifs. Dans un contexte où les questions de santé sexuelles sont taboues et de discrimination à l’égard des personnes séropositives, elle fait office de figure de proue pour son courage et sa détermination. - -Echange avec la Sagefemme sur les questions de consultations prénatales. Le Centre de Santé reçoit en moyenne 100 femmes par mois pour la CPN et entre 30-40 femmes pour les accouchements. Plus d’une vingtaine de femmes viennent pour la planification familiale par mois. - -Rencontre avec les relais communautaires. Le DS d’Abougoudam dispose de 8 relais communautaires dont 3 femmes qui couvrent 29 villages. En collaboration avec le Centre de Santé, les chefs de villages et le COGES (Comité de gestion), ces relais communautaires organisent des séances de dialogues communautaires. Ils rencontrent des difficultés à couvrir les 29 villages dont certains un peu éloignés d’Abougoudam. - -Rencontre avec les l’Union des groupements des femmes d’Abougoudam. Plus d’une trentaine de femmes ont répondu à cette rencontre d’échanges sur leurs activités quotidiennes en appui à la PTME, la CPN, la vaccination, la lutte contre le mariage des enfants, la malnutrition. Elles profitent des rencontres ordinaires de femmes ou des cérémonies de baptêmes pour partager les connaissances et aider les femmes à changer de comportement. Toutefois, la plupart n’ont pas reçus de formation sur ces thématiques. - -Jeudi 17 octobre 2019 – Abeche, Maison de la culture Ahmat Pecos -Production de contenus : interviews avec deux jeunes dames séropositives, dont l’une habitante une maison close et l’autre servante dans un maquis sur le suivi de leur traitement et leur vie sexuelle. Interview aussi avec un adolescent de 17 ans, homosexuel, exploité dans une maison close. Ces interviews révèlent un faible niveau de connaissance de ces jeunes et adolescents présents dans le circuit des professionnels de sexe et leur faible capacité à négocier des relations sexuelles protégés.', '', 'completed', '2019-10-28', '2019-11-03', 'Mission d''Appui C4D et de planification', 'RAS', false, false, '2019/164', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 5069, 20819, '2019-10-24 12:42:46.387801+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (153, '2019-11-08 14:55:42.084352+00', NULL, NULL, '2019-11-08 14:55:42.214282+00', NULL, '2019-11-08 15:22:13.22064+00', '', '', '', '', '', 'approved', '2019-11-19', '2019-11-23', 'Mission de suivi dans le cadre du Projet PRSSMI/PEV dans 4 districts sanitaires de la Province du Mandoul', 'Grant : SC180628; WBS : 0810/A0/05/881/002/005', false, false, '2019/206', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 11859, '2019-11-08 14:55:42.214292+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (155, '2019-11-12 10:20:27.558835+00', NULL, NULL, '2019-11-12 10:20:27.595428+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-17', '2019-11-20', 'Participer a la revue approfondie a Ndjamena', '', false, false, '2019/208', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 24425, 21331, '2019-11-12 10:20:27.595442+00', NULL, 9); -INSERT INTO [[schema]].t2f_travel VALUES (157, '2019-11-12 15:56:21.900409+00', NULL, NULL, '2019-11-12 16:06:27.927329+00', NULL, '2019-11-12 16:19:20.761541+00', '', '', '', '', '', 'approved', '2019-11-17', '2019-11-20', 'Participation a la revue approfondie', '', false, false, '2019/213', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 14616, '2019-11-12 16:06:27.927338+00', NULL, 9); -INSERT INTO [[schema]].t2f_travel VALUES (7, '2019-09-30 16:46:46.696059+00', '2019-10-30 10:45:57.450664+00', NULL, '2019-09-30 16:46:46.790467+00', NULL, '2019-10-01 16:30:10.16805+00', '', '', '', 'La mission a realise: - - Bénoye : 6 séances de travail réalisées dont 1 avec les autorités communales, 3 avec les membres des communautés et 2 autres avec l’ECDS de Bénoye. - Krim-Krim : 7 séances de travail réalisées dont 1 avec les autorités administratives, 1 avec les autorités communales, 2 avec les membres des communautés, 1 avec les agents de sante communautaires et 2 autres avec l’ECDS de Laokassy. - Mise à jour la base des données communautaires : L’appui a été donne aux acteurs locaux pour 11 communautés de Krim-Krim. Le Mobilisateur, le PF du DS et le RPEV sont chargés de réaliser dans les 6 communautés restantes. Le masque de saisie des données a été corrigé et mis à la disposition du mobilisateur pour utilisation. La PF de la DSP/LOC est mandatée d’appuyer l’équipe de Bénoye pour la correction et validation des données de Bénoye Urbain avant la fin du mois d’octobre 2019. +AMT nord : fiche de synthese des donnees de depistage actif de la malnutrition aigue', '', 'completed', '2019-10-13', '2019-10-19', 'Reunion de coordination nutrition sante et supervision conjointe dans le Salamat', '', false, false, '2019/118', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 173681, '2019-10-11 06:33:00.591736+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (260, '2020-02-19 05:21:25.535313+00', '2020-04-03 09:30:25.572168+00', NULL, '2020-02-19 05:21:36.957386+00', NULL, '2020-02-19 16:34:31.227168+00', '', '', '', 'Le Ministère de la santé publique à travers la coordination Nationale PTME avec l’appui technique de l’UNICEF a organisé une série de d’ateliers bilan de coordination et de validation des données PTME du second semestre 2019. +L’atelier de Dandi a eu lieu du 02 au 06 mars 2020. Il a regroupé les délégués des provinces du Guera, du Batha, du Salamat, du Borkou, du Tibesti, de l’Ennedi Ouest, de l’Ennedi Est, du Mayo Kebbi Est, du Hadjer Lamis, du Chari Baguirmi, du Barh El Gazel, du Kanem et du Sila ainsi que les points focaux PTME de ces provinces. Le niveau central est représenté par les responsables des directions et programmes (PSLS, PTME, CNLS, DSIS, CLAC, RNTAP+…) en plus des partenaires d’appuis techniques et financiers. Plus de 50 participants sont conviés et ont effectivement pris part à cette rencontre. + +L’objet de cet atelier est d’évaluer la mise en œuvre des activités PTME du 2nd semestre 2019. De discuter les goulots d’étranglements pour la prise en charge des femmes enceintes vues en CPN, la prise en charge du sida pédiatrique. En d’autres termes, il s’agit d’identification les difficultés qui entravent la mise en œuvre correcte du paquet PTME/PECP et de proposer des solutions idoines en vue de lever les goulots. Le système d’approvisionnement en intrants, Le système de collecte des échantillons pour l’analyse PCR et le circuit transmission des données ne sont pas occultés. +Les travaux de la première journée ont commencé par le mot de bienvenue du coordinateur national de la PTME. Dans son allocution, il a remercié les participants d’avoir honoré de leur présence à cet atelier malgré leurs multiples tâches. Il a exhorté les participants à être attentifs et donner les meilleurs d’eux-mêmes pour la réussite de cet atelier. Puis intervient le mot de l’UNICEF. Dans son allocution le Représentant du Représentant a rappelé que l’UNICEF est toujours au côté du MSP surtout en ce qui concerne la santé de la mère et de l’enfant. Beaucoup d’efforts ont été consentis concernant la santé de la mère, cependant, la prise en charge des enfants reste un défi à relever. + +Dans son mot d’ouverture, le Directeur General adjoint du Ministère de la Santé publique dit qu’il constate un développement du programme de la PTME à deux vitesses entre les 13 provinces prioritaires et les 10 autres ne recevant pas d’appui conséquent des partenaires. Ce qui contribue à une faible performance des indicateurs dans ces provinces. Les ressources du fonds Mondial permettront de corriger les gaps et d’accélérer les indicateurs étant donné que le T[[schema]] fait partie de quatre pays hyper prioritaires de l’Afrique de l’Ouest et du centre pour en arriver à l’élimination de la transmission mère enfant du VIH dans les 13 provinces prioritaires qui totalisent 72% des besoins non couverts en PTME. En effet il a demandé aux participants d’être assidus pour la réussite de cet atelier. Après la présentation individuelle des participants un présidium composé d’un président et de deux rapporteurs a été mis en place. Après les annonces administratives, l’agenda de l’atelier a été déroulé puis amandé par les participants. + +La première présentation de la journée était celle de la coordination PTME, qui a porté sur le contexte/justification de l’atelier et une brève évaluation des recommandations de la réunion bilan précédente. Au cours des échanges sur cette présentation, il ressort que les recommandations ont été partiellement réalisées, notamment le ravitaillement en intrants et médicaments ARVs surtout pour les DSP éloignés tels que le Tibesti, le Borkou, les deux Ennedis, ainsi que le Chari Baguirmi. Concernant la gratuité du suivi des PVVIH, les DSP doivent prendre leurs responsabilités pour que cette gratuité soit effective dans leurs provinces respectives au lieu d’attendre l’acte venant du Ministère de la santé qui pourrait retarder la prise des décisions aux nouveaux intermédiaires. Il a été recommandé que le CNLS, le PSLS et la coordination PTME précisent où déposer les bons de commandes des intrants et médicaments. A cet effet il a été clairement indiqué que tous les bons des commandes venant des provinces doivent être déposés à la coordination PTME qui s’occupera du suivi chez les partenaires. + +Dans les échanges, un participant a évoqué la question des fausses ruptures observées dans les structures sanitaires du Pays au cours de leurs supervisions. Dans certaines structures sanitaires, les intrants et les médicaments sont périmés alors que dans d’autres, il en manque. Il faut donc plutôt parler de la mauvaise gestion des intrants au lieu des ruptures pour le T[[schema]]. Néanmoins, cette notion de fausse rupture doit être nuancée d’une délégation à une autre, selon certains participants. + +Puis interviennent successivement les présentations des DSP du Chari Baguirmi et du Bahr Elgazel. Il ressort de la présentation du Chari Baguirmi que 95 FE séropositives ont été dépistées parmi lesquelles 78 ont été nouvellement incluses sous TARV au second semestre 2019. On note une faiblesse du dépistage dans les DS de Mandelia et de Massenya. Aucune FE sero+ n’a été dépistée dans le DS de Mandelia. Les activités de prise en charge pédiatrique ne sont pas réalisées. + +Dans la présentation de la DSP du Bahr Elgazel, on note que 24 Femmes enceintes séropositives + ont été dépistées, 22 FE+ sont nouvellement incluses sous TARV au second semestre 2019. Au total 29 FE+ sont actuellement sous TARV. 04 enfants nés de mères séropositives ont été mis sous prophylaxie ARV, mais aucun de ces enfants n’a été dépisté positifs à la PCR dans les 4 à 6 semaines. +Au cours des échanges sur ces deux présentations, il a été observé une forte déperdition des femmes qui ne sont pas venues prendre leurs résultats. Selon le présentateur, les patientes préfèrent aller se faire suivre à Ndjamena à cause de la forte stigmatisation. Pour le Chari Baguirmi, selon un participant, il faut plutôt instruire les RCS à réaliser le dépistage dans leurs Zones de responsabilité et au cours de leurs consultations que d’attendre le dépistage de masse en milieux communautaires. Pour le suivi biologique des PVVIH qui ne se fait pas au Chari Baguirmi, un participant a commenté qu’il serait nécessaire d’orienter le PVVIH vers les hôpitaux de N’Djamena ou les suivis biologiques sont faisables. Beaucoup d’activités sont organisées sur le terrain mais ne sont pas documentées, notamment les activités de prise en charge pédiatrique. Il se pose donc un réel problème de rapportage des données. +Concernant le manque des UNT dans le Chari Baguirmi, il a été précisé que le dépistage ne se fait pas seulement dans les UNT mais dans toutes les portes d’entrée telles que dans les consultations pédiatriques et dans les services pédiatriques hospitaliers. A cause de cas manquants, la DSP du Chari Baguirmi est prise comme une province prioritaire. Selon le présentateur, la délégation de tâche constitue un grand défi à relever car les personnels ne sont pas formés sur la PTME/PECP. Les intrants doivent être disponibles en quantité suffisante dans toutes les FOSA, car, dit-il que, certaines activités ne sont pas réalisées à cause des ruptures des intrants au second semestre 2019. +Pour la DSP du Bahr Elgazel, il est proposé qu’il faille inviter les partenaires clés à toutes les réunions de validation. Un bon système de rapportage des données doit être mis en place, car il y a une déperdition importante des enfants nés de mères séropositives lorsqu’on compare le nombre d’enfants nés des mères séropositives et ceux mis sous TARV. + +Au retour de la pause, la présentation sur les approches d’accélération de la PECP fut faite. Les points saillants ressortis de cette présentation sont entre autres : le faible taux de prise en charge pédiatrique du VIH au T[[schema]], (seuls 23,7% des enfants de 0-14 ans séropositifs sont sous traitement). Le risque de perdre les enfants faute de retard dans la mise sous traitement ARV (Plus de 50% des enfants infectés sans traitement ARV mourront avant leur deuxième anniversaire). Le pays dispose des opportunités pour booster la prise en charge des enfants il s’agit entre autres : +• Plan d’accélération de la PECP 2019-2023 élaboré, validé, distribué aux provinces et aux districts ; +• Micros plans des Districts élaborés et validés ; +• Documents de références; +• Engagement politique : Lancement officiel par la Première Dame du PoC ; +• Disponibilité des intrants, gratuité ; +• Réunions mensuelles du 24 sous la haute autorité du pays ; +En outre, il existe des stratégies nouvelles et prometteuses en cours d’expérimentation au T[[schema]] : +• Le dépistage familial (3,06%), le dépistage dans les Unités Nutritionnelles thérapeutiques (UNT) et les services de pédiatrie. +• Les Nouvelles technologies/Innovantes comme la PoC grâce à la disponibilité des machines GenXpert ; +• La Mise à échelle de la PTME ; 84% de centres de santé couverts ; +• L’Existence de textes réglementant le dépistage communautaire etc. + +Les stratégies des dépistages communautaires doivent être développées avec la participation communautaire et selon les convenances propres à chaque communauté. Rien ne devrait être fait pour la communauté sans la communauté. Les collectivités touchées devraient participer systématiquement à la conception des actions et influencer leurs orientations. Le premier pilier de la PTME c’est la prévention. Grace aux molécules ARV disponibles, on peut prendre en charge normalement les enfants séropositifs. Au cours de discussion sur cette présentation il est à retenir que certains défis sont les insuffisances et les faiblesses du personnel soignants dans la mise en œuvre des approches communautaires pour les activités PTME/VIH. + +Il s’en est suivi les présentations des DSP du Guéra et du Tibesti. Dans la présentation de la DSP Guéra, 21 FE séropositives dépistées pendant les CPN ont été toutes mises sous TARV. 23 FE séropositives sont sous TARV au second semestre 2019. Les enfants nés des mères séropositives sont au nombre de 08, tous ces enfants ont été mise sous TARV. Il s’est posé un problème de suivis biologique de ces enfants. L’utilisation du GenXpert n’a pas été satisfaisante au deuxième semestre 2019. + +Les discussions sur les deux présentations ont permis de relever qu’il est difficile d’organiser la campagne de sensibilisation et de dépistage de masse dans le Tibesti. Des solutions locales doivent être trouvées pour booster le dépistage communautaire. Les laborantins et les pharmaciens doivent coordonner pour que les réactifs et les médicaments parviennent aux différents DS et aux FOSA. Parlant des canevas de présentation, un participant a suggéré qu’il est préférable d’appeler la coordination de la PTME, en cas de difficulté dans le remplissage de certaines informations, afin d’être mieux renseigner les résultats atteints dans les DSP. Les goulots d’étranglement de chaque CS doivent être identifiés et traités aux comités directeurs des DS afin de proposer des pistes concrètes des solutions. + + +La deuxième journée a commencé avec la lecture et l’amendement de la synthèse des travaux de J1, ensuite fut la désignation du présidium. Le présidium quant à lui après un bref rappel de l’agenda de j2, a donné la parole aux présentateurs des délégations sanitaires provinciales de Batha puis Kanem. Il ressort de la présentation du Batha que la cascade des FE il y a une discordance entre les données femmes enceinte (84,70%) et les FE vues à la CPN1 (31,70%). +On constate aussi que le suivi biologique ne sont pas réalisés car l’appareil CD4 est tombé en panne. La Délégation note comme force l’effectivité de la mise en œuvre de la PTME mais il se pose comme problème l’accessibilité de certaines aires Géographiques. +La deuxième présentation est celle de la province du Kanem, d’où on constate un problème de promptitude des rapports 13% et aussi celui de la complétude qui est de 83% : le district sanitaire de Rig Rig n’a pas du tout rapporté durant les six mois. Le DSP de Kanem a respecté la cascade dont le taux de la CPN1 est de 64%, 57% des FE dépistée au cours du 2ème semestre 2019. +Après la pause-café la présentation sur la POC (Point Of Care) a été faite, le présentateur a fait un Etat de lieu de la POC au T[[schema]] qui est de mettre à l’échelle les points de soins (PoC) pour le diagnostic précoce du VIH chez les nourrissons. Il a signalé que le T[[schema]] fait partie des 10 pays d’Afrique de l’Ouest et du Centre ou le Dépistage Précoce des Nourrissons est à la traine et présente une faible couverture du TARV en raison d''un diagnostic faible et/ou tardif du VIH. 8 nourrissons sur 10 exposés au VIH ne sont pas testés avant 8 semaines (2017). Ils sont 8 sur 10 sans accès au traitement. +Pour ce fait, les pays d’Afrique de l’Ouest et du Centre se sont fixés des objectifs : passer de 21% en fin 2019 à 64 % en 2022. Ces objectifs sont déclinés en activités clés entre autres : +• Décentraliser le dépistage des enfants grâce aux Sites de dépistages précoces aux niveaux décentralisés (Point Of Care), +• Utiliser la technologie innovante pour le diagnostic précoce du VIH (GenXpert, Mpima. Amplyx, Samba II) ; +• Le T[[schema]] a opté pour les GenXpert et Amplix afin d’optimiser l’utilisation des appareils et améliorer la performance du programme ; +• Accroitre la prise de sang sur papier buvard chez les enfants entre 2 et 8 semaines et l’envoyer au site PoC ; +• Assurer le suivi ; +• Récupérer le résultat puis remettre à la maman. + +Tout cela a permis la couverture du dépistage du VIH chez les nourrissons qui est passée de 0,5% en 2018 à 21,3 % en octobre 2019 grâce à la mise en marche effective des appareils GenXpert, de meilleurs résultats auraient été possibles si les 15 appareils étaient utilisés de manière optimale. + +La présentation suivante fut celle du RNTAP+ qui est axée sur le dépistage du cas Index réalisé dans deux Provinces : Batha et Hadjer Lamis. Il ressort de cette présentation que sur 3918 cibles prévues, 61% ont été atteints dont 8% sont dépistés positifs référés pour une prise en charge adéquate dans les structures des soins. Cette présentation a suscité beaucoup de discussions en termes de capitalisation par les DSP du dépistage familial ou cas index, la gestion des intrants, la documentation des cas… + +Une pause est observée à partir de 13 heures quarante-cinq minutes. A la reprise, les présentations en séries des délégations suivantes ont été faites, il s’est agi de la présentation de la DSP du Salamat, de l’Ennedi Est, du Sila et de l’Ennedi Ouest. Sur ces présentations il ressort une faible couverture dans la cascade PTME/PECP, on note également la rupture d’intrants ainsi que le manque criard des préservatifs qui est une des causes d’exposition des jeunes/adolescents au VIH et aux IST en plus des grossesses non désirées dans les provinces. + +Sur base des résultats atteints et partagés dans les quatre présentations, des discussions intéressantes se sont poursuivies. Il ressort des échanges quelques questionnement : pourquoi les provinces sanitaires du Nord ne sont pas dotées en équipements adéquats à l’exemple des appareils CD4, des GenXpert et autres matériels médico-techniques pour une prise en charge correctes des PVVIH ? Dans les discussions, il est aussi ressorti que ces provinces ne sont pas perdues de vue dans la nouvelle subvention (NFM2, 2020-2021), néanmoins le gap dans ces provinces est important et nécessite un appui consistant pour améliorer les indicateurs du pays en termes d’atteintes des objectifs « 90-90-90 » dont le T[[schema]] s’est fixé. + +Un témoignage a été fait sur le dépistage des cas index « il s’agit d’un cas rencontré dans une des provinces. La discordance entre le résultat d’un enfant dépisté positif et les résultats des parents qui se sont révélés négatifs. La prétendante mère est négative mais après plusieurs investigations, il a été constaté que cette mère n’est pas la mère génétique mais elle est la grand-mère ». +La deuxième journée a pris fin à 17 heures trente-cinq minutes après une synthèse faite par les facilitateurs. + +La troisième journée a commencé par la lecture, amendement et adoption du rapport de la journée précédente. Il s’en est suivi la présentation de la Province du Borkou, du Hadjer Lamis et du Mayo Kebbi Est. Il est retenu de ces présentations que la mise en œuvre des recommandations des réunions précédentes n’est faite que partiellement dans toutes les DSP citées. En ce qui concerne la transmission des RMA, la DSP du Borkou est à 89.4% tant disque celles du Hadjer Lamis et du MKE sont à 100%. Il ressort de la présentation du DSP de Borkou que seule 20,41% de FE sont vues en CPN1, 17% sont conseillées et dépistées 100% de celle qui se sont révélées positives sont mises sous ARV. Tous les enfants nés des mères séropositives ont bénéficié de la prophylaxie ARV à la naissance en revanche le dépistage précoce n’a pas été réalisé faute de l’absence d’appareil GenXpert à proximité. Le présentateur a évoqué l’insuffisance du personnel qualifié et la faiblesse dans la prise en charge pédiatrique ainsi que l’acceptabilité des FE a l’utilisation de service. Dans la présentation de la DSP du Hadjer Lamis, la promptitude est à 97.8% et que 66% de personnel sont formés avec 0% de ruptures des intrants de plus de 7 jours. A la fin du deuxième semestre, 134 FE séropositives sont mis sous ARV, seuls 02 enfants sont dépistés précocement entre 4 à 6 mois. En somme il y a 37 enfants inclus dans la file active en fin 2019. La PECP reste un problème dans les FOSA. + +Pour le Mayo Kebbi-Est, Il ressort de la présentation que la promptitude est de 90.4%, pour 100% de complétude, 100% de personnel ont été formés en PTME et 0% de rupture des intrants. Les données partagées font ressortir que 147 femmes enceintes dépistées positives nouvellement incluses et 42 anciennes pour un total de 189, qui sont mises sous traitement ARV ainsi que 56 Femmes enceintes séropositives sous ARV qui ont accouché. Le dépistage à l’UNT ne se réalise qu’à Bongor car les autres Districts ne disposent pas des UNT. 22 adolescents de 15-19 ans sont dépistées positives au niveau des CLACs mais seulement 11 sont mis sous traitement cela est dû à la proximité avec le Cameroun ou les jeunes/ados viennent se faire dépister mais ne reviennent pas retirer leurs résultats. Pour résoudre ce problème de déperdition et de faible dépistage précoce, il est proposé de mettre en place une équipe de surveillance inter frontalier. + +Quelques difficultés ont été relevées lors des discussions sur les résultats présentés par les trois provinces, il s’agit entre autres : +• Insuffisances de la collecte des données et la promptitude des données pose un problème ; +• Insuffisance dans la gestion des intrants avec rupture périodique en intrant et des ARV pédiatriques ; +• Insuffisance des supervisions formatives ; +• Manque d’appareil GenXpert dans la zone du grand Nord ; +• L’inaccessibilité de certaines zones de responsabilité ; +• Insuffisance de formation du personnel. +Plusieurs questions de compréhension et d’éclaircissement ont été posées et des réponses satisfaisantes ont été apportées par les présentateurs des DSP. +Après la pause, les travaux ont repris avec la présentation du CLAC qui s’est focalisée sur les résultats en termes des données des structures. Il s’agit de la sensibilisation et la prise en charge des adolescents et jeunes pour les deux semestres de l’année 2019. Il ressort de cette présentation qu’il y’a 98% en termes de complétudes et 89% de promptitudes des RMA. Pour ce qui est l’offre de services 210 pairs éducateurs, 36 CPS, 7 encadreurs et 6 prestataires ont été formés. Au vu des résultats 41247 adolescents et jeunes ont été dépistés, 31929 ont eu connaissance de leur statut sérologique pour 268 cas positifs mais seulement 241 ont été pris en charge à cause de déperdition. + +Au cours des échanges, il est recommandé aux CLACs de partager les données avec les DSP concernées et de mettre en œuvre des nouvelles approches pour minimiser la déperdition des cas positifs. Il s’en est suivi la présentation des résultats globaux des 13 DSP. Les résultats montrent qu’on observe un progrès en 2019 en matière de CPN (62%), dépistages de FE (55%) et 55% de femmes révélées positives. On remarque globalement un Gap dans l’offre de service PTME dû au réel problème de rapportage des données. +Pour ce qui est de la présentation sur la qualité des données, on note que pour avoir des données fiables, il faut respecter les quatre règles suivantes : +• L’exhaustivité et ponctualité des données ; +• La cohérence interne des données notifiées ; +• La cohérence externe des données ; +• La comparaison externe des données sur la population. +Concernant la méthodologie de vérification de rapportage, on utilise un coefficient de vérification compris entre 0,95 et 1,05. Si le Coefficient de Vérification (CV) est inférieur à 0,95 ceci correspond à une situation de sous-rapportage, à l’inverse, un CV supérieur à 1,05 correspondrait à une situation de sur-rapportage. A la fin de la présentation des recommandations pour l’amélioration de la qualité des données ont été faites à l’endroit de toutes les délégations : +• Mettre en place par un acte, une équipe de vérification et de validation des données dans chaque district, hôpital et centre de santé ; +• Tenir chaque mois avant la transmission des données à l’échelon supérieur une réunion de vérification et de validation des données avec compte rendu archivé ; +• Comparer les données agrégées sur les RMA, RMP, RMV entre elles d’une part et refaire le dépouillement des registres et effectuer à nouveau une comparaison ; +• Transmettre dans les délais les rapports mensuels à la coordination nationale PTME ; +• Renforcer les activités de supervision formative ; +• Faire un feedback pour apporter des corrections aux lacunes constatées sur les données transmises à chaque échelon +• Disposer les outils conforme de collecte des données (masque de saisi). +Après la pause, les participants sont repartis en groupe par DSP pour faire une analyse approfondie des forces, goulots d’étranglements et contraintes présentés et/ou discutés tout au long de l’atelier, il s’en suivi une restitution globale qui a été discuté. +La rédaction, adoption en plénière des recommandations générales de l’atelier était la dernière étape de l’atelier. Le coordonnateur de la PTME représentant le DGA du MSP a clôturé l’atelier sur une note de satisfaction', '', 'completed', '2020-02-24', '2020-03-02', 'Participer a l''atelier bilan pool 2 et retraite de l''Unite VIH', 'OIC Dr Kebfene +WBS:', false, false, '2020/325', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13031, '2020-02-19 05:21:36.957393+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (470, '2020-04-06 11:29:41.303337+00', NULL, '2020-04-06 15:07:04.790641+00', '2020-04-06 11:30:15.273359+00', '2020-04-06 14:20:33.49183+00', NULL, 'erreur de soumission', 'Erreur de soumission', '', '', '', 'cancelled', '2020-04-07', '2020-04-21', 'Coordination et réponse à l’urgences mouvements des populations dans un contexte de COVID', '884/004/006 SM190227', false, false, '2020/649', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 25198, 12680, '2020-04-06 11:30:15.273366+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (197, '2019-12-09 09:50:54.753299+00', '2020-02-22 15:08:12.653503+00', NULL, '2019-12-09 10:07:47.367683+00', NULL, '2019-12-09 10:48:58.738021+00', '', '', '', 'La campagne de riposte de la rougeole dans le DS de Laramanaye s''est bien deroulee. Au total 14 746 enfants de 6 à 59 mois ont été vaccinés soit une couverture de 115.6% et un taux de perte de 1.6%. Il faut noter aussi que toutes les ZR sont au-dessus de 95%. et aussi 14 746 enfants de 6 à 59 mois ont aussi reçu de la Vit A et du Mebendazole. ci dessous resumes en qulques points les constats faits sur le terrain: +Points Forts: +- Tenue des réunions de mobilisation sociale au niveau du DS et au niveau de chef-lieu de chaque ZR +- Tenue des réunions de coordination au niveau du DS et au niveau chaque ZR +- Fort engagements et mobilisation des autorités administratives, les chefs traditionnels et les leaders religieux tout le long de la campagne. +- Présence de 2 staffs de l’Unicef +- Mise en place d’un groupe WhatsApp a permis le partage des difficultés et des succès +- Engagement de l’ECD et des RCS +- Sortie massive des mères avec les enfants pour se rendre sur les sites de vaccination +- Suivi des équipes de vaccination par certains chefs de Canton notamment ceux de PAO et Lombogo en vue de s’assurer du bon déroulement. La mobilisation des enfants de ferricks a été à leur actif. +- Forte implication des Relais Mobilisateurs, Crieurs dans les activités de sensibilisation porte à porte. +Points améliorés +- Faible couverture en chaine de froid (2/7 des ZR possédèrent une chaine de froids soit une couverture de 29%) +- Sous-estimation de la population de certaines ZR +- Gap en vaccins et consommables +- Manque de support de communication (Banderoles, casquettes, Mégaphones, affiches.) tout le long de la campagne +- Retard constate dans le démarrage de la vaccination +- Retard dans la préparation de la riposte par l’équipe cadre du DS et les RCS +- Conflit d’agendas avec la formation sur l’onchocercose de l’ECD et des RCS en date du 10/12/19 à Baibokoum +- Retard dans la livraison des vaccins et des outils au DS (arrivée au DS le 11/12/19). +- Manque de registre de vaccination enfants, cartes doubles enfants 0-11 mois au niveau de DS et ZR. +- Manque des supports de communication pour les séances de causeries éducatives(IEC). +- Insuffisance dans la recherche des perdus de vus. +- Manque des outils pour la recherche active des perdus de vus. +- Insuffisance dans la surveillance des maladies a potentiels épidémiologiques au sein de la communauté.', '', 'completed', '2019-12-08', '2019-12-19', 'Supervision de la campagne de la Rougeole couplee a la VitA dans le DS de Laramanaye', 'Globalement la mission s''est bien deroulee.', false, false, '2019/261', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13031, '2019-12-09 10:07:47.367691+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (286, '2020-02-25 13:16:16.439804+00', NULL, NULL, '2020-02-25 13:16:16.455859+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-03-07', '2020-03-15', 'mission visite programmatique dans la DSP de ENNEDI-OUEST', '', false, false, '2020/361', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 25042, '2020-02-25 13:16:16.455866+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (233, '2020-02-11 17:28:56.410931+00', '2020-02-26 09:08:09.231388+00', NULL, '2020-02-12 10:15:45.922801+00', NULL, '2020-02-12 10:21:21.13025+00', '', '', '', 'Afin de contribuer au renforcement de la gouvernance locale, l’UNICEF a fourni au cours de ces dernières années un appui technique et financier au Gouvernement du T[[schema]] pour l’élaboration et la validation des Plans de Développement provinciaux (PDP) et communaux (PDC). D’autres partenaires, notamment le GIZ, le PNUD, l’AFD, la Délégation de l’UE au T[[schema]] ont soutenu l’élaboration des plans de développement communaux (PDC) et/ou provinciaux (PDP) à travers des programmes/projets d’appui au développement local. Ces expériences portent en elle des éléments d’apprentissage pour d’autres acteurs de développement. C’est dans ce cadre que le bureau UNICEF T[[schema]] a recruté un consultant international pour appuyer la capitalisation des expériences en matière d’élaboration et de mise en œuvre des plans de développement provinciaux et communaux. Les leçons tirées de cette capitalisation serviront à mieux orienter les futurs appuis et la démarche méthodologique pour l’élaboration des plans de développement au niveau décentralisé et à enrichir le cadre institutionnel de la décentralisation au T[[schema]]. + +La collecte des données/informations pour cette capitalisation est faite à travers des entretiens avec des structures étatiques impliqués, des PTF accompagnant et appuyant des processus d’élaboration et de mise en œuvre des plans de développement communaux et provinciaux et des acteurs des communes (Abéché, Moundou) et des provinces (Logone occidental, Ouaddaï). Une première mission effectuée à Abéché en décembre 2019 a permis de collecter les informations auprès du Comité provincial (CPA) du Ouaddaï et de la mairie d’Abéché. La mission de Moundou a pour objectif de collecter les informations auprès du CPA du Logone Occidental et de la mairie de Moundou. + +La mission a eu des séances de travail avec les membres du CPA du Logone Occidental et du conseil communal de Moundou. Ces séances ont permis de recueillir des informations/données aussi bien sur les processus d’élaboration et de mise en œuvre du PDP du Logone Occidental et du PDC de Moundou en termes notamment de participation, de mise en place des dispositifs de coordination/suivi des PDP et PDC, de mobilisation des ressources internes et externes et leurs appréciations sur les points forts et les faiblesses desdits processus. A l’issue de cette mission, un certain nombre de recommandations ont été formulées : (1) nécessité pour le fonctionnement du CPA que le Délégué provincial du Ministère en charge du plan assure le secrétariat technique dudit comité ; (2) pour une mobilisation effective des ressources internes à la commune de Moundou, il est nécessaire de systématiser la reddition des comptes.', '', 'completed', '2020-02-17', '2020-02-20', 'Appuyer collecte d’informations/données sur le procesus d''elaboration et mise en oeuvre PDC Moundou et PDP Logone Occid.', 'Commentaire superviseur: Très bonne mission. Il faudra utiliser l’occasion de la validation participative des résultats de la mission pour commencer à échanger avec le MEPD sur la révision du guide de planification.', false, false, '2020/298', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11607, 5074, '2020-02-12 10:15:45.92282+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (212, '2019-12-24 07:39:54.087886+00', '2020-02-25 14:03:50.23112+00', NULL, '2019-12-24 11:52:05.254819+00', NULL, '2019-12-24 14:25:36.57892+00', '', '', '', 'Les lanceurs d''alerte par SMS ont ete idenfies et formes au titre que les membres de CPA du Logone Oriental', '', 'completed', '2019-12-06', '2020-01-13', 'Recrutement et formation des lanceurs deSMS et du comité provincial d’action du LOG OR sur le Systeme d''Alerte Precoce', '', false, false, '2019/275', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11347, 14700, '2019-12-24 11:52:05.254834+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (158, '2019-11-12 17:15:58.318085+00', NULL, NULL, '2019-11-12 17:15:58.366411+00', NULL, '2019-11-13 13:31:08.626346+00', '', '', '', '', '', 'approved', '2019-11-21', '2019-11-28', 'Monitoring of recommendation of IHDL (site visits) & spot check of Mentor Initiative', '', false, false, '2019/214', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 3701, 14006, '2019-11-12 17:15:58.366478+00', NULL, 12); +INSERT INTO [[schema]].t2f_travel VALUES (399, '2020-03-13 11:55:00.698558+00', NULL, NULL, '2020-03-13 11:55:00.711988+00', NULL, '2020-03-13 16:51:12.041996+00', '', '', '', '', '', 'approved', '2020-03-21', '2020-05-01', 'Rejoindre le lieu de travail', '', false, false, '2020/531', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 13750, 12653, '2020-03-13 11:55:00.711994+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (372, '2020-03-10 16:04:48.774244+00', NULL, '2020-03-27 06:21:39.513384+00', NULL, NULL, NULL, '', '', '', '', '', 'cancelled', '2020-03-23', '2020-03-30', 'Participer a l''atelier de la revue annuelle de gestion du bureau Pays', 'OIC Dr Kebfene Moundene +WBS', false, false, '2020/488', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 9984, 13031, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (174, '2019-11-25 19:09:27.667449+00', '2020-02-27 11:02:56.550212+00', NULL, '2019-11-25 19:09:27.73172+00', NULL, '2019-11-25 19:31:34.758177+00', '', '', '', 'Voyage R&R + AL terminé.', '', 'completed', '2019-12-21', '2020-01-06', 'R&R + AL', '', true, false, '2019/230', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11607, 177097, '2019-11-25 19:09:27.731729+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (300, '2020-02-27 16:06:59.490449+00', NULL, NULL, '2020-02-27 16:06:59.532741+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-03-23', '2020-03-28', 'Reception de TLS (Hangars Améliorés)', '', false, false, '2020/379', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 25005, '2020-02-27 16:06:59.532748+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (213, '2019-12-30 08:00:47.723387+00', NULL, NULL, '2019-12-30 08:01:03.004513+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-12-31', '2020-01-02', 'Vérification Programmatique Association des Scouts du T[[schema]] (SSFA déc 2019)', '', false, false, '2019/276', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 28663, 12058, '2019-12-30 08:01:03.004533+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (313, '2020-03-02 09:38:01.200709+00', NULL, NULL, '2020-03-02 09:38:13.928536+00', NULL, '2020-03-02 14:33:13.497119+00', '', '', '', 'La Vérification Programmatique s’est déroulée dans le cadre de la mise en œuvre de la 2ème tranche de l’Accord de Programme au titre du Programme N°18/PCA/COMMUNICATION/CELIAF, signé entre UNICEF et la CELIAF, le 16/11/2017. Le montant faisant l’objet de la Vérification Programmatique est de : 10 779 000 FCFA.', '', 'approved', '2019-10-22', '2019-10-22', 'Vérification Programmatique CELIAF-Antenne de N''Djamena (3èT PCA)', '', false, false, '2020/401', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 5056, '2019-12-06 10:27:53.349762+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (235, '2020-02-13 11:21:38.504951+00', NULL, '2020-03-07 10:57:46.759516+00', NULL, NULL, NULL, '', '', '', '', '', 'cancelled', '2020-02-13', '2020-02-15', 'Participation l''évaluation MIRA à Fourkouloum, Malmarie et Kaya 2, Département de Kaya, Province du Lac au T[[schema]] du 14 f', '', false, false, '2020/300', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 11514, 24425, NULL, NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (316, '2020-03-02 10:40:43.712918+00', '2020-03-03 08:32:11.637301+00', NULL, '2020-03-02 10:42:01.765195+00', NULL, '2020-03-02 14:32:27.813696+00', '', '', '', 'Visite programmatque (au bureau du partenaire a N''djamena)sur les activites menees dans les provinces', '', 'completed', '2019-11-27', '2019-11-27', 'Visite programmatique chez le partenaire UAFAT A N''djamena', '', false, false, '2020/404', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 10616, '2020-03-02 10:42:01.765202+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (325, '2020-03-04 06:19:09.762323+00', NULL, NULL, '2020-03-04 06:26:10.066982+00', NULL, '2020-03-04 07:12:11.854425+00', '', '', '', '', '', 'approved', '2020-03-04', '2020-03-04', 'Mission inter agence PAM. UNICEF, UNHCR et UNHCR dans le camp de refugié de Moura', 'WBS : 0810/a0/05/881/002/001 - Non Grant', false, false, '2020/413', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 11347, 10933, '2020-03-04 06:26:10.06699+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (214, '2020-01-02 13:17:27.224753+00', NULL, NULL, '2020-01-02 13:17:42.0398+00', NULL, '2020-01-02 13:40:49.747353+00', '', '', '', '', '', 'approved', '2020-01-08', '2020-01-10', 'Vérification Programmatique de l''Association des Femmes Allaitantes AFA - Bol', '', false, false, '2020/279', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 12058, '2020-01-02 13:17:42.039816+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (356, '2020-03-09 10:39:15.386418+00', NULL, NULL, '2020-03-11 07:47:34.203695+00', NULL, '2020-03-11 08:10:12.866769+00', '', '', '', '', '', 'approved', '2020-03-12', '2020-03-23', 'R&R et Annual leave', '', true, false, '2020/467', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 8357, 10680, '2020-03-11 07:47:34.203701+00', NULL, 6); +INSERT INTO [[schema]].t2f_travel VALUES (227, '2020-02-10 09:33:57.399743+00', '2020-03-02 15:51:04.19693+00', NULL, '2020-02-10 09:34:06.675007+00', NULL, '2020-02-10 18:08:23.547707+00', '', '', '', 'Rapport de la mission de vérification programmatique de la PCIME-C/ PEC-C à Goré, Bessao et Mbaibokoum du 10 au 15 février 2020', '', 'completed', '2020-02-10', '2020-02-15', 'Mission de suivi des recommandations et vérification programmatique de la PCIME-C /PEC-C à Goré, Bessao et Mbaibokoum', 'Lors de la mission, les élèves de l''école primaire de Ngamdji/ Bessao ont entonné un champ en faveur de la santé de l''enfant (2e fichier au format mp4)', false, false, '2020/292', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 21654, '2020-02-10 09:34:06.675016+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (297, '2020-02-26 15:25:56.828828+00', NULL, NULL, '2020-02-26 15:30:51.294496+00', NULL, '2020-03-03 08:53:07.399236+00', '', '', '', '', '', 'approved', '2020-03-11', '2020-03-14', 'Appuyer le coatching et le briefing du gestionnaire de la province de Chari Baguirmi sur les procedures de gestion HACT', 'Priere utiliser la ligne financiere suivante: (WBS + Grant) : 0810/AO/05/883/003/003 - SC190605', false, false, '2020/376', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11436, 23059, '2020-02-26 15:30:51.294503+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (318, '2020-03-02 16:40:47.21367+00', NULL, NULL, '2020-03-02 16:43:27.956849+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-03-04', '2020-03-07', 'Mission de suivi du programme de Cooperation dans la Bande sahelienne avec consultante Kfw', '', false, false, '2020/406', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11399, 11647, '2020-03-02 16:43:27.956856+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (311, '2020-03-02 09:33:28.083889+00', NULL, NULL, '2020-03-02 09:35:33.431492+00', NULL, '2020-03-03 08:49:06.765016+00', '', '', '', '', '', 'approved', '2020-03-08', '2020-03-14', 'Appuyer la formation des agents de santés de la Province du Chari Baguimi en paquets PTME.', '', false, false, '2020/397', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11436, 5069, '2020-02-26 15:30:51.294503+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (306, '2020-03-02 07:38:35.012871+00', NULL, NULL, '2020-03-02 07:38:56.537456+00', NULL, '2020-03-04 17:09:23.047682+00', '', '', '', '', '', 'approved', '2020-03-06', '2020-03-09', 'Participation a la mission d''Evaluation KFW - Etape de Bokoro', 'Chere nafi, +Ousseini te demande de reduire sa mission d’un jour c’est a dire la mission se deroule du 6 au 8 mars 2020.', false, false, '2020/385', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 8357, 11399, '2020-03-02 07:38:56.537464+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (334, '2020-03-04 11:30:44.72653+00', NULL, NULL, '2020-03-04 13:06:16.952334+00', NULL, '2020-03-05 07:25:06.444093+00', '', '', '', '', '', 'approved', '2020-03-16', '2020-03-23', 'Mission de verification ponctuelle aupres des partenaires de mise en oeuvre Delegation Regionale Sanitaire du Ouaddai/AF', 'WBS: 0810/0A/05/884/002/003 Non-Grant', false, false, '2020/436', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11399, 5064, '2020-03-04 10:55:06.196953+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (226, '2020-02-10 09:03:42.493356+00', '2020-03-03 15:32:03.497788+00', NULL, '2020-03-02 16:43:24.95051+00', NULL, '2020-03-02 16:49:00.426147+00', '', '', '', 'Rapport de supervision de la campagne de riposte contre l''épidémie de la rougeole couplée à la supplémentation à la vitamine A et déparasitage au mébendazole', '', 'completed', '2020-01-12', '2020-01-24', 'Mission d’appui à la supervision de la riposte +rougeole couplée à la Vit A et au Mebendazole du 12-24janvier 2020', '', false, false, '2020/291', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 21654, '2020-03-02 16:43:24.950517+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (333, '2020-03-04 11:24:06.792686+00', NULL, NULL, '2020-03-04 11:24:18.962501+00', NULL, '2020-03-05 12:35:55.079779+00', '', '', '', '', '', 'approved', '2020-03-10', '2020-03-13', '- Identifier avec le point focal protection les principales priorités dont il faut assurer le suivi pendant son absence', '', false, false, '2020/435', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 9109, 20932, '2020-03-04 11:24:18.962508+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (92, '2019-10-11 07:00:15.570086+00', '2020-03-16 08:54:43.912623+00', NULL, '2019-10-11 07:07:36.363967+00', NULL, '2019-10-11 07:10:15.567544+00', '', '', '', 'Rapport mission distribution de kits', '', 'completed', '2019-10-21', '2019-10-27', 'Mission de suivi de distribution de kits scolaires dans 36 écoles de Bokor', '', false, false, '2019/119', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 14616, '2019-10-11 07:07:36.363976+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (323, '2020-03-03 15:47:37.32887+00', NULL, '2020-03-05 10:07:56.342188+00', NULL, NULL, NULL, '', 'The end of mission date is not picking', '', '', '', 'cancelled', '2020-04-26', '2020-04-26', 'Provide technical support to implementing partners in Bahr El Gazel province / Moussoro Districts', '', false, false, '2020/411', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11647, 11344, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (337, '2020-03-04 14:13:33.748176+00', NULL, NULL, '2020-03-04 14:13:50.587745+00', NULL, '2020-03-04 16:29:13.953708+00', '', '', '', '', '', 'approved', '2020-03-06', '2020-03-22', 'R&R and annual leave', '', false, false, '2020/441', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11399, 9109, '2020-03-04 14:13:50.587751+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (285, '2020-02-25 11:03:27.16786+00', NULL, NULL, '2020-03-05 16:17:13.257181+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-03-23', '2020-04-02', 'Mission conjointe de prospection sur l''enregistrement des naissances dans 11 centres d''état civil du Guéra', '', false, false, '2020/360', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 390, 10707, 22244, '2020-03-05 16:17:13.257188+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (328, '2020-03-04 08:17:41.810772+00', NULL, '2020-03-04 08:20:26.03999+00', '2020-03-04 08:13:21.649785+00', NULL, '2020-03-03 08:40:13.282608+00', '', 'Superviseur n''est pas le bon', '', '', '', 'cancelled', '2020-03-12', '2020-03-19', 'Vérification Programmatique Association des Scouts du T[[schema]] à Moundou et Doba', 'Ligne budgétaire : 0810/A0/05/887/001/001 Non Grant', false, false, '2020/420', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 16394, '2020-03-03 08:18:38.425524+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (321, '2020-03-03 15:38:56.217948+00', NULL, '2020-03-05 10:04:31.896059+00', NULL, NULL, NULL, '', 'The end date is not picking', '', '', '', 'cancelled', '2020-03-29', '2020-03-29', 'Provide technical Support to implementing partners in Guera Province / Mongo District', '', false, false, '2020/409', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11647, 11344, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (329, '2020-03-04 08:21:19.936167+00', NULL, '2020-03-04 08:28:43.392763+00', '2020-03-03 08:18:38.425516+00', NULL, '2020-03-03 08:40:13.282608+00', '', 'Le superviseur n''est pas le bon', '', '', '', 'cancelled', '2020-03-12', '2020-03-19', 'Vérification Programmatique Association des Scouts du T[[schema]] à Moundou et Doba', 'Ligne budgétaire : 0810/A0/05/887/001/001 Non Grant', false, false, '2020/425', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 16394, '2020-03-03 08:18:38.425524+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (339, '2020-03-04 15:50:27.074005+00', '2020-03-17 08:32:42.848293+00', NULL, '2020-03-04 15:50:52.324239+00', NULL, '2020-03-04 16:42:59.039809+00', '', '', '', 'La mission a ete derouler du 06 au 11/03/20 au lieu du 05 au 11/03/20 comme prevue initialement.', '', 'completed', '2020-03-05', '2020-03-11', 'Mission d''evaluation KFW', '', false, false, '2020/447', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 14482, 10791, '2020-02-24 16:38:36.154401+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (350, '2020-03-06 12:41:38.11674+00', NULL, NULL, '2020-03-06 12:52:22.265528+00', NULL, '2020-03-06 13:01:24.665054+00', '', 'Report de la formation à une date ultérieure compte tenu de la formation des écoles pour par rapport à la pandémie Coronavirus', '', '', '', 'approved', '2020-03-22', '2020-03-27', 'Appui à la formation des élèves ambassadeurs de la paix à Moundou', '', false, false, '2020/461', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 13094, 14044, '2020-03-06 12:52:22.265536+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (327, '2020-03-04 08:12:13.487063+00', NULL, '2020-03-04 08:31:31.758075+00', '2020-03-04 08:13:21.649785+00', '2020-03-04 08:30:35.502127+00', '2020-03-03 08:40:13.282608+00', 'je ne suis pas le superviseur', 'Christophe n''est pas le superviseur de Gassi', '', '', '', 'cancelled', '2020-03-12', '2020-03-19', 'Vérification Programmatique Association des Scouts du T[[schema]] à Moundou et Doba', 'Ligne budgétaire : 0810/A0/05/887/001/001 Non Grant', false, false, '2020/415', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 16394, '2020-03-03 08:18:38.425524+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (326, '2020-03-04 07:56:27.96339+00', NULL, NULL, '2020-03-04 07:56:27.978328+00', NULL, '2020-03-04 08:54:03.377315+00', '', '', '', '', '', 'approved', '2020-03-06', '2020-03-21', 'R&R and Annual Leave', 'Le WBS: 887/A0/05/005/001', false, false, '2020/414', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 177097, 8426, '2020-03-04 07:56:27.978335+00', NULL, 17); +INSERT INTO [[schema]].t2f_travel VALUES (266, '2020-02-19 08:01:03.480212+00', NULL, NULL, '2020-03-05 14:23:20.721728+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-03-23', '2020-03-26', 'Take part to the awareness raising activities for the soldiers deployed in the Eastern part of the Chad', '0810/A0/05/886/004/007 SM 190227', false, false, '2020/331', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11399, 9109, '2020-03-05 14:23:20.721737+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (255, '2020-02-17 14:09:22.488917+00', '2020-03-05 10:37:06.378457+00', NULL, '2020-02-17 14:09:38.929213+00', NULL, '2020-02-17 15:48:09.860924+00', '', '', '', 'La mission s’est déroulée sans difficulté majeure. Le délai très court ne nous a pas permis de visiter tous les centres de sante retenus pour le déploiement des équipements de chaine de froid.', '', 'completed', '2020-02-17', '2020-02-23', 'collecte des données CCEOP / PMT', '', false, false, '2020/320', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12200, '2020-02-17 14:09:38.929221+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (338, '2020-03-04 15:46:51.960764+00', NULL, NULL, '2020-03-04 15:50:33.024188+00', NULL, '2020-03-06 07:59:02.731334+00', '', '', '', '', '', 'approved', '2020-03-12', '2020-03-19', 'Vérification Programmatique Association des Scouts du T[[schema]] à Moundou et Doba', 'Ligne budgétaire : 0810/A0/05/887/001/001 Non Grant', false, false, '2020/442', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 5062, 14873, '2020-03-03 08:18:38.425524+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (343, '2020-03-05 09:07:16.996973+00', NULL, NULL, '2020-03-05 09:07:47.07943+00', NULL, '2020-03-05 18:27:46.946395+00', '', '', '', '', '', 'approved', '2020-03-26', '2020-03-28', 'Preparation de la mission DFID a Benoye et Mbalkabra', '', false, false, '2020/454', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12528, '2020-03-05 09:07:47.079438+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (283, '2020-02-24 16:37:52.470432+00', NULL, NULL, '2020-02-24 16:38:36.154394+00', NULL, '2020-03-04 16:25:18.548614+00', '', '', '', '', '', 'approved', '2020-03-05', '2020-03-11', 'Mission d''evaluation KFW', '', false, false, '2020/356', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 14482, 24195, '2020-02-24 16:38:36.154401+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (322, '2020-03-03 15:45:55.651665+00', NULL, '2020-03-05 10:06:24.70597+00', NULL, NULL, NULL, '', 'The end of mission date is not picking', '', '', '', 'cancelled', '2020-04-12', '2020-04-12', 'Provide technical support to implementing partners in Kanem province / Districts : Mao -Mondo- Rig Rig-Ntiona-Noukou', '', false, false, '2020/410', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11647, 11344, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (331, '2020-03-04 10:54:15.548649+00', NULL, NULL, '2020-03-04 10:55:06.196944+00', NULL, '2020-03-05 14:24:51.515049+00', '', '', '', '', '', 'approved', '2020-03-16', '2020-03-23', 'Mission de verification ponctuelle aupres des partenaires de mise en oeuvre Delegation Regionale Sanitaire du Ouaddai/AF', 'WBS 0810/AO/884/002/003 NON-GRANT', false, false, '2020/431', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 9109, 5068, '2020-03-04 10:55:06.196953+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (336, '2020-03-04 13:47:30.518337+00', NULL, NULL, '2020-03-04 15:53:53.569542+00', NULL, '2020-03-05 12:36:22.200583+00', '', '', '', '', '', 'approved', '2020-03-16', '2020-03-30', 'Rest and Recuperation', '', true, false, '2020/440', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 9109, 20932, '2020-03-04 15:53:53.569551+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (291, '2020-02-25 16:00:33.7427+00', NULL, '2020-03-06 11:06:42.797816+00', '2020-02-25 16:11:59.566461+00', NULL, '2020-02-27 09:16:24.180263+00', '', 'Pour accompagner la mission de la consultante, il est decidé que ce sont les chefs de sections/programmes qui doivent accompagner ladite consultante. De ce fait, mon voyage a été annulé', '', '', '', 'cancelled', '2020-03-03', '2020-03-13', 'Appuyer la mission d''évaluaton des financements KFW1 et 2', '', false, false, '2020/370', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 5052, 14044, '2020-02-25 16:11:59.566469+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (348, '2020-03-06 11:15:01.745924+00', NULL, NULL, '2020-03-06 11:15:24.934786+00', NULL, '2020-03-06 12:02:48.357549+00', '', '', '', '', '', 'approved', '2020-03-09', '2020-03-12', 'Recuperer le vehicule 101 C90 CD et finaliser le processus de transfert Ndjamena', '', false, false, '2020/459', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13418, '2020-03-06 11:15:24.934793+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (352, '2020-03-07 13:49:31.81636+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-03-29', '2020-04-04', 'Field need assessment and technical support to implementing partners', '', false, false, '2020/463', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11647, 11344, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (361, '2020-03-09 15:45:01.639904+00', NULL, NULL, '2020-03-09 15:48:01.816092+00', NULL, '2020-03-09 15:52:43.537891+00', '', '', '', '', '', 'approved', '2020-03-11', '2020-03-14', 'Missio conjointe d''evaluation des Centres de sante de Convergence', '', false, false, '2020/475', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 10933, 9329, '2020-03-09 15:48:01.8161+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (256, '2020-02-17 14:27:13.903237+00', '2020-03-06 08:47:28.927767+00', NULL, '2020-02-17 14:28:04.266163+00', NULL, '2020-02-17 15:49:27.588723+00', '', '', '', 'Rencontre avec le Délégué Provincial Sanitaire du Mayo Kebbi Ouest, les MCD, les RPEV, les chefs des zones et les infirmiers des centres des santes. +- Act1.2 : Le district de Pala dont j’ai visite les 14 centres de santes, 7 ont les frigots SIBIR a pétrole mais qui ont pris de l’âge et chaque fois ya cout circuit et qui demande d’etre remplacer : +- Le district de Léré a 20 centres de santes mais trois qui ont les frigots SIBIR a pétrole mais ont l’âge +- Le district de Lagon a 13 centres de santes mais 3 ont les frigots SIBIR a pétrole qui ont de l’âge et chaque ya cout de circuit. +- Le district de Lame a 07 centres de santes, seul le district qui a le frigot a solaire et les centres s’approvisionnent. Les centres ont les frigots SIBIR a pétrole qui sont pris les couts circuits. +- Le district de Guelo, dont j’ai visite 8 centres de santes et 2 seulement qui ont les frigots SIBIR a pétrole mais qui ont pris de cout circuit et les restes n’ont pas de frigots. +- Pour le district de Guegou, sur les10 centres visites, 2 CS ont les frigots a pétrole et un en panneau solaire et les restes rien. +- Le district de Gagal, il compte 16 centres de santes, seulement trois qui fonctionnent avec les frigots SIBIR a pétrole mais qui prennent chaque fois les couts de circuit. +- Pour le district de Torrock qui 8 centres de santes ,4 CS ont les frigots a pétrole mais qui fonctionnent difficilement, chaque fois en pannes. +- Le district de Binder compte 9 centres de santes, deux seulement qui ont des frigots SIBIR a pétrole qui marches mais chaque fois en panne. Le MCD a recours a son collegue de médecin de kahele (Cameroun)qui lui rends service en gardant de fois ces vaccins là-bas. +-', '', 'completed', '2020-02-17', '2020-02-23', 'collecte des données CCEOP / PMT', '', false, false, '2020/321', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12767, '2020-02-17 14:28:04.266172+00', NULL, 13); +INSERT INTO [[schema]].t2f_travel VALUES (36, '2019-10-02 15:06:42.041385+00', '2020-03-07 11:30:30.658168+00', NULL, '2019-10-02 15:07:29.015982+00', NULL, '2019-10-02 15:08:39.769088+00', '', '', '', 'La réunion prévue pour le 05 février a effectivement au lieu à Baga Sola, suivie de séance de travail avec AFC et la rencontre avec les responsables militaires. Voir le rapport attaché.', '', 'completed', '2019-10-04', '2019-10-05', 'Participer à la réunion de coordination humanitaire ; Contacter les hautes autorités; travailler avec ACF ;', '', false, false, '2019/36', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11347, 24425, '2019-10-02 15:05:18.135266+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (353, '2020-03-07 13:54:35.525981+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-04-12', '2020-04-18', 'Activities Monitoring, follow up and technical support to implementing partners', '', false, false, '2020/464', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11647, 11344, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (369, '2020-03-10 14:41:36.296946+00', NULL, NULL, '2020-03-10 14:44:50.355109+00', NULL, '2020-03-10 15:52:47.266188+00', '', '', '', '', '', 'approved', '2020-03-17', '2020-03-21', 'Mission préparatoire au lancement des diagnostics participatifs multisectoriels', 'Ligne budgétaire à utiliser : Non-Grant ; WBS : 0810/AO/05/887/003/002', false, false, '2020/483', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11607, 5074, '2020-03-10 14:44:50.355116+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (358, '2020-03-09 11:20:51.760793+00', NULL, NULL, '2020-03-09 11:43:26.388191+00', NULL, '2020-03-09 12:06:48.124317+00', '', '', '', '', '', 'approved', '2020-03-17', '2020-04-02', 'Mission conjointe Delegation Provinciale de l''Action Sociale du Ouaddai-Unicef pour la mise en place des CPE (VP).', 'WBS: 0810/A0/05/886/002/003 (Mecanismes communautaires), NON GRANT', false, false, '2020/469', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 10933, 24390, '2020-03-09 11:43:26.388199+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (406, '2020-03-16 08:56:11.80701+00', NULL, NULL, '2020-03-16 09:18:30+00', NULL, '2020-03-16 17:16:54+00', '', '', '', '', '', 'approved', '2020-03-17', '2020-03-19', 'Participation a l''atelier de planification des activites de la KRC#8', 'Le WBS pour la réunion : +884/003/001 +Non Grant', false, false, '2020/547', false, '{}', 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 21331, 215857, '2020-03-16 09:18:30+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (365, '2020-03-10 08:23:28.85887+00', NULL, NULL, '2020-03-10 08:34:31.06536+00', NULL, '2020-03-10 11:41:50.295376+00', '', '', '', '', '', 'approved', '2020-03-11', '2020-03-11', 'Missio conjointe d''evaluation des Centres de sante de Convergence', '', false, false, '2020/479', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 10933, 13371, '2020-03-09 15:48:01.8161+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (367, '2020-03-10 11:00:08.077079+00', NULL, NULL, '2020-03-10 11:16:47.704198+00', NULL, '2020-03-10 11:39:36.08945+00', '', '', '', '', '', 'approved', '2020-03-11', '2020-03-14', 'Mission conjointe d''evaluation des Centres de sante de Convergence', '', false, false, '2020/481', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 10933, 8140, '2020-03-09 15:48:01.8161+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (401, '2020-03-14 13:49:47.029488+00', NULL, '2020-03-14 13:50:34.240741+00', '2020-03-03 14:06:58.439304+00', NULL, '2020-03-03 16:19:11.73291+00', '', '', '', '', '', 'cancelled', '2020-03-16', '2020-03-20', 'Evaluation des CS et suivi poste distribution DSP Mandoul', 'GRANT SM190227 +WBS 0810/AO/05/882/003/003', false, false, '2020/533', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 23058, '2020-03-03 14:06:58.439311+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (454, '2020-03-27 06:59:29.822691+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-04-14', '2020-04-17', 'Assurer la VP de la DSP du Logone Oriental', 'OIC Dr Kebfene +WBS: 0810/A0/05/883/004/001-SC190605', false, false, '2020/627', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 11859, 13031, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (363, '2020-03-10 07:57:44.701967+00', NULL, NULL, '2020-03-10 08:04:54.882736+00', NULL, '2020-03-10 11:43:29.356359+00', '', '', '', '', '', 'approved', '2020-03-11', '2020-03-14', 'Missio conjointe d''evaluation des Centres de sante de Convergence', '', false, false, '2020/477', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 10933, 24390, '2020-03-09 15:48:01.8161+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (362, '2020-03-09 16:16:55.092204+00', NULL, NULL, '2020-03-09 16:28:15.331706+00', NULL, '2020-03-10 16:52:01.613839+00', '', '', '', '', '', 'approved', '2020-03-20', '2020-03-31', 'Appui a la Preparation et a la mise en oeuvre de la campagne cVDPV cas d4Abdoudam', '', false, false, '2020/476', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 10933, 14047, '2020-03-09 16:28:15.331714+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (359, '2020-03-09 13:16:35.355103+00', NULL, NULL, '2020-03-09 13:21:47.050215+00', NULL, '2020-03-10 16:52:57.669808+00', '', '', '', '', '', 'approved', '2020-03-17', '2020-04-02', 'Mission conjointe Delegation Provinciale de l''Action Sociale du Ouaddai-Unicef pour la mise en place des CPE (VP).', 'WBS: 0810/A0/05/886/002/003 (Mecanismes communautaires), NON GRANT', false, false, '2020/470', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 10933, 8714, '2020-03-09 11:43:26.388199+00', NULL, 6); +INSERT INTO [[schema]].t2f_travel VALUES (370, '2020-03-10 15:48:02.173852+00', NULL, NULL, '2020-03-10 15:51:32.928642+00', NULL, '2020-03-10 16:48:07.733954+00', '', '', '', '', '', 'approved', '2020-03-11', '2020-03-14', 'Missio conjointe d''evaluation des Centres de sante de Convergence', '', false, false, '2020/484', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 10933, 8714, '2020-03-09 15:48:01.8161+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (375, '2020-03-11 08:12:12.355487+00', NULL, '2020-03-11 08:12:48.557231+00', '2020-03-10 15:51:32.928642+00', NULL, '2020-03-10 16:48:07.733954+00', '', '', '', '', '', 'cancelled', '2020-03-11', '2020-03-14', 'Missio conjointe d''evaluation des Centres de sante de Convergence', '', false, false, '2020/493', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 10933, 9918, '2020-03-09 15:48:01.8161+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (368, '2020-03-10 13:42:36.941647+00', NULL, NULL, '2020-03-10 13:49:14.748854+00', NULL, '2020-03-10 14:39:12.486504+00', '', '', '', '', '', 'approved', '2020-03-16', '2020-03-20', 'La mission a pour objectif général d’évaluer la qualité de la PCIMAS ainsi que les facteurs influençant sa couverture.', 'Grant SM190227 +WBS 0810/AO/05/882/003/003', false, false, '2020/482', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 12352, 174796, '2020-03-10 13:49:14.748862+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (364, '2020-03-10 07:58:15.90928+00', NULL, NULL, '2020-03-10 13:28:25.732906+00', NULL, '2020-03-10 16:50:48.35415+00', '', '', '', '', '', 'approved', '2020-03-11', '2020-03-14', 'Missio conjointe d''evaluation des Centres de sante de Convergence', '', false, false, '2020/478', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 10933, 14047, '2020-03-09 15:48:01.8161+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (386, '2020-03-11 15:09:38.892058+00', NULL, NULL, '2020-03-13 11:47:59.961535+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-03-19', '2020-04-09', 'RnR and Annual leave', 'Grant : GS180090; WBS: 0810/A0/05/881/005/001.', true, false, '2020/514', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 8357, 11859, '2020-03-13 11:47:59.961543+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (378, '2020-03-11 08:28:44.643674+00', NULL, '2020-03-11 08:30:01.417044+00', NULL, NULL, NULL, '', '', '', '', '', 'cancelled', '2020-03-23', '2020-03-30', 'Participer a l''atelier de la revue annuelle de gestion du bureau Pays', 'OIC Dr Kebfene Moundene +WBS', false, false, '2020/500', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 25308, 16394, NULL, NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (384, '2020-03-11 11:51:04.067415+00', NULL, NULL, '2020-03-11 11:51:04.093516+00', NULL, '2020-03-11 11:58:13.42618+00', '', '', '', '', '', 'approved', '2020-03-15', '2020-03-15', 'atelier GFF', '0810/AO/05/883/004/001- NON GRANT', false, false, '2020/512', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11436, 234455, '2020-03-11 11:51:04.093524+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (398, '2020-03-13 09:54:08.238419+00', NULL, NULL, '2020-03-13 09:54:08.277486+00', NULL, '2020-03-13 11:21:25.911672+00', '', '', '', '', '', 'approved', '2020-03-16', '2020-03-18', 'Reunion de suivi des activites des Accords de Partenariat', '', false, false, '2020/530', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 10933, 8140, '2020-03-13 09:54:08.277493+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (387, '2020-03-11 16:03:57.298954+00', NULL, NULL, '2020-03-11 16:07:28.25265+00', NULL, '2020-03-11 16:48:33.887334+00', '', '', '', '', '', 'approved', '2020-03-12', '2020-03-14', 'Evaluation Education pour la zone de convergeance', 'ligne budgetaire : 880/006/003, GC, non-grant', false, false, '2020/515', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 10933, 25005, '2020-03-11 16:07:28.252658+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (383, '2020-03-11 11:33:20.573179+00', NULL, NULL, '2020-03-11 11:33:20.58784+00', NULL, '2020-03-11 18:42:31.479172+00', '', '', '', '', '', 'approved', '2020-03-22', '2020-03-29', 'Rest and Recuperation', 'Francoise Kadja Gou will be the OIC +WBS 0810/A0/05/880/005/009 No grant', false, false, '2020/511', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11647, 25475, '2020-03-11 11:33:20.587846+00', NULL, 17); +INSERT INTO [[schema]].t2f_travel VALUES (382, '2020-03-11 11:23:09.081943+00', NULL, '2020-03-12 08:10:02.91056+00', NULL, NULL, NULL, '', 'it is the same and one trip', '', '', '', 'cancelled', '2020-03-15', '2020-03-21', 'atelier d''elaboration du dossier d''investissement du mecanisnisme GFF au T[[schema]]', '', false, false, '2020/510', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11436, 234455, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (391, '2020-03-12 07:23:33.953269+00', NULL, NULL, '2020-03-12 07:28:09+00', NULL, '2020-03-12 15:26:12+00', '', '', '', '', '', 'approved', '2020-03-16', '2020-03-18', 'Participer à la réunion de planification des activités de KRC#8', '', false, false, '2020/519', false, '{}', 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 14482, 24425, '2020-03-12 07:28:09+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (303, '2020-02-28 11:10:25.079944+00', '2020-03-11 07:58:45.319289+00', NULL, '2020-02-28 11:10:45.103427+00', NULL, '2020-02-28 12:01:40.842749+00', '', '', '', 'La mission s’est déroulée dans le Mayo Kebbi Ouest ou des cas de cholera ont fait leur apparition en Octobre 2019. L’UNICEF, grâce a l’appui financier des fonds CERF, a mis en place un système de riposte pour prévenir la propagation de la maladie et sauver les vies de ceux et celles qui présentaient les symptômes. +Au but de donner visibilité aux interventions de l’UNICEF au T[[schema]] aux yeux du bailleur de fonds et du grand public, la section Communication produira des contenus qui seront intégrés dans le rapport final et diffusés sur le site web ainsi que dans les réseaux sociaux. + +Les profils identifies au préalable par le BZ de Moundou correspondent aux parents – les premiers à être touchés par le cholera au village de Daguirki - d’un enfant de 7 mois (a l’époque) qui n’a pas attrapé la maladie. La mère a su protéger le bebe sous allaitement grâce aux conseils d’hygiène promus par les relais communautaires. -En termes d''offre de services, les problemes se resument a i) la rupture en vaccins et la défaillance su système d’approvisionnement sont récurrents et handicapent l’atteinte des résultats; ii) la non prise en charge des enfants dépistés malnutris dans les centres de santé de Bénoye et Krim-Krim ; iii) l’absence d’une SFDE ou ATS/Accoucheuse au centre de santé de Bénoye Urbain ; non-respect de calendrier vaccinal dans l’administration des vaccins et remplissage de carte de vaccination par les agents vaccinateurs ; iv) les centres de santé de Bénoye et Krim-Krim ne disposent pas de réfrigérateurs ; v) a la rupture de registre d’acte de naissance ; vi) l''absence de motos pour renforcer les activités en stratégie avancée et la supervision des ASC ; +Temps fort du déroulement de la mission : -Concernant la demande , les problemes se rapportent i) a la faible demande de services de CPN et d’accouchement assistés et non présentation des nouveau-nés au centre de santé pour une prise en charge postpartum par la majorité des femmes enceintes ; ii) aux plateformes communautaires insuffisamment opérationnelles ; iii) au fait que les pratiques familiales essentielles à promouvoir ne sont pas harmonises et systématiquement promues par les ASC, les responsables administratifs et coutumiers et les agents de santé - -S''agissant de l''environnement favorable les problèmes concernent i) l''insuffisance de communication entre les acteurs locaux (Délégation, District, Centre de Sante- Mobilisateur – ASC) et les communautés ; ii) l''insuffisance de supervision régulière et de qualité entrainant la démotivation et relâchement de certains ASC ; iii) la faiblesse articulation « Plateformes Communautaires – CDA » pour une meilleure appropriation par les structures décentralisées de gouvernance locale ; iv) la faible capacité d’organisation des services de certains agents de santé au niveau des centres de santé et du district au niveau de Bénoye. - -Pour la qualité , on note l''interruption d’utilisation des services (CPN, Vaccination des enfants de 0 à 11 mois) ; ii) la non maitrise du calendrier vaccinal par certains agents vaccinateurs et iii) la rupture d’approvisionnement en intrants, médicaments, cartes de vaccination et de registres d’actes de naissance', '', 'completed', '2019-10-14', '2019-10-19', 'Suivi des activités de CFC/RTM et des indicateurs CSD dans le BZ/Moundou', '', false, false, '2019/7', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 177097, 12132, '2019-09-30 16:46:46.790477+00', NULL, 11); -INSERT INTO [[schema]].t2f_travel VALUES (117, '2019-10-22 16:36:26.629432+00', '2019-11-08 08:58:07.953231+00', NULL, '2019-10-22 16:36:26.699799+00', NULL, '2019-11-07 14:20:01.339488+00', '', '', '', 'La formation consiste à maîtriser les procédures à suivre pas à pas pour enregistrer les projets en ligne. -1. Les étapes clés à maîtriser -1.1 : Login et inscription (Propriétaires des projets) -1.2 Créer et soumettre un projet -1.3 Trouver un projet -1.4 Modifier un projet (non encore soumis) : Coordinateurs de cluster -1.5 Approuver ou rejeter un projet -1.6 Générer des rapports -Après cette étape, l’attention des coordinateurs de clusters a été attiré pour l’étape suivante dans les onglets Cluster et approval status : -2. Le remplissage du module projet -2.1 Informations de base -2.2 Plan de réponse (projets à ventiler sur plusieurs critères à totaliser à 100% ; Thématique transversale (la question du Cas ; du marqueur genre, …) -2.3 Emplacements (bien spécifier les régions, les départements, les sous-préfectures, …) -2.4 Cluster/sector (s’aligner toujours derrière la stratégie), veuillez au remplissage du caseloads, de la désagrégation et des activites (à définir par priorite a implémenter sur le terrain) -2.5 Budgets -2.6 Revue -A ce niveau, il y a 3 choix à faire : -• Soumettre le projet -• Ajouter à la revue ou -• Retirer le projet pour éditer/rejeter le projet ou approuver le projet en tant que cluster lead -Remarques -Soumettre si possible autant de commentaires pour soutenir le projet.', '', 'completed', '2019-10-28', '2019-10-31', 'Prendre part a la formation sur la soumission des projets a OPS 2020 par OCHA', '', false, false, '2019/154', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12059, '2019-10-22 16:36:26.699809+00', NULL, 9); -INSERT INTO [[schema]].t2f_travel VALUES (141, '2019-11-04 07:26:23.21675+00', NULL, '2019-11-04 10:33:40.782758+00', '2019-10-10 13:50:41.816763+00', NULL, '2019-10-10 14:32:07.032578+00', '', 'Duplicate error', '', '', '', 'cancelled', '2019-10-17', '2019-10-30', 'Identification des participants à la formation sur les urgences et du lancement du Système d’Alerte Precoce (SAP)', '', false, false, '2019/188', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11347, 14362, '2019-10-10 13:50:41.816774+00', NULL, 3); -INSERT INTO [[schema]].t2f_travel VALUES (148, '2019-11-07 12:52:08.633296+00', NULL, NULL, '2019-11-07 12:52:19.420767+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-14', '2019-11-21', 'Participer a la Revue Monitorage eTME', '', false, false, '2019/201', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 11436, 24207, '2019-11-07 12:50:27.030787+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (115, '2019-10-22 10:13:35.681071+00', NULL, NULL, '2019-10-22 10:14:19.473169+00', NULL, '2019-11-07 14:18:27.555466+00', '', '', '', '', '', 'approved', '2019-10-24', '2019-11-15', 'Supervision activités MobSoc Riposte cVDPV2 de Mandelia', '', false, false, '2019/150', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 14045, '2019-10-22 10:14:19.473179+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (75, '2019-10-08 15:55:05.491652+00', '2019-11-07 14:25:09.159245+00', NULL, '2019-10-08 15:55:20.42226+00', NULL, '2019-10-08 16:27:33.976923+00', '', '', '', 'Organiser dans un bref delai une restitution sur l''atelier aux collegues de bureau de Moundou.', '', 'completed', '2019-10-14', '2019-10-17', 'Participer à 2eme Formation E-Tools: Module d''Assurance Financière', '', false, false, '2019/98', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 11068, '2019-10-08 15:55:20.42227+00', NULL, 12); -INSERT INTO [[schema]].t2f_travel VALUES (164, '2019-11-13 16:16:59.245754+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2019-11-14', '2019-11-25', 'Participer a la Mission d''Etude sur la Sante Communautaire au Niger', '', false, false, '2019/220', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 10933, 9329, NULL, NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (162, '2019-11-13 15:20:29.799236+00', NULL, NULL, '2019-11-13 15:22:04.444315+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-15', '2019-11-20', 'Participer à la revue de la section éducation', '', false, false, '2019/218', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 9329, 25005, '2019-11-13 15:22:04.444335+00', NULL, 9); -INSERT INTO [[schema]].t2f_travel VALUES (130, '2019-10-25 15:30:20.177459+00', '2019-11-08 12:34:22.212599+00', NULL, '2019-10-25 15:30:37.348398+00', NULL, '2019-11-07 14:20:42.324277+00', '', '', '', 'Il s''agi d''un rapport de Verification Programmatique de la DSP du Mandoul sur un FACE d''un montant de 16 771 000 FCFA pour le financement des activites des microplans de districts sanitaires du Mandoul. Toutes les activites ont ete realisees par la delegation sanitaire et les DS. Les principaux resultats sont les suivants: amelioration de la qualite des donnees a travers la validation mensuelles des donnees, le renforcement des capacites des agents a travers les missions de supervisions, et 107 agents de sante ont ete formes sur les outils de gestions des donnees et la technique de prelevement des enfants sur papiers buvards. Par ailleurs nous avions aussi constates que le plateau technique des CS visites au cours de cette mission est faible(insuffissance des boites d''accouchements, tensiometre, pese enfant, materiel de reanimation du nouveau ne..). il ya necessite de renforcer le plateau technique des CS du DS de Koumra. Aussi Les activités des agents de santé communautaires se sont poursuivies dans l’ensemble de DS. La mise en œuvre de cette activité dans les différents DS a permis d’atteindre les résultats suivants : -- 2 529 femmes enceintes ont sensibilisées et référées à la CPN -- 5970 jeunes et adolescents ont sensibilises sur la prévention du VIH -- 359 leaders communautaires ont été sensibilisés et ont mené des activités de promotions en faveur de la PTME', '', 'completed', '2019-10-21', '2019-10-24', 'Assurer une mission de supervision et de VP de la DSP du Mandoul pour les activites PTME', 'la mission s''est bien deroule. par ailleurs au cours de cette mission nous avions aussi pris part au funeraile de notre collegue chauffeur Djaingue decede', false, false, '2019/168', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13031, '2019-10-25 15:30:37.348408+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (103, '2019-10-18 13:09:37.834154+00', '2019-11-13 10:17:07.884301+00', NULL, '2019-10-18 13:09:53.781053+00', NULL, '2019-11-07 14:18:53.755163+00', '', '', '', 'Deux pools de formations de 5 jours chacun, sur la prise en charge intégrée de la malnutrition aigüe en ambulatoire sans complication médicale ont été organisées à l’intention des agents de santé des districts sanitaires de Goré et Bessao. Au totale, 34 agents dont 20 agents de santé (3 femmes et 17 hommes) et 14 ASC ont bénéficié la formation. -Ces formations concernent 8 centres de santé (Timbiri et Peuleuh dans le DS de Goré, Dodang II, Laoukoueamassi, Gadjibian, Bendjimoudou, Manang, et Bekor II dans le DS de Bessao, identifiés pour abriter les UNA. -- la première partie organisée dans le district sanitaire de Goré, regroupant 11 participants dont 3 femmes, constitués de 9 professionnels de santé, venus des centres de santé, DS de Goré et du partenaire Mentor et 2 agents de santé communautaire (ASC) ont été formés du 22 au 26 octobre 2019. -Cette section de formation a connu la participation de 7 participants au pré-test et 11 participants au post-test. Au pré-test les notes avaient varié de 3/20 à 16,5/20 soit une moyenne de 7/20. Au post test, les notes ont varié de 6/20 à 18,5/20. La note moyenne était de 12/20. Ceci note une progression de 5 points du niveau de connaissance moyenne des participants sur la PCIMA. -- Un deuxième pool de formation organisé dans le DS de Bessao regroupant 23 participants composés de 14 professionnels de santé (10 IDE, 2 ATS, 1 technicien supérieur en soins infirmier 1 technicien de laboratoire) et 9 ASC venus des centres de santé, du district et de l’ONG MEMTOR, ont été formés du 28 octobre au 1er novembre 2019. -Pour cette deuxième section de formation, 22 participants ont pris part au pré-test et 23 participants au post-test. Au pré-test les notes avaient varié de 0/20 à 17/20 soit une moyenne de 5/20. Au post test, les notes ont varié de 3,5/20 à 17,5/20. La note moyenne était de 11,5/20. Ceci note une progression de 6,5 points du niveau de connaissance des participants sur la PCIMA. -Les deux sections de formation ont eu la participation de deux MCD de Goré, Bessao et ont été un succès. -A cet effet, un lot de matériels anthropométriques ( 8 cartons de toises (16 unités), 8 balances électroniques, MUAC), les outils de gestion UNA (15 registres de UNA, 15 registres de stock, 500 fiches de suivi UNA, 500 fiches de ration et tables de rapport P/T, ainsi que des intrants nécessaires (450 ATPE, Albendazole…) pour le lancement des activités dans ces nouvelles UNA , ont été sortis du magasin de l’Unicef et remis au partenaire Mentor Initiative en vue de remettre aux centres de santé concernés pour l’ouverture des nouvelles UNA.', '', 'completed', '2019-10-21', '2019-11-02', 'Mission de visite programmation et formation des agents de santé sur le paquet PCIMAS', '', false, false, '2019/134', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 22479, '2019-10-18 13:09:53.781063+00', NULL, 7); -INSERT INTO [[schema]].t2f_travel VALUES (163, '2019-11-13 15:53:22.093498+00', NULL, NULL, '2019-11-13 15:53:22.12237+00', NULL, NULL, '', '', '', '', '', 'submitted', '2019-11-18', '2019-11-20', 'Suivi des activites de PCA avec l''ONG PUI', '', false, false, '2019/219', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 388, 9329, 13371, '2019-11-13 15:53:22.122385+00', NULL, 7); +JOUR 1/ Mardi 3 Mars 2020 +7h30 – 17h : voyage N’Djamena – Pala +17h : rencontre avec le point focal, Luc Mbaiadoum, pour une mise au point + +JOUR 2/Mercredi 4 Mars 2020 +7h – 9h : déplacement de Pala vers Lame +9h-9h30 : rencontre avec le MCD de Lame et le MCH / explication de la visite +9h30 – 10h : déplacement vers le CS de Laourouba +10h – 10h15 : rencontre avec le RCS de Laourouba et relais communautaire qui ont suivi le cas de la famille +10h15-10h30 : déplacement vers le village de Daguirki +10h30-12h30 : rencontre de la famille et du voisinage. Prise de photos et collecte d’informations +12h30 – 18h : déplacement du village de Daguirki a Moundou + +JOUR 3/ Mercredi 5 Mars 2020 +Voyage de Moundou à N’Djamena', '', 'completed', '2020-03-03', '2020-03-05', 'Collecting elements for the content production related to the CERF fund', '0810/A0/05/880/004/003– NON GRANT +OIC: Sandrine Naguertiga', false, false, '2020/382', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 210807, '2020-02-28 11:10:45.103435+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (395, '2020-03-12 12:17:49.87901+00', NULL, NULL, '2020-03-12 12:20:53.53555+00', NULL, '2020-03-12 15:42:35.275229+00', '', '', '', '', '', 'approved', '2020-03-15', '2020-03-15', 'atelier GFF', '0810/AO/05/883/004/001- NON GRANT', false, false, '2020/523', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 25308, 16394, '2020-03-11 11:51:04.093524+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (392, '2020-03-12 07:41:52.46889+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-04-09', '2020-04-27', 'Session d''orientation des formateurs a Tps partiel du 13/17-04 et formation du groupe#2 a temps plein du 20/24 - 04', '', false, false, '2020/520', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 9984, 12059, NULL, NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (487, '2020-04-16 15:54:27.43072+00', NULL, NULL, '2020-04-16 15:54:27.499087+00', NULL, '2020-04-16 16:00:55.730375+00', '', '', '', '', '', 'approved', '2020-04-20', '2020-04-25', 'conduire la mission de visite programmatique dans le salamat', '', false, false, '2020/676', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 12459, '2020-04-16 15:54:27.499105+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (397, '2020-03-12 17:08:35.870196+00', NULL, '2020-03-12 17:11:27.320531+00', '2020-03-03 14:06:58.439304+00', NULL, '2020-03-03 16:19:11.73291+00', '', '', '', '', '', 'cancelled', '2020-03-16', '2020-03-20', 'Evaluation des CS et suivi poste distribution DSP Mandoul', 'GRANT SM190227 +WBS 0810/AO/05/882/003/003', false, false, '2020/526', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 8719, '2020-03-03 14:06:58.439311+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (393, '2020-03-12 08:16:28.172483+00', NULL, '2020-03-23 09:37:24.493475+00', '2020-03-12 08:16:54.448464+00', NULL, '2020-03-12 08:35:06.322664+00', '', 'COVID19 and Aiports Ndjamena and Kigali closed', '', '', '', 'cancelled', '2020-03-20', '2020-03-29', 'Annual leave', '', false, false, '2020/521', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11647, 11436, '2020-03-12 08:16:54.448471+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (408, '2020-03-16 12:44:57.720911+00', NULL, NULL, '2020-03-16 12:53:36.633754+00', NULL, '2020-03-16 12:57:49.691604+00', '', '', '', '', '', 'approved', '2020-03-18', '2020-03-20', 'Ramener la Pick_up en Reparation a Ndjamena', '0810/A0/05/880/006/003 +OIC Saad', false, false, '2020/549', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 21331, 8718, '2020-03-16 12:53:36.633762+00', NULL, 6); +INSERT INTO [[schema]].t2f_travel VALUES (280, '2020-02-24 15:16:42.264602+00', '2020-03-13 12:14:17.521851+00', NULL, '2020-02-24 15:16:42.279199+00', NULL, '2020-02-25 07:56:23.45069+00', '', '', '', 'RAS', '', 'completed', '2020-03-02', '2020-03-09', 'Rest and Recuperation (R&R)', 'Le R&R était prévu du 02 au 09 Mars 2020 mais pour une urgence familiale le sejour s''est prolongé jusqu''au 12 mars 2020. La TA a été amendée (02 au 12 mars 2020)', false, false, '2020/353', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 7584, '2020-02-24 15:16:42.279207+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (402, '2020-03-14 13:59:00.971879+00', NULL, NULL, '2020-03-14 14:01:46.657494+00', NULL, '2020-03-03 16:19:11.73291+00', '', '', '', '', '', 'submitted', '2020-03-16', '2020-03-20', 'Conduire la mission dans la province du Mandoul', 'GRANT SM190227 +WBS 0810/AO/05/882/003/003', false, false, '2020/537', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 23058, 8719, '2020-03-03 14:06:58.439311+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (8, '2019-10-01 08:07:40.921357+00', '2020-03-16 07:51:19.323495+00', NULL, '2019-10-01 08:13:00.885102+00', NULL, '2019-10-01 09:09:50.553725+00', '', '', '', 'les visites effectuees dans les DPAS de Koumra,Doba et lai ont permis d''evaluer le niveau de realisation des activites prevues et les perspectives a venir pour ameliorer la situation de la protection de l''enfant', '', 'completed', '2019-10-01', '2019-10-05', 'Visites programmatiques des Delegations de l''Action sociale de Lai, Koumra et Doba', '', false, false, '2019/8', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13372, '2019-10-01 08:13:00.88511+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (293, '2020-02-26 10:29:24.645187+00', '2020-03-15 14:35:16.628775+00', NULL, '2020-02-26 10:29:24.691502+00', NULL, '2020-02-26 22:46:20.085438+00', '', '', '', 'La reception provisoire des 06 EAE construits et rehabites a ete faite ,les imperfections constatees ont ete relevees et le partenaire s''engage a corriger avant la reception definitive prevue le 31 mars 2020.', '', 'completed', '2020-02-01', '2020-02-06', 'Visite programmatique du partenaire INTERSOS Gore', 'Le suivis seront faits aupres du partenaires pour la correction des imperfections constatees sur les batiments.', false, false, '2020/372', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13372, '2020-02-26 10:29:24.691509+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (411, '2020-03-16 13:57:46.42864+00', NULL, NULL, '2020-03-16 13:57:46.450491+00', NULL, '2020-03-16 14:07:32.308261+00', '', '', '', '', '', 'approved', '2020-03-17', '2020-03-21', 'Atelier d’élaboration du rapport diagnostic du dossier d’investissement du GFF', '', false, false, '2020/552', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 12352, 22317, '2020-03-16 13:57:46.450497+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (157, '2019-11-12 15:56:21.900409+00', '2020-03-16 09:02:43.602181+00', NULL, '2019-11-12 16:06:27.927329+00', NULL, '2019-11-12 16:19:20.761541+00', '', '', '', 'Rapport de la revue ennuelle education', '', 'completed', '2019-11-17', '2019-11-20', 'Participation a la revue approfondie', '', false, false, '2019/213', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 14616, '2019-11-12 16:06:27.927338+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (119, '2019-10-22 21:50:28.813351+00', NULL, '2020-03-19 07:28:56.914793+00', '2019-10-22 21:56:12.625294+00', NULL, '2019-10-23 07:44:49.066979+00', '', 'Pour des raisons liées à la disponibilité du staff en cette période à la SPPME, je n''ai pas pu participer à cette formation', '', '', '', 'cancelled', '2019-11-04', '2019-11-08', 'Formation des partenaires de Bol en HACT, Gestion Financière et Comptabilité de base à Dandi', '', false, false, '2019/156', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11607, 4606, '2019-10-02 10:09:42.602719+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (373, '2020-03-11 07:56:58.728812+00', NULL, NULL, '2020-03-11 07:56:58.769385+00', NULL, '2020-03-17 07:46:36.681726+00', '', '', '', '', '', 'approved', '2020-04-19', '2020-04-26', 'Participation a la formation Wash in school', '', false, false, '2020/489', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 14616, '2020-03-11 07:56:58.769392+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (61, '2019-10-07 15:32:50.253912+00', '2020-03-17 08:54:56.386579+00', NULL, '2019-10-07 15:34:06.124494+00', NULL, '2019-10-07 15:44:42.718929+00', '', '', '', 'la mission c''est deroulee comme prevue sans incident.', '', 'completed', '2019-10-09', '2019-10-16', 'Mission d’appui Logistique a Mao pour le déchargement de 5000 cartons de RUFT et la livraison des intrants nutritionnels', '', false, false, '2019/74', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11514, 10791, '2019-10-07 15:34:06.124503+00', NULL, 13); +INSERT INTO [[schema]].t2f_travel VALUES (414, '2020-03-17 07:22:56.141+00', NULL, NULL, '2020-03-17 07:30:40.024327+00', NULL, '2020-03-17 12:16:49.504263+00', '', '', '', '', '', 'approved', '2020-03-17', '2020-03-21', 'Atelier d’élaboration du rapport diagnostic du dossier d’investissement du GFF', 'WBS: 810/A0/05/881/005/005 Non Grant +OIC: Etienne Dembele', false, false, '2020/555', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11647, 20469, '2020-03-16 13:57:46.450497+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (453, '2020-03-27 06:31:36.678049+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-04-07', '2020-04-10', 'Assurer la Verification Programmatique de la DSP de la Tandjile', 'OIC Dr Kebfene +WBS: 0810/A0/05/883/004/001-SC190605', false, false, '2020/626', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 11859, 13031, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (420, '2020-03-17 14:27:55.2638+00', NULL, NULL, '2020-03-17 14:27:55.300924+00', NULL, '2020-03-17 14:29:30.171198+00', '', '', '', '', '', 'approved', '2020-03-24', '2020-03-27', 'Participation a la revue de gestion 2019', 'DOBONE NGARODJE-N''Djamena du 24 au 27/03/2020', false, false, '2020/563', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 10706, '2020-03-17 14:27:55.30093+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (345, '2020-03-05 19:27:22.963521+00', '2020-04-07 09:07:15.027321+00', NULL, '2020-03-05 19:27:23.000085+00', NULL, '2020-03-05 19:35:16.148156+00', '', '', '', 'J’ai fini ma mon conge de récupération dans de bonne condition. +J’avais repris le service comme planifié le 16.03.2020.', '', 'completed', '2020-03-09', '2020-03-16', 'Conge de recuperation', 'Cpnge de recuperation SECTO', false, false, '2020/456', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 14482, 12553, '2020-03-05 19:27:23.000092+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (430, '2020-03-18 11:52:43.434269+00', NULL, NULL, '2020-03-18 11:52:43.473273+00', NULL, '2020-03-18 13:59:21.11503+00', '', '', '', '', '', 'approved', '2020-03-24', '2020-03-27', 'Participation à la Revue de gestion 2019 / 25-26 Mars 2020 a Ndjamena', '', false, false, '2020/579', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 11347, 10933, '2020-03-18 11:52:43.473282+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (371, '2020-03-10 16:02:20.945414+00', NULL, NULL, '2020-03-10 16:13:39.932051+00', NULL, '2020-03-13 08:39:28.345631+00', '', '', '', 'I. Temps fort du déroulement de la mission : + +A. Séance de briefing et de mise au point sur le déroulement de la mission +Cette séance a permis de partager avec le BZ/Mongo le but et le déroulement pratique de la mission. Un bref aperçu sur le processus ayant abouti au choix des villages a été présenté. Le critère de sélection des villages a été le principal point de préoccupation soulevé par le BZ de Mongo. Il convient de préciser que la porte d’entrée pour le choix des villages de convergence est le District sanitaire (District sanitaire de Mongo pour la province du Guera, District sanitaire de Bokoro pour la province du Hadjer Lamis, District sanitaire de Moussoro pour la province de Bahr El Ghazel, District sanitaire de Mao pour la province du Kanem). Compte tenu du caractère multisectoriel des diagnostics, c’est la convergence des secteurs qui a été prépondérante dans le choix des villages dans les 4 districts sanitaires. En ce qui concerne la province du Guera, sur la base de la liste des ZR dans le District sanitaire de Mongo, la liste des écoles dans lesquelles l’Education interviendra et la liste des villages dans les cantons où WASH interviendra dans le cadre de l’initiative KfW 3, 12 villages de convergence ont été retenus pour le Guera. +La méthodologie du diagnostic participatif multisectoriel a été exposée. Cela a permis d’expliquer les exigences du choix des 2 villages pour le pré-test et de retenir les 2 staff du BZ/Mongo devant organiser les focus group et administrer le questionnaire individuel. Il a été ainsi convenu de toucher un village par jour. Les villages SAWA dans le Canton Niergui et Djogolo dans le Canton Migami ont été proposés sous réserve de la confirmation des autorités administratives du Département de Guera.. + +B. Visites d’informations aux autorités administratives +Après cette brève séance de travail au BZ de Mongo , la mission s’est rendu au Gouvernorat où elle a échangé avec le Secrétaire Général de la Province du Guéra à qui le BZ/Mongo a partagé à l’avance toute la documentation sur la mission. Après les clarifications apportées sur le travail à faire et la proposition des villages pour le pré-test , la mission a été orientée vers le Préfet du Département de Guéra pour faciliter le contact avec les chefs de communautés choisies. +Les échanges avec le Préfet du Département de Guéra lui ont permis de solliciter l’appui du S/Préfet de Mongo Rural qui, à son tour, a facilité le contact avec ses collègues de Niergui et de Baro en vue d’informer les villages retenus de l’objet et de la date de l’arrivée de la mission dans leur localité respective. + +C. Passage en revue des outils et discussion des modalités pratiques des pré-tests. +Après les rencontres avec les autorités, la mission s’est retrouvée avec les PO sectoriels de Mongo pour examiner les 2 outils proposés. Les commentaires et observations faits ont permis d’améliorer les 2 outils notamment le questionnaire. Il ressort de cette revue l’importance de la qualité de la formation des animateurs locaux. Cette formation doit permettre dans un premier temps aux potentiels animateurs d’avoir une bonne connaissance des problématiques et priorités de chaque secteur ainsi que les techniques d’animation de focus group. Le profil des potentiels animateurs a été sommairement abordé mais les discussions sont reportées pour la fin des pré-tests. + +D. Le pré-test des outils dans les 2 communautés +Le premier village ayant accueilli la mission pour le pré-test est SAWA dans le Canton Niergui et le deuxième est DJOGOLO dans le Canton Migami. Dans chaque village, 3 focus group (femmes, jeunes, personnes âgées) ont été réalisés et 3 questionnaires individuels ont été administrés. Il en ressort les constats suivants : +- Les villageois ne font pas facilement la différence entre un besoin et un problème ; ce qui exige de l’animateur beaucoup d’attention et de discernement aussi bien pendant les focus group que lors de l’administration des questionnaires individuels ; +- Les questions individuelles dont l’administration pose problèmes sont : Q11 (actions essentielles en nutrition) et Q13 (scolarisation des enfants de 6-11 ans) ; +- La question sur l’accès à l’eau potable doit prévoir la collecte des informations sur le temps mis et sur la fonctionnalité des forages existants ; +- La durée moyenne d’un focus group est de 30 mn avec la durée la plus longue enregistrée avec les femmes (40 mn) ; +- La durée d’administration d’un questionnaire individuel varie entre 20 et 35 mn ; +- La structuration de la feuille de notes de focus group à partir de la priorisation des problèmes doit permettre de conduire l’analyse de ce problème jusqu’au bout avant de prendre le 2e problème prioritaire. +- La traduction en arabe de certaines questions pose un problème. +Au regard de ces constats, il convient de prévoir 3 jours de formation pour les animateurs dont i) un jour axé sur les connaissances des problématiques et priorités fondamentales de chaque secteur, ii) le passage en revue des outils pour une meilleure connaissance et manipulation et iii) le 3e jour pour le pré-test par les animateurs afin d’identifier les défaillances fonctionnelles et/ou des insuffisances dans les capacités des animateurs à utiliser convenablement ces outils. Il est à noter que les sectoriels (délégations provinciales) sont invitées à cette formation. + +E. Discussion sur les critères de choix, le nombre des animateurs locaux et la supervision du processus de diagnostics participatifs multisectoriels +S’agissant des animateurs locaux des diagnostics participatifs multisectoriels, deux propositions ressortent à savoir 1) utilisation des relais communautaires déjà répertoriés ou 2) utilisation des animateurs des ONG partenaires à travers un SSFA. En vue d’une appropriation locale pour la pérennité des actions, il est retenu l’option d’utilisation des relais communautaires existants (2 par village). Cependant, il faut sélectionner les relais en respectant les critères fondamentaux qui sont i) avoir au moins un niveau de la classe de 3e, ii) parler correctement la langue de la communauté et iii) parler couramment l’arable local. +Pour pallier une quelconque insuffisance dans leurs capacités, l’option d’animation en binôme est retenue avec déploiement de 3 binômes par village. Le scenario retenu pour la réalisation des diagnostics participatifs multisectoriels est le suivant : +- Prévoir une journée de diagnostic par village ; +- Déployer 3 binômes d’animateurs par village, c’est-à-dire 6 animateurs ; +- Responsabiliser chaque binôme sur une seule catégorie de cibles (personnes âgées, Femmes ou jeunes) ; +- Chaque binôme doit organiser 4 focus group correspondant aux différents secteurs (Santé, Nutrition, VIH/Sida, Education, WASH et Protection) ; +- Le nombre de questionnaires individuels à organiser sera déterminé en fonction de type d’échantillonnage à adopter. +Chaque binôme aura ainsi 3 jours de diagnostic. +Pour une large implication du bureau de zone dans la supervision du processus de diagnostic, il a été retenu la désignation d’un point focal (1 staff du BZ) qui sera chargé de la supervision des animateurs. + +II. Principaux produits obtenus + +- Les autorités administratives ont été informées sur la démarche du diagnostic participatif multisectoriel ; +- Le contenu des outils a été ajusté en fonction des observations du Staff de BZ/Mongo et problèmes identifiés lors des pré-tests ; +- Des consensus ont été arrêtés sur les critères d’identification des animateurs locaux, leur nombre et le scénario pour la conduite des diagnostics +- La participation de chaque représentant des secteurs (Education, Santé, WASH, Protection) a été discutée et des propositions concrètes sont faites.', '', 'approved', '2020-03-17', '2020-03-21', 'Mission préparatoire au lancement des diagnostics participatifs multisectoriels', 'Ligne budgétaire à utiliser : SC190673 ; WBS : 0810/AO/05/887/002/002', false, false, '2020/485', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 177097, 12132, '2020-03-10 14:44:50.355116+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (389, '2020-03-11 18:12:18.391659+00', NULL, NULL, '2020-03-11 19:20:29+00', NULL, '2020-03-12 08:28:04+00', '', '', '', '', '', 'approved', '2020-03-16', '2020-03-19', 'participation a la réunion d’échanges sur la mise en œuvre des accords de partenariats du Programme WASH', 'WBS: 884/003/001 Non Grant; OIC: Kassamba Alexide Nguallague', false, false, '2020/517', false, '{}', 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13512, '2020-03-11 19:20:29+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (377, '2020-03-11 08:21:38.764581+00', NULL, NULL, '2020-03-11 08:22:11.521121+00', NULL, '2020-03-12 08:19:52.458384+00', '', '', '', '', '', 'approved', '2020-03-17', '2020-03-21', 'Mission préparatoire au lancement des diagnostics participatifs multisectoriels', 'Ligne budgétaire à utiliser : Non-Grant ; WBS : 0810/AO/05/887/003/002', false, false, '2020/497', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 25308, 9918, '2020-03-10 14:44:50.355116+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (374, '2020-03-11 08:01:58.645976+00', NULL, '2020-03-11 08:03:25.450137+00', '2020-03-10 16:13:39.932051+00', NULL, '2020-03-10 15:52:47.266188+00', '', '', '', '', '', 'cancelled', '2020-03-17', '2020-03-21', 'Mission préparatoire au lancement des diagnostics participatifs multisectoriels', 'Ligne budgétaire à utiliser : Non-Grant ; WBS : 0810/AO/05/887/003/002', false, false, '2020/490', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 177097, 9918, '2020-03-10 14:44:50.355116+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (376, '2020-03-11 08:13:47.068745+00', NULL, '2020-03-11 08:15:24.963122+00', '2020-03-10 14:44:50.355109+00', NULL, '2020-03-10 15:52:47.266188+00', '', '', '', '', '', 'cancelled', '2020-03-17', '2020-03-21', 'Mission préparatoire au lancement des diagnostics participatifs multisectoriels', 'Ligne budgétaire à utiliser : Non-Grant ; WBS : 0810/AO/05/887/003/002', false, false, '2020/494', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11607, 9918, '2020-03-10 14:44:50.355116+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (379, '2020-03-11 08:37:07.006882+00', NULL, '2020-03-11 08:38:00.063265+00', '2020-03-10 14:44:50.355109+00', NULL, '2020-03-10 15:52:47.266188+00', '', '', '', '', '', 'cancelled', '2020-03-17', '2020-03-21', 'Mission préparatoire au lancement des diagnostics participatifs multisectoriels', 'Ligne budgétaire à utiliser : Non-Grant ; WBS : 0810/AO/05/887/003/002', false, false, '2020/503', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 25308, 5077, '2020-03-10 14:44:50.355116+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (380, '2020-03-11 08:40:41.840299+00', NULL, '2020-03-11 08:41:19.807036+00', '2020-03-10 16:13:39.932051+00', NULL, '2020-03-10 15:52:47.266188+00', '', '', '', '', '', 'cancelled', '2020-03-17', '2020-03-21', 'Mission préparatoire au lancement des diagnostics participatifs multisectoriels', 'Ligne budgétaire à utiliser : Non-Grant ; WBS : 0810/AO/05/887/003/002', false, false, '2020/506', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 177097, 5077, '2020-03-10 14:44:50.355116+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (407, '2020-03-16 09:18:23.282276+00', NULL, NULL, '2020-03-16 09:25:00.92907+00', '2020-03-12 09:13:12+00', '2020-03-16 09:27:07.32933+00', 'Il faut encore ajouter le WBS et le OIC dans "Additional notes"', '', '', '', '', 'approved', '2020-03-18', '2020-03-31', 'Appui au bureau de Mongo pour le plan intersectoriel des activites C4D et formation des prestataires des services', 'Ligne budgetaire 880/007/001 NON GRANT , interimaire ANGE Rodrigue +Compte tenu du fait que les vols UNHAS pour Mongo sont hypothetiques je fais la mission en vehicule UNICEF.', false, false, '2020/548', false, '{}', 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 25308, 13359, '2020-03-12 08:41:31+00', NULL, 6); +INSERT INTO [[schema]].t2f_travel VALUES (396, '2020-03-12 15:51:24.535169+00', NULL, NULL, '2020-03-12 15:51:24.581477+00', NULL, '2020-03-12 16:43:36.821888+00', '', '', '', '', '', 'approved', '2020-03-16', '2020-03-17', 'Review of contractor works for data and electrical (UPS) cabling', '0880/A0/05/880/006/003 NON GRANT GC', false, false, '2020/525', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 8357, 7739, '2020-03-12 15:51:24.581485+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (218, '2020-01-31 10:27:02.819178+00', '2020-03-12 08:43:18.35405+00', NULL, '2020-01-31 10:27:02.870716+00', NULL, '2020-02-04 17:13:06.026806+00', '', '', '', '• Passage aux peignes fins de la Stratégie Nationale EAHMS ; +• Acquisition des connaissances sur une « école de rêve » pour favoriser la scolarisation des enfants et particulièrement les filles ; +• Acquisition sur les approches Petites Actions Faisables et importantes (PAFIs) ainsi que les modules sur la puberté, la GHM, les bonnes pratiques d’hygiène dans les écoles ; +• Acquisition de la connaissance sur l’ATPE dans les écoles.', '', 'completed', '2020-02-23', '2020-03-02', 'Formation WASH dans les écoles', '', false, false, '2020/283', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 12059, '2020-01-31 10:27:02.870724+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (403, '2020-03-14 13:59:01.127107+00', NULL, '2020-03-14 14:21:20.325229+00', '2020-03-03 14:06:58.439304+00', NULL, '2020-03-03 16:19:11.73291+00', '', '', '', '', '', 'cancelled', '2020-03-16', '2020-03-20', 'Conduire une mission nutrition dans la province du Mandoul', 'GRANT SM190227 +WBS 0810/AO/05/882/003/003', false, false, '2020/541', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 23058, 8719, '2020-03-03 14:06:58.439311+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (165, '2019-11-15 16:47:47.18751+00', '2020-03-16 07:39:16.505539+00', NULL, '2019-11-15 16:50:47.439089+00', NULL, '2019-11-15 17:38:24.263933+00', '', '', '', 'les points PRU-RRC formes sur la préparation et la réponse aux urgences ont reçu les outils nécessaires pour appuyer les CPA dans la formation des membres aux fins de repondre de maniere efficace aux urgences qui surviendraient dans la province.', '', 'completed', '2019-11-17', '2019-11-23', 'Participation Formation des Formateur Preparation reponses Urgence', 'une restitution de l''atelier sera faite dans un meilleur delai pour afin de permettre l''elaboration du plan de contingenece de la province', false, false, '2019/221', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13372, '2019-11-15 16:50:47.439099+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (390, '2020-03-12 07:23:31.830747+00', NULL, '2020-03-13 15:45:53.744827+00', NULL, NULL, NULL, '', 'Duplication par erreur', '', '', '', 'cancelled', '2020-03-16', '2020-03-16', 'Participer à la réunion de planification des activités de KRC#8', '', false, false, '2020/518', false, '{}', 0.0000, false, NULL, NULL, NULL, 145, 389, 14482, 24425, NULL, NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (155, '2019-11-12 10:20:27.558835+00', NULL, NULL, '2019-11-12 10:20:27.595428+00', '2020-03-13 15:55:10.000074+00', NULL, 'Cette mission a ete annulee acr qu''il a ete decide qu''un PO qui etait a N''Djemane prenne part a cette formation.', '', '', '', '', 'rejected', '2019-11-17', '2019-11-20', 'Participer a la revue approfondie a Ndjamena', '', false, false, '2019/208', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 24425, 21331, '2019-11-12 10:20:27.595442+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (106, '2019-10-21 09:37:55.62515+00', '2020-03-17 08:57:55.503242+00', NULL, '2019-10-21 09:38:09.173439+00', NULL, '2019-10-21 20:22:15.981176+00', '', '', '', 'La mission c''est derouler comme prevue sans incident.', '', 'completed', '2019-10-23', '2019-10-24', 'Organisation de la reunion de sous cluster', '', false, false, '2019/137', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11514, 10791, '2019-10-21 09:33:15.067319+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (341, '2020-03-05 07:57:00.533788+00', NULL, NULL, '2020-03-16 14:32:46.831176+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-03-23', '2020-03-25', 'Participation a l''atelier intersectoriel Cholera a Mara', '', false, false, '2020/452', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11647, 11344, '2020-03-16 14:32:46.831183+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (417, '2020-03-17 12:16:50.338462+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-03-29', '2020-04-05', 'Assurer le coaching des points focaux dans l''élaboration des requêtes trimestrielles de financement avec PMA 2020-202.', '', false, false, '2020/560', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11436, 23059, NULL, NULL, NULL); +INSERT INTO [[schema]].t2f_travel VALUES (37, '2019-10-02 15:08:19.773379+00', '2020-03-19 07:25:11.352777+00', NULL, '2019-10-02 15:08:55.398111+00', NULL, '2019-10-02 15:09:54.284779+00', '', '', '', 'La mission c''est bien deroulee dans l''ensemble!', '', 'completed', '2019-10-04', '2019-10-05', 'Participer à la réunion de coordination humanitaire ; Contacter les hautes autorités; travailler avec ACF ;', '', false, false, '2019/39', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11347, 21076, '2019-10-02 15:05:18.135266+00', NULL, 3); +INSERT INTO [[schema]].t2f_travel VALUES (427, '2020-03-18 10:36:22.401964+00', NULL, NULL, '2020-03-18 11:06:49.011508+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-03-19', '2020-03-21', 'Rejoindre le poste d''affectation a Doba avec un transit au bureau de zone de Moundou', 'WBS 0810/A0/05/881001/005 Grants SC 190358', false, false, '2020/576', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 13735, 25549, '2020-03-18 11:06:49.011516+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (409, '2020-03-16 13:55:46.824358+00', NULL, NULL, '2020-03-16 13:55:53.322004+00', NULL, '2020-03-16 14:09:39.013129+00', '', '', '', '', '', 'approved', '2020-03-30', '2020-04-03', 'Spot check de la Délégation Provinciale Sanitaire de Wadi Fira', '', false, false, '2020/550', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 8357, 14006, '2020-03-16 13:55:53.322012+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (432, '2020-03-18 13:04:57.887725+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-03-19', '2020-03-20', 'To participate to the workshop for evaluation of Health Community Strategic Plan (2015-2018)', '', false, false, '2020/587', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 11647, 20469, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (415, '2020-03-17 07:42:05.337981+00', NULL, NULL, '2020-03-17 07:49:27.825931+00', NULL, '2020-03-17 07:51:14.245335+00', '', '', '', '', '', 'approved', '2020-03-17', '2020-03-21', 'Atelier d’élaboration du rapport diagnostic du dossier d’investissement du GFF', 'WBS 0810/AO/05/882/002/009 NON-GRANT', false, false, '2020/556', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 25308, 8141, '2020-03-16 13:57:46.450497+00', NULL, 6); +INSERT INTO [[schema]].t2f_travel VALUES (404, '2020-03-16 07:54:53.171647+00', NULL, NULL, '2020-03-16 07:55:19.537594+00', NULL, '2020-03-16 14:42:16.311448+00', '', '', '', '', '', 'approved', '2020-03-23', '2020-03-27', 'Participation a la revue du PRoQeb', 'Valery-ATI-23 au 27 Mars 2020', false, false, '2020/545', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 14616, '2020-03-16 07:55:19.537601+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (429, '2020-03-18 11:16:58.700087+00', NULL, NULL, '2020-03-18 11:24:27.607277+00', NULL, '2020-03-18 11:50:42.984835+00', '', '', '', '', '', 'approved', '2020-03-19', '2020-03-21', 'Participer a l''atelier d''evaluation du plan Strategique Sante Communautaire', 'WBS Elément + GRANT: WBS 0810/AO/05/883/003/001 sur RR', false, false, '2020/578', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11436, 12023, '2020-03-18 11:24:27.607285+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (421, '2020-03-17 14:46:57.255863+00', NULL, NULL, '2020-03-18 12:33:35.609375+00', NULL, '2020-03-18 13:27:16.794395+00', '', '', '', '', '', 'approved', '2020-03-19', '2020-03-31', 'Mission d''appui aux activites KFW et ECHO dans le Barh El Ghazal', 'Ligne budgetaire: 0810/A0/05/886/004/004 SM190227 +OIC: ASKEMNGAR KEMLELDEL', false, false, '2020/564', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 21331, 24195, '2020-03-18 12:33:35.609384+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (433, '2020-03-18 14:03:15.466424+00', NULL, '2020-03-18 14:28:48.716237+00', '2020-03-18 13:32:32.715232+00', NULL, '2020-03-18 13:34:16.837149+00', '', 'Erreur de duplication', '', '', '', 'cancelled', '2020-03-23', '2020-04-04', 'MISSION DE VP DANS LES DSP DU KANEM-BEG-HL', 'SC181084 WBS : 0810/A0/05/881/002/018', false, false, '2020/588', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 21331, 9330, '2020-03-18 13:32:32.71524+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (366, '2020-03-10 10:20:49.020419+00', '2020-03-16 07:57:44.228857+00', NULL, '2020-03-10 10:23:24.452858+00', NULL, '2020-03-10 10:26:45.221934+00', '', '', '', 'La mission s’est déroulée dans le village de Massaguet dans le Hadjer Lamis, l’une de deux provinces à bénéficier du fonds KOICA pour l’accès équitable a l’éducation. +Parmi les activités, le financement prévoit aussi la distribution des kits scolaires aux élèves des collèges et des lycées cibles. +La section Communication, en accord avec la section Education, a entrepris une mission terrain pour photo-documenter ladite activité auprès du collège et du lycée de Massaguet. + +TEMPS FORTS: +a. Rencontre avec le IDEN de Massaguet, Ousmane Abakar, et le planificateur, Dangueube Pakagne. +Partage du but de la mission et prise vision du matériel scolaire déposé au niveau de l’inspection. Déplacement du matériel au niveau des établissements. + +b. Rencontre avec le directeur du collège, Hamat Moussa Chigufa, le censeur du lycée, Sakine Adoum Sakine, ainsi que des membres du corps pédagogique des deux établissements +Partage des données concernant les deux établissements. +Collège : effectif 508 (G 348 / F 160) ; 5 classes ; 9 professeurs dont une seule femme +Lycée : effectif 686 (G 524 / F 162) ; 6 classes : 13 professeurs dont aucune femme. En 2019, 26 sur 126 filles ont eu le bac littéraire et 2 sur 24 le bac scientifique. +Pas de latrine, ni d’eau. Frais d’inscription 3 000 FCFA + +c. Prise des photos : +- Classe de 3e : La classe était semi-vide a cause de l’heure. La distribution, un peu chaotique, n’avait pas été annoncée. +- Classe de terminale : seulement 2 filles sur 6 ont voulu se faire prendre en photo. Pendant le shooting, on a compris que seulement les filles ont droit aux sacs.', '', 'completed', '2020-03-11', '2020-03-11', 'Document with photos the distribution of school material within the KOICA fund', 'OIC: Sandrine Naguertiga + +WBS 885/001/001 - SC 180742 + +La mission a été décalée au 12 Mars 2020', false, false, '2020/480', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 210807, '2020-03-10 10:23:24.452865+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (438, '2020-03-20 07:33:04.217389+00', NULL, NULL, '2020-03-20 07:34:45.399151+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-03-24', '2020-03-27', 'Conduire la mission de revue de gestion 2019 / 25-26 Mars 2020', 'WBS: 0810/A0/05/880/006/003 Non-Grant +OIC: Ronel Hamat', false, false, '2020/609', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 23058, 12131, '2020-03-09 10:57:05.14741+00', NULL, 6); +INSERT INTO [[schema]].t2f_travel VALUES (416, '2020-03-17 08:24:35.065444+00', NULL, NULL, '2020-03-17 08:24:35.117981+00', NULL, '2020-03-17 08:26:19.046844+00', '', '', '', 'Report', '', 'approved', '2020-03-23', '2020-03-27', 'Conduire la mission participation a la revue ProQeb', 'Assengar-Ati-23 au 27 Mars 2020', false, false, '2020/557', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 8726, '2020-03-17 08:24:35.117989+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (249, '2020-02-13 12:26:08.838628+00', '2020-03-19 08:07:37.601981+00', NULL, '2020-02-13 12:26:26.125849+00', NULL, '2020-02-13 13:23:13.203334+00', '', '', '', 'La mission c''est bien deroulee sans incident. +Mora.', '', 'completed', '2020-01-09', '2020-01-15', 'Supervision de la campagne SAV DS Bokoro', '', false, false, '2020/314', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 12319, 21076, '2020-02-13 12:26:26.125857+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (434, '2020-03-18 14:40:23.906363+00', NULL, NULL, '2020-03-18 14:46:36.143796+00', NULL, '2020-03-18 14:49:42.338278+00', '', '', '', '', '', 'approved', '2020-03-19', '2020-03-31', 'Mission d''appui aux activites KFW et ECHO dans le Barh El Ghazal', 'Ligne budgetaire: 0810/A0/05/886/004/004 SM190227 +OIC: Mora', false, false, '2020/595', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 21331, 12680, '2020-03-18 12:33:35.609384+00', NULL, 6); +INSERT INTO [[schema]].t2f_travel VALUES (394, '2020-03-12 08:37:22.619262+00', NULL, '2020-03-19 14:53:58.297666+00', '2020-03-12 09:16:36+00', '2020-03-12 09:13:12+00', '2020-03-12 11:32:58+00', 'Il faut encore ajouter le WBS et le OIC dans "Additional notes"', 'Coronavirus oblige, tout regroupement de plus de 50 personnes est interdit jusqu''a nouvel ordre. Raison pour laquelle je ne peux faire ces missions programmees avec les partenaires.', '', '', '', 'cancelled', '2020-03-18', '2020-03-31', 'Appui au bureau de Mongo pour le plan intersectoriel des activites C4D et formation des prestataires des services', 'Ligne budgetaire 880/007/001 NON GRANT , interimaire ANGE Rodrigue +Compte tenu du fait que les vols UNHAS pour Mongo sont hypothetiques je fais la mission en vehicule UNICEF.', false, false, '2020/522', false, '{}', 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 5056, '2020-03-12 08:41:31+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (425, '2020-03-18 09:43:14.631337+00', NULL, NULL, '2020-03-18 09:54:22.156312+00', NULL, '2020-03-18 11:10:04.236762+00', '', '', '', '', '', 'approved', '2020-03-20', '2020-03-22', 'Participation a la rece[ption definitive des ouvrages d''eau et d''assainissement', 'SC181084 et le 884/002/003', false, false, '2020/574', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 21331, 215857, '2020-03-18 09:54:22.156319+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (418, '2020-03-17 12:17:26.148499+00', NULL, NULL, '2020-03-17 12:20:18.629846+00', NULL, '2020-03-17 13:47:35.043755+00', '', '', '', 'Report', '', 'approved', '2020-03-24', '2020-03-27', 'Participer a la revue de gestion 2019 (AMP 2019)', 'Bambe-NDjamena-24 au 27 Mars 2020', false, false, '2020/561', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 11347, 10707, '2020-03-17 12:20:18.629853+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (428, '2020-03-18 10:48:23.725753+00', NULL, NULL, '2020-03-18 11:17:49.967136+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-03-19', '2020-03-21', ': Appuyer la Délégation Sanitaire Provinciale du MANDOUL, dans les préparatifs des ripostes au cVDPV2 et le PEV de routi', 'WBS 0810/AO/05/881/001/005 Grant SC 19 0358 +OIC Gotybe Irene', false, false, '2020/577', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 387, 13735, 14045, '2020-03-18 11:17:49.967143+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (422, '2020-03-17 14:52:08.953044+00', NULL, NULL, '2020-03-17 14:52:08.99156+00', NULL, '2020-03-17 14:53:25.028513+00', '', '', '', '', '', 'approved', '2020-03-24', '2020-03-27', 'Conduire les collegues pour la revue de gestion a Ndjamena', 'Abali Ousmane-n''djamena du 24 au 27/03/2020.', false, false, '2020/565', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 10877, '2020-03-17 14:52:08.991568+00', NULL, 6); +INSERT INTO [[schema]].t2f_travel VALUES (426, '2020-03-18 10:09:51.152989+00', NULL, NULL, '2020-03-18 13:32:32.715232+00', NULL, '2020-03-18 13:34:16.837149+00', '', '', '', '', '', 'approved', '2020-03-23', '2020-04-04', 'MISSION DE VP DANS LES DSP DU KANEM-BEG-HL', 'SC181084 WBS : 0810/A0/05/881/002/018', false, false, '2020/575', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 21331, 25198, '2020-03-18 13:32:32.71524+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (424, '2020-03-17 16:06:00.695182+00', NULL, '2020-03-18 14:18:55.707934+00', NULL, NULL, NULL, '', 'erreur de duplication', '', '', '', 'cancelled', '2020-03-19', '2020-03-31', 'Mission d''appui aux activites KFW et ECHO dans le Barh El Ghazal', '', false, false, '2020/567', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 14482, 12680, NULL, NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (446, '2020-03-24 17:14:30.074844+00', NULL, NULL, '2020-03-24 17:14:30.105953+00', NULL, '2020-03-25 06:37:46.275644+00', '', '', '', '', '', 'approved', '2020-03-25', '2020-03-25', 'Appui Polio a Ndjamena', '', false, false, '2020/619', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 12378, 14482, '2020-03-24 17:14:30.105961+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (201, '2019-12-09 16:12:49.451362+00', '2020-03-31 10:50:08.822915+00', NULL, '2019-12-26 16:37:38.7896+00', NULL, '2019-12-27 17:38:53.316596+00', '', '', '', 'Cette mission s''inscrit dans le cadre du suivi programmatique des partenaires Terre Verte, APDI et CRT. Les partenaires CRT et APDI poursuivent leurs activites, apres l''interruption par la pluie. Le partenaire Terre verte est a la phase de planification de ces activites puisqu''il vient de recevoir les fonds.', '', 'completed', '2019-12-16', '2019-12-20', 'suivi programmatique projet ATPC- ATPC APDI et CRT', '', false, false, '2019/265', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13512, '2019-12-26 16:37:38.789614+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (443, '2020-03-24 13:16:03.676551+00', NULL, NULL, '2020-03-24 13:28:22.371568+00', NULL, '2020-03-27 08:35:46.845271+00', '', '', '', '', '', 'approved', '2020-04-01', '2020-04-08', 'Superviser le deroulement de la campagne de riposte contre la rougeole dans les districts de Kelo et Baktchoro', 'Grant : SC190107 ; WBS : 0810/A0/05/881/004/002', false, false, '2020/616', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 11859, '2020-03-24 13:28:22.371576+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (458, '2020-03-30 12:29:33.841308+00', NULL, NULL, '2020-03-30 13:38:31.298493+00', NULL, '2020-04-01 09:48:14.63911+00', '', '', '', '', '', 'approved', '2020-04-07', '2020-04-17', ' Evaluer les activités ACD (Novembre Dec-2019 et Janvier 2020) et suivre celles du COVID 19.', '', false, false, '2020/631', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 15798, '2020-03-30 13:38:31.298501+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (464, '2020-04-02 16:02:48.56172+00', NULL, NULL, '2020-04-02 16:06:12.424881+00', NULL, '2020-04-02 16:09:01.719149+00', '', '', '', '', '', 'approved', '2020-04-07', '2020-04-15', 'Conduire la mission de Coaching en HACT et de suivi des activités VIH/Sida', 'Conduire la mission de Coaching en HACT et de suivi des activités VIH/Sida', false, false, '2020/637', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 12465, '2020-04-02 16:06:12.42489+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (455, '2020-03-27 07:04:26.499369+00', NULL, NULL, NULL, NULL, NULL, '', '', '', '', '', 'planned', '2020-04-21', '2020-04-24', 'Assurer la VP de la DSP du Mandoul', 'OIC Dr Kebfene +WBS: 0810/A0/05/883/004/001-SC190605', false, false, '2020/628', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 11859, 13031, NULL, NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (466, '2020-04-06 10:24:19.237169+00', NULL, NULL, '2020-04-06 14:14:03.472544+00', NULL, '2020-04-06 14:22:44.049872+00', '', '', '', '', '', 'approved', '2020-04-07', '2020-04-21', 'Coordination et réponse à l’urgences mouvements des populations dans un contexte de COVID', '884/004/006 SM190227', false, false, '2020/639', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 25198, 24425, '2020-04-06 14:14:03.472551+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (469, '2020-04-06 11:29:16.691138+00', NULL, NULL, '2020-04-06 12:14:44.9632+00', NULL, '2020-04-06 14:15:50.675684+00', '', '', '', '', '', 'approved', '2020-04-07', '2020-04-21', 'Coordination et réponse à l’urgences mouvements des populations dans un contexte de COVID', '884/004/006 SM190227', false, false, '2020/646', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 25198, 21076, '2020-04-06 12:14:44.963209+00', NULL, 6); +INSERT INTO [[schema]].t2f_travel VALUES (120, '2019-10-22 21:57:26.484076+00', '2020-03-19 07:31:14.298644+00', NULL, '2019-10-22 22:02:13+00', NULL, '2019-10-23 07:39:01+00', '', '', '', 'Cette formation en HACT, Gestion Financière et Comptabilité de Base a regroupé plus d’une quarantaine des participants qui étaient des délégués, des gestionnaires, des responsables des maisons de culture, du personnel des ONG, des organisations de la société civile et de l’UNICEF. + +Cette vérification programmatique a eu lieu du 6 au 8 au même moment où se déroulais la formation à Mongo. + +Durant les 3 jours de formation, les participants ont maitrisé : + +- Les directives et procédures de gestion conformes au HACT (des agences du SNU) et le remplissage de formulaires FACE pour les modalités des remises des fonds ; +- La checklist pour les différentes catégories des dépenses et pièces justificatives ; +- La comptabilité de base afin d’enregistrer, classifier, analyser et produire les synthèses (par ex. tableau comparatif de budget et dépenses) et rapport financier + +Les modules de formation ont été accompagnés par des sessions d’exercice et des travaux pratiques pour permettre aux séminaristes d’avoir la maitrise des présentations. +Les partenaires se sont mis en groupe pour travailler sur plusieurs cas de remplissage du FACE : +Cas de FACE demande ; +Cas de liquidation à 100% ; +Cas de la liquidation partielle ; +Cas de liquidation et nouvelle demande ; +Cas de reversement ; +Cas de reprogrammation. + +Cette session de formation a été succédé par la présentation des FACE demande et liquidation traité et payé au sein de l’UNICEF malgré le mauvais remplissage par le partenaire. + +Il y’a eu également des travaux de groupe pour l’analyse des pièces justification du T[[schema]] et de la RDC. + +Un exercice individuel a eu lieu sur la comptabilité de base. + +NB : Les participants ont souhaité recevoir une autre séance de formation pour mieux maitriser les modalités de gestion des fonds de l’UNICEF.', '', 'completed', '2019-11-06', '2019-11-08', 'Formation des partenaires du Guera en HACT, Gestion Financière et Comptabilité de base à Mongo', 'Draft du rapport disponible', false, false, '2019/157', false, '{}', 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11607, 4606, '2019-10-02 10:12:14+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (121, '2019-10-22 22:03:01.75382+00', '2020-03-19 07:36:35.994553+00', NULL, '2019-10-22 22:04:06+00', NULL, '2019-10-23 07:45:04+00', '', '', '', 'Cette formation en HACT, Gestion Financière et Comptabilité de Base a regroupé 50 participants qui étaient des délégués sanitaires et de l’action sociale, des gestionnaires des délégations et des organisations de la société civile. + +Durant ces 3 jours de formation, les participants ont maitrisé : + +- Les directives et procédures de gestion conformes au HACT (des agences du SNU) et le remplissage de formulaires FACE pour les modalités des remises des fonds ; +- La checklist pour les différentes catégories des dépenses et pièces justificatives ; +- La comptabilité de base afin d’enregistrer, classifier, analyser et produire les synthèses (par ex. tableau comparatif de budget et dépenses) et rapport financier + +La méthodologie de formation utilisée était participative pour donner l’occasion aux participants de s’exprimer et de présenter leurs expériences et des cas concrets a titre des exemples. + +Chaque module de formation était accompagné par une séance d’exercice et de travail pratique pour permettre aux participants de maitriser les présentations. + +Les travaux pratiques et exercices étaient organisés en groupe pour des modules sur le remplissage du FACE (Cas de FACE demande, Cas de liquidation à 100%, Cas de la liquidation partielle, Cas de liquidation et nouvelle demande, Cas de reversement, Cas de reprogrammation) et sur l’analyse des pièces justificatives (Cas du T[[schema]] et de la RDC). + +Après la restitution de l’exercice sur le remplissage du FACE, une autre session a eu lieu sur la présentation des FACE demande et liquidation qui sont traités et payés au sein de l’UNICEF malgré le mauvais remplissage par le partenaire. + +Pour clôturer la formation le dernier jour, une session d’exercice individuel a eu lieu sur la comptabilité de base et le processus de restitution était fait étape par étape. + +NB : Les participants ont souhaité recevoir une autre séance de formation pour mieux maitriser les modalités de gestion des fonds de l’UNICEF.', '', 'completed', '2019-11-18', '2019-11-20', 'Formation des partenaires d''Abéché en HACT, Gestion Financière et Comptabilité de base à Biltine', '', false, false, '2019/158', false, '{}', 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11607, 4606, '2019-10-02 10:17:11+00', NULL, 11); +INSERT INTO [[schema]].t2f_travel VALUES (444, '2020-03-24 13:43:38.470722+00', NULL, NULL, '2020-03-24 13:44:33.789892+00', NULL, NULL, '', '', '', '', '', 'submitted', '2020-04-15', '2020-04-21', 'Superviser la campagne de riposte contre la poliomyelite dans le district sanitaire de Gore (Logone Oriental)', 'Grant : SC190358 ; WBS : WBS: 0810/A0/05/881/001/005', false, false, '2020/617', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 9984, 11859, '2020-03-24 13:44:33.789901+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (281, '2020-02-24 15:55:07.907955+00', '2020-03-30 09:10:24.345613+00', NULL, '2020-02-24 15:55:07.932655+00', NULL, '2020-03-06 12:16:30.657166+00', '', '', '', 'La mission ayant lieu dans la DSP de Borkou a permis de faire un suivi au niveau des différentes UNA et UNT de ladite DSP. Il ressort de cette mission que les 2 UNAs (Faya Urbain et Kirdimi fonctionne normalement. Au niveau de Faya Urbain, il y a une rupture en intrant depuis le mois de février mais par contre au niveau de Kirdimi, les intrants sont disponibles. Sur le plan technique, l’on note qu’au niveau de Kirdimi les critères d’admission et de sortie ne sont pas respectés. L’UNT est en sous-effectif de personnel ce qui ne permet pas de mettre en place un système de suivi pertinent respectant le protocole national. Un suivi régulier est nécessaire pour permettre aux agents de se performer.', '', 'completed', '2020-03-15', '2020-03-21', 'Mission de suivi des activités de PCIMAS dans la DSP de Borkou', 'SM190227 WBS: 0810/A0/05/882/002/009', false, false, '2020/354', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 388, 10933, 25166, '2020-02-24 15:55:07.932663+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (447, '2020-03-24 17:14:44.816517+00', NULL, NULL, '2020-03-24 17:14:44.836867+00', NULL, '2020-03-25 06:39:00.432155+00', '', '', '', '', '', 'approved', '2020-03-25', '2020-03-25', 'Appui Polio a Ndjamena', '', false, false, '2020/620', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 12378, 14482, '2020-03-24 17:14:44.836873+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (476, '2020-04-07 07:29:35.63076+00', NULL, NULL, '2020-04-07 07:29:35.669308+00', NULL, '2020-04-07 07:33:20.786266+00', '', '', '', '', '', 'approved', '2020-04-08', '2020-04-10', 'Deposer le collegue de la nutrition pour l''appui au bureau de zone de Lac', '', false, false, '2020/659', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 8726, '2020-04-07 07:29:35.669315+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (271, '2020-02-21 09:56:56.196692+00', '2020-03-25 11:18:06.188095+00', NULL, '2020-02-21 09:56:56.238281+00', NULL, '2020-02-21 12:03:12.143614+00', '', '', '', 'Le 25 février 2020, s’est tenu à Goré, dans l’enceinte de la Préfecture département de Nya Pende de la province du Logone Oriental, une réunion de coordination humanitaire intersectorielle. +Présidé par le SG du département, qui a ouvert la séance par le mot de bienvenue et la salutation de l’assemblé. Il a souligné que, cette réunion qui regroupe les organisations de la société civile, les partenaires des Nations-Unies et les responsables des institutions de l’Etat, est un cadre de collaboration entre les acteurs humanitaires, l’administration locale et les services déconcentré de l’état. +Les points retenus à l’ordre du jour sont les suivants : +1. Situation sécuritaire et accès humanitaire +2. Suivi des recommandations +3. Développement des activités dans les secteurs + Protection + Sécurité alimentaire + Santé/nutrition + Eau, Hygiène et Assainissement + Education +4. Divers', '', 'completed', '2020-02-25', '2020-02-25', 'participer à la réunion de coordination intersectorielle à Goré', '', false, false, '2020/336', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 22479, '2020-02-21 09:56:56.238288+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (472, '2020-04-06 13:35:46.541578+00', NULL, '2020-04-06 13:47:23.04534+00', '2020-04-06 13:35:46.563194+00', NULL, '2020-04-06 13:41:52.281553+00', '', '', '', '', '', 'cancelled', '2020-04-11', '2020-05-30', 'Mission d''appui logistique au bureau de N''Djamena', '', false, false, '2020/655', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 12552, '2020-04-06 13:35:46.563201+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (269, '2020-02-20 14:41:58.0585+00', NULL, NULL, '2020-02-20 14:41:58.107894+00', NULL, '2020-02-20 15:19:19.62483+00', '', '', '', 'Dans le cadre de la mise en oeuvre du KRC8, les partenaires CRT et TV formerons les enseignants qui par cascades formerons les eleves sur les outils de WASH in school. c''est ainsi que l''equipe WASH, sous le lead de la specialiste WASH avait organise la formation des formateurs qui sont les facilitateurs des ces 2 ONG''s. outre cette formation l''equipe a effectue deux suivis programmatiques de l''APDI et la CRT. Le constat n''est pas favorable pour certains villages qui sont retissants et refuse de changer de comprotement par rapport a la defecation a l''air.', '', 'approved', '2020-03-09', '2020-03-17', 'organiser la formation wash in school des formateurs des formateurs des enseignants et eleves des ecoles du projet', '', false, false, '2020/334', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13512, '2020-02-20 14:41:58.107901+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (202, '2019-12-09 16:12:49.648513+00', NULL, NULL, NULL, NULL, NULL, '', '', '', 'cette mission s''inscrit dan sle cadre du suivi mensuel des actvites des partenaires APDI et CRT qui ont repris les actvites apres une suspension du a l''intensite des pluies dans leur zone d''intervention. les contraintes pour l''acces des villages et la disponibilite des beneficiiares persistent toujours. Le sol est gorge d''eau accasionnant l''eboulement de certaines latrines quant bien meme certains menages s''efforce de les construire.', '', 'planned', '2019-12-16', '2019-12-20', 'suivi programmatique projet ATPC- ATPC APDI et CRT', '', false, false, '2019/266', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 391, 9984, 13512, NULL, NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (467, '2020-04-06 11:28:33.309233+00', NULL, '2020-04-06 15:12:11.031068+00', NULL, NULL, NULL, '', 'Duplication par erreur', '', '', '', 'cancelled', '2020-04-07', '2020-04-21', 'Coordination et réponse à l’urgences mouvements des populations dans un contexte de COVID', '884/004/006 SM190227', false, false, '2020/640', false, NULL, 0.0000, false, NULL, NULL, NULL, 145, 389, 25198, 21331, NULL, NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (217, '2020-01-29 16:03:23.603515+00', '2020-03-31 12:06:13.221152+00', NULL, '2020-01-29 16:03:23.63661+00', NULL, '2020-02-04 17:12:15.77399+00', '', '', '', 'cette mission a ete deviee pour la mission d''evaluation pour les besoins des sinistres pourl''inondation dans le Mayo kebbi Est.', '', 'completed', '2020-01-19', '2020-01-24', 'mission pour le suivi programmatique et l''evaluation finale du partenaire ASD pour la reponse a l''urgence cholera', '', false, false, '2020/282', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13512, '2020-01-29 16:03:23.636628+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (294, '2020-02-26 10:52:56.486047+00', '2020-03-31 16:02:13.014658+00', NULL, '2020-02-26 10:52:56+00', NULL, '2020-02-28 12:06:15+00', '', '', '', ' Les membres des CPA des provinces du Logone oriental ont une connaissance sur la PRU + Les risques auxquels le Logone Occidental est exposé sont identifiés par les membres de CPA et ses démembrement envue de l’élaboration du plan de contingence multirisque de ladite province +les données et informations pertinentes permettant l’alimentation des différentes parties du Plan Provincial de Contingence sont collectées grâce aux travaux de groupes suivis de plénière', '', 'completed', '2020-03-12', '2020-03-18', 'Appui a la formation PRU a Doba', '', false, false, '2020/373', false, '{}', 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 13372, '2020-02-26 10:52:56+00', NULL, 10); +INSERT INTO [[schema]].t2f_travel VALUES (60, '2019-10-07 15:32:04.184059+00', '2020-04-08 07:10:34.906937+00', NULL, '2019-10-07 15:33:39.348436+00', NULL, '2019-10-07 15:42:23.115483+00', '', '', '', 'Mission accomplie dans de bonne condition. Le rapport et le TDR joint. Les recommandations seront suivi par les concernés. Prolongation de la mission de trois jours suite au retard sur l''approvisionnement a partir du WH de N''djamena.', '', 'completed', '2019-10-09', '2019-10-16', 'Mission d’appui Logistique a Mao pour le déchargement de 5000 cartons de RUFT et la livraison des intrants nutritionnels', '', false, false, '2019/73', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11514, 12553, '2019-10-07 15:33:39.348445+00', NULL, 13); +INSERT INTO [[schema]].t2f_travel VALUES (460, '2020-03-31 08:04:26.436647+00', NULL, NULL, '2020-03-31 15:25:51.699167+00', NULL, '2020-04-01 08:38:21.797278+00', '', '', '', 'Au Jour 7 de la campagne 93.953 enfants de 6-59 mois avaient ete vaccines contre la rougeole sur les 88.671 attendus (couverture de 106%) et 93,431 enfants de 6-59 mois avaient ete supplementes en vitamine A et deparasites au mebendazole (couverture de 105%)', '', 'approved', '2019-12-09', '2019-12-18', 'Supervision de la campagne de riposte contre la rougeole dans le district sanitaire de Moundou', 'WBS: 0810/A0/881/002/009', false, false, '2020/633', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 11859, '2020-03-31 15:25:51.699174+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (288, '2020-02-25 13:24:49.67635+00', '2020-04-07 08:41:39.428882+00', NULL, '2020-02-25 13:26:12.780916+00', NULL, '2020-02-27 17:04:28.33419+00', '', '', '', 'Voici en annexe mon rapport de mission d''appui logistique a la section Nutrition pour le dechargement, livraisons des ATPE et suivi poste distribution dans les centres de santes des regions du Kanem. BEG et Lac (Ngouri)', '', 'completed', '2020-02-26', '2020-03-07', 'Appui logistique pour le dechargment et la livraison des ATPE dans les centres de santes des regions Kanem, Lac et BEG', 'Rapport de mission, Claim et TDR', false, false, '2020/363', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11514, 12553, '2020-02-25 13:26:12.780924+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (459, '2020-03-31 07:59:32.213925+00', NULL, NULL, '2020-03-31 16:06:24.819646+00', NULL, '2020-04-01 08:39:10.904671+00', '', '', '', 'Quatre-vingt-six nouveaux ASC ont ete formes a Krim-Krim afin de doter d''ASC formes les communautes qui n''en avaient pas encore. Les ASC ont ete dote d''un kit compose d''un sac, d''un impermeable, d''une paire de bottes et des fournitures de bureau. Le suivi a Benoye a revele plusieurs faiblesses dans le suivi et dans le remplissage des registres communautaires. Des explications ont ete fournies aux ASC seance tenante sur la maniere de remplir le registre communautaire et sur la maniere d''assurer le suivi des menages-cibles. Des recommandations ont ete donnees a l''animateur communautaire, au point focal CFC-RTM du district et au medecin chef de district sanitaire de Benoye sur la maniere d''assurer l''encadrement des ASC.', '', 'approved', '2020-01-25', '2020-01-30', 'Formation des ASC vague 2 a Krim-Krim et suivi de l''approche CFC-RTM a Benoye', 'Non Grant (GC), WBS:0810/A0/881/002', false, false, '2020/632', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 11859, '2020-03-31 16:06:24.819653+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (468, '2020-04-06 11:28:56.086712+00', NULL, NULL, '2020-04-07 09:05:52.377707+00', NULL, '2020-04-07 09:38:05.629302+00', '', '', '', '', '', 'approved', '2020-04-07', '2020-04-21', 'Coordination et réponse à l’urgences mouvements des populations dans un contexte de COVID', '885/004/006 SC190181', false, false, '2020/643', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 25198, 21331, '2020-04-07 09:05:52.377716+00', NULL, 9); +INSERT INTO [[schema]].t2f_travel VALUES (473, '2020-04-06 13:49:25.929778+00', NULL, NULL, '2020-04-06 13:49:25.944754+00', NULL, '2020-04-06 13:50:42.874443+00', '', '', '', '', '', 'approved', '2020-04-11', '2020-04-30', 'Mission d''appui logistique au bureau de N''Djamena', '', false, false, '2020/656', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 12552, '2020-04-06 13:49:25.944761+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (475, '2020-04-06 17:19:36.551042+00', NULL, NULL, '2020-04-07 09:19:30.492118+00', NULL, '2020-04-07 09:22:29.95861+00', '', '', '', '', '', 'approved', '2020-04-08', '2020-04-26', 'Appui au Bureau de zone Bol dans le cadre de Renforcement des capacités de réponses nutritionnelles', 'MBAIORNOM ROHITY ISRAEL , renforcement des activites cluster nutrition', false, false, '2020/658', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 390, 10707, 173864, '2020-04-07 09:19:30.492126+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (307, '2020-03-02 08:24:17.374028+00', '2020-04-10 16:21:14.910166+00', NULL, '2020-03-02 09:17:26.725303+00', NULL, '2020-03-02 18:21:47.477156+00', '', '', '', 'Deux rapports sont insérés en "Attachments & notes". Ils concernent les visites programmatiques réalisées pour les partenaires APDI et CRT qui mettent en oeuvre l''ATPC au Moyen Chari. Les villages à défi furent visités et des discussions ont eu lieu avec les chefs de villages et chefs de canton. Pour APDI, les activités dans les écoles vont de bons trains ainsi que les cantons. Des stratégies sont proposées pour renforcer le suivi surtout dans les cantons où les activités n''avancent pas.', '', 'completed', '2020-03-09', '2020-03-16', 'Appui Technique pour la formation sur les outils WASH dans les écoles et visite des activités ATPE/ATPC', 'RAS', false, false, '2020/386', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 11399, 13750, '2020-03-02 09:17:26.725311+00', NULL, 8); +INSERT INTO [[schema]].t2f_travel VALUES (319, '2020-03-03 08:11:06.043599+00', NULL, NULL, '2020-03-03 08:18:38.425516+00', NULL, '2020-03-03 08:40:13.282608+00', '', '', '', 'La Vérification Programmatique s’est déroulée dans le cadre de la mise en œuvre de L’Accord à Petite Echelle (N°14/SSFA/2019/COMMUNICATION/AST), signé entre l’UNICEF T[[schema]] et l’Association des Scouts du T[[schema]], le 06/12/2019, pour la mise en œuvre de l’activité de « promotion de l’engagement communautaire des Scouts à N’Djaména, Doba et Moundou ». Le montant du transfert est de 14 369 000 FCFA,.', '', 'approved', '2020-03-12', '2020-03-19', 'Vérification Programmatique Association des Scouts du T[[schema]] à Moundou et Doba', 'Ligne budgétaire : 0810/A0/05/887/001/001 Non Grant', false, false, '2020/407', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 12058, '2020-03-03 08:18:38.425524+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (471, '2020-04-06 11:45:09.134728+00', NULL, NULL, '2020-04-06 15:07:33.519745+00', NULL, '2020-04-06 15:15:50.969698+00', '', '', '', '', '', 'approved', '2020-04-07', '2020-04-21', 'Coordination et réponse à l’urgences mouvements des populations dans un contexte de COVID', '884/004/006 SM190227', false, false, '2020/652', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 25198, 12680, '2020-04-06 15:07:33.519754+00', NULL, 6); +INSERT INTO [[schema]].t2f_travel VALUES (442, '2020-03-24 10:19:35.236829+00', '2020-04-17 14:24:16.260586+00', NULL, '2020-03-24 10:26:40.475641+00', NULL, '2020-03-24 10:43:19.645142+00', '', '', '', 'La mission c''est deroulee du 26/03 au 27/03/2020 au lieu de la date prevue 25/30/au 26/03/2020. compte tenu de retard d''approbation de TA, priere trouver le rapport de mission avec le claim +cordialement.', '', 'completed', '2020-03-25', '2020-03-26', 'Rejoindre mon nouveau poste a Ndjamena', 'WBS Elément + GRANT: Charger WBS 881/002/008 SC 190427', false, false, '2020/615', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 12378, 10791, '2020-03-24 09:41:18.93491+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (431, '2020-03-18 12:58:49.478649+00', '2020-04-07 12:19:51.694394+00', NULL, '2020-03-18 13:00:05.524309+00', NULL, '2020-03-18 14:26:57.96123+00', '', '', '', 'La mission a ete bien derouller comme prevus.', '', 'completed', '2020-03-23', '2020-04-04', 'MISSION DE VP DANS LES DSP DU KANEM-BEG-HL', 'SC181084 WBS : 0810/A0/05/881/002/018', false, false, '2020/580', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 21331, 9330, '2020-03-18 13:00:05.524315+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (289, '2020-02-25 13:28:44.362861+00', '2020-04-07 12:23:05.079548+00', NULL, '2020-02-25 14:07:18.584938+00', NULL, '2020-02-27 17:17:01.474294+00', '', '', '', 'La Mission se bien passer.', '', 'completed', '2020-02-26', '2020-03-07', 'Appui logistique pour le dechargment et la livraison des ATPE dans les centres de santes des regions Kanem, Lac et BEG', '', false, false, '2020/364', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 389, 11514, 9330, '2020-02-25 13:26:12.780924+00', NULL, 15); +INSERT INTO [[schema]].t2f_travel VALUES (320, '2020-03-03 14:06:44.539002+00', '2020-04-08 15:28:24.636609+00', NULL, '2020-03-03 14:06:58.439304+00', NULL, '2020-03-03 16:19:11.73291+00', '', '', '', 'La province du Mandoul bénéficie du soutien de programme nutrition dans le district sanitaire de Moissala depuis quelques années. +Cependant, l’Unicef souhaite étendre son appui en matière de mise en œuvre du programme de prise en charge de la malnutrition aigüe sévère dans d’autres districts notamment : districts sanitaires de Bouna et Bekourou. +L’objectif premier de notre mission est de faire en amont une évaluation de capacité des centres de santé identifiés pour l’ouverture des nouvelles unités nutritionnelles ambulatoires (UNA) dans les DS Bouna et Bekourou. En effet, 10 centres de santé identifiés notamment : Berigui, Paris doumgaou, Bendi, Doubadané III, Takaoua, Bengoro, Bouna urbain, et Bara II dans le district sanitaire de Bouna et les centres de santé de Gonhongon et Sateingnant I dans le DS de Bekourou ont été évalués. Cette évaluation nous a permis d’apprécier, la fonctionnalité et l’accessibilité des structures de santé identifiées, puis d’analyser les possibilités d’intégration des activités nutritionnelles. +Avant la descente sur le terrain, la mission a rencontré l’équipe cadre de la délégation sanitaire du Mandoul (ECDSPM) puis celles des 2 DS (Bouna et Bekourou ) pour s’assurer de leur leadership dans la mise en œuvre du programme de prise en charge des enfants souffrant de la malnutrition aigüe sévère (MAS ) au niveau provincial et local. par ailleurs, A la date de la visite toutes les UNA/UNT disposent d’ATPE dans leurs magasins. Au total, 233 cartons disponibles dans les unités visitées notamment, Moissala Nord 124 cartons, Koldaga 25 cartons, Dilingala 24 cartons, Bekourou 20 cartons, Beboro 25 cartons et UNT 14 cartons. Seule Moissala Nord avait son ancien stock. Les autres qui étaient en situation de rupture et pré-rupture, ont reçu les intrants pendant la période de la visite. Les intrants de toutes les unités visitées sont déposés au sol, seule l’UNA de Beboro dispose des palettes d’entreposage. La consommation non enregistrée dans le registre de stock.', '', 'completed', '2020-03-16', '2020-03-20', 'Evaluation des CS et suivi poste distribution DSP Mandoul', 'GRANT SM190227 +WBS 0810/AO/05/882/003/003', false, false, '2020/408', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 391, 9984, 22479, '2020-03-03 14:06:58.439311+00', NULL, 7); +INSERT INTO [[schema]].t2f_travel VALUES (461, '2020-04-01 13:23:42.41208+00', NULL, NULL, '2020-04-01 13:24:00.92097+00', NULL, '2020-04-01 14:01:06.770437+00', '', '', '', 'La Vérification Programmatique s’est déroulée dans le cadre de la mise en œuvre de la requête du Programme CLAC, qui comprend trois activités principales : +- Engagement des adolescents, des Stars Amis des Enfants pour la promotion de la citoyenneté et les droits des enfants (CRC30) ; +- Promotion des droits de l’enfant au T[[schema]] par l’expression artistique et culturelle des adolescents et des jeunes (festival hip-hop et réalisation des graffitis) ; +- Caravane musicale des Banat Super Stars et engagement des Super Banat pour la prévention du VIH chez les adolescentes et jeunes filles de 10-24 ans dans 4 communes de N’Djamena. + +La Vérification Programmatique concerne spécifiquement l’activité de la Caravane musicale des Banat Super Stars et engagement des Super Banat pour la prévention du VIH chez les adolescentes et jeunes filles de 10-24 ans dans 4 communes de N’Djamena, au montant de 23 475 000 FCFA. Cette activité a été mise en œuvre sous la coordination du Réseau des Maisons de Quartiers (RMQJ) et la supervision de la Coordination du Centre de Lecture et d’Animation Culturelle (CLAC). Elle comprend deux volets : i) la caravane musicale menée par 09 Banat Super Stars (artistes) et les dialogues communautaires menés par 100 adolescentes et filles, Super Banat (pairs-éducateurs).', '', 'approved', '2020-02-08', '2020-02-18', 'Vérification Programmatique Programme CLAC', '', false, false, '2020/634', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 28663, 12058, '2020-04-01 13:24:00.920978+00', NULL, 2); +INSERT INTO [[schema]].t2f_travel VALUES (483, '2020-04-13 18:06:36.102713+00', '2020-04-20 18:47:22.476183+00', NULL, '2020-04-14 17:59:37.437113+00', NULL, '2020-04-15 09:34:25.77928+00', '', '', '', 'En Décembre 2019, deux cas de polio dérivés de la souche vaccinale ont été confirmés dans le District de Mongo, et plus précisément dans le secteur 4 de la zone de responsabilité de Barbeza. ll s’agit d’un jeune garçon de 6 ans et d’une fillette de 3 ans tous de nationalité t[[schema]]ienne. Pour le cas de 6 ans, la paralysie est survenue le 13 octobre 2019 au secteur 4 de la ville de Mongo (province du Guéra) et les résultats se sont révélés positifs au Poliovirus dérivé de souche vaccinale de type 2. Selon les résultats du séquençage, ce virus est génétiquement lié au cas ENV-NIE-BOS-MAG-BWB-19-002. Pour le cas de 3 ans, le virus est lié à celui du cas de 6 ans. Les deux cas sont dans le même secteur 4 et ne sont séparés que par 2 km à peine. +Il faut noter que le district de Mongo fait frontière avec le District sanitaire de Mongo et sont dans un même DPS. C’est ainsi que le district de Bitkine a organisé une campagne de riposte contre ces deux cas de cVDPV2 pour le round1 au même titre que les 16 autres districts retenus pour ce round. Cette campagne s’est tenue du 02 au 4 février 2020. L’Unicef a déployé sur le terrain deux consultants. Soit 15 agents au total. Cette mission rentre dans ce cadre de l’appui à la riposte. + +- Les activités de sensibilisation au niveau des crieurs et des relais communautaires et de mobilisation sociale au niveau des zones de responsabilités se sont bien déroulées. +- La stratégie porte à porte a été mise en place et respectée. + +- Au total 13 cas de refus rapportés, mais 12 ont étaient résolus. +- Le 2e tour ou le Round 1 de la riposte contre le CVDPV2 a été bien mené dans le district sanitaire de Bitkine grâce aux appuis techniques et logistiques des partenaires (UNICEF, OMS, MSP : DSP GUERA, SDV). +- 20 Zones de responsabilité sont opérationnelles. + +- Population cible 0-59 mois : 65 840 +- Flacons mVOP2 reçu : 3 702 +- Flacons utilisés : 3 702 +- Flacons perdus : 0 +- Enfants vaccinés : 61 444 +- Couverture vaccinale : 93,32 % +- Taux de perte : 7 % +- PFA : 0 cas +- Moniteurs de flacons : 20 +- Nombre équipe de vaccinateurs : 302 +- Nombre de vaccinateurs : 604 +- Superviseurs de district : 4 +- Superviseurs de proximité : 105 +- Superviseurs centraux : 1 +- Superviseur Délégation : 1 +- Superviseur partenaires : 5 +Coordonnateurs (RCS) : 20', '', 'completed', '2020-02-19', '2020-02-29', 'Ripostes aux cVDPV2 dans le District Sanitaire de Bitkine', '', false, false, '2020/669', false, NULL, 0.0000, false, NULL, 0.0000, 0.0000, 145, 387, 14482, 23640, '2020-04-14 17:59:37.43712+00', NULL, 7); -- @@ -16899,7 +21937,6 @@ INSERT INTO [[schema]].t2f_travelactivity VALUES (60, 'Meeting', '2019-10-08', N INSERT INTO [[schema]].t2f_travelactivity VALUES (62, 'Staff Development', '2019-10-14', NULL, NULL, 10706, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (61, 'Programmatic Visit', '2019-10-11', 182, NULL, 8140, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (64, 'Programmatic Visit', '2019-10-12', 182, NULL, 8140, NULL); -INSERT INTO [[schema]].t2f_travelactivity VALUES (71, 'Technical Support', '2019-10-18', 95, NULL, 14239, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (63, 'Meeting', '2019-10-15', NULL, NULL, 9329, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (69, 'Staff Development', '2019-10-15', NULL, NULL, 11514, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (73, 'Technical Support', '2019-10-22', NULL, NULL, 4606, NULL); @@ -16928,7 +21965,7 @@ INSERT INTO [[schema]].t2f_travelactivity VALUES (95, 'Programmatic Visit', '201 INSERT INTO [[schema]].t2f_travelactivity VALUES (96, 'Meeting', '2019-11-04', NULL, NULL, 8519, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (97, 'Meeting', '2019-10-23', NULL, NULL, 24425, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (98, 'Technical Support', '2019-11-05', NULL, NULL, 4606, NULL); -INSERT INTO [[schema]].t2f_travelactivity VALUES (99, 'Technical Support', '2019-11-12', NULL, NULL, 4606, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (415, 'Programmatic Visit', '2020-04-20', 444, NULL, 13512, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (100, 'Technical Support', '2019-11-19', NULL, NULL, 4606, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (26, 'Programmatic Visit', '2019-11-05', 246, NULL, 14006, 50); INSERT INTO [[schema]].t2f_travelactivity VALUES (28, 'Programmatic Visit', '2019-11-19', 180, NULL, 14006, 50); @@ -16954,21 +21991,25 @@ INSERT INTO [[schema]].t2f_travelactivity VALUES (134, 'Programmatic Visit', '20 INSERT INTO [[schema]].t2f_travelactivity VALUES (118, 'Programmatic Visit', '2019-11-05', 158, NULL, 25042, 55); INSERT INTO [[schema]].t2f_travelactivity VALUES (122, 'Technical Support', '2019-11-11', 49, NULL, 25166, 54); INSERT INTO [[schema]].t2f_travelactivity VALUES (79, 'Technical Support', '2019-10-17', NULL, NULL, 14700, NULL); -INSERT INTO [[schema]].t2f_travelactivity VALUES (123, 'Meeting', '2019-11-15', 176, NULL, 9329, 58); +INSERT INTO [[schema]].t2f_travelactivity VALUES (356, 'Staff Development', '2020-04-19', NULL, NULL, 14616, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (109, 'Programmatic Visit', '2019-11-09', 49, NULL, 25166, 56); -INSERT INTO [[schema]].t2f_travelactivity VALUES (124, 'Meeting', '2019-11-15', 176, NULL, 9329, 58); +INSERT INTO [[schema]].t2f_travelactivity VALUES (244, 'Meeting', '2020-02-25', NULL, NULL, 13031, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (125, 'Technical Support', '2019-10-28', 48, NULL, 11859, 35); INSERT INTO [[schema]].t2f_travelactivity VALUES (126, 'Technical Support', '2019-10-28', 48, NULL, 11859, 35); -INSERT INTO [[schema]].t2f_travelactivity VALUES (130, 'Programmatic Visit', '2019-11-19', 41, NULL, 11859, 32); INSERT INTO [[schema]].t2f_travelactivity VALUES (127, 'Meeting', '2019-11-17', 51, NULL, 12059, 11); INSERT INTO [[schema]].t2f_travelactivity VALUES (140, 'Advocacy', '2019-11-25', 130, NULL, 210807, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (141, 'Advocacy', '2019-11-26', NULL, NULL, 210807, NULL); -INSERT INTO [[schema]].t2f_travelactivity VALUES (131, 'Technical Support', '2019-11-19', 41, NULL, 11859, 32); -INSERT INTO [[schema]].t2f_travelactivity VALUES (135, 'Technical Support', '2019-11-15', NULL, NULL, 21331, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (195, 'Technical Support', '2020-01-02', NULL, NULL, 14362, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (174, 'Technical Support', '2019-12-08', NULL, NULL, 14362, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (132, 'Programmatic Visit', '2019-11-19', 41, NULL, 11859, 32); INSERT INTO [[schema]].t2f_travelactivity VALUES (133, 'Technical Support', '2019-11-19', 41, NULL, 11859, 32); -INSERT INTO [[schema]].t2f_travelactivity VALUES (119, 'Technical Support', '2019-11-13', 187, NULL, 23640, 32); -INSERT INTO [[schema]].t2f_travelactivity VALUES (120, 'Technical Support', '2019-11-15', 41, NULL, 23640, 32); +INSERT INTO [[schema]].t2f_travelactivity VALUES (303, 'Technical Support', '2020-03-07', NULL, NULL, 11399, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (347, 'Meeting', '2020-03-25', NULL, NULL, 13031, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (196, 'Technical Support', '2020-01-02', 302, NULL, 14700, 22); +INSERT INTO [[schema]].t2f_travelactivity VALUES (123, 'Meeting', '2020-02-24', 124, NULL, 12023, 44); +INSERT INTO [[schema]].t2f_travelactivity VALUES (315, 'Programmatic Visit', '2020-03-05', 187, NULL, 11859, 32); +INSERT INTO [[schema]].t2f_travelactivity VALUES (150, 'Programmatic Visit', '2019-11-17', 450, NULL, 13512, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (148, 'Staff Development', '2019-11-20', NULL, NULL, 13372, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (128, 'Programmatic Visit', '2019-11-25', 237, NULL, 14006, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (129, 'Programmatic Visit', '2019-11-27', 298, NULL, 14006, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (142, 'Technical Support', '2019-11-23', 44, NULL, 25166, 53); @@ -16977,10 +22018,303 @@ INSERT INTO [[schema]].t2f_travelactivity VALUES (136, 'Meeting', '2019-11-17', INSERT INTO [[schema]].t2f_travelactivity VALUES (137, 'Meeting', '2019-11-17', NULL, NULL, 14616, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (138, 'Technical Support', '2019-11-22', 298, NULL, 14006, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (139, 'Technical Support', '2019-11-25', 237, NULL, 14006, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (169, 'Meeting', '2019-12-03', NULL, NULL, 9329, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (151, 'Technical Support', '2019-11-26', 74, NULL, 5074, 16); +INSERT INTO [[schema]].t2f_travelactivity VALUES (154, 'Meeting', '2019-11-25', 420, NULL, 13372, 49); +INSERT INTO [[schema]].t2f_travelactivity VALUES (155, 'Meeting', '2019-11-24', 420, NULL, 13372, 49); INSERT INTO [[schema]].t2f_travelactivity VALUES (144, 'Meeting', '2019-11-15', 414, NULL, 25005, 12); INSERT INTO [[schema]].t2f_travelactivity VALUES (145, 'Meeting', '2019-11-15', 418, NULL, 25005, 12); INSERT INTO [[schema]].t2f_travelactivity VALUES (146, 'Programmatic Visit', '2019-11-18', 80, NULL, 13371, NULL); INSERT INTO [[schema]].t2f_travelactivity VALUES (147, 'Technical Support', '2019-11-18', 430, NULL, 9329, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (156, 'Technical Support', '2019-11-20', 415, NULL, 12528, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (157, 'Technical Support', '2019-11-25', 415, NULL, 12528, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (158, 'Staff Entitlement', '2019-12-21', NULL, NULL, 177097, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (163, 'Meeting', '2019-12-02', NULL, NULL, 9984, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (164, 'Programmatic Visit', '2019-12-03', 158, NULL, 24390, 53); +INSERT INTO [[schema]].t2f_travelactivity VALUES (71, 'Programmatic Visit', '2019-10-18', 95, NULL, 14239, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (165, 'Programmatic Visit', '2019-12-03', 446, NULL, 13371, 37); +INSERT INTO [[schema]].t2f_travelactivity VALUES (161, 'Programmatic Visit', '2019-12-02', 266, NULL, 11859, 32); +INSERT INTO [[schema]].t2f_travelactivity VALUES (162, 'Programmatic Visit', '2019-12-02', 266, NULL, 11859, 32); +INSERT INTO [[schema]].t2f_travelactivity VALUES (166, 'Programmatic Visit', '2019-12-03', 64, NULL, 25005, 55); +INSERT INTO [[schema]].t2f_travelactivity VALUES (182, 'Programmatic Visit', '2019-12-09', 48, NULL, 13031, 28); +INSERT INTO [[schema]].t2f_travelactivity VALUES (168, 'Meeting', '2019-12-02', NULL, NULL, 13031, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (153, 'Programmatic Visit', '2019-12-17', 104, NULL, 5064, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (152, 'Technical Support', '2019-11-23', NULL, NULL, 13031, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (159, 'Programmatic Visit', '2019-12-09', 270, NULL, 5069, 46); +INSERT INTO [[schema]].t2f_travelactivity VALUES (167, 'Staff Development', '2019-12-02', NULL, NULL, 13512, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (160, 'Programmatic Visit', '2019-12-16', 270, NULL, 5069, 46); +INSERT INTO [[schema]].t2f_travelactivity VALUES (173, 'Staff Development', '2019-12-24', NULL, NULL, 7798, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (171, 'Technical Support', '2019-12-05', NULL, NULL, 23059, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (172, 'Staff Development', '2019-12-16', NULL, NULL, 7798, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (175, 'Technical Support', '2019-12-08', NULL, NULL, 12058, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (176, 'Technical Support', '2019-12-08', NULL, NULL, 7584, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (177, 'Technical Support', '2019-12-08', NULL, NULL, 28663, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (197, 'Programmatic Visit', '2019-12-31', 220, NULL, 12058, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (215, 'Technical Support', '2020-01-13', NULL, NULL, 21654, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (180, 'Staff Entitlement', '2019-12-23', NULL, NULL, 7584, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (181, 'Technical Support', '2019-12-12', NULL, NULL, 20819, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (192, 'Advocacy', '2019-12-17', NULL, NULL, 14363, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (193, 'Programmatic Visit', '2020-01-07', 187, NULL, 12132, 14); +INSERT INTO [[schema]].t2f_travelactivity VALUES (194, 'Programmatic Visit', '2019-12-19', 439, NULL, 9333, 28); +INSERT INTO [[schema]].t2f_travelactivity VALUES (190, 'Programmatic Visit', '2019-12-17', 74, NULL, 8721, 13); +INSERT INTO [[schema]].t2f_travelactivity VALUES (183, 'Programmatic Visit', '2019-12-17', 176, NULL, 23059, 42); +INSERT INTO [[schema]].t2f_travelactivity VALUES (185, 'Advocacy', '2019-12-11', NULL, NULL, 210807, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (188, 'Advocacy', '2019-12-12', NULL, NULL, 9984, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (189, 'Technical Support', '2019-12-16', 335, NULL, 5074, 14); +INSERT INTO [[schema]].t2f_travelactivity VALUES (184, 'Technical Support', '2019-12-16', 335, NULL, 5074, 14); +INSERT INTO [[schema]].t2f_travelactivity VALUES (191, 'Programmatic Visit', '2019-12-16', 74, NULL, 8721, 13); +INSERT INTO [[schema]].t2f_travelactivity VALUES (130, 'Programmatic Visit', '2019-11-19', 41, NULL, 11859, 32); +INSERT INTO [[schema]].t2f_travelactivity VALUES (131, 'Technical Support', '2019-11-19', 41, NULL, 11859, 32); +INSERT INTO [[schema]].t2f_travelactivity VALUES (262, 'Technical Support', '2020-03-03', NULL, NULL, 4606, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (416, 'Programmatic Visit', '2020-04-22', 445, NULL, 13512, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (186, 'Programmatic Visit', '2019-12-16', 444, NULL, 13512, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (178, 'Programmatic Visit', '2019-10-22', 339, NULL, 12058, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (179, 'Programmatic Visit', '2019-10-22', 55, NULL, 5056, 23); +INSERT INTO [[schema]].t2f_travelactivity VALUES (200, 'Meeting', '2020-01-23', NULL, NULL, 9984, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (201, 'Technical Support', '2020-01-30', NULL, NULL, 11607, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (202, 'Programmatic Visit', '2020-01-19', 450, NULL, 13512, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (203, 'Programmatic Visit', '2020-01-19', 450, NULL, 13512, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (204, 'Staff Development', '2020-02-24', NULL, NULL, 12059, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (205, 'Meeting', '2020-02-10', NULL, NULL, 12059, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (210, 'Advocacy', '2020-02-11', NULL, NULL, 9984, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (209, 'Programmatic Visit', '2020-02-05', 415, NULL, 12528, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (206, 'Meeting', '2020-02-19', NULL, NULL, 12059, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (207, 'Meeting', '2020-02-20', NULL, NULL, 12059, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (208, 'Meeting', '2020-02-21', NULL, NULL, 12059, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (211, 'Technical Support', '2020-02-09', 174, NULL, 60199, 55); +INSERT INTO [[schema]].t2f_travelactivity VALUES (212, 'Meeting', '2020-02-10', 174, NULL, 60199, 58); +INSERT INTO [[schema]].t2f_travelactivity VALUES (224, 'Programmatic Visit', '2020-02-13', 449, NULL, 24195, 48); +INSERT INTO [[schema]].t2f_travelactivity VALUES (214, 'Programmatic Visit', '2020-02-23', 158, NULL, 25166, 53); +INSERT INTO [[schema]].t2f_travelactivity VALUES (383, 'Technical Support', '2020-03-23', 125, NULL, 8726, 33); +INSERT INTO [[schema]].t2f_travelactivity VALUES (242, 'Programmatic Visit', '2020-02-25', 124, NULL, 12023, 42); +INSERT INTO [[schema]].t2f_travelactivity VALUES (225, 'Technical Support', '2020-02-16', 453, NULL, 24195, 48); +INSERT INTO [[schema]].t2f_travelactivity VALUES (226, 'Technical Support', '2020-02-17', 302, NULL, 5074, 14); +INSERT INTO [[schema]].t2f_travelactivity VALUES (222, 'Programmatic Visit', '2020-02-18', 125, NULL, 5052, 33); +INSERT INTO [[schema]].t2f_travelactivity VALUES (227, 'Technical Support', '2020-02-17', 302, NULL, 5074, 14); +INSERT INTO [[schema]].t2f_travelactivity VALUES (217, 'Programmatic Visit', '2020-02-11', 237, NULL, 21654, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (218, 'Programmatic Visit', '2020-02-12', 237, NULL, 21654, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (219, 'Programmatic Visit', '2020-02-13', 237, NULL, 21654, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (213, 'Technical Support', '2020-02-12', NULL, NULL, 25166, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (220, 'Technical Support', '2020-02-23', 158, NULL, 8714, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (221, 'Staff Development', '2020-02-11', NULL, NULL, 8725, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (233, 'Programmatic Visit', '2020-01-09', 268, NULL, 12378, 55); +INSERT INTO [[schema]].t2f_travelactivity VALUES (223, 'Staff Entitlement', '2020-03-16', NULL, NULL, 177097, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (229, 'Technical Support', '2020-02-14', NULL, NULL, 24425, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (232, 'Programmatic Visit', '2020-01-09', 449, NULL, 12378, 55); +INSERT INTO [[schema]].t2f_travelactivity VALUES (231, 'Programmatic Visit', '2020-01-19', 46, NULL, 12378, 31); +INSERT INTO [[schema]].t2f_travelactivity VALUES (235, 'Meeting', '2020-02-18', NULL, NULL, 11607, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (230, 'Programmatic Visit', '2020-02-15', 43, NULL, 12378, 32); +INSERT INTO [[schema]].t2f_travelactivity VALUES (234, 'Programmatic Visit', '2020-02-26', 125, NULL, 14363, 33); +INSERT INTO [[schema]].t2f_travelactivity VALUES (236, 'Advocacy', '2020-02-18', NULL, NULL, 9984, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (240, 'Programmatic Visit', '2020-02-17', 46, NULL, 60199, 55); +INSERT INTO [[schema]].t2f_travelactivity VALUES (237, 'Advocacy', '2020-01-27', 156, NULL, 210807, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (238, 'Programmatic Visit', '2020-02-18', 266, NULL, 12200, 32); +INSERT INTO [[schema]].t2f_travelactivity VALUES (239, 'Programmatic Visit', '2020-02-18', 206, NULL, 12767, 32); +INSERT INTO [[schema]].t2f_travelactivity VALUES (241, 'Technical Support', '2020-02-17', 46, NULL, 60199, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (432, 'Technical Support', '2020-04-08', NULL, NULL, 12465, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (124, 'Meeting', '2020-03-06', 124, NULL, 12023, 44); +INSERT INTO [[schema]].t2f_travelactivity VALUES (245, 'Technical Support', '2020-02-11', 177, NULL, 13031, 42); +INSERT INTO [[schema]].t2f_travelactivity VALUES (246, 'Meeting', '2020-02-18', NULL, NULL, 13031, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (247, 'Technical Support', '2020-01-13', NULL, NULL, 13031, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (248, 'Meeting', '2020-01-27', NULL, NULL, 13031, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (249, 'Staff Development', '2020-02-23', NULL, NULL, 13512, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (334, 'Advocacy', '2020-03-12', NULL, NULL, 210807, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (336, 'Technical Support', '2020-03-10', NULL, NULL, 13418, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (253, 'Programmatic Visit', '2020-03-17', 7, NULL, 9148, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (254, 'Programmatic Visit', '2020-03-19', 182, NULL, 9148, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (252, 'Technical Support', '2020-02-25', 74, NULL, 8721, 13); +INSERT INTO [[schema]].t2f_travelactivity VALUES (149, 'Advocacy', '2019-11-17', NULL, NULL, 9984, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (265, 'Meeting', '2020-02-27', NULL, NULL, 9984, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (255, 'Programmatic Visit', '2020-03-09', 445, NULL, 13512, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (260, 'Programmatic Visit', '2020-03-14', 105, NULL, 13512, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (264, 'Meeting', '2020-02-25', NULL, NULL, 13372, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (286, 'Programmatic Visit', '2020-03-05', 414, NULL, 25005, 11); +INSERT INTO [[schema]].t2f_travelactivity VALUES (216, 'Programmatic Visit', '2020-01-16', 433, NULL, 21654, 34); +INSERT INTO [[schema]].t2f_travelactivity VALUES (379, 'Technical Support', '2020-03-30', 45, NULL, 14006, 17); +INSERT INTO [[schema]].t2f_travelactivity VALUES (259, 'Technical Support', '2020-03-10', 105, NULL, 13512, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (261, 'Technical Support', '2020-03-14', 445, NULL, 13512, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (263, 'Meeting', '2020-02-25', 124, NULL, 22479, 22); +INSERT INTO [[schema]].t2f_travelactivity VALUES (266, 'Technical Support', '2020-02-27', 450, 13, 246704, 41); +INSERT INTO [[schema]].t2f_travelactivity VALUES (267, 'Meeting', '2020-02-26', NULL, NULL, 11514, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (302, 'Technical Support', '2020-02-28', 174, NULL, 22317, 54); +INSERT INTO [[schema]].t2f_travelactivity VALUES (281, 'Technical Support', '2020-03-22', 49, NULL, 25042, 53); +INSERT INTO [[schema]].t2f_travelactivity VALUES (269, 'Advocacy', '2020-02-29', NULL, NULL, 9984, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (270, 'Staff Development', '2020-03-02', NULL, NULL, 10128, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (272, 'Staff Entitlement', '2020-03-02', NULL, NULL, 7584, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (287, 'Programmatic Visit', '2020-03-02', 139, NULL, 13372, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (282, 'Technical Support', '2020-02-26', 238, NULL, 12553, 56); +INSERT INTO [[schema]].t2f_travelactivity VALUES (283, 'Technical Support', '2020-02-01', NULL, NULL, 173864, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (288, 'Technical Support', '2020-02-10', 452, NULL, 13372, 15); +INSERT INTO [[schema]].t2f_travelactivity VALUES (271, 'Meeting', '2020-03-04', NULL, NULL, 193970, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (274, 'Programmatic Visit', '2020-03-15', 446, NULL, 228874, 53); +INSERT INTO [[schema]].t2f_travelactivity VALUES (341, 'Programmatic Visit', '2020-03-29', NULL, NULL, 11344, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (320, 'Meeting', '2020-03-16', 182, NULL, 5068, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (317, 'Advocacy', '2020-03-04', NULL, NULL, 10933, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (278, 'Staff Entitlement', '2020-02-29', NULL, NULL, 11607, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (289, 'Technical Support', '2020-02-10', 452, NULL, 13372, 15); +INSERT INTO [[schema]].t2f_travelactivity VALUES (290, 'Technical Support', '2020-02-10', 452, NULL, 13372, 15); +INSERT INTO [[schema]].t2f_travelactivity VALUES (291, 'Programmatic Visit', '2020-03-25', 396, NULL, 13372, 48); +INSERT INTO [[schema]].t2f_travelactivity VALUES (292, 'Technical Support', '2020-03-02', 335, NULL, 14700, 22); +INSERT INTO [[schema]].t2f_travelactivity VALUES (293, 'Programmatic Visit', '2020-03-11', 313, NULL, 23059, 47); +INSERT INTO [[schema]].t2f_travelactivity VALUES (284, 'Technical Support', '2020-03-04', NULL, NULL, 14044, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (285, 'Technical Support', '2020-03-09', 372, 8, 14044, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (318, 'Staff Entitlement', '2020-03-08', NULL, NULL, 8426, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (328, 'Technical Support', '2020-03-26', NULL, NULL, 12528, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (296, 'Programmatic Visit', '2020-03-10', 335, NULL, 25005, 20); +INSERT INTO [[schema]].t2f_travelactivity VALUES (297, 'Programmatic Visit', '2020-03-23', 335, NULL, 25005, 33); +INSERT INTO [[schema]].t2f_travelactivity VALUES (294, 'Technical Support', '2020-03-05', NULL, NULL, 5052, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (295, 'Technical Support', '2020-03-10', NULL, NULL, 5052, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (325, 'Meeting', '2020-03-18', NULL, NULL, 20932, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (298, 'Technical Support', '2020-02-17', 415, NULL, 24493, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (268, 'Meeting', '2020-03-24', NULL, NULL, 5052, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (300, 'Advocacy', '2020-03-04', NULL, NULL, 210807, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (301, 'Programmatic Visit', '2020-03-04', 449, NULL, 5076, 17); +INSERT INTO [[schema]].t2f_travelactivity VALUES (304, 'Technical Support', '2020-03-11', 162, NULL, 13750, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (305, 'Technical Support', '2020-03-12', 105, NULL, 13750, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (306, 'Programmatic Visit', '2020-03-13', 444, NULL, 13750, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (307, 'Programmatic Visit', '2020-03-14', 162, NULL, 13750, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (313, 'Programmatic Visit', '2020-03-13', 220, 9, 12058, 36); +INSERT INTO [[schema]].t2f_travelactivity VALUES (342, 'Programmatic Visit', '2020-04-12', NULL, NULL, 11344, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (273, 'Programmatic Visit', '2020-03-15', 446, NULL, 25166, 53); +INSERT INTO [[schema]].t2f_travelactivity VALUES (331, 'Programmatic Visit', '2020-03-29', NULL, NULL, 11344, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (335, 'Technical Support', '2020-03-13', 452, NULL, 12130, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (319, 'Technical Support', '2020-03-05', 180, NULL, 24195, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (330, 'Programmatic Visit', '2020-04-12', NULL, NULL, 11344, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (329, 'Programmatic Visit', '2020-04-26', NULL, NULL, 11344, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (250, 'Technical Support', '2020-03-23', 425, NULL, 9109, 52); +INSERT INTO [[schema]].t2f_travelactivity VALUES (251, 'Meeting', '2020-03-23', 180, NULL, 9109, 52); +INSERT INTO [[schema]].t2f_travelactivity VALUES (327, 'Technical Support', '2020-03-12', NULL, NULL, 21076, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (337, 'Staff Development', '2020-03-12', NULL, NULL, 8719, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (279, 'Technical Support', '2020-03-23', 315, NULL, 22244, 50); +INSERT INTO [[schema]].t2f_travelactivity VALUES (321, 'Meeting', '2020-03-11', 180, NULL, 20932, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (447, 'Programmatic Visit', '2020-04-20', 42, NULL, 173681, 55); +INSERT INTO [[schema]].t2f_travelactivity VALUES (333, 'Technical Support', '2020-03-10', NULL, NULL, 12553, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (322, 'Programmatic Visit', '2020-03-09', 49, NULL, 14482, 32); +INSERT INTO [[schema]].t2f_travelactivity VALUES (338, 'Technical Support', '2020-03-22', 125, NULL, 14044, 12); +INSERT INTO [[schema]].t2f_travelactivity VALUES (198, 'Programmatic Visit', '2020-01-08', 403, NULL, 5056, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (199, 'Programmatic Visit', '2020-01-08', 403, NULL, 12058, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (339, 'Technical Support', '2020-03-22', 125, NULL, 14044, 12); +INSERT INTO [[schema]].t2f_travelactivity VALUES (417, 'Programmatic Visit', '2020-04-27', NULL, NULL, 13512, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (310, 'Programmatic Visit', '2019-12-31', 448, NULL, 5056, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (340, 'Staff Development', '2020-03-11', NULL, NULL, 12378, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (364, 'Meeting', '2020-03-16', NULL, NULL, 13512, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (344, 'Staff Entitlement', '2020-04-09', NULL, NULL, 8788, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (311, 'Programmatic Visit', '2019-11-27', 401, NULL, 10616, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (308, 'Technical Support', '2020-03-10', NULL, NULL, 25308, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (323, 'Staff Entitlement', '2020-03-06', NULL, NULL, 9109, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (355, 'Meeting', '2020-03-25', NULL, NULL, 13031, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (309, 'Meeting', '2020-03-05', NULL, NULL, 9329, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (353, 'Technical Support', '2020-03-16', 49, NULL, 174796, 53); +INSERT INTO [[schema]].t2f_travelactivity VALUES (312, 'Advocacy', '2020-03-05', 46, NULL, 11647, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (345, 'Staff Entitlement', '2020-03-12', NULL, NULL, 10680, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (324, 'Technical Support', '2020-03-06', 454, NULL, 24195, 50); +INSERT INTO [[schema]].t2f_travelactivity VALUES (377, 'Meeting', '2020-03-17', 124, NULL, 215857, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (370, 'Programmatic Visit', '2020-03-18', 174, NULL, 5056, 36); +INSERT INTO [[schema]].t2f_travelactivity VALUES (436, 'Technical Support', '2020-05-09', NULL, NULL, 12552, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (354, 'Advocacy', '2020-03-17', 423, NULL, 5074, 14); +INSERT INTO [[schema]].t2f_travelactivity VALUES (348, 'Programmatic Visit', '2020-03-17', 180, NULL, 24390, 48); +INSERT INTO [[schema]].t2f_travelactivity VALUES (349, 'Technical Support', '2020-03-16', NULL, NULL, 236414, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (357, 'Staff Entitlement', '2020-03-21', NULL, NULL, 12352, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (358, 'Staff Entitlement', '2020-03-22', NULL, NULL, 25475, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (352, 'Advocacy', '2020-03-11', NULL, NULL, 210807, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (360, 'Staff Development', '2020-04-19', NULL, NULL, 14616, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (299, 'Technical Support', '2020-03-20', NULL, NULL, 11399, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (378, 'Technical Support', '2020-03-19', NULL, NULL, 8718, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (314, 'Technical Support', '2020-03-17', 41, NULL, 22479, 57); +INSERT INTO [[schema]].t2f_travelactivity VALUES (374, 'Programmatic Visit', '2020-03-31', 45, NULL, 9329, 32); +INSERT INTO [[schema]].t2f_travelactivity VALUES (367, 'Staff Development', '2020-04-13', NULL, NULL, 12059, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (362, 'Technical Support', '2020-03-12', NULL, NULL, 25005, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (351, 'Technical Support', '2020-03-20', 180, NULL, 14047, 34); +INSERT INTO [[schema]].t2f_travelactivity VALUES (350, 'Programmatic Visit', '2020-03-11', 49, NULL, 14047, 40); +INSERT INTO [[schema]].t2f_travelactivity VALUES (373, 'Technical Support', '2020-03-21', 125, NULL, 12653, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (368, 'Staff Development', '2020-04-20', NULL, NULL, 12059, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (455, 'Programmatic Visit', '2020-04-28', 139, 18, 13372, 52); +INSERT INTO [[schema]].t2f_travelactivity VALUES (369, 'Staff Entitlement', '2020-03-20', NULL, NULL, 11436, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (365, 'Meeting', '2020-03-17', NULL, NULL, 24425, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (372, 'Meeting', '2020-03-17', 74, NULL, 8140, 39); +INSERT INTO [[schema]].t2f_travelactivity VALUES (343, 'Programmatic Visit', '2020-04-26', NULL, NULL, 11344, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (366, 'Meeting', '2020-03-17', NULL, NULL, 24425, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (363, 'Staff Entitlement', '2020-03-23', NULL, NULL, 21294, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (359, 'Meeting', '2020-03-15', NULL, NULL, 234455, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (371, 'Technical Support', '2020-03-16', NULL, NULL, 7739, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (135, 'Technical Support', '2019-11-15', NULL, NULL, 21331, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (384, 'Technical Support', '2020-03-29', 292, NULL, 23059, 47); +INSERT INTO [[schema]].t2f_travelactivity VALUES (376, 'Programmatic Visit', '2020-03-31', 139, 18, 13372, 52); +INSERT INTO [[schema]].t2f_travelactivity VALUES (380, 'Advocacy', '2020-03-17', 74, NULL, 22317, 58); +INSERT INTO [[schema]].t2f_travelactivity VALUES (326, 'Meeting', '2020-03-23', NULL, NULL, 11344, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (375, 'Technical Support', '2020-03-23', NULL, NULL, 14616, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (361, 'Staff Entitlement', '2020-03-19', NULL, NULL, 11859, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (382, 'Staff Development', '2020-03-17', NULL, NULL, 20469, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (381, 'Advocacy', '2020-03-17', 74, NULL, 22317, 58); +INSERT INTO [[schema]].t2f_travelactivity VALUES (385, 'Technical Support', '2020-03-24', NULL, NULL, 10707, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (386, 'Technical Support', '2020-03-24', NULL, NULL, 22244, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (387, 'Meeting', '2020-03-24', NULL, NULL, 10706, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (389, 'Meeting', '2020-03-24', NULL, NULL, 10877, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (390, 'Staff Entitlement', '2020-04-01', NULL, NULL, 23117, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (99, 'Technical Support', '2019-11-07', 315, NULL, 4606, 49); +INSERT INTO [[schema]].t2f_travelactivity VALUES (346, 'Meeting', '2020-03-26', NULL, NULL, 13031, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (391, 'Meeting', '2020-03-21', NULL, NULL, 215857, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (388, 'Technical Support', '2020-03-20', 454, NULL, 24195, 50); +INSERT INTO [[schema]].t2f_travelactivity VALUES (403, 'Programmatic Visit', '2020-03-03', 335, NULL, 4606, 17); +INSERT INTO [[schema]].t2f_travelactivity VALUES (406, 'Staff Entitlement', '2020-03-27', NULL, NULL, 5057, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (418, 'Advocacy', '2020-04-21', 177, NULL, 22479, 57); +INSERT INTO [[schema]].t2f_travelactivity VALUES (419, 'Advocacy', '2020-04-22', 177, NULL, 22479, 57); +INSERT INTO [[schema]].t2f_travelactivity VALUES (243, 'Technical Support', '2020-02-25', 124, NULL, 12023, 42); +INSERT INTO [[schema]].t2f_travelactivity VALUES (408, 'Technical Support', '2020-03-26', NULL, NULL, 14482, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (395, 'Technical Support', '2020-03-20', 48, NULL, 25549, 32); +INSERT INTO [[schema]].t2f_travelactivity VALUES (407, 'Staff Development', '2020-03-26', NULL, NULL, 21331, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (396, 'Technical Support', '2020-03-19', 41, NULL, 14045, 32); +INSERT INTO [[schema]].t2f_travelactivity VALUES (405, 'Programmatic Visit', '2020-03-19', 95, NULL, 13750, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (404, 'Programmatic Visit', '2020-03-18', 95, NULL, 13750, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (409, 'Programmatic Visit', '2020-04-01', 266, NULL, 11859, 35); +INSERT INTO [[schema]].t2f_travelactivity VALUES (410, 'Programmatic Visit', '2020-04-15', 48, NULL, 11859, 35); +INSERT INTO [[schema]].t2f_travelactivity VALUES (397, 'Technical Support', '2020-03-19', 438, NULL, 12023, 44); +INSERT INTO [[schema]].t2f_travelactivity VALUES (398, 'Meeting', '2020-03-24', NULL, NULL, 10933, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (420, 'Staff Entitlement', '2020-03-31', NULL, NULL, 13418, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (425, 'Technical Support', '2020-04-08', NULL, NULL, 12528, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (426, 'Technical Support', '2020-04-14', 238, NULL, 12528, 55); +INSERT INTO [[schema]].t2f_travelactivity VALUES (440, 'Technical Support', '2020-04-08', NULL, NULL, 8726, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (430, 'Programmatic Visit', '2020-02-18', 270, NULL, 12058, 23); +INSERT INTO [[schema]].t2f_travelactivity VALUES (402, 'Meeting', '2020-03-19', 438, NULL, 20469, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (431, 'Technical Support', '2020-04-08', 42, NULL, 10706, 17); +INSERT INTO [[schema]].t2f_travelactivity VALUES (280, 'Programmatic Visit', '2020-03-07', 44, NULL, 25042, 53); +INSERT INTO [[schema]].t2f_travelactivity VALUES (413, 'Technical Support', '2020-03-25', NULL, NULL, 14482, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (414, 'Technical Support', '2020-03-25', NULL, NULL, 14482, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (433, 'Technical Support', '2020-04-08', NULL, NULL, 12465, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (442, 'Technical Support', '2020-04-09', NULL, NULL, 10707, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (427, 'Meeting', '2020-04-07', 292, NULL, 15798, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (444, 'Staff Entitlement', '2020-04-14', NULL, NULL, 13371, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (412, 'Meeting', '2020-03-26', 292, NULL, 15798, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (441, 'Technical Support', '2020-04-09', NULL, NULL, 8726, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (421, 'Staff Entitlement', '2020-03-30', NULL, NULL, 13031, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (187, 'Programmatic Visit', '2019-12-16', 444, NULL, 13512, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (429, 'Programmatic Visit', '2019-12-09', 187, NULL, 11859, 35); +INSERT INTO [[schema]].t2f_travelactivity VALUES (428, 'Programmatic Visit', '2020-01-25', 187, NULL, 11859, 35); +INSERT INTO [[schema]].t2f_travelactivity VALUES (332, 'Technical Support', '2020-03-10', NULL, NULL, 12553, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (435, 'Technical Support', '2020-04-08', 180, NULL, 21331, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (422, 'Programmatic Visit', '2020-04-08', 266, NULL, 13031, 42); +INSERT INTO [[schema]].t2f_travelactivity VALUES (423, 'Programmatic Visit', '2020-04-15', 48, NULL, 13031, 42); +INSERT INTO [[schema]].t2f_travelactivity VALUES (443, 'Programmatic Visit', '2020-04-14', 306, NULL, 13372, 50); +INSERT INTO [[schema]].t2f_travelactivity VALUES (424, 'Programmatic Visit', '2020-04-22', 41, NULL, 13031, 42); +INSERT INTO [[schema]].t2f_travelactivity VALUES (448, 'Programmatic Visit', '2020-04-20', 42, NULL, 173681, 55); +INSERT INTO [[schema]].t2f_travelactivity VALUES (434, 'Technical Support', '2020-04-10', NULL, NULL, 10707, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (394, 'Programmatic Visit', '2020-03-27', 268, NULL, 25198, 35); +INSERT INTO [[schema]].t2f_travelactivity VALUES (393, 'Programmatic Visit', '2020-03-25', 46, NULL, 25198, 35); +INSERT INTO [[schema]].t2f_travelactivity VALUES (392, 'Programmatic Visit', '2020-03-23', 43, NULL, 25198, 35); +INSERT INTO [[schema]].t2f_travelactivity VALUES (439, 'Technical Support', '2020-04-10', NULL, NULL, 173864, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (449, 'Programmatic Visit', '2020-04-20', 42, NULL, 12459, 55); +INSERT INTO [[schema]].t2f_travelactivity VALUES (446, 'Programmatic Visit', '2020-04-16', 306, NULL, 13372, 50); +INSERT INTO [[schema]].t2f_travelactivity VALUES (401, 'Technical Support', '2020-03-21', 46, NULL, 24195, 50); +INSERT INTO [[schema]].t2f_travelactivity VALUES (445, 'Programmatic Visit', '2020-02-28', 62, NULL, 23640, 35); +INSERT INTO [[schema]].t2f_travelactivity VALUES (450, 'Programmatic Visit', '2020-04-22', 42, NULL, 12459, 55); +INSERT INTO [[schema]].t2f_travelactivity VALUES (119, 'Technical Support', '2019-11-13', 187, NULL, 23640, 32); +INSERT INTO [[schema]].t2f_travelactivity VALUES (120, 'Technical Support', '2019-11-15', 41, NULL, 23640, 32); +INSERT INTO [[schema]].t2f_travelactivity VALUES (451, 'Technical Support', '2020-04-22', 246, NULL, 24195, 52); +INSERT INTO [[schema]].t2f_travelactivity VALUES (452, 'Technical Support', '2020-04-24', 246, NULL, 24195, 52); +INSERT INTO [[schema]].t2f_travelactivity VALUES (454, 'Technical Support', '2020-04-29', 180, NULL, 14047, 32); +INSERT INTO [[schema]].t2f_travelactivity VALUES (453, 'Technical Support', '2020-04-25', 180, NULL, 14047, 32); +INSERT INTO [[schema]].t2f_travelactivity VALUES (437, 'Technical Support', '2020-04-11', NULL, NULL, 12552, NULL); +INSERT INTO [[schema]].t2f_travelactivity VALUES (438, 'Technical Support', '2020-04-08', NULL, NULL, 173864, NULL); -- @@ -17059,14 +22393,14 @@ INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (81, 105, 27); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (82, 106, 19); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (83, 106, 15); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (84, 107, 4); -INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (92, 123, 36); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (173, 244, 87); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (86, 110, 23); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (87, 111, 23); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (88, 118, 76); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (89, 119, 22); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (90, 120, 23); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (91, 109, 8); -INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (93, 124, 36); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (174, 249, 27); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (94, 125, 68); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (95, 126, 68); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (96, 127, 3); @@ -17090,6 +22424,185 @@ INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (113, 142, 40); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (114, 144, 3); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (115, 145, 3); INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (116, 146, 82); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (117, 148, 27); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (118, 149, 5); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (119, 149, 6); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (120, 150, 72); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (121, 151, 54); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (122, 154, 27); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (123, 156, 72); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (124, 157, 72); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (125, 159, 47); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (126, 160, 5); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (127, 161, 41); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (128, 163, 27); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (129, 164, 39); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (130, 165, 13); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (131, 166, 82); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (132, 167, 68); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (133, 173, 22); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (134, 178, 27); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (135, 179, 27); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (136, 182, 28); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (137, 186, 92); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (138, 187, 92); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (139, 190, 54); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (140, 191, 54); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (141, 193, 22); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (142, 194, 29); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (143, 196, 4); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (144, 197, 50); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (145, 198, 21); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (146, 199, 21); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (147, 202, 72); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (148, 204, 50); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (149, 206, 29); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (150, 207, 71); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (151, 208, 79); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (152, 211, 17); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (153, 212, 47); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (154, 217, 68); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (155, 218, 69); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (156, 219, 69); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (157, 220, 10); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (158, 222, 16); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (159, 224, 19); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (160, 225, 18); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (161, 234, 7); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (162, 234, 23); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (163, 235, 12); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (164, 237, 18); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (165, 238, 14); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (166, 239, 72); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (167, 123, 19); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (168, 124, 19); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (169, 240, 15); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (170, 241, 15); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (171, 242, 19); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (172, 243, 19); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (175, 250, 8); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (176, 251, 8); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (177, 252, 19); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (178, 255, 92); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (181, 262, 8); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (180, 261, 79); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (182, 262, 17); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (183, 262, 21); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (184, 262, 22); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (185, 263, 68); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (186, 264, 68); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (187, 266, 5); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (188, 273, 13); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (189, 274, 45); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (245, 324, 15); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (246, 329, 15); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (247, 334, 62); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (193, 279, 17); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (194, 282, 59); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (195, 286, 76); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (196, 287, 29); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (197, 288, 29); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (198, 289, 29); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (199, 290, 29); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (200, 291, 83); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (201, 292, 95); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (202, 293, 27); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (203, 294, 19); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (204, 295, 12); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (205, 296, 76); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (206, 297, 76); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (207, 294, 18); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (237, 313, 4); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (209, 300, 93); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (210, 301, 19); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (211, 302, 47); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (212, 304, 92); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (213, 305, 79); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (214, 306, 80); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (215, 307, 80); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (216, 309, 82); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (217, 310, 32); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (218, 310, 5); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (219, 310, 71); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (220, 310, 47); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (221, 310, 92); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (222, 310, 81); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (223, 310, 83); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (224, 310, 59); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (225, 310, 60); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (226, 310, 62); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (227, 311, 34); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (228, 311, 71); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (229, 311, 77); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (230, 311, 15); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (231, 311, 48); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (232, 311, 47); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (233, 311, 50); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (234, 311, 19); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (235, 311, 27); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (236, 311, 92); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (238, 313, 22); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (239, 314, 71); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (248, 335, 29); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (249, 336, 27); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (250, 337, 27); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (251, 338, 29); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (252, 339, 29); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (253, 340, 3); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (254, 348, 78); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (255, 349, 8); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (256, 351, 81); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (257, 351, 82); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (258, 352, 58); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (259, 354, 17); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (260, 355, 87); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (261, 370, 52); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (262, 370, 30); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (263, 372, 82); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (264, 374, 36); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (265, 376, 29); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (266, 379, 84); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (267, 380, 3); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (268, 381, 3); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (269, 382, 19); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (270, 383, 16); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (271, 388, 15); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (272, 392, 18); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (273, 393, 15); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (274, 394, 19); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (275, 395, 29); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (276, 396, 71); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (277, 397, 50); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (282, 403, 8); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (283, 403, 17); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (280, 401, 15); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (281, 402, 3); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (284, 403, 21); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (285, 403, 22); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (286, 404, 87); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (287, 409, 41); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (288, 410, 68); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (291, 418, 7); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (290, 412, 16); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (292, 419, 80); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (293, 426, 93); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (294, 428, 43); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (295, 429, 56); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (296, 430, 50); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (297, 438, 95); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (298, 440, 95); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (299, 443, 60); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (300, 445, 17); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (301, 446, 60); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (302, 447, 34); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (303, 448, 77); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (304, 449, 34); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (305, 450, 77); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (306, 451, 95); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (307, 452, 94); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (308, 453, 82); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (309, 454, 78); +INSERT INTO [[schema]].t2f_travelactivity_locations VALUES (310, 455, 29); -- @@ -17201,7 +22714,7 @@ INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (115, 97, 107); INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (122, 101, 114); INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (123, 102, 115); INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (124, 32, 116); -INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (130, 104, 122); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (459, 374, 400); INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (131, 104, 123); INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (132, 105, 124); INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (125, 103, 117); @@ -17260,6 +22773,368 @@ INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (183, 144, 162); INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (184, 145, 162); INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (185, 146, 163); INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (186, 147, 164); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (187, 148, 165); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (188, 149, 166); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (189, 150, 167); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (190, 151, 168); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (191, 152, 169); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (192, 153, 170); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (193, 154, 171); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (194, 155, 171); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (195, 156, 172); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (196, 157, 173); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (197, 158, 174); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (198, 159, 175); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (199, 160, 175); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (200, 161, 176); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (201, 162, 176); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (202, 163, 177); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (203, 164, 178); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (204, 165, 179); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (205, 166, 180); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (206, 167, 181); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (207, 168, 182); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (208, 152, 183); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (209, 169, 184); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (212, 172, 186); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (211, 171, 185); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (213, 173, 187); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (214, 173, 188); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (215, 172, 189); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (216, 174, 190); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (217, 175, 191); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (218, 176, 192); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (219, 177, 193); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (220, 178, 194); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (221, 179, 194); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (222, 180, 195); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (223, 181, 196); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (224, 182, 197); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (225, 183, 198); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (226, 184, 199); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (227, 185, 200); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (228, 186, 201); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (229, 187, 202); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (230, 188, 204); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (231, 189, 205); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (232, 190, 206); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (233, 191, 207); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (234, 192, 208); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (235, 193, 209); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (236, 194, 210); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (237, 195, 211); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (238, 196, 212); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (239, 197, 213); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (240, 198, 214); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (241, 199, 214); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (242, 200, 215); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (243, 201, 216); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (244, 202, 217); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (245, 203, 217); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (246, 204, 218); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (247, 205, 219); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (248, 206, 220); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (249, 207, 220); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (250, 208, 220); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (251, 209, 221); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (252, 210, 222); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (253, 211, 223); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (254, 212, 223); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (255, 213, 224); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (256, 214, 225); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (257, 215, 226); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (258, 216, 226); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (259, 217, 227); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (260, 218, 227); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (261, 219, 227); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (262, 220, 228); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (263, 221, 229); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (264, 222, 230); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (265, 223, 231); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (266, 224, 232); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (267, 225, 232); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (268, 226, 233); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (269, 227, 234); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (280, 231, 250); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (271, 229, 241); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (272, 230, 242); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (273, 230, 243); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (274, 231, 244); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (275, 231, 245); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (276, 232, 246); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (277, 232, 247); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (278, 233, 248); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (279, 233, 249); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (281, 234, 251); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (282, 235, 252); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (283, 236, 253); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (284, 237, 254); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (285, 238, 255); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (286, 239, 256); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (287, 123, 257); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (288, 124, 257); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (289, 240, 258); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (290, 241, 258); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (291, 242, 259); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (292, 243, 259); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (293, 244, 260); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (294, 245, 261); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (295, 246, 262); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (296, 247, 263); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (297, 248, 264); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (298, 249, 265); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (299, 250, 266); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (300, 251, 266); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (301, 252, 267); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (302, 253, 268); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (303, 254, 268); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (304, 255, 269); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (311, 262, 270); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (312, 263, 271); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (313, 262, 272); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (308, 259, 269); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (309, 260, 269); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (310, 261, 269); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (314, 264, 273); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (315, 265, 274); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (316, 266, 275); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (317, 267, 276); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (318, 268, 277); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (319, 269, 274); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (320, 270, 278); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (321, 271, 279); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (322, 272, 280); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (323, 273, 281); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (324, 274, 282); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (395, 326, 341); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (396, 327, 342); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (379, 317, 325); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (328, 278, 284); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (329, 279, 285); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (330, 280, 286); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (331, 281, 287); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (332, 282, 288); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (333, 282, 289); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (334, 283, 290); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (335, 284, 291); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (336, 285, 291); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (337, 286, 292); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (338, 287, 293); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (339, 288, 294); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (340, 289, 294); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (341, 290, 294); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (342, 291, 295); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (343, 292, 296); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (344, 293, 297); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (345, 294, 298); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (346, 295, 298); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (347, 296, 299); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (348, 297, 300); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (349, 298, 301); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (350, 299, 302); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (351, 300, 303); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (352, 301, 304); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (353, 302, 305); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (354, 303, 306); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (355, 304, 307); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (356, 305, 307); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (357, 306, 307); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (358, 307, 307); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (359, 308, 308); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (360, 293, 309); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (361, 304, 310); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (362, 305, 310); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (363, 306, 310); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (364, 307, 310); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (365, 293, 311); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (366, 198, 312); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (367, 199, 312); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (368, 178, 313); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (369, 179, 313); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (370, 309, 314); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (371, 310, 315); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (372, 311, 316); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (373, 311, 317); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (374, 312, 318); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (375, 313, 319); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (376, 314, 320); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (377, 315, 324); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (397, 328, 343); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (380, 318, 326); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (381, 313, 327); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (382, 313, 328); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (383, 313, 329); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (384, 319, 330); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (385, 320, 331); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (410, 341, 352); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (387, 321, 333); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (388, 320, 334); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (389, 322, 335); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (390, 323, 337); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (391, 324, 283); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (392, 313, 338); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (393, 324, 339); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (394, 325, 336); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (398, 329, 323); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (399, 330, 322); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (400, 331, 321); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (401, 332, 344); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (402, 333, 345); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (403, 334, 346); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (404, 335, 347); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (405, 336, 348); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (406, 337, 349); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (407, 338, 350); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (408, 339, 350); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (409, 340, 351); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (411, 342, 353); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (412, 343, 354); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (413, 344, 355); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (414, 345, 356); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (415, 346, 357); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (416, 347, 357); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (417, 348, 358); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (418, 348, 359); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (419, 349, 360); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (420, 350, 361); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (421, 351, 362); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (422, 350, 363); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (423, 350, 364); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (424, 350, 365); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (425, 352, 366); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (426, 350, 367); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (427, 353, 368); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (428, 354, 369); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (429, 350, 370); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (430, 354, 371); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (431, 355, 372); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (432, 356, 373); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (433, 354, 374); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (434, 350, 375); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (435, 354, 376); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (436, 354, 377); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (437, 355, 378); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (438, 354, 379); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (439, 354, 380); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (440, 357, 381); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (441, 358, 383); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (442, 359, 384); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (443, 360, 385); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (444, 361, 386); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (445, 362, 387); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (446, 363, 388); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (447, 364, 389); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (448, 365, 390); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (449, 366, 391); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (450, 367, 392); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (451, 368, 392); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (452, 369, 393); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (453, 370, 394); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (454, 359, 395); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (455, 371, 396); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (456, 314, 397); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (457, 372, 398); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (458, 373, 399); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (460, 314, 401); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (461, 314, 402); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (462, 314, 403); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (463, 375, 404); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (464, 376, 405); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (465, 377, 406); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (466, 370, 407); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (467, 378, 408); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (468, 379, 409); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (484, 391, 425); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (470, 381, 411); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (485, 392, 426); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (486, 393, 426); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (473, 381, 414); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (474, 381, 415); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (475, 383, 416); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (476, 384, 417); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (477, 385, 418); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (478, 386, 419); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (479, 387, 420); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (480, 388, 421); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (481, 389, 422); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (482, 390, 423); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (483, 388, 424); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (487, 394, 426); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (488, 395, 427); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (489, 396, 428); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (490, 397, 429); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (491, 398, 430); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (504, 99, 157); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (505, 403, 270); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (494, 401, 421); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (495, 392, 431); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (496, 393, 431); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (497, 394, 431); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (498, 402, 432); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (499, 392, 433); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (500, 393, 433); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (501, 394, 433); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (502, 401, 434); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (503, 388, 434); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (506, 404, 435); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (507, 405, 435); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (508, 346, 436); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (509, 347, 436); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (510, 346, 437); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (511, 347, 437); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (512, 346, 438); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (513, 347, 438); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (514, 406, 439); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (515, 407, 440); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (516, 408, 441); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (517, 408, 442); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (518, 409, 443); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (519, 410, 444); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (524, 415, 448); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (558, 443, 481); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (522, 413, 446); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (523, 414, 447); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (525, 416, 448); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (526, 417, 449); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (527, 418, 450); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (528, 419, 450); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (529, 420, 451); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (530, 421, 452); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (531, 422, 453); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (532, 423, 454); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (533, 424, 455); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (534, 425, 456); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (535, 426, 457); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (536, 427, 458); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (537, 428, 459); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (538, 429, 460); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (539, 430, 461); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (540, 431, 462); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (559, 444, 482); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (542, 433, 464); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (543, 434, 465); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (544, 435, 466); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (545, 435, 467); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (546, 435, 468); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (547, 435, 469); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (548, 435, 470); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (549, 435, 471); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (550, 436, 472); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (551, 437, 473); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (560, 445, 483); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (553, 439, 475); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (554, 440, 476); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (561, 446, 484); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (562, 446, 485); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (563, 447, 486); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (564, 448, 486); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (565, 449, 487); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (566, 450, 487); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (567, 451, 488); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (568, 452, 488); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (569, 453, 489); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (570, 454, 489); +INSERT INTO [[schema]].t2f_travelactivity_travels VALUES (571, 455, 490); -- @@ -17271,7 +23146,7 @@ INSERT INTO [[schema]].t2f_travelattachment VALUES (3, 'Other', 'ATT_UN.zip', 't INSERT INTO [[schema]].t2f_travelattachment VALUES (4, 'Other', 'TDR_mission - Abéché.docx', 'travels/[[schema]]/14/TDR_mission_-_Abéché.docx', 14); INSERT INTO [[schema]].t2f_travelattachment VALUES (14, 'Other', 'Rapport atelier PNV-Douguia 101019-signe.pdf', 'travels/[[schema]]/50/Rapport_atelier_PNV-Douguia_101019-signe.pdf', 50); INSERT INTO [[schema]].t2f_travelattachment VALUES (16, 'Other', 'Rapport reunion Annuelle des Directeurs du PEV-15 au 17 octobre 2019- Bujumbura. signe.pdf', 'travels/[[schema]]/51/Rapport_reunion_Annuelle_des_Directeurs_du_PEV-15_au_17_octobre_2019-_Bujumbura._signe.pdf', 51); -INSERT INTO [[schema]].t2f_travelattachment VALUES (17, 'Other', 'Rapport reunion Annuelle des Directeurs du PEV-15 au 17 octobre 2019- Bujumbura. signe.pdf', 'travels/[[schema]]/51/Rapport_reunion_Annuelle_des_Directeurs_du_PEV-15_au_17_octobre_2019-_Bujumbura._signe_qJ9U9aO.pdf', 51); +INSERT INTO [[schema]].t2f_travelattachment VALUES (63, 'Other', 'Rapport_Mission_Atelier_Revue_Nut.pdf', 'travels/[[schema]]/124/Rapport_Mission_Atelier_Revue_Nut.pdf', 124); INSERT INTO [[schema]].t2f_travelattachment VALUES (8, 'Other', 'Security clearance request is GRANTED_Nguissara.msg', 'travels/[[schema]]/29/Security_clearance_request_is_GRANTED_Nguissara.msg', 29); INSERT INTO [[schema]].t2f_travelattachment VALUES (9, 'Other', 'Security clearance request is GRANTED_Nguissara.msg', 'travels/[[schema]]/29/Security_clearance_request_is_GRANTED_Nguissara_VWhtzc2.msg', 29); INSERT INTO [[schema]].t2f_travelattachment VALUES (10, 'Other', 'plan de mission du bureau octobre et novembre 2019.pdf', 'travels/[[schema]]/29/plan_de_mission_du_bureau_octobre_et_novembre_2019.pdf', 29); @@ -17296,7 +23171,7 @@ INSERT INTO [[schema]].t2f_travelattachment VALUES (33, 'Other', 'Mission Urgenc INSERT INTO [[schema]].t2f_travelattachment VALUES (34, 'Other', 'Rap 1852764.pdf', 'travels/[[schema]]/117/Rap_1852764.pdf', 117); INSERT INTO [[schema]].t2f_travelattachment VALUES (35, 'HACT Programme Monitoring Report', 'Rapport VP Mandoul.pdf', 'travels/[[schema]]/130/Rapport_VP_Mandoul.pdf', 130); INSERT INTO [[schema]].t2f_travelattachment VALUES (36, 'HACT Programme Monitoring Report', 'Rapport VP Mandoul.pdf', 'travels/[[schema]]/130/Rapport_VP_Mandoul_g1zjVnM.pdf', 130); -INSERT INTO [[schema]].t2f_travelattachment VALUES (37, 'Other', 'Rapport VP Abeche MC AP.pdf', 'travels/[[schema]]/126/Rapport_VP_Abeche_MC_AP.pdf', 126); +INSERT INTO [[schema]].t2f_travelattachment VALUES (81, 'Other', 'Untitled (006).pdf', 'travels/[[schema]]/201/Untitled_006.pdf', 201); INSERT INTO [[schema]].t2f_travelattachment VALUES (38, 'Other', 'Mandatory courses completed.docx', 'travels/[[schema]]/152/Mandatory_courses_completed.docx', 152); INSERT INTO [[schema]].t2f_travelattachment VALUES (39, 'Other', 'Security Clearance Etienne et Eric pour Koumra.pdf', 'travels/[[schema]]/152/Security_Clearance_Etienne_et_Eric_pour_Koumra.pdf', 152); INSERT INTO [[schema]].t2f_travelattachment VALUES (40, 'Other', 'Mandatory courses completed.docx', 'travels/[[schema]]/153/Mandatory_courses_completed.docx', 153); @@ -17304,6 +23179,575 @@ INSERT INTO [[schema]].t2f_travelattachment VALUES (41, 'Other', 'Security Clear INSERT INTO [[schema]].t2f_travelattachment VALUES (42, 'Other', 'TDR_mission - Mandoul.docx', 'travels/[[schema]]/143/TDR_mission_-_Mandoul_ucrrlp7.docx', 143); INSERT INTO [[schema]].t2f_travelattachment VALUES (43, 'Other', 'Your security clearance request has been submitted.msg', 'travels/[[schema]]/143/Your_security_clearance_request_has_been_submitted_h9K0xYc.msg', 143); INSERT INTO [[schema]].t2f_travelattachment VALUES (46, 'Other', 'Rapport de VP formation PCIMAS à Goré et Bessao oct 019.pdf', 'travels/[[schema]]/103/Rapport_de_VP_formation_PCIMAS_à_Goré_et_Bessao_oct_019_WVTV3oM.pdf', 103); +INSERT INTO [[schema]].t2f_travelattachment VALUES (47, 'Other', 'Trip Report Mission de suivi PRSSMI-PEV au Logone Oriental.pdf', 'travels/[[schema]]/149/Trip_Report_Mission_de_suivi_PRSSMI-PEV_au_Logone_Oriental.pdf', 149); +INSERT INTO [[schema]].t2f_travelattachment VALUES (48, 'Other', 'Draft TdR formation en PS à Dandi.docx', 'travels/[[schema]]/168/Draft_TdR_formation_en_PS_à_Dandi.docx', 168); +INSERT INTO [[schema]].t2f_travelattachment VALUES (49, 'Other', 'Draft TdR formation en PS à Dandi.docx', 'travels/[[schema]]/168/Draft_TdR_formation_en_PS_à_Dandi_gSXqEBN.docx', 168); +INSERT INTO [[schema]].t2f_travelattachment VALUES (50, 'Other', 'Draft TdR formation en PS à Dandi.docx', 'travels/[[schema]]/168/Draft_TdR_formation_en_PS_à_Dandi_X5fOTZS.docx', 168); +INSERT INTO [[schema]].t2f_travelattachment VALUES (51, 'Other', 'Liste de presence retraite Child Protection.pdf', 'travels/[[schema]]/28/Liste_de_presence_retraite_Child_Protection.pdf', 28); +INSERT INTO [[schema]].t2f_travelattachment VALUES (52, 'Other', 'UNICEF_T[[schema]]_Trip_Report_Retraite Programme Protection.docx', 'travels/[[schema]]/28/UNICEF_T[[schema]]_Trip_Report_Retraite_Programme_Protection.docx', 28); +INSERT INTO [[schema]].t2f_travelattachment VALUES (53, 'Other', 'Jasmin Yu - Mandatory Courses.docx', 'travels/[[schema]]/174/Jasmin_Yu_-_Mandatory_Courses.docx', 174); +INSERT INTO [[schema]].t2f_travelattachment VALUES (54, 'Other', 'Jasmin Yu - Mandatory Courses.docx', 'travels/[[schema]]/174/Jasmin_Yu_-_Mandatory_Courses_Ib9xJE9.docx', 174); +INSERT INTO [[schema]].t2f_travelattachment VALUES (55, 'Other', 'TRIP Request_December 2019_Jasmin Yu.pdf', 'travels/[[schema]]/174/TRIP_Request_December_2019_Jasmin_Yu.pdf', 174); +INSERT INTO [[schema]].t2f_travelattachment VALUES (56, 'Other', 'Mandatory courses completed.docx', 'travels/[[schema]]/176/Mandatory_courses_completed.docx', 176); +INSERT INTO [[schema]].t2f_travelattachment VALUES (57, 'Other', 'Security Clearance Etienne-Pierre-Emmanuel Lai Dec 2019.pdf', 'travels/[[schema]]/176/Security_Clearance_Etienne-Pierre-Emmanuel_Lai_Dec_2019.pdf', 176); +INSERT INTO [[schema]].t2f_travelattachment VALUES (58, 'Other', 'TDR-mission PRRSMI-PEV dans la Tandjile Decembre 2019.docx', 'travels/[[schema]]/176/TDR-mission__PRRSMI-PEV_dans_la_Tandjile_Decembre__2019.docx', 176); +INSERT INTO [[schema]].t2f_travelattachment VALUES (59, 'Other', 'Rapport Mission Mongo MND27112019.pdf', 'travels/[[schema]]/10/Rapport_Mission_Mongo_MND27112019.pdf', 10); +INSERT INTO [[schema]].t2f_travelattachment VALUES (60, 'Other', 'Rapport Mission Mongo MND27112019.pdf', 'travels/[[schema]]/10/Rapport_Mission_Mongo_MND27112019_04JtHSO.pdf', 10); +INSERT INTO [[schema]].t2f_travelattachment VALUES (62, 'Other', 'Documents requis_Plan de supervision AVS Rougeole & Vit A.msg', 'travels/[[schema]]/185/Documents_requis_Plan_de_supervision_AVS_Rougeole__Vit_A.msg', 185); +INSERT INTO [[schema]].t2f_travelattachment VALUES (64, 'Other', 'Rapport mission LQAS Mongo_DAP.pdf', 'travels/[[schema]]/10/Rapport_mission_LQAS_Mongo_DAP.pdf', 10); +INSERT INTO [[schema]].t2f_travelattachment VALUES (65, 'Other', 'Rapport mission LQAS Mongo_DAP.pdf', 'travels/[[schema]]/10/Rapport_mission_LQAS_Mongo_DAP_aSdl4KR.pdf', 10); +INSERT INTO [[schema]].t2f_travelattachment VALUES (66, 'Other', 'Rapport de mission Appui C4D et planification Larmanaye.pdf', 'travels/[[schema]]/126/Rapport_de_mission_Appui_C4D_et_planification_Larmanaye.pdf', 126); +INSERT INTO [[schema]].t2f_travelattachment VALUES (67, 'Other', 'Rapport VP Abeche MC AP.pdf', 'travels/[[schema]]/41/Rapport_VP_Abeche_MC_AP.pdf', 41); +INSERT INTO [[schema]].t2f_travelattachment VALUES (68, 'Other', 'Trip_report Atelier de formation PS Dandi.pdf', 'travels/[[schema]]/168/Trip_report_Atelier_de_formation_PS_Dandi.pdf', 168); +INSERT INTO [[schema]].t2f_travelattachment VALUES (69, 'Other', 'Tdr atelier de preévaluation PDP rvsd finala.docx', 'travels/[[schema]]/199/Tdr_atelier_de_preévaluation_PDP_rvsd_finala.docx', 199); +INSERT INTO [[schema]].t2f_travelattachment VALUES (70, 'Other', 'Tdr atelier de preévaluation PDP rvsd finala.docx', 'travels/[[schema]]/205/Tdr_atelier_de_preévaluation_PDP_rvsd_finala.docx', 205); +INSERT INTO [[schema]].t2f_travelattachment VALUES (71, 'Other', 'Rapport de Visite Programmatique ESMS_18-21.10.2019.pdf', 'travels/[[schema]]/80/Rapport_de_Visite_Programmatique_ESMS_18-21.10.2019.pdf', 80); +INSERT INTO [[schema]].t2f_travelattachment VALUES (72, 'Other', 'Rapport_VP_Min-Eco-Plan-Dev_Oct-2019-Inputs-MEPD-OK2-VF.pdf', 'travels/[[schema]]/84/Rapport_VP_Min-Eco-Plan-Dev_Oct-2019-Inputs-MEPD-OK2-VF.pdf', 84); +INSERT INTO [[schema]].t2f_travelattachment VALUES (73, 'Other', 'Rapport_VP_Min-Eco-Plan-Dev_Oct-2019-Inputs-MEPD-OK2-VF.pdf', 'travels/[[schema]]/84/Rapport_VP_Min-Eco-Plan-Dev_Oct-2019-Inputs-MEPD-OK2-VF_8kXpRjw.pdf', 84); +INSERT INTO [[schema]].t2f_travelattachment VALUES (74, 'Other', 'Rapport de VP PRSSMI-PEV dans le Mandoul.pdf', 'travels/[[schema]]/152/Rapport_de_VP_PRSSMI-PEV_dans_le_Mandoul.pdf', 152); +INSERT INTO [[schema]].t2f_travelattachment VALUES (75, 'Other', 'Rapport de VP PRSSMI-PEV dans la Tandjile.pdf', 'travels/[[schema]]/176/Rapport_de_VP_PRSSMI-PEV_dans_la_Tandjile.pdf', 176); +INSERT INTO [[schema]].t2f_travelattachment VALUES (76, 'Other', 'Rapport Mission Zones Cholera Draft VF.docx', 'travels/[[schema]]/166/Rapport_Mission_Zones_Cholera_Draft_VF.docx', 166); +INSERT INTO [[schema]].t2f_travelattachment VALUES (77, 'Other', 'Rapport Participation Mission SMR 2019.docx', 'travels/[[schema]]/177/Rapport_Participation_Mission_SMR_2019.docx', 177); +INSERT INTO [[schema]].t2f_travelattachment VALUES (78, 'Other', 'UNICEF_T[[schema]]_Trip_Report_Autres Missions.docx', 'travels/[[schema]]/96/UNICEF_T[[schema]]_Trip_Report_Autres_Missions.docx', 96); +INSERT INTO [[schema]].t2f_travelattachment VALUES (79, 'Other', 'Rapport VP Celiaf 2è Tranche PCA.pdf', 'travels/[[schema]]/194/Rapport_VP_Celiaf_2è_Tranche_PCA.pdf', 194); +INSERT INTO [[schema]].t2f_travelattachment VALUES (80, 'Other', 'Rapport VP Celiaf 2è Tranche PCA.pdf', 'travels/[[schema]]/194/Rapport_VP_Celiaf_2è_Tranche_PCA_EymkesK.pdf', 194); +INSERT INTO [[schema]].t2f_travelattachment VALUES (82, 'Other', 'Untitled (006).pdf', 'travels/[[schema]]/201/Untitled_006_l5SLj7i.pdf', 201); +INSERT INTO [[schema]].t2f_travelattachment VALUES (83, 'Other', 'VP nov 2019.pdf', 'travels/[[schema]]/167/VP_nov_2019.pdf', 167); +INSERT INTO [[schema]].t2f_travelattachment VALUES (84, 'Other', 'rap visite prog.pdf', 'travels/[[schema]]/125/rap_visite_prog.pdf', 125); +INSERT INTO [[schema]].t2f_travelattachment VALUES (85, 'Other', 'rapport_2019123110213500.pdf', 'travels/[[schema]]/181/rapport_2019123110213500.pdf', 181); +INSERT INTO [[schema]].t2f_travelattachment VALUES (86, 'Other', 'UNICEF_T[[schema]]_Trip_Report_Autres Missions Valide au CMT du 27-09-2018. Visite Rep zone Sud.docx', 'travels/[[schema]]/204/UNICEF_T[[schema]]_Trip_Report_Autres_Missions_Valide_au_CMT_du_27-09-2018._Visite_Rep_zone_Sud.docx', 204); +INSERT INTO [[schema]].t2f_travelattachment VALUES (90, 'Other', 'BDD_Telephone_Code.xlsx', 'travels/[[schema]]/212/BDD_Telephone_Code.xlsx', 212); +INSERT INTO [[schema]].t2f_travelattachment VALUES (91, 'Other', 'UNICEF_T[[schema]]_Trip_Report_Logone Oriental.pdf', 'travels/[[schema]]/212/UNICEF_T[[schema]]_Trip_Report_Logone_Oriental.pdf', 212); +INSERT INTO [[schema]].t2f_travelattachment VALUES (89, 'Other', 'Rapport VP SIF decembre 2019 nanyalta.pdf', 'travels/[[schema]]/170/Rapport_VP_SIF_decembre_2019_nanyalta.pdf', 170); +INSERT INTO [[schema]].t2f_travelattachment VALUES (92, 'Other', 'TDRs_Mission_Recrutement_Formation_Lanceurs_SMS_Updated.docx', 'travels/[[schema]]/212/TDRs_Mission_Recrutement_Formation_Lanceurs_SMS_Updated.docx', 212); +INSERT INTO [[schema]].t2f_travelattachment VALUES (93, 'Other', 'BDD_Telephone_Code.xlsx', 'travels/[[schema]]/212/BDD_Telephone_Code_qPHBcaZ.xlsx', 212); +INSERT INTO [[schema]].t2f_travelattachment VALUES (94, 'Other', 'UNICEF_T[[schema]]_Trip_Report_Logone Oriental.pdf', 'travels/[[schema]]/212/UNICEF_T[[schema]]_Trip_Report_Logone_Oriental_jiVzPs4.pdf', 212); +INSERT INTO [[schema]].t2f_travelattachment VALUES (95, 'Other', 'Rapport formtion CSA PALA.pdf', 'travels/[[schema]]/172/Rapport_formtion_CSA_PALA.pdf', 172); +INSERT INTO [[schema]].t2f_travelattachment VALUES (96, 'Other', 'Rapport formtion CSA ISSAB Bongor.pdf', 'travels/[[schema]]/173/Rapport_formtion_CSA_ISSAB_Bongor.pdf', 173); +INSERT INTO [[schema]].t2f_travelattachment VALUES (97, 'Other', 'TDR VP SILA ok.docx', 'travels/[[schema]]/225/TDR_VP_SILA_ok.docx', 225); +INSERT INTO [[schema]].t2f_travelattachment VALUES (98, 'Other', 'UNDSS Security Clearance_March 2020.pdf', 'travels/[[schema]]/231/UNDSS_Security_Clearance_March_2020.pdf', 231); +INSERT INTO [[schema]].t2f_travelattachment VALUES (99, 'Other', 'Jasmin Yu - Mandatory Courses.docx', 'travels/[[schema]]/231/Jasmin_Yu_-_Mandatory_Courses.docx', 231); +INSERT INTO [[schema]].t2f_travelattachment VALUES (100, 'Other', 'Demande de conge approuve_mars 2020.pdf', 'travels/[[schema]]/231/Demande_de_conge_approuve_mars_2020.pdf', 231); +INSERT INTO [[schema]].t2f_travelattachment VALUES (101, 'Other', 'TdR Mission Moundou d''appui capitalisation experiences PDC et PDP.docx', 'travels/[[schema]]/234/TdR_Mission_Moundou_dappui_capitalisation_experiences_PDC_et_PDP.docx', 234); +INSERT INTO [[schema]].t2f_travelattachment VALUES (102, 'Other', 'Report_Mission_MUSKOKA_JAN2020.pdf', 'travels/[[schema]]/254/Report_Mission_MUSKOKA_JAN2020.pdf', 254); +INSERT INTO [[schema]].t2f_travelattachment VALUES (103, 'Other', 'Your security clearance request is GRANTED.msg', 'travels/[[schema]]/259/Your_security_clearance_request_is_GRANTED.msg', 259); +INSERT INTO [[schema]].t2f_travelattachment VALUES (104, 'Other', 'invitation réunions bilan PTME Pool de Dandi (1).bmp', 'travels/[[schema]]/259/invitation_réunions_bilan_PTME_Pool_de_Dandi_1.bmp', 259); +INSERT INTO [[schema]].t2f_travelattachment VALUES (105, 'Other', 'invitation d''atelier bilan, Pool Dougiua.bmp', 'travels/[[schema]]/259/invitation_datelier_bilan_Pool_Dougiua.bmp', 259); +INSERT INTO [[schema]].t2f_travelattachment VALUES (106, 'Other', 'TERMES DE REFRENCE DES REUNIONS SEMESTRIELLES S2 2019.docx', 'travels/[[schema]]/259/TERMES_DE_REFRENCE_DES_REUNIONS_SEMESTRIELLES_S2_2019.docx', 259); +INSERT INTO [[schema]].t2f_travelattachment VALUES (107, 'Other', 'Certificats IAM.zip', 'travels/[[schema]]/259/Certificats_IAM.zip', 259); +INSERT INTO [[schema]].t2f_travelattachment VALUES (108, 'Other', 'Termes de Reference mission participation Reunion Monitorage Biltine 14 au 18 Novembre 2019.docx', 'travels/[[schema]]/147/Termes_de_Reference__mission_participation_Reunion_Monitorage_Biltine_14_au_18_Novembre_2019.docx', 147); +INSERT INTO [[schema]].t2f_travelattachment VALUES (109, 'Other', 'Report_VP Biltine 15-16_11_2019 final.docx', 'travels/[[schema]]/147/Report_VP_Biltine_15-16_11_2019_final.docx', 147); +INSERT INTO [[schema]].t2f_travelattachment VALUES (110, 'Other', 'Controle budget controle.pdf', 'travels/[[schema]]/208/Controle_budget_controle.pdf', 208); +INSERT INTO [[schema]].t2f_travelattachment VALUES (111, 'Other', 'Your security clearance request has been submitted.msg', 'travels/[[schema]]/208/Your_security_clearance_request_has_been_submitted.msg', 208); +INSERT INTO [[schema]].t2f_travelattachment VALUES (112, 'Other', 'TDR mission suivi des CCC.docx', 'travels/[[schema]]/208/TDR_mission_suivi_des_CCC.docx', 208); +INSERT INTO [[schema]].t2f_travelattachment VALUES (113, 'Other', 'CERTIFICAT BSAFE.pdf', 'travels/[[schema]]/208/CERTIFICAT_BSAFE.pdf', 208); +INSERT INTO [[schema]].t2f_travelattachment VALUES (114, 'Other', 'UNICEF_T[[schema]]_Trip_Report_VP_DIRECTION DES ETUDES ET DE PREVISION.pdf', 'travels/[[schema]]/208/UNICEF_T[[schema]]_Trip_Report_VP_DIRECTION_DES_ETUDES_ET_DE_PREVISION.pdf', 208); +INSERT INTO [[schema]].t2f_travelattachment VALUES (115, 'Other', 'Your security clearance request has been MARA GAR fevrier 2020.msg', 'travels/[[schema]]/267/Your_security_clearance_request_has_been_MARA_GAR_fevrier_2020.msg', 267); +INSERT INTO [[schema]].t2f_travelattachment VALUES (116, 'Other', 'TDRs ATELIER DE FORMATION ET DE DEMARRAGE DU RAPPORT PND 2019 Mara.docx', 'travels/[[schema]]/267/TDRs_ATELIER_DE_FORMATION_ET_DE_DEMARRAGE_DU_RAPPORT_PND_2019_Mara.docx', 267); +INSERT INTO [[schema]].t2f_travelattachment VALUES (117, 'Other', 'Cours Obligatoire.msg', 'travels/[[schema]]/267/Cours_Obligatoire.msg', 267); +INSERT INTO [[schema]].t2f_travelattachment VALUES (118, 'Other', 'INVITATION ATELIER GAR MARA FEVRIER 2020.pdf', 'travels/[[schema]]/267/INVITATION_ATELIER_GAR_MARA_FEVRIER_2020.pdf', 267); +INSERT INTO [[schema]].t2f_travelattachment VALUES (119, 'Other', 'Certificats_Obligatoires_Faba_Vonki.png', 'travels/[[schema]]/270/Certificats_Obligatoires_Faba_Vonki.png', 270); +INSERT INTO [[schema]].t2f_travelattachment VALUES (120, 'Other', 'Your security clearance request is GRANTED.msg', 'travels/[[schema]]/270/Your_security_clearance_request_is_GRANTED.msg', 270); +INSERT INTO [[schema]].t2f_travelattachment VALUES (129, 'Other', 'Rapport_Unicef.pdf', 'travels/[[schema]]/197/Rapport_Unicef.pdf', 197); +INSERT INTO [[schema]].t2f_travelattachment VALUES (131, 'Other', 'Demande voyage Youe Wiveka.docx', 'travels/[[schema]]/275/Demande_voyage_Youe_Wiveka.docx', 275); +INSERT INTO [[schema]].t2f_travelattachment VALUES (122, 'Other', 'Your security clearance request is GRANTED Formation etools BZ mars 2020.msg', 'travels/[[schema]]/272/Your_security_clearance_request_is_GRANTED_Formation_etools_BZ_mars_2020.msg', 272); +INSERT INTO [[schema]].t2f_travelattachment VALUES (130, 'Other', 'Rapport_Unicef.pdf', 'travels/[[schema]]/197/Rapport_Unicef_1blCdAE.pdf', 197); +INSERT INTO [[schema]].t2f_travelattachment VALUES (124, 'Other', 'Cours Obligatoire.msg', 'travels/[[schema]]/272/Cours_Obligatoire.msg', 272); +INSERT INTO [[schema]].t2f_travelattachment VALUES (125, 'Email Correspondence', 'RE RapportMissionPlanificationPPA2020-Approbation Superviseur.msg', 'travels/[[schema]]/215/RE_RapportMissionPlanificationPPA2020-Approbation_Superviseur.msg', 215); +INSERT INTO [[schema]].t2f_travelattachment VALUES (126, 'Email Correspondence', 'RE RapportMissionPlanificationPPA2020-Approbation Superviseur.msg', 'travels/[[schema]]/215/RE_RapportMissionPlanificationPPA2020-Approbation_Superviseur_mPCkOcg.msg', 215); +INSERT INTO [[schema]].t2f_travelattachment VALUES (139, 'Other', 'Rapport SMR2019.pdf', 'travels/[[schema]]/182/Rapport_SMR2019.pdf', 182); +INSERT INTO [[schema]].t2f_travelattachment VALUES (128, 'Other', 'TdR_Refesh_du_staff_et_des_consultants_en_T-tools_Mars_2020_V2.docx', 'travels/[[schema]]/272/TdR_Refesh_du_staff_et_des_consultants_en_T-tools_Mars_2020_V2.docx', 272); +INSERT INTO [[schema]].t2f_travelattachment VALUES (132, 'Email Correspondence', 'Chronogramme ATPC Fev 2020 nn.xlsx', 'travels/[[schema]]/275/Chronogramme_ATPC_Fev_2020_nn.xlsx', 275); +INSERT INTO [[schema]].t2f_travelattachment VALUES (133, 'Cleareance Doc', 'Sec clearance.pdf', 'travels/[[schema]]/275/Sec_clearance.pdf', 275); +INSERT INTO [[schema]].t2f_travelattachment VALUES (134, 'Other', 'TDR Celebrations FDAL MKE.docx', 'travels/[[schema]]/275/TDR_Celebrations_FDAL_MKE.docx', 275); +INSERT INTO [[schema]].t2f_travelattachment VALUES (135, 'Other', 'PSEA_2017_Course certificate - Prevention of Sexual Exploitation and Abuse.pdf', 'travels/[[schema]]/275/PSEA_2017_Course_certificate_-_Prevention_of_Sexual_Exploitation_and_Abuse.pdf', 275); +INSERT INTO [[schema]].t2f_travelattachment VALUES (136, 'Other', 'BSAFE_EN_Course certificate - BSAFE.pdf', 'travels/[[schema]]/275/BSAFE_EN_Course_certificate_-_BSAFE.pdf', 275); +INSERT INTO [[schema]].t2f_travelattachment VALUES (137, 'Other', 'Security clearance RR 29 feb a 6 mars.msg', 'travels/[[schema]]/284/Security_clearance_RR_29_feb_a_6_mars.msg', 284); +INSERT INTO [[schema]].t2f_travelattachment VALUES (138, 'Other', 'Conges feb mars 2020.pdf', 'travels/[[schema]]/284/Conges_feb_mars_2020.pdf', 284); +INSERT INTO [[schema]].t2f_travelattachment VALUES (140, 'Other', 'Trip report Atelier pre_revue PDP Ouaddai.pdf', 'travels/[[schema]]/199/Trip_report_Atelier_pre_revue_PDP_Ouaddai.pdf', 199); +INSERT INTO [[schema]].t2f_travelattachment VALUES (141, 'Other', 'TdR Mission Moundou d''appui capitalisation experiences PDC et PDP.docx', 'travels/[[schema]]/233/TdR_Mission_Moundou_dappui_capitalisation_experiences_PDC_et_PDP.docx', 233); +INSERT INTO [[schema]].t2f_travelattachment VALUES (142, 'Other', 'trip report moundou.pdf', 'travels/[[schema]]/233/trip_report_moundou.pdf', 233); +INSERT INTO [[schema]].t2f_travelattachment VALUES (143, 'Other', 'Phase I _approche Monitoring_AK 18 Feb 2020_à UNICEF.docx', 'travels/[[schema]]/298/Phase_I__approche_Monitoring_AK_18_Feb_2020_à_UNICEF.docx', 298); +INSERT INTO [[schema]].t2f_travelattachment VALUES (144, 'Other', 'OnlineCourses_screenshot_Palazzo.docx', 'travels/[[schema]]/303/OnlineCourses_screenshot_Palazzo.docx', 303); +INSERT INTO [[schema]].t2f_travelattachment VALUES (145, 'Other', 'Tdr_Mission CERF_Pala_3-5March2020.docx', 'travels/[[schema]]/303/Tdr_Mission_CERF_Pala_3-5March2020.docx', 303); +INSERT INTO [[schema]].t2f_travelattachment VALUES (146, 'Other', 'SecClearence_Palazzo_3-5March2020.pdf', 'travels/[[schema]]/303/SecClearence_Palazzo_3-5March2020.pdf', 303); +INSERT INTO [[schema]].t2f_travelattachment VALUES (147, 'Other', 'SC Mission au guera du 27 Fev au 8 Mars 2020.odt', 'travels/[[schema]]/305/SC_Mission_au_guera_du_27_Fev_au_8_Mars_2020.odt', 305); +INSERT INTO [[schema]].t2f_travelattachment VALUES (148, 'Other', 'Certificats UNICEF.zip', 'travels/[[schema]]/305/Certificats_UNICEF.zip', 305); +INSERT INTO [[schema]].t2f_travelattachment VALUES (149, 'Other', 'TDR_mission conjointe protocole simplifie_Guera Fev 2020 THN.docx', 'travels/[[schema]]/305/TDR_mission_conjointe_protocole_simplifie_Guera_Fev_2020_THN.docx', 305); +INSERT INTO [[schema]].t2f_travelattachment VALUES (150, 'Other', 'Certificat Obligatoire Aymard.pdf', 'travels/[[schema]]/308/Certificat_Obligatoire_Aymard.pdf', 308); +INSERT INTO [[schema]].t2f_travelattachment VALUES (151, 'Other', 'TDR mission de terrain Aymard.docx', 'travels/[[schema]]/308/TDR_mission_de_terrain_Aymard.docx', 308); +INSERT INTO [[schema]].t2f_travelattachment VALUES (152, 'Other', 'Certificate BSAFE (English) Fabienne Bertrand.pdf', 'travels/[[schema]]/307/Certificate_BSAFE_English_Fabienne_Bertrand.pdf', 307); +INSERT INTO [[schema]].t2f_travelattachment VALUES (153, 'Cleareance Doc', 'Mission Sarh Security clearance request is GRANTED.msg', 'travels/[[schema]]/307/Mission_Sarh_Security_clearance_request_is_GRANTED.msg', 307); +INSERT INTO [[schema]].t2f_travelattachment VALUES (154, 'Other', 'TDR Mission Moundou 02.03.2020.pdf', 'travels/[[schema]]/307/TDR_Mission_Moundou_02.03.2020.pdf', 307); +INSERT INTO [[schema]].t2f_travelattachment VALUES (155, 'Other', 'Certificate BSAFE (English) Fabienne Bertrand.pdf', 'travels/[[schema]]/307/Certificate_BSAFE_English_Fabienne_Bertrand_IheNnQi.pdf', 307); +INSERT INTO [[schema]].t2f_travelattachment VALUES (156, 'Cleareance Doc', 'Mission Sarh Security clearance request is GRANTED.msg', 'travels/[[schema]]/307/Mission_Sarh_Security_clearance_request_is_GRANTED_Ol9mhuO.msg', 307); +INSERT INTO [[schema]].t2f_travelattachment VALUES (157, 'Other', 'TDR Mission Moundou 02.03.2020.pdf', 'travels/[[schema]]/307/TDR_Mission_Moundou_02.03.2020_BuO36hs.pdf', 307); +INSERT INTO [[schema]].t2f_travelattachment VALUES (158, 'Other', 'Certificat Responsabilite UN ou UN rights.pdf', 'travels/[[schema]]/310/Certificat_Responsabilite_UN_ou_UN_rights.pdf', 310); +INSERT INTO [[schema]].t2f_travelattachment VALUES (159, 'Other', 'Certificat HIV.pdf', 'travels/[[schema]]/310/Certificat_HIV.pdf', 310); +INSERT INTO [[schema]].t2f_travelattachment VALUES (160, 'Other', 'Certificat formation Ethics Rodolphe.pdf', 'travels/[[schema]]/310/Certificat_formation_Ethics_Rodolphe.pdf', 310); +INSERT INTO [[schema]].t2f_travelattachment VALUES (161, 'Other', 'Certificat CCC.pdf', 'travels/[[schema]]/310/Certificat_CCC.pdf', 310); +INSERT INTO [[schema]].t2f_travelattachment VALUES (162, 'Other', 'cours securite_20180921_BASIF.pdf', 'travels/[[schema]]/310/cours_securite_20180921_BASIF.pdf', 310); +INSERT INTO [[schema]].t2f_travelattachment VALUES (163, 'Other', 'cours securite_20180921_BASIF.pdf', 'travels/[[schema]]/310/cours_securite_20180921_BASIF_zRGCI9b.pdf', 310); +INSERT INTO [[schema]].t2f_travelattachment VALUES (164, 'Other', 'Certificat UNICEF Information Security Awareness Rodolphe 24092019.pdf', 'travels/[[schema]]/310/Certificat_UNICEF_Information_Security_Awareness_Rodolphe_24092019.pdf', 310); +INSERT INTO [[schema]].t2f_travelattachment VALUES (165, 'Other', 'Certificat Responsabilite UN ou UN rights.pdf', 'travels/[[schema]]/310/Certificat_Responsabilite_UN_ou_UN_rights_JSgnRyl.pdf', 310); +INSERT INTO [[schema]].t2f_travelattachment VALUES (166, 'Other', 'Certificat HIV.pdf', 'travels/[[schema]]/310/Certificat_HIV_AmA9e9s.pdf', 310); +INSERT INTO [[schema]].t2f_travelattachment VALUES (167, 'Other', 'Certificat formation Ethics Rodolphe.pdf', 'travels/[[schema]]/310/Certificat_formation_Ethics_Rodolphe_F8S2ODR.pdf', 310); +INSERT INTO [[schema]].t2f_travelattachment VALUES (168, 'Other', 'Certificat CCC.pdf', 'travels/[[schema]]/310/Certificat_CCC_R7F3FsW.pdf', 310); +INSERT INTO [[schema]].t2f_travelattachment VALUES (169, 'Other', 'cours securite_20180921_BASIF.pdf', 'travels/[[schema]]/310/cours_securite_20180921_BASIF_KMUvmRP.pdf', 310); +INSERT INTO [[schema]].t2f_travelattachment VALUES (170, 'Other', 'cours securite_20180921_BASIF.pdf', 'travels/[[schema]]/310/cours_securite_20180921_BASIF_3nmo3uK.pdf', 310); +INSERT INTO [[schema]].t2f_travelattachment VALUES (171, 'Other', 'Certificat UNICEF Information Security Awareness Rodolphe 24092019.pdf', 'travels/[[schema]]/310/Certificat_UNICEF_Information_Security_Awareness_Rodolphe_24092019_EfkR9qk.pdf', 310); +INSERT INTO [[schema]].t2f_travelattachment VALUES (172, 'HACT Programme Monitoring Report', 'Rapport Vérification Programmatique AFA.pdf', 'travels/[[schema]]/214/Rapport_Vérification_Programmatique_AFA.pdf', 214); +INSERT INTO [[schema]].t2f_travelattachment VALUES (173, 'Other', 'rapport visite programmatique urpt (002).pdf', 'travels/[[schema]]/315/rapport_visite_programmatique_urpt_002.pdf', 315); +INSERT INTO [[schema]].t2f_travelattachment VALUES (174, 'Other', 'Rapport Visite Programmatique UAFAT.pdf', 'travels/[[schema]]/316/Rapport_Visite_Programmatique_UAFAT.pdf', 316); +INSERT INTO [[schema]].t2f_travelattachment VALUES (175, 'Other', 'Security clearance aymard 2020.pdf', 'travels/[[schema]]/308/Security_clearance_aymard_2020.pdf', 308); +INSERT INTO [[schema]].t2f_travelattachment VALUES (176, 'Other', 'Draft Agenda - Mission d''evaluation KFW mars 2020 - draft 26 Fev - ver 2.docx', 'travels/[[schema]]/318/Draft_Agenda_-_Mission_devaluation_KFW_mars_2020_-_draft_26_Fev_-_ver_2.docx', 318); +INSERT INTO [[schema]].t2f_travelattachment VALUES (177, 'Other', 'Rapport de visite programmatique Riposte rougeole couplée à la vit A et mébendazole Ndjaména.pdf', 'travels/[[schema]]/226/Rapport_de_visite_programmatique_Riposte_rougeole_couplée_à_la_vit_A_et_mébendazole_Ndjaména.pdf', 226); +INSERT INTO [[schema]].t2f_travelattachment VALUES (191, 'Other', 'JP LEAVE.pdf', 'travels/[[schema]]/326/JP_LEAVE.pdf', 326); +INSERT INTO [[schema]].t2f_travelattachment VALUES (178, 'Other', 'Rapport détaillé de mission de supervision de la riposte rougeole couplée à la vitamine A et au mébendazole.pdf', 'travels/[[schema]]/226/Rapport_détaillé_de_mission_de_supervision_de_la_riposte_rougeole_couplée_à_la_vitamine_A_et_au_mébendazole.pdf', 226); +INSERT INTO [[schema]].t2f_travelattachment VALUES (179, 'Other', 'Security clearance.pdf', 'travels/[[schema]]/319/Security_clearance.pdf', 319); +INSERT INTO [[schema]].t2f_travelattachment VALUES (180, 'Other', 'Mandatory courses.docx', 'travels/[[schema]]/319/Mandatory_courses.docx', 319); +INSERT INTO [[schema]].t2f_travelattachment VALUES (181, 'Other', 'TDR VP Association des Scouts du T[[schema]] - Copy.docx', 'travels/[[schema]]/319/TDR_VP_Association_des_Scouts_du_T[[schema]]_-_Copy.docx', 319); +INSERT INTO [[schema]].t2f_travelattachment VALUES (182, 'Other', 'Capture Ecran Cours Obligatoires Nguisara Mandab .PNG', 'travels/[[schema]]/297/Capture_Ecran_Cours_Obligatoires_Nguisara_Mandab_.PNG', 297); +INSERT INTO [[schema]].t2f_travelattachment VALUES (183, 'Other', 'TDR formation PTME CHBA (002).docx', 'travels/[[schema]]/297/TDR_formation__PTME_CHBA_002.docx', 297); +INSERT INTO [[schema]].t2f_travelattachment VALUES (184, 'Other', 'Draft Travel request_Nguissara M.pdf', 'travels/[[schema]]/297/Draft_Travel_request_Nguissara_M.pdf', 297); +INSERT INTO [[schema]].t2f_travelattachment VALUES (185, 'Other', 'TDR MISSION VP AU DSR CB.docx', 'travels/[[schema]]/297/TDR_MISSION_VP_AU_DSR_CB.docx', 297); +INSERT INTO [[schema]].t2f_travelattachment VALUES (186, 'Other', 'Invitation formation PTME_Massenya.docx', 'travels/[[schema]]/297/Invitation_formation_PTME_Massenya.docx', 297); +INSERT INTO [[schema]].t2f_travelattachment VALUES (187, 'Other', 'Marcellin cours obligatoires.docx', 'travels/[[schema]]/325/Marcellin_cours_obligatoires.docx', 325); +INSERT INTO [[schema]].t2f_travelattachment VALUES (188, 'Other', 'Agenda - mission Abeche - Belinda_Draft 1.docx', 'travels/[[schema]]/325/Agenda_-_mission_Abeche_-_Belinda_Draft_1.docx', 325); +INSERT INTO [[schema]].t2f_travelattachment VALUES (189, 'Other', 'Your security clearance request has been submitted.msg', 'travels/[[schema]]/325/Your_security_clearance_request_has_been_submitted.msg', 325); +INSERT INTO [[schema]].t2f_travelattachment VALUES (190, 'Cleareance Doc', 'Security clearance request.pdf', 'travels/[[schema]]/326/Security_clearance_request.pdf', 326); +INSERT INTO [[schema]].t2f_travelattachment VALUES (192, 'Other', 'BSAFE 2019 Jean Pierre Kabutako.pdf', 'travels/[[schema]]/326/BSAFE_2019_Jean_Pierre_Kabutako.pdf', 326); +INSERT INTO [[schema]].t2f_travelattachment VALUES (193, 'Email Correspondence', 'Formations obligatoires.pdf', 'travels/[[schema]]/326/Formations_obligatoires.pdf', 326); +INSERT INTO [[schema]].t2f_travelattachment VALUES (194, 'Other', 'Cours Agora.PNG', 'travels/[[schema]]/331/Cours_Agora.PNG', 331); +INSERT INTO [[schema]].t2f_travelattachment VALUES (195, 'Other', 'SC du 15 au 26 mars Abeche.pdf', 'travels/[[schema]]/331/SC_du_15_au_26_mars_Abeche.pdf', 331); +INSERT INTO [[schema]].t2f_travelattachment VALUES (196, 'Other', 'SC.docx', 'travels/[[schema]]/334/SC.docx', 334); +INSERT INTO [[schema]].t2f_travelattachment VALUES (197, 'Other', 'Your security clearance request is GRANTED.msg', 'travels/[[schema]]/337/Your_security_clearance_request_is_GRANTED.msg', 337); +INSERT INTO [[schema]].t2f_travelattachment VALUES (198, 'Other', 'R&R Mars.pdf', 'travels/[[schema]]/337/RR_Mars.pdf', 337); +INSERT INTO [[schema]].t2f_travelattachment VALUES (199, 'Other', 'PrintScreen cours obligatoire Nayalta.docx', 'travels/[[schema]]/334/PrintScreen_cours_obligatoire_Nayalta.docx', 334); +INSERT INTO [[schema]].t2f_travelattachment VALUES (200, 'Other', 'TDR spot checks 2016 rev-juillet 2019.doc', 'travels/[[schema]]/334/TDR_spot_checks_2016_rev-juillet_2019.doc', 334); +INSERT INTO [[schema]].t2f_travelattachment VALUES (201, 'Other', 'TDR spot checks 2016 rev-juillet 2019.doc', 'travels/[[schema]]/331/TDR_spot_checks_2016_rev-juillet_2019.doc', 331); +INSERT INTO [[schema]].t2f_travelattachment VALUES (203, 'Other', 'Cours obligatoires.docx', 'travels/[[schema]]/338/Cours_obligatoires.docx', 338); +INSERT INTO [[schema]].t2f_travelattachment VALUES (204, 'Other', 'Demande de voyage DJIKO.docx', 'travels/[[schema]]/281/Demande_de_voyage_DJIKO.docx', 281); +INSERT INTO [[schema]].t2f_travelattachment VALUES (205, 'Other', 'TDR mission Borkou.docx', 'travels/[[schema]]/281/TDR_mission_Borkou.docx', 281); +INSERT INTO [[schema]].t2f_travelattachment VALUES (206, 'Other', 'BSAFE Djiko.pdf', 'travels/[[schema]]/281/BSAFE_Djiko.pdf', 281); +INSERT INTO [[schema]].t2f_travelattachment VALUES (207, 'Other', 'Security clearence.pdf', 'travels/[[schema]]/281/Security_clearence.pdf', 281); +INSERT INTO [[schema]].t2f_travelattachment VALUES (208, 'Other', 'RapportMissionCollecteDonneesCDF.pdf', 'travels/[[schema]]/255/RapportMissionCollecteDonneesCDF.pdf', 255); +INSERT INTO [[schema]].t2f_travelattachment VALUES (209, 'Other', 'BSAFE CERTIFICATE (003).pdf', 'travels/[[schema]]/336/BSAFE__CERTIFICATE_003.pdf', 336); +INSERT INTO [[schema]].t2f_travelattachment VALUES (210, 'Other', 'Your security clearance request is GRANTED R&R 2020.msg', 'travels/[[schema]]/336/Your_security_clearance_request_is_GRANTED_RR_2020.msg', 336); +INSERT INTO [[schema]].t2f_travelattachment VALUES (211, 'Other', 'certificat UNDSS (002).jpg', 'travels/[[schema]]/336/certificat_UNDSS_002.jpg', 336); +INSERT INTO [[schema]].t2f_travelattachment VALUES (212, 'Other', 'CONGE 2020.pdf', 'travels/[[schema]]/336/CONGE_2020.pdf', 336); +INSERT INTO [[schema]].t2f_travelattachment VALUES (213, 'Other', 'BSAFE CERTIFICATE (003).pdf', 'travels/[[schema]]/333/BSAFE__CERTIFICATE_003.pdf', 333); +INSERT INTO [[schema]].t2f_travelattachment VALUES (214, 'Other', 'certificat UNDSS (002).jpg', 'travels/[[schema]]/333/certificat_UNDSS_002.jpg', 333); +INSERT INTO [[schema]].t2f_travelattachment VALUES (215, 'Other', 'Your security clearance request is GRANTED abeche 2020.msg', 'travels/[[schema]]/333/Your_security_clearance_request_is_GRANTED_abeche_2020.msg', 333); +INSERT INTO [[schema]].t2f_travelattachment VALUES (216, 'Other', 'TDR_mission A Abeche 04 03 20.docx', 'travels/[[schema]]/333/TDR_mission_A_Abeche_04_03_20.docx', 333); +INSERT INTO [[schema]].t2f_travelattachment VALUES (217, 'Other', 'Formations obligatoires.docx', 'travels/[[schema]]/266/Formations_obligatoires.docx', 266); +INSERT INTO [[schema]].t2f_travelattachment VALUES (218, 'Other', 'Your security clearance request is GRANTED.msg', 'travels/[[schema]]/266/Your_security_clearance_request_is_GRANTED.msg', 266); +INSERT INTO [[schema]].t2f_travelattachment VALUES (219, 'Other', 'TDR_mission A Abeche.docx', 'travels/[[schema]]/266/TDR_mission_A_Abeche.docx', 266); +INSERT INTO [[schema]].t2f_travelattachment VALUES (220, 'Other', 'Your security clearance request has been GRANTED.docx', 'travels/[[schema]]/335/Your_security_clearance_request_has_been_GRANTED.docx', 335); +INSERT INTO [[schema]].t2f_travelattachment VALUES (221, 'Other', 'Souley-BeSafe Certificate.pdf', 'travels/[[schema]]/335/Souley-BeSafe_Certificate.pdf', 335); +INSERT INTO [[schema]].t2f_travelattachment VALUES (222, 'Other', 'WBS.docx', 'travels/[[schema]]/335/WBS.docx', 335); +INSERT INTO [[schema]].t2f_travelattachment VALUES (223, 'Other', 'SC ETOOLS.pdf', 'travels/[[schema]]/342/SC_ETOOLS.pdf', 342); +INSERT INTO [[schema]].t2f_travelattachment VALUES (224, 'Other', 'Certificat BSITF II de Douro.pdf', 'travels/[[schema]]/283/Certificat_BSITF_II_de_Douro.pdf', 283); +INSERT INTO [[schema]].t2f_travelattachment VALUES (225, 'Other', 'Certificats obligatoires-Patrice Kosmate.zip', 'travels/[[schema]]/283/Certificats_obligatoires-Patrice_Kosmate.zip', 283); +INSERT INTO [[schema]].t2f_travelattachment VALUES (226, 'Other', 'Your security clearance request is GRANTED.msg', 'travels/[[schema]]/342/Your_security_clearance_request_is_GRANTED.msg', 342); +INSERT INTO [[schema]].t2f_travelattachment VALUES (227, 'Other', 'Demande de voyage+WBS.docx', 'travels/[[schema]]/342/Demande_de_voyageWBS.docx', 342); +INSERT INTO [[schema]].t2f_travelattachment VALUES (228, 'Other', 'Security Clearance 12032020.pdf', 'travels/[[schema]]/338/Security_Clearance_12032020_kjOHhvl.pdf', 338); +INSERT INTO [[schema]].t2f_travelattachment VALUES (229, 'Other', 'RAPPORT MISSION COLLECTE DES DONNEES MKO.pdf', 'travels/[[schema]]/256/RAPPORT_MISSION_COLLECTE_DES_DONNEES_MKO.pdf', 256); +INSERT INTO [[schema]].t2f_travelattachment VALUES (230, 'Other', 'RAPPORT MISSION COLLECTE DES DONNEES MKO.pdf', 'travels/[[schema]]/256/RAPPORT_MISSION_COLLECTE_DES_DONNEES_MKO_LD5LQ1e.pdf', 256); +INSERT INTO [[schema]].t2f_travelattachment VALUES (231, 'Other', 'TDR mission Borkou.docx', 'travels/[[schema]]/281/TDR_mission_Borkou_VmG7fff.docx', 281); +INSERT INTO [[schema]].t2f_travelattachment VALUES (232, 'Other', 'TDR mission Borkou.docx', 'travels/[[schema]]/281/TDR_mission_Borkou_JAQKeKW.docx', 281); +INSERT INTO [[schema]].t2f_travelattachment VALUES (233, 'Other', 'Tdr_Mission CERF_Bol_11-13March2020.docx', 'travels/[[schema]]/346/Tdr_Mission_CERF_Bol_11-13March2020.docx', 346); +INSERT INTO [[schema]].t2f_travelattachment VALUES (234, 'Other', 'security clerance.docx', 'travels/[[schema]]/286/security_clerance.docx', 286); +INSERT INTO [[schema]].t2f_travelattachment VALUES (235, 'Other', 'Fraud Awareness_Course certificate.pdf', 'travels/[[schema]]/286/Fraud_Awareness_Course_certificate.pdf', 286); +INSERT INTO [[schema]].t2f_travelattachment VALUES (236, 'Other', 'security clerance.docx', 'travels/[[schema]]/286/security_clerance_jpdbRIH.docx', 286); +INSERT INTO [[schema]].t2f_travelattachment VALUES (237, 'Other', 'Demande de Voyage Conge SECTO Nicolas.docx', 'travels/[[schema]]/351/Demande_de_Voyage_Conge_SECTO_Nicolas.docx', 351); +INSERT INTO [[schema]].t2f_travelattachment VALUES (238, 'Other', 'Your security clearance request is GRANTED.msg', 'travels/[[schema]]/351/Your_security_clearance_request_is_GRANTED.msg', 351); +INSERT INTO [[schema]].t2f_travelattachment VALUES (239, 'Other', 'Mes cours obligatoires - Copy.zip', 'travels/[[schema]]/351/Mes_cours_obligatoires_-_Copy.zip', 351); +INSERT INTO [[schema]].t2f_travelattachment VALUES (240, 'Other', 'Conge SECTO Nicolas.pdf', 'travels/[[schema]]/351/Conge_SECTO_Nicolas.pdf', 351); +INSERT INTO [[schema]].t2f_travelattachment VALUES (241, 'Cleareance Doc', 'SecClearence_Palazzo_11-13March2020.pdf', 'travels/[[schema]]/346/SecClearence_Palazzo_11-13March2020.pdf', 346); +INSERT INTO [[schema]].t2f_travelattachment VALUES (242, 'Other', 'Mandatory Courses.PNG', 'travels/[[schema]]/355/Mandatory_Courses.PNG', 355); +INSERT INTO [[schema]].t2f_travelattachment VALUES (243, 'Other', 'Your Medical Clearance Has Been Received.msg', 'travels/[[schema]]/355/Your_Medical_Clearance_Has_Been_Received.msg', 355); +INSERT INTO [[schema]].t2f_travelattachment VALUES (244, 'Other', 'ToE Makolet.pdf', 'travels/[[schema]]/355/ToE_Makolet.pdf', 355); +INSERT INTO [[schema]].t2f_travelattachment VALUES (245, 'Other', 'Your security clearance request is GRANTED.msg', 'travels/[[schema]]/356/Your_security_clearance_request_is_GRANTED.msg', 356); +INSERT INTO [[schema]].t2f_travelattachment VALUES (246, 'Other', 'Copy of Budget mission Formulaire Magrane et Amdam 2020.xlsx', 'travels/[[schema]]/358/Copy_of_Budget_mission_Formulaire_Magrane_et_Amdam_2020.xlsx', 358); +INSERT INTO [[schema]].t2f_travelattachment VALUES (247, 'Other', 'COURS SUIVIS SUR AGORA.docx', 'travels/[[schema]]/358/COURS_SUIVIS_SUR_AGORA.docx', 358); +INSERT INTO [[schema]].t2f_travelattachment VALUES (248, 'Other', 'Your security clearance request is GRANTED_Magrane-Amdam.msg', 'travels/[[schema]]/358/Your_security_clearance_request_is_GRANTED_Magrane-Amdam.msg', 358); +INSERT INTO [[schema]].t2f_travelattachment VALUES (249, 'Other', 'TDR Mission CPE Mars 2020.docx', 'travels/[[schema]]/358/TDR_Mission_CPE_Mars_2020.docx', 358); +INSERT INTO [[schema]].t2f_travelattachment VALUES (250, 'Other', 'Agora course print screen.docx', 'travels/[[schema]]/356/Agora_course_print_screen.docx', 356); +INSERT INTO [[schema]].t2f_travelattachment VALUES (251, 'Other', 'Leave balance as of 09 March 2020.JPG', 'travels/[[schema]]/356/Leave_balance_as_of_09_March_2020.JPG', 356); +INSERT INTO [[schema]].t2f_travelattachment VALUES (252, 'Other', 'Certificat BSAFE.pdf', 'travels/[[schema]]/359/Certificat_BSAFE.pdf', 359); +INSERT INTO [[schema]].t2f_travelattachment VALUES (253, 'Other', 'Certificat BSAFE.pdf', 'travels/[[schema]]/359/Certificat_BSAFE_eWt561O.pdf', 359); +INSERT INTO [[schema]].t2f_travelattachment VALUES (254, 'Other', 'Certificats exiges.zip', 'travels/[[schema]]/362/Certificats_exiges.zip', 362); +INSERT INTO [[schema]].t2f_travelattachment VALUES (257, 'Other', 'Your security clearance request has been submitted_Mission conjointe.msg', 'travels/[[schema]]/363/Your_security_clearance_request_has_been_submitted_Mission_conjointe.msg', 363); +INSERT INTO [[schema]].t2f_travelattachment VALUES (256, 'Other', 'Security Clearence _Brahim Issakha Yakhoub_06012020.pdf', 'travels/[[schema]]/362/Security_Clearence__Brahim_Issakha_Yakhoub_06012020.pdf', 362); +INSERT INTO [[schema]].t2f_travelattachment VALUES (258, 'Other', 'TDR_mission zone de convergence.docx', 'travels/[[schema]]/363/TDR_mission_zone_de_convergence.docx', 363); +INSERT INTO [[schema]].t2f_travelattachment VALUES (259, 'Other', 'TDR_mission zone de convergence.docx', 'travels/[[schema]]/363/TDR_mission_zone_de_convergence_EhSfajx.docx', 363); +INSERT INTO [[schema]].t2f_travelattachment VALUES (260, 'Other', 'COURS SUIVIS SUR AGORA.docx', 'travels/[[schema]]/363/COURS_SUIVIS_SUR_AGORA.docx', 363); +INSERT INTO [[schema]].t2f_travelattachment VALUES (261, 'Other', 'Your security clearance request has been submitted_Mission conjointe.msg', 'travels/[[schema]]/363/Your_security_clearance_request_has_been_submitted_Mission_conjointe_jbaoO7l.msg', 363); +INSERT INTO [[schema]].t2f_travelattachment VALUES (262, 'Other', 'Your security clearance request has been submitted_Mission conjointe.msg', 'travels/[[schema]]/363/Your_security_clearance_request_has_been_submitted_Mission_conjointe_bwlp8yK.msg', 363); +INSERT INTO [[schema]].t2f_travelattachment VALUES (263, 'Other', 'COURS SUIVIS SUR AGORA.docx', 'travels/[[schema]]/363/COURS_SUIVIS_SUR_AGORA_xYg3cik.docx', 363); +INSERT INTO [[schema]].t2f_travelattachment VALUES (264, 'Other', 'Security clearance mission conjointe zone de convergence.docx', 'travels/[[schema]]/365/Security_clearance_mission_conjointe_zone_de_convergence.docx', 365); +INSERT INTO [[schema]].t2f_travelattachment VALUES (265, 'Other', 'Grille d''evaluation dans les zones de convergences avec ATPC.xlsx', 'travels/[[schema]]/365/Grille_devaluation_dans_les_zones_de_convergences_avec_ATPC.xlsx', 365); +INSERT INTO [[schema]].t2f_travelattachment VALUES (266, 'Other', '7 certificats Passalet.pdf', 'travels/[[schema]]/365/7_certificats_Passalet.pdf', 365); +INSERT INTO [[schema]].t2f_travelattachment VALUES (267, 'Other', 'Your security clearance request has been submitted.msg', 'travels/[[schema]]/357/Your_security_clearance_request_has_been_submitted.msg', 357); +INSERT INTO [[schema]].t2f_travelattachment VALUES (268, 'Other', 'Capture Formation Edixela.png', 'travels/[[schema]]/357/Capture_Formation_Edixela.png', 357); +INSERT INTO [[schema]].t2f_travelattachment VALUES (269, 'Other', 'Tdr_Mission KOICA_11 March2020.docx', 'travels/[[schema]]/366/Tdr_Mission_KOICA_11_March2020.docx', 366); +INSERT INTO [[schema]].t2f_travelattachment VALUES (270, 'Other', 'SecClearence_Palazzo_11032020.pdf', 'travels/[[schema]]/366/SecClearence_Palazzo_11032020.pdf', 366); +INSERT INTO [[schema]].t2f_travelattachment VALUES (271, 'Other', 'TDRs Revue de Gestion 2019 UNICEF T[[schema]].docx', 'travels/[[schema]]/357/TDRs_Revue_de_Gestion_2019_UNICEF_T[[schema]].docx', 357); +INSERT INTO [[schema]].t2f_travelattachment VALUES (272, 'Other', 'TDR_mission zone de convergence.docx', 'travels/[[schema]]/367/TDR_mission_zone_de_convergence.docx', 367); +INSERT INTO [[schema]].t2f_travelattachment VALUES (273, 'Other', 'Security clearence.docx', 'travels/[[schema]]/367/Security_clearence.docx', 367); +INSERT INTO [[schema]].t2f_travelattachment VALUES (274, 'Other', 'Attestation de formation cours de securite BESAFE Dramon.pdf', 'travels/[[schema]]/367/Attestation_de_formation_cours_de_securite_BESAFE_Dramon.pdf', 367); +INSERT INTO [[schema]].t2f_travelattachment VALUES (275, 'Other', 'Security Clearence _Mission convergence.docx', 'travels/[[schema]]/364/Security_Clearence__Mission_convergence.docx', 364); +INSERT INTO [[schema]].t2f_travelattachment VALUES (276, 'Other', 'TDR_mission zone de convergence (002).docx', 'travels/[[schema]]/364/TDR_mission_zone_de_convergence_002.docx', 364); +INSERT INTO [[schema]].t2f_travelattachment VALUES (277, 'Other', 'BSAFE_Brahim Issakha Yakhoub Certificate.pdf', 'travels/[[schema]]/364/BSAFE_Brahim_Issakha_Yakhoub_Certificate.pdf', 364); +INSERT INTO [[schema]].t2f_travelattachment VALUES (278, 'Other', 'Security Clearence _Mission convergence.docx', 'travels/[[schema]]/364/Security_Clearence__Mission_convergence_s6LgMHn.docx', 364); +INSERT INTO [[schema]].t2f_travelattachment VALUES (279, 'Other', 'TDR_mission zone de convergence (002).docx', 'travels/[[schema]]/364/TDR_mission_zone_de_convergence_002_vXdwzc0.docx', 364); +INSERT INTO [[schema]].t2f_travelattachment VALUES (280, 'Other', 'BSAFE_Brahim Issakha Yakhoub Certificate.pdf', 'travels/[[schema]]/364/BSAFE_Brahim_Issakha_Yakhoub_Certificate_zn4Mqtm.pdf', 364); +INSERT INTO [[schema]].t2f_travelattachment VALUES (281, 'Other', 'Fraude awarness09052019.pdf', 'travels/[[schema]]/368/Fraude_awarness09052019.pdf', 368); +INSERT INTO [[schema]].t2f_travelattachment VALUES (282, 'Other', 'Éthique et intégrité à l’UNICEF_Attestation de formation - Éthique et intégrité à l’UNICEF.pdf', 'travels/[[schema]]/368/Éthique_et_intégrité_à_lUNICEF_Attestation_de_formation_-_Éthique_et_intégrité_à_lUNICEF.pdf', 368); +INSERT INTO [[schema]].t2f_travelattachment VALUES (283, 'Other', 'certificate UN Care HIV juin.pdf', 'travels/[[schema]]/368/certificate_UN_Care_HIV_juin.pdf', 368); +INSERT INTO [[schema]].t2f_travelattachment VALUES (284, 'Other', 'Fraude awarness09052019.pdf', 'travels/[[schema]]/368/Fraude_awarness09052019_V96EVLf.pdf', 368); +INSERT INTO [[schema]].t2f_travelattachment VALUES (285, 'Other', 'Éthique et intégrité à l’UNICEF_Attestation de formation - Éthique et intégrité à l’UNICEF.pdf', 'travels/[[schema]]/368/Éthique_et_intégrité_à_lUNICEF_Attestation_de_formation_-_Éthique_et_intégrité_à_lUNICEF_dW4Ybwz.pdf', 368); +INSERT INTO [[schema]].t2f_travelattachment VALUES (286, 'Other', 'certificate UN Care HIV juin.pdf', 'travels/[[schema]]/368/certificate_UN_Care_HIV_juin_pTbJpoN.pdf', 368); +INSERT INTO [[schema]].t2f_travelattachment VALUES (287, 'Other', 'Certificate HACT.pdf', 'travels/[[schema]]/368/Certificate_HACT.pdf', 368); +INSERT INTO [[schema]].t2f_travelattachment VALUES (288, 'Other', 'Certificat Fraud Awareness9052019.pdf', 'travels/[[schema]]/368/Certificat_Fraud_Awareness9052019.pdf', 368); +INSERT INTO [[schema]].t2f_travelattachment VALUES (289, 'Other', 'BSAFE.pdf', 'travels/[[schema]]/368/BSAFE.pdf', 368); +INSERT INTO [[schema]].t2f_travelattachment VALUES (290, 'Other', 'Attestation de formation sur prevention de exploitation et abus sexuel04022019.pdf', 'travels/[[schema]]/368/Attestation_de_formation_sur_prevention_de_exploitation_et_abus_sexuel04022019.pdf', 368); +INSERT INTO [[schema]].t2f_travelattachment VALUES (291, 'Other', 'TDR_mission Ouaddai Mars 2020Revu.pdf', 'travels/[[schema]]/368/TDR_mission__Ouaddai_Mars_2020Revu.pdf', 368); +INSERT INTO [[schema]].t2f_travelattachment VALUES (292, 'Other', 'TdR_ Mission preparatoire diagnostics participatifs multisectoriels _KFW 3 rvsd.docx', 'travels/[[schema]]/369/TdR__Mission_preparatoire__diagnostics_participatifs_multisectoriels__KFW_3_rvsd.docx', 369); +INSERT INTO [[schema]].t2f_travelattachment VALUES (293, 'Other', 'TDR_mission zone de convergence (002).docx', 'travels/[[schema]]/370/TDR_mission_zone_de_convergence_002.docx', 370); +INSERT INTO [[schema]].t2f_travelattachment VALUES (294, 'Other', 'TDR_mission zone de convergence (002).docx', 'travels/[[schema]]/370/TDR_mission_zone_de_convergence_002_ubKEsfD.docx', 370); +INSERT INTO [[schema]].t2f_travelattachment VALUES (295, 'Other', 'Security Clearence _Mission convergence.docx', 'travels/[[schema]]/370/Security_Clearence__Mission_convergence.docx', 370); +INSERT INTO [[schema]].t2f_travelattachment VALUES (296, 'Other', 'Certificat BSAFE_MOUSSA DJOM.pdf', 'travels/[[schema]]/370/Certificat_BSAFE_MOUSSA_DJOM.pdf', 370); +INSERT INTO [[schema]].t2f_travelattachment VALUES (297, 'Other', 'Certificat BSAFE_MOUSSA DJOM.pdf', 'travels/[[schema]]/370/Certificat_BSAFE_MOUSSA_DJOM_5zqUq58.pdf', 370); +INSERT INTO [[schema]].t2f_travelattachment VALUES (298, 'Other', 'Capture d''ecran des coursBalto.docx', 'travels/[[schema]]/372/Capture_decran_des_coursBalto.docx', 372); +INSERT INTO [[schema]].t2f_travelattachment VALUES (299, 'Other', 'TDRs Revue de Gestion 2019 UNICEF T[[schema]].docx', 'travels/[[schema]]/372/TDRs_Revue_de_Gestion_2019_UNICEF_T[[schema]].docx', 372); +INSERT INTO [[schema]].t2f_travelattachment VALUES (300, 'Other', 'Demand de conges signe_Joanne 11.03.2020.pdf', 'travels/[[schema]]/356/Demand_de_conges_signe_Joanne_11.03.2020.pdf', 356); +INSERT INTO [[schema]].t2f_travelattachment VALUES (301, 'Other', 'Demand de conges signe_Joanne 11.03.2020.pdf', 'travels/[[schema]]/356/Demand_de_conges_signe_Joanne_11.03.2020_7ziMpqK.pdf', 356); +INSERT INTO [[schema]].t2f_travelattachment VALUES (302, 'Other', 'ReportMission_3-5March2020.pdf', 'travels/[[schema]]/303/ReportMission_3-5March2020.pdf', 303); +INSERT INTO [[schema]].t2f_travelattachment VALUES (303, 'Other', 'Your security clearance request is GRANTED_MHamid & Morban_17 au 21.03.2020.msg', 'travels/[[schema]]/371/Your_security_clearance_request_is_GRANTED_MHamid__Morban_17_au_21.03.2020.msg', 371); +INSERT INTO [[schema]].t2f_travelattachment VALUES (304, 'Other', 'My mandatory courses_Morban.pdf', 'travels/[[schema]]/371/My_mandatory_courses_Morban.pdf', 371); +INSERT INTO [[schema]].t2f_travelattachment VALUES (305, 'Other', 'SecClearence_Palazzo_12032020.pdf', 'travels/[[schema]]/366/SecClearence_Palazzo_12032020.pdf', 366); +INSERT INTO [[schema]].t2f_travelattachment VALUES (306, 'Other', 'Formation obligatoire-JMG.ZIP', 'travels/[[schema]]/381/Formation_obligatoire-JMG.ZIP', 381); +INSERT INTO [[schema]].t2f_travelattachment VALUES (307, 'Other', 'Your security clearance request is GRANTED.msg', 'travels/[[schema]]/381/Your_security_clearance_request_is_GRANTED.msg', 381); +INSERT INTO [[schema]].t2f_travelattachment VALUES (308, 'Other', 'Jean Michel 11.03.2020.pdf', 'travels/[[schema]]/381/Jean_Michel_11.03.2020.pdf', 381); +INSERT INTO [[schema]].t2f_travelattachment VALUES (309, 'Other', 'TdR_ Mission preparatoire diagnostics participatifs multisectoriels _KFW 3 rvsd.docx', 'travels/[[schema]]/377/TdR__Mission_preparatoire__diagnostics_participatifs_multisectoriels__KFW_3_rvsd.docx', 377); +INSERT INTO [[schema]].t2f_travelattachment VALUES (310, 'Other', 'Your security clearance request is GRANTED_Mht Nour.msg', 'travels/[[schema]]/377/Your_security_clearance_request_is_GRANTED_Mht_Nour.msg', 377); +INSERT INTO [[schema]].t2f_travelattachment VALUES (311, 'Other', 'TDR Atelier GFF.pdf', 'travels/[[schema]]/384/TDR_Atelier_GFF.pdf', 384); +INSERT INTO [[schema]].t2f_travelattachment VALUES (312, 'Other', 'Cours obligatoire_Mahamat Nour Mahamat.pdf', 'travels/[[schema]]/377/Cours_obligatoire_Mahamat_Nour_Mahamat.pdf', 377); +INSERT INTO [[schema]].t2f_travelattachment VALUES (313, 'Other', 'TdR_ Mission preparatoire diagnostics participatifs multisectoriels _KFW 3 rvsd.docx', 'travels/[[schema]]/371/TdR__Mission_preparatoire__diagnostics_participatifs_multisectoriels__KFW_3_rvsd.docx', 371); +INSERT INTO [[schema]].t2f_travelattachment VALUES (314, 'Other', 'Mandatories Training.PNG', 'travels/[[schema]]/302/Mandatories_Training.PNG', 302); +INSERT INTO [[schema]].t2f_travelattachment VALUES (315, 'Other', 'Mandatory courses completed.docx', 'travels/[[schema]]/386/Mandatory_courses_completed.docx', 386); +INSERT INTO [[schema]].t2f_travelattachment VALUES (316, 'Other', 'Security Clearance Etienne RnR Mars 2020.pdf', 'travels/[[schema]]/386/Security_Clearance_Etienne_RnR_Mars_2020.pdf', 386); +INSERT INTO [[schema]].t2f_travelattachment VALUES (317, 'Other', 'DEMANDE DE VOYAGE convergence.docx', 'travels/[[schema]]/387/DEMANDE_DE_VOYAGE_convergence.docx', 387); +INSERT INTO [[schema]].t2f_travelattachment VALUES (318, 'Other', 'TDR_mission zone de convergence.docx', 'travels/[[schema]]/387/TDR_mission_zone_de_convergence.docx', 387); +INSERT INTO [[schema]].t2f_travelattachment VALUES (319, 'Other', 'DEMANDE DE VOYAGE convergence.docx', 'travels/[[schema]]/387/DEMANDE_DE_VOYAGE_convergence_PAz7C6e.docx', 387); +INSERT INTO [[schema]].t2f_travelattachment VALUES (320, 'Other', 'TDR_mission zone de convergence.docx', 'travels/[[schema]]/387/TDR_mission_zone_de_convergence_DZtOKsl.docx', 387); +INSERT INTO [[schema]].t2f_travelattachment VALUES (321, 'Other', 'Certificat BESAFE Allarassem.pdf', 'travels/[[schema]]/387/Certificat_BESAFE_Allarassem.pdf', 387); +INSERT INTO [[schema]].t2f_travelattachment VALUES (328, 'Other', 'Demande de voyage.docx', 'travels/[[schema]]/391/Demande_de_voyage.docx', 391); +INSERT INTO [[schema]].t2f_travelattachment VALUES (323, 'Other', 'Your security clearance request has been submitted.msg', 'travels/[[schema]]/389/Your_security_clearance_request_has_been_submitted.msg', 389); +INSERT INTO [[schema]].t2f_travelattachment VALUES (324, 'Other', 'FW Reunion de suivi des activites des Accords de Partenariat_09.01.2020.msg', 'travels/[[schema]]/389/FW_Reunion_de_suivi_des_activites_des_Accords_de_Partenariat_09.01.2020.msg', 389); +INSERT INTO [[schema]].t2f_travelattachment VALUES (325, 'Other', 'Capture. formation obligatoire RH.PNG', 'travels/[[schema]]/389/Capture._formation_obligatoire_RH_vOJg7iL.PNG', 389); +INSERT INTO [[schema]].t2f_travelattachment VALUES (326, 'Other', 'Your security clearance request has been submitted.msg', 'travels/[[schema]]/389/Your_security_clearance_request_has_been_submitted_qcTCWPG.msg', 389); +INSERT INTO [[schema]].t2f_travelattachment VALUES (327, 'Other', 'FW Reunion de suivi des activites des Accords de Partenariat_09.01.2020.msg', 'travels/[[schema]]/389/FW_Reunion_de_suivi_des_activites_des_Accords_de_Partenariat_09.01.2020_okc1QND.msg', 389); +INSERT INTO [[schema]].t2f_travelattachment VALUES (329, 'Other', 'BSAFE Askemngar.PDF', 'travels/[[schema]]/391/BSAFE_Askemngar.PDF', 391); +INSERT INTO [[schema]].t2f_travelattachment VALUES (330, 'Other', 'TDR Mission participation a la reunion a N''Djamena.docx', 'travels/[[schema]]/391/TDR_Mission_participation_a_la_reunion_a_NDjamena.docx', 391); +INSERT INTO [[schema]].t2f_travelattachment VALUES (331, 'Other', 'Your security clearance request is GRANTED.msg', 'travels/[[schema]]/391/Your_security_clearance_request_is_GRANTED.msg', 391); +INSERT INTO [[schema]].t2f_travelattachment VALUES (332, 'Other', 'Non Grant WBS .docx', 'travels/[[schema]]/391/Non_Grant_WBS_.docx', 391); +INSERT INTO [[schema]].t2f_travelattachment VALUES (333, 'Other', 'Capture Formation Edixela.png', 'travels/[[schema]]/392/Capture_Formation_Edixela.png', 392); +INSERT INTO [[schema]].t2f_travelattachment VALUES (334, 'Other', 'TDRs Formation CIP prestataires de santé Mongo, Ati et Amtiman.docx', 'travels/[[schema]]/394/TDRs_Formation_CIP_prestataires_de_santé_Mongo_Ati_et_Amtiman.docx', 394); +INSERT INTO [[schema]].t2f_travelattachment VALUES (335, 'Other', 'TDR mission appui en C4D aux bureaux des zones_.docx', 'travels/[[schema]]/394/TDR_mission_appui_en_C4D_aux_bureaux_des_zones_.docx', 394); +INSERT INTO [[schema]].t2f_travelattachment VALUES (336, 'Other', 'Check list Verif completude.pdf', 'travels/[[schema]]/218/Check_list_Verif_completude.pdf', 218); +INSERT INTO [[schema]].t2f_travelattachment VALUES (337, 'Other', 'Check list Verif completude.pdf', 'travels/[[schema]]/218/Check_list_Verif_completude_6tZBTxO.pdf', 218); +INSERT INTO [[schema]].t2f_travelattachment VALUES (338, 'Other', 'medical clearence periodique.pdf', 'travels/[[schema]]/394/medical_clearence_periodique.pdf', 394); +INSERT INTO [[schema]].t2f_travelattachment VALUES (339, 'Other', 'Medical clearence du 22 mai 2017.pdf', 'travels/[[schema]]/394/Medical_clearence_du_22_mai_2017.pdf', 394); +INSERT INTO [[schema]].t2f_travelattachment VALUES (340, 'Other', 'certificat vih sida.pdf', 'travels/[[schema]]/394/certificat_vih_sida.pdf', 394); +INSERT INTO [[schema]].t2f_travelattachment VALUES (341, 'Other', 'Certificat Ethique UNICEF.pdf', 'travels/[[schema]]/394/Certificat_Ethique_UNICEF.pdf', 394); +INSERT INTO [[schema]].t2f_travelattachment VALUES (342, 'Other', 'Certificat de reussite NU en matiere de droits de l''hoe.PNG', 'travels/[[schema]]/394/Certificat_de_reussite_NU_en_matiere_de_droits_de_lhoe.PNG', 394); +INSERT INTO [[schema]].t2f_travelattachment VALUES (343, 'Other', 'certifica securite.pdf', 'travels/[[schema]]/394/certifica_securite.pdf', 394); +INSERT INTO [[schema]].t2f_travelattachment VALUES (344, 'Other', 'Your security clearance request is GRANTED Mongo et Ati.msg', 'travels/[[schema]]/394/Your_security_clearance_request_is_GRANTED_Mongo_et_Ati.msg', 394); +INSERT INTO [[schema]].t2f_travelattachment VALUES (345, 'Other', 'Antonio RR Mars.pdf', 'travels/[[schema]]/388/Antonio_RR_Mars.pdf', 388); +INSERT INTO [[schema]].t2f_travelattachment VALUES (346, 'Email Correspondence', 'Your security clearance request is GRANTED.msg', 'travels/[[schema]]/396/Your_security_clearance_request_is_GRANTED.msg', 396); +INSERT INTO [[schema]].t2f_travelattachment VALUES (347, 'Ticket Doc', 'BSAFE certificate-clomotey.pdf', 'travels/[[schema]]/396/BSAFE_certificate-clomotey.pdf', 396); +INSERT INTO [[schema]].t2f_travelattachment VALUES (348, 'Other', 'Agora Courses.pdf', 'travels/[[schema]]/396/Agora_Courses.pdf', 396); +INSERT INTO [[schema]].t2f_travelattachment VALUES (349, 'Ticket Doc', 'TDR_mission Abeche du 16-02-2020 au 17-02-2020.docx', 'travels/[[schema]]/396/TDR_mission_Abeche_du_16-02-2020_au_17-02-2020.docx', 396); +INSERT INTO [[schema]].t2f_travelattachment VALUES (350, 'Other', 'Capture cours obligatoire Alfred.PNG', 'travels/[[schema]]/320/Capture_cours_obligatoire_Alfred.PNG', 320); +INSERT INTO [[schema]].t2f_travelattachment VALUES (351, 'Other', 'Security clearence.pdf', 'travels/[[schema]]/320/Security_clearence.pdf', 320); +INSERT INTO [[schema]].t2f_travelattachment VALUES (352, 'Other', 'TDR_mission Valide au CMT du 16-03-2020_JMG.docx', 'travels/[[schema]]/320/TDR_mission__Valide_au_CMT_du_16-03-2020_JMG.docx', 320); +INSERT INTO [[schema]].t2f_travelattachment VALUES (353, 'Other', 'Capture 7 cours obligatoires_Djimasnagr Manokobaye.PNG', 'travels/[[schema]]/397/Capture_7_cours_obligatoires_Djimasnagr_Manokobaye.PNG', 397); +INSERT INTO [[schema]].t2f_travelattachment VALUES (354, 'Other', 'Security Clearence 13032020.docx', 'travels/[[schema]]/398/Security_Clearence_13032020.docx', 398); +INSERT INTO [[schema]].t2f_travelattachment VALUES (355, 'Other', 'TDR_Reunion avec les Partenaires OSC_vf.docx', 'travels/[[schema]]/398/TDR_Reunion_avec_les_Partenaires_OSC_vf.docx', 398); +INSERT INTO [[schema]].t2f_travelattachment VALUES (356, 'Other', 'Attestation de formation cours de securite BESAFE Dramon.pdf', 'travels/[[schema]]/398/Attestation_de_formation_cours_de_securite_BESAFE_Dramon.pdf', 398); +INSERT INTO [[schema]].t2f_travelattachment VALUES (357, 'Other', 'Your security clearance request has been submitted.msg', 'travels/[[schema]]/395/Your_security_clearance_request_has_been_submitted.msg', 395); +INSERT INTO [[schema]].t2f_travelattachment VALUES (358, 'Other', 'Capture eloi.PNG', 'travels/[[schema]]/395/Capture_eloi.PNG', 395); +INSERT INTO [[schema]].t2f_travelattachment VALUES (359, 'Other', 'Demande conge Lembo etienne 13.03.2020 Approuvee.pdf', 'travels/[[schema]]/386/Demande_conge_Lembo_etienne_13.03.2020_Approuvee.pdf', 386); +INSERT INTO [[schema]].t2f_travelattachment VALUES (360, 'Other', 'This email is an automated response from the TRIP system.docx', 'travels/[[schema]]/403/This_email_is_an_automated_response_from_the_TRIP_system.docx', 403); +INSERT INTO [[schema]].t2f_travelattachment VALUES (361, 'Other', 'Capture 7 cours obligatoires_Djimasnagr Manokobaye.PNG', 'travels/[[schema]]/403/Capture_7_cours_obligatoires_Djimasnagr_Manokobaye.PNG', 403); +INSERT INTO [[schema]].t2f_travelattachment VALUES (362, 'Other', 'VP Intersos 2 VF.pdf', 'travels/[[schema]]/293/VP_Intersos_2_VF.pdf', 293); +INSERT INTO [[schema]].t2f_travelattachment VALUES (363, 'Other', 'PRU-RRC RAPPORT.pdf', 'travels/[[schema]]/165/PRU-RRC_RAPPORT.pdf', 165); +INSERT INTO [[schema]].t2f_travelattachment VALUES (364, 'Other', 'TDR RRC et PRU T[[schema]] (003).pdf', 'travels/[[schema]]/165/TDR_RRC_et_PRU__T[[schema]]_003.pdf', 165); +INSERT INTO [[schema]].t2f_travelattachment VALUES (365, 'Other', 'TdR_ReunPostCholera25.03 Fr 03.03.20-rvsd Mohamed_16 mars 20.docx', 'travels/[[schema]]/354/TdR_ReunPostCholera25.03_Fr_03.03.20-rvsd_Mohamed_16_mars_20.docx', 354); +INSERT INTO [[schema]].t2f_travelattachment VALUES (366, 'Other', 'Security Clearance Mara.pdf', 'travels/[[schema]]/354/Security_Clearance_Mara.pdf', 354); +INSERT INTO [[schema]].t2f_travelattachment VALUES (367, 'Other', 'TdR_ReunPostCholera25.03 Fr 03.03.20-rvsd Mohamed_16 mars 20.docx', 'travels/[[schema]]/354/TdR_ReunPostCholera25.03_Fr_03.03.20-rvsd_Mohamed_16_mars_20_f5A2GeD.docx', 354); +INSERT INTO [[schema]].t2f_travelattachment VALUES (368, 'Other', 'Security Clearance Mara.pdf', 'travels/[[schema]]/354/Security_Clearance_Mara_mUarkZc.pdf', 354); +INSERT INTO [[schema]].t2f_travelattachment VALUES (369, 'Other', 'Mandatory courses.zip', 'travels/[[schema]]/354/Mandatory_courses.zip', 354); +INSERT INTO [[schema]].t2f_travelattachment VALUES (370, 'Other', 'Mandatory courses.zip', 'travels/[[schema]]/354/Mandatory_courses_oJCJqAz.zip', 354); +INSERT INTO [[schema]].t2f_travelattachment VALUES (371, 'Other', 'Mandatory courses.zip', 'travels/[[schema]]/341/Mandatory_courses.zip', 341); +INSERT INTO [[schema]].t2f_travelattachment VALUES (372, 'Other', 'TdR_ReunPostCholera25.03 Fr 03.03.20-rvsd Mohamed_16 mars 20.docx', 'travels/[[schema]]/354/TdR_ReunPostCholera25.03_Fr_03.03.20-rvsd_Mohamed_16_mars_20_QG3dpLM.docx', 354); +INSERT INTO [[schema]].t2f_travelattachment VALUES (373, 'Other', 'Security Clearance Mara.pdf', 'travels/[[schema]]/354/Security_Clearance_Mara_I0H7d2P.pdf', 354); +INSERT INTO [[schema]].t2f_travelattachment VALUES (374, 'Other', 'TdR_ReunPostCholera25.03 Fr 03.03.20-rvsd Mohamed_16 mars 20.docx', 'travels/[[schema]]/341/TdR_ReunPostCholera25.03_Fr_03.03.20-rvsd_Mohamed_16_mars_20.docx', 341); +INSERT INTO [[schema]].t2f_travelattachment VALUES (375, 'Other', 'Mandatory courses.zip', 'travels/[[schema]]/341/Mandatory_courses_MrmZRp9.zip', 341); +INSERT INTO [[schema]].t2f_travelattachment VALUES (376, 'Other', 'Mission Report_Koica_12March2020.docx', 'travels/[[schema]]/366/Mission_Report_Koica_12March2020.docx', 366); +INSERT INTO [[schema]].t2f_travelattachment VALUES (377, 'Other', 'VP Lai.pdf', 'travels/[[schema]]/8/VP_Lai.pdf', 8); +INSERT INTO [[schema]].t2f_travelattachment VALUES (378, 'Other', 'Report_mission Formation etools.docx', 'travels/[[schema]]/73/Report_mission_Formation_etools.docx', 73); +INSERT INTO [[schema]].t2f_travelattachment VALUES (379, 'Other', 'Rapport distribution de kits_Bokoro.pdf', 'travels/[[schema]]/92/Rapport_distribution_de_kits_Bokoro.pdf', 92); +INSERT INTO [[schema]].t2f_travelattachment VALUES (380, 'Other', 'Your security clearance request is GRANTED March 2020.msg', 'travels/[[schema]]/383/Your_security_clearance_request_is_GRANTED_March_2020.msg', 383); +INSERT INTO [[schema]].t2f_travelattachment VALUES (381, 'Other', 'Education_Rapport_Revue approfondie 2017-2019_final_2019-11-29_Clean.docx', 'travels/[[schema]]/157/Education_Rapport_Revue_approfondie_2017-2019_final_2019-11-29_Clean.docx', 157); +INSERT INTO [[schema]].t2f_travelattachment VALUES (382, 'Other', 'Print Screen mandatory Training RBM.docx', 'travels/[[schema]]/383/Print_Screen_mandatory_Training_RBM.docx', 383); +INSERT INTO [[schema]].t2f_travelattachment VALUES (383, 'Other', 'Signed leave request RBM March 2020.pdf', 'travels/[[schema]]/383/Signed_leave_request_RBM_March_2020.pdf', 383); +INSERT INTO [[schema]].t2f_travelattachment VALUES (384, 'Other', 'JUSTIN-BSAFE Certificate.pdf', 'travels/[[schema]]/406/JUSTIN-BSAFE_Certificate.pdf', 406); +INSERT INTO [[schema]].t2f_travelattachment VALUES (385, 'Other', 'Security Clearance.docx', 'travels/[[schema]]/406/Security_Clearance.docx', 406); +INSERT INTO [[schema]].t2f_travelattachment VALUES (386, 'Other', 'TDR_Reunion avec les Partenaires OSC_vf.docx', 'travels/[[schema]]/406/TDR_Reunion_avec_les_Partenaires_OSC_vf.docx', 406); +INSERT INTO [[schema]].t2f_travelattachment VALUES (387, 'Other', 'Ligne Budgetaire.docx', 'travels/[[schema]]/406/Ligne_Budgetaire.docx', 406); +INSERT INTO [[schema]].t2f_travelattachment VALUES (388, 'Other', 'TDR_mission_appui_en_C4D_aux_bureaux_des_zones_.docx', 'travels/[[schema]]/407/TDR_mission_appui_en_C4D_aux_bureaux_des_zones_.docx', 407); +INSERT INTO [[schema]].t2f_travelattachment VALUES (389, 'Other', 'TDRs_Formation_CIP_prestataires_de_santé_Mongo_Ati_et_Amtiman.docx', 'travels/[[schema]]/407/TDRs_Formation_CIP_prestataires_de_santé_Mongo_Ati_et_Amtiman.docx', 407); +INSERT INTO [[schema]].t2f_travelattachment VALUES (390, 'Cleareance Doc', 'Security clearance Bessi.pdf', 'travels/[[schema]]/407/Security_clearance_Bessi.pdf', 407); +INSERT INTO [[schema]].t2f_travelattachment VALUES (391, 'Other', 'TdR mission au sud_suivi recommandations Août 2018.docx', 'travels/[[schema]]/16/TdR_mission_au_sud_suivi_recommandations_Août_2018.docx', 16); +INSERT INTO [[schema]].t2f_travelattachment VALUES (392, 'Other', 'Annexe 4 gallery des autres photos.docx', 'travels/[[schema]]/16/Annexe_4_gallery_des_autres_photos.docx', 16); +INSERT INTO [[schema]].t2f_travelattachment VALUES (393, 'Other', 'Annexe 3 photos des travaux d''INTERSOS.docx', 'travels/[[schema]]/16/Annexe_3_photos_des_travaux_dINTERSOS.docx', 16); +INSERT INTO [[schema]].t2f_travelattachment VALUES (394, 'Other', 'Annexe 2 photos des travaux de SECADEV.docx', 'travels/[[schema]]/16/Annexe_2_photos_des_travaux_de_SECADEV.docx', 16); +INSERT INTO [[schema]].t2f_travelattachment VALUES (395, 'Other', 'Annexe 1 photos des travaux d''IHDL 1.docx', 'travels/[[schema]]/16/Annexe_1_photos_des_travaux_dIHDL_1.docx', 16); +INSERT INTO [[schema]].t2f_travelattachment VALUES (396, 'Other', 'Rapport de mission au sud-suivi des recommandations d''aout 2018.pdf', 'travels/[[schema]]/16/Rapport_de_mission_au_sud-suivi_des_recommandations_daout_2018.pdf', 16); +INSERT INTO [[schema]].t2f_travelattachment VALUES (397, 'Other', 'Deux Certificat de Securite Abel.pdf', 'travels/[[schema]]/408/Deux_Certificat_de_Securite_Abel.pdf', 408); +INSERT INTO [[schema]].t2f_travelattachment VALUES (398, 'Other', 'Your security clearance request is GRANTED.msg', 'travels/[[schema]]/408/Your_security_clearance_request_is_GRANTED.msg', 408); +INSERT INTO [[schema]].t2f_travelattachment VALUES (399, 'Other', 'Cours Obligatoires Abel.pdf', 'travels/[[schema]]/408/Cours_Obligatoires_Abel.pdf', 408); +INSERT INTO [[schema]].t2f_travelattachment VALUES (444, 'Other', 'Rapport Mora.pdf', 'travels/[[schema]]/342/Rapport_Mora.pdf', 342); +INSERT INTO [[schema]].t2f_travelattachment VALUES (401, 'Other', 'SC Atelier de Mara.odt', 'travels/[[schema]]/411/SC_Atelier_de_Mara.odt', 411); +INSERT INTO [[schema]].t2f_travelattachment VALUES (402, 'Other', 'TDR_mission Atelier GFF a Mara 17 au 21 mars 2020.docx', 'travels/[[schema]]/411/TDR_mission_Atelier_GFF_a_Mara_17_au_21_mars_2020.docx', 411); +INSERT INTO [[schema]].t2f_travelattachment VALUES (403, 'Other', 'Certificats UNICEF.zip', 'travels/[[schema]]/411/Certificats_UNICEF.zip', 411); +INSERT INTO [[schema]].t2f_travelattachment VALUES (404, 'Other', 'Security Clearance Mara.pdf', 'travels/[[schema]]/341/Security_Clearance_Mara.pdf', 341); +INSERT INTO [[schema]].t2f_travelattachment VALUES (405, 'Other', 'TDR.doc', 'travels/[[schema]]/404/TDR.doc', 404); +INSERT INTO [[schema]].t2f_travelattachment VALUES (406, 'Other', 'Security Clearance.pdf', 'travels/[[schema]]/404/Security_Clearance.pdf', 404); +INSERT INTO [[schema]].t2f_travelattachment VALUES (407, 'Other', 'Cours obligatoires Assengar 2019.docx', 'travels/[[schema]]/404/Cours_obligatoires_Assengar_2019.docx', 404); +INSERT INTO [[schema]].t2f_travelattachment VALUES (408, 'Other', 'Certificats.docx', 'travels/[[schema]]/404/Certificats.docx', 404); +INSERT INTO [[schema]].t2f_travelattachment VALUES (409, 'Other', 'DEMANDE DE VOYAGE.docx', 'travels/[[schema]]/404/DEMANDE_DE_VOYAGE.docx', 404); +INSERT INTO [[schema]].t2f_travelattachment VALUES (490, 'Other', 'R. Baga.pdf', 'travels/[[schema]]/37/R._Baga.pdf', 37); +INSERT INTO [[schema]].t2f_travelattachment VALUES (414, 'Other', 'TDR_mission_FA_22 au 28.03..2020.docx', 'travels/[[schema]]/350/TDR_mission_FA_22_au_28.03..2020.docx', 350); +INSERT INTO [[schema]].t2f_travelattachment VALUES (415, 'Other', 'Security Clearence Adoum Francis 22 au 28.03.2020.pdf', 'travels/[[schema]]/350/Security_Clearence_Adoum_Francis_22_au_28.03.2020.pdf', 350); +INSERT INTO [[schema]].t2f_travelattachment VALUES (416, 'Other', 'SC 16 mars 2020.msg', 'travels/[[schema]]/414/SC_16_mars_2020.msg', 414); +INSERT INTO [[schema]].t2f_travelattachment VALUES (417, 'Other', 'TDR_mission Atelier GFF a Mara 17 au 21 mars 2020.docx', 'travels/[[schema]]/414/TDR_mission_Atelier_GFF_a_Mara_17_au_21_mars_2020.docx', 414); +INSERT INTO [[schema]].t2f_travelattachment VALUES (418, 'Other', 'cours obligatoires.pdf', 'travels/[[schema]]/414/cours_obligatoires.pdf', 414); +INSERT INTO [[schema]].t2f_travelattachment VALUES (419, 'Other', 'Your security clearance request is GRANTED.msg', 'travels/[[schema]]/415/Your_security_clearance_request_is_GRANTED.msg', 415); +INSERT INTO [[schema]].t2f_travelattachment VALUES (420, 'Other', 'Capture cours obligatoire.PNG', 'travels/[[schema]]/415/Capture_cours_obligatoire.PNG', 415); +INSERT INTO [[schema]].t2f_travelattachment VALUES (421, 'Other', 'DEMANDE DE VOYAGE.docx', 'travels/[[schema]]/416/DEMANDE_DE_VOYAGE.docx', 416); +INSERT INTO [[schema]].t2f_travelattachment VALUES (422, 'Other', 'TDR.doc', 'travels/[[schema]]/416/TDR.doc', 416); +INSERT INTO [[schema]].t2f_travelattachment VALUES (423, 'Other', 'Security Clearance.pdf', 'travels/[[schema]]/416/Security_Clearance.pdf', 416); +INSERT INTO [[schema]].t2f_travelattachment VALUES (424, 'Other', 'Cours obligatoires Assengar 2019.docx', 'travels/[[schema]]/416/Cours_obligatoires_Assengar_2019.docx', 416); +INSERT INTO [[schema]].t2f_travelattachment VALUES (425, 'Other', 'rap mission.pdf', 'travels/[[schema]]/339/rap_mission.pdf', 339); +INSERT INTO [[schema]].t2f_travelattachment VALUES (426, 'Other', 'rap mission.pdf', 'travels/[[schema]]/339/rap_mission_1UwI7Br.pdf', 339); +INSERT INTO [[schema]].t2f_travelattachment VALUES (427, 'Other', 'TDRs Revue de Gestion 2019 UNICEF T[[schema]].docx', 'travels/[[schema]]/418/TDRs_Revue_de_Gestion_2019_UNICEF_T[[schema]].docx', 418); +INSERT INTO [[schema]].t2f_travelattachment VALUES (428, 'Other', 'TDRs Revue de Gestion 2019 UNICEF T[[schema]].docx', 'travels/[[schema]]/418/TDRs_Revue_de_Gestion_2019_UNICEF_T[[schema]]_ERFkmtQ.docx', 418); +INSERT INTO [[schema]].t2f_travelattachment VALUES (429, 'Other', 'TDRs Revue de Gestion 2019 UNICEF T[[schema]].docx', 'travels/[[schema]]/418/TDRs_Revue_de_Gestion_2019_UNICEF_T[[schema]]_9UIOxlP.docx', 418); +INSERT INTO [[schema]].t2f_travelattachment VALUES (430, 'Other', 'DEMANDE DE VOYAGE_Mars 20.odt', 'travels/[[schema]]/419/DEMANDE_DE_VOYAGE_Mars_20.odt', 419); +INSERT INTO [[schema]].t2f_travelattachment VALUES (431, 'Other', 'TDRs Revue de Gestion 2019 UNICEF T[[schema]].docx', 'travels/[[schema]]/419/TDRs_Revue_de_Gestion_2019_UNICEF_T[[schema]].docx', 419); +INSERT INTO [[schema]].t2f_travelattachment VALUES (432, 'Other', '170320_security clearance request is GRANTED.msg', 'travels/[[schema]]/419/170320_security_clearance_request_is_GRANTED.msg', 419); +INSERT INTO [[schema]].t2f_travelattachment VALUES (433, 'Other', 'Nathaniel_Certificats requis.pdf', 'travels/[[schema]]/419/Nathaniel_Certificats_requis.pdf', 419); +INSERT INTO [[schema]].t2f_travelattachment VALUES (434, 'Other', 'DEMANDE DE VOYAGE Dobone - Copy.docx', 'travels/[[schema]]/420/DEMANDE_DE_VOYAGE_Dobone_-_Copy.docx', 420); +INSERT INTO [[schema]].t2f_travelattachment VALUES (435, 'Other', 'Certificats de Dobone Ngarodje.docx', 'travels/[[schema]]/420/Certificats_de_Dobone_Ngarodje.docx', 420); +INSERT INTO [[schema]].t2f_travelattachment VALUES (436, 'Other', 'Security Clearence.docx', 'travels/[[schema]]/420/Security_Clearence.docx', 420); +INSERT INTO [[schema]].t2f_travelattachment VALUES (437, 'Other', 'Security Clearence.docx', 'travels/[[schema]]/422/Security_Clearence.docx', 422); +INSERT INTO [[schema]].t2f_travelattachment VALUES (438, 'Other', 'DEMANDE DE VOYAGE Abali - Copy.docx', 'travels/[[schema]]/422/DEMANDE_DE_VOYAGE_Abali_-_Copy.docx', 422); +INSERT INTO [[schema]].t2f_travelattachment VALUES (439, 'Other', 'cours obligatoires Abali.docx', 'travels/[[schema]]/422/cours_obligatoires_Abali.docx', 422); +INSERT INTO [[schema]].t2f_travelattachment VALUES (440, 'Other', 'demande de conge 1 avril 2020.pdf', 'travels/[[schema]]/423/demande_de_conge_1_avril_2020.pdf', 423); +INSERT INTO [[schema]].t2f_travelattachment VALUES (441, 'Other', 'DEMANDE VOYAGE MOYAN-HL.docx', 'travels/[[schema]]/423/DEMANDE_VOYAGE_MOYAN-HL.docx', 423); +INSERT INTO [[schema]].t2f_travelattachment VALUES (442, 'Other', 'Bsafe.pdf', 'travels/[[schema]]/423/Bsafe.pdf', 423); +INSERT INTO [[schema]].t2f_travelattachment VALUES (443, 'Other', 'Bsafe.pdf', 'travels/[[schema]]/423/Bsafe_IKR7rf0.pdf', 423); +INSERT INTO [[schema]].t2f_travelattachment VALUES (449, 'Other', 'JUSTIN-BSAFE Certificate.pdf', 'travels/[[schema]]/425/JUSTIN-BSAFE_Certificate_27jgg5C.pdf', 425); +INSERT INTO [[schema]].t2f_travelattachment VALUES (450, 'Other', 'Ligne Budgetaire .docx', 'travels/[[schema]]/425/Ligne_Budgetaire__Usv9ZOn.docx', 425); +INSERT INTO [[schema]].t2f_travelattachment VALUES (451, 'Other', 'Security Clearance.docx', 'travels/[[schema]]/425/Security_Clearance_xDlnm70.docx', 425); +INSERT INTO [[schema]].t2f_travelattachment VALUES (452, 'Other', 'TDR Mission WASH-Ouvrages CRT.docx', 'travels/[[schema]]/425/TDR_Mission_WASH-Ouvrages_CRT_3GJaE8x.docx', 425); +INSERT INTO [[schema]].t2f_travelattachment VALUES (453, 'Other', 'Security clereance Esther.PNG', 'travels/[[schema]]/427/Security_clereance_Esther.PNG', 427); +INSERT INTO [[schema]].t2f_travelattachment VALUES (454, 'Other', 'TDR recrutement Consultants C4D.pdf', 'travels/[[schema]]/427/TDR_recrutement_Consultants_C4D.pdf', 427); +INSERT INTO [[schema]].t2f_travelattachment VALUES (455, 'Other', 'Cours obligatoires Esther.PNG', 'travels/[[schema]]/427/Cours_obligatoires_Esther.PNG', 427); +INSERT INTO [[schema]].t2f_travelattachment VALUES (456, 'Other', 'Capture Certificats de formation obligatoire Djafna.PNG', 'travels/[[schema]]/428/Capture_Certificats_de_formation_obligatoire_Djafna.PNG', 428); +INSERT INTO [[schema]].t2f_travelattachment VALUES (457, 'Other', 'TDR recrutement Consultants C4D.pdf', 'travels/[[schema]]/428/TDR_recrutement_Consultants_C4D.pdf', 428); +INSERT INTO [[schema]].t2f_travelattachment VALUES (458, 'Other', 'Security_Djaf19_03_2020.pdf', 'travels/[[schema]]/428/Security_Djaf19_03_2020.pdf', 428); +INSERT INTO [[schema]].t2f_travelattachment VALUES (459, 'Other', 'Documents atelier revue du plan sante communautaire.pdf', 'travels/[[schema]]/429/Documents_atelier_revue_du_plan_sante_communautaire.pdf', 429); +INSERT INTO [[schema]].t2f_travelattachment VALUES (460, 'Other', 'Your security clearance IAM request is GRANTED 18032020.msg', 'travels/[[schema]]/429/Your_security_clearance_IAM_request_is_GRANTED_18032020.msg', 429); +INSERT INTO [[schema]].t2f_travelattachment VALUES (461, 'Other', 'Screen cours obligatoires IAM.docx', 'travels/[[schema]]/429/Screen_cours_obligatoires_IAM.docx', 429); +INSERT INTO [[schema]].t2f_travelattachment VALUES (462, 'Other', 'Your security clearance request is GRANTED.msg', 'travels/[[schema]]/421/Your_security_clearance_request_is_GRANTED.msg', 421); +INSERT INTO [[schema]].t2f_travelattachment VALUES (465, 'Other', 's.clearanceGranted.docx', 'travels/[[schema]]/426/s.clearanceGranted.docx', 426); +INSERT INTO [[schema]].t2f_travelattachment VALUES (469, 'Other', 'mail approbation-CFO-ai.docx', 'travels/[[schema]]/426/mail_approbation-CFO-ai_154NKRZ.docx', 426); +INSERT INTO [[schema]].t2f_travelattachment VALUES (470, 'Other', 'ToRs-FIELD TRIP-KAN-BEG-HL_VP.docx', 'travels/[[schema]]/426/ToRs-FIELD_TRIP-KAN-BEG-HL_VP.docx', 426); +INSERT INTO [[schema]].t2f_travelattachment VALUES (471, 'Other', 'COURS OBLIGATOIRES THAM.pdf', 'travels/[[schema]]/426/COURS_OBLIGATOIRES_THAM.pdf', 426); +INSERT INTO [[schema]].t2f_travelattachment VALUES (472, 'Other', 'TDRs activites ECHO et KFW_mars 2020_BEG (002).docx', 'travels/[[schema]]/421/TDRs_activites_ECHO_et_KFW_mars_2020_BEG_002.docx', 421); +INSERT INTO [[schema]].t2f_travelattachment VALUES (475, 'Other', 'Certificats obligatoires-Patrice Kosmate.zip', 'travels/[[schema]]/421/Certificats_obligatoires-Patrice_Kosmate.zip', 421); +INSERT INTO [[schema]].t2f_travelattachment VALUES (477, 'Other', 'ANDRE security clearance request is GRANTED.msg', 'travels/[[schema]]/431/ANDRE_security_clearance_request_is_GRANTED.msg', 431); +INSERT INTO [[schema]].t2f_travelattachment VALUES (478, 'Other', 'ToRs-FIELD TRIP-KAN-BEG-HL_VP.docx', 'travels/[[schema]]/431/ToRs-FIELD_TRIP-KAN-BEG-HL_VP.docx', 431); +INSERT INTO [[schema]].t2f_travelattachment VALUES (479, 'Other', 'Tous les certificat Andre.pdf', 'travels/[[schema]]/431/Tous_les_certificat_Andre.pdf', 431); +INSERT INTO [[schema]].t2f_travelattachment VALUES (482, 'Other', 'ANDRE security clearance request is GRANTED.msg', 'travels/[[schema]]/433/ANDRE_security_clearance_request_is_GRANTED_p6Tyr0A.msg', 433); +INSERT INTO [[schema]].t2f_travelattachment VALUES (483, 'Other', 'Tous les certificat Andre.pdf', 'travels/[[schema]]/433/Tous_les_certificat_Andre_vGgcaqB.pdf', 433); +INSERT INTO [[schema]].t2f_travelattachment VALUES (484, 'Other', 'ToRs-FIELD TRIP-KAN-BEG-HL_VP.docx', 'travels/[[schema]]/433/ToRs-FIELD_TRIP-KAN-BEG-HL_VP.docx', 433); +INSERT INTO [[schema]].t2f_travelattachment VALUES (485, 'Other', 'ADOUM SAAD SECURYTE.msg', 'travels/[[schema]]/434/ADOUM_SAAD_SECURYTE.msg', 434); +INSERT INTO [[schema]].t2f_travelattachment VALUES (486, 'Other', 'BSAFE Saad.pdf', 'travels/[[schema]]/434/BSAFE_Saad.pdf', 434); +INSERT INTO [[schema]].t2f_travelattachment VALUES (487, 'Other', 'TDRs activites ECHO et KFW_mars 2020_BEG (002).docx', 'travels/[[schema]]/434/TDRs_activites_ECHO_et_KFW_mars_2020_BEG_002.docx', 434); +INSERT INTO [[schema]].t2f_travelattachment VALUES (495, 'Other', 'BSAFE for Akaye.pdf', 'travels/[[schema]]/439/BSAFE_for_Akaye.pdf', 439); +INSERT INTO [[schema]].t2f_travelattachment VALUES (489, 'Other', 'Draft_Rapport_VP_DPAS-GUERA-FORMATION_HACT.doc', 'travels/[[schema]]/120/Draft_Rapport_VP_DPAS-GUERA-FORMATION_HACT_TuWhWUa.doc', 120); +INSERT INTO [[schema]].t2f_travelattachment VALUES (497, 'Other', 'SC SECTO Akaye du 25 au 01.04.msg', 'travels/[[schema]]/439/SC_SECTO_Akaye_du_25_au_01.04.msg', 439); +INSERT INTO [[schema]].t2f_travelattachment VALUES (498, 'Other', 'Your security clearance SECTO Jerome.msg', 'travels/[[schema]]/440/Your_security_clearance_SECTO_Jerome.msg', 440); +INSERT INTO [[schema]].t2f_travelattachment VALUES (502, 'Other', 'Security clearance.docx', 'travels/[[schema]]/441/Security_clearance.docx', 441); +INSERT INTO [[schema]].t2f_travelattachment VALUES (504, 'Other', 'Souley-BeSafe Certificate.pdf', 'travels/[[schema]]/441/Souley-BeSafe_Certificate.pdf', 441); +INSERT INTO [[schema]].t2f_travelattachment VALUES (506, 'Other', 'DEMANDE DE VOYAGE-SOULEY.docx', 'travels/[[schema]]/441/DEMANDE_DE_VOYAGE-SOULEY_YNUHkVg.docx', 441); +INSERT INTO [[schema]].t2f_travelattachment VALUES (508, 'Other', 'security Douro.pdf', 'travels/[[schema]]/442/security_Douro.pdf', 442); +INSERT INTO [[schema]].t2f_travelattachment VALUES (510, 'Other', 'Raport_VP_atelier bilan_PTME 02-06 mars_2020_Dandi final.docx', 'travels/[[schema]]/259/Raport_VP_atelier_bilan_PTME_02-06_mars_2020_Dandi_final.docx', 259); +INSERT INTO [[schema]].t2f_travelattachment VALUES (511, 'Other', 'TDR_mission a Kelo Campagne de riiposte VAR.docx', 'travels/[[schema]]/443/TDR_mission__a_Kelo_Campagne_de_riiposte_VAR.docx', 443); +INSERT INTO [[schema]].t2f_travelattachment VALUES (513, 'Cleareance Doc', 'Security Clearance Mission a Kelo Avril 2020.pdf', 'travels/[[schema]]/443/Security_Clearance_Mission_a_Kelo_Avril_2020.pdf', 443); +INSERT INTO [[schema]].t2f_travelattachment VALUES (515, 'Cleareance Doc', 'Security clearance Mission a Gore Camapgne Polio Avril 2020.pdf', 'travels/[[schema]]/444/Security_clearance_Mission_a_Gore_Camapgne_Polio_Avril_2020.pdf', 444); +INSERT INTO [[schema]].t2f_travelattachment VALUES (652, 'Other', 'RapportVP CLAC_Avril 2020.docx.pdf', 'travels/[[schema]]/461/RapportVP_CLAC_Avril_2020.docx.pdf', 461); +INSERT INTO [[schema]].t2f_travelattachment VALUES (659, 'Other', 'Travelers List Bitkine.pdf', 'travels/[[schema]]/483/Travelers_List_Bitkine.pdf', 483); +INSERT INTO [[schema]].t2f_travelattachment VALUES (521, 'Other', 'rapport vp fada.pdf', 'travels/[[schema]]/286/rapport_vp_fada.pdf', 286); +INSERT INTO [[schema]].t2f_travelattachment VALUES (522, 'Other', 'Souley-Formations obligatoires.pdf', 'travels/[[schema]]/446/Souley-Formations_obligatoires.pdf', 446); +INSERT INTO [[schema]].t2f_travelattachment VALUES (524, 'Other', 'Souley-Formations obligatoires.pdf', 'travels/[[schema]]/447/Souley-Formations_obligatoires.pdf', 447); +INSERT INTO [[schema]].t2f_travelattachment VALUES (526, 'Other', 'DEMANDE DE VOYAGE-SOULEY.docx', 'travels/[[schema]]/447/DEMANDE_DE_VOYAGE-SOULEY.docx', 447); +INSERT INTO [[schema]].t2f_travelattachment VALUES (527, 'Other', 'Rapport de mission de reunion de coordination Goré.pdf', 'travels/[[schema]]/271/Rapport_de_mission_de_reunion_de_coordination_Goré.pdf', 271); +INSERT INTO [[schema]].t2f_travelattachment VALUES (528, 'Other', 'Claim Borkou.pdf', 'travels/[[schema]]/281/Claim_Borkou.pdf', 281); +INSERT INTO [[schema]].t2f_travelattachment VALUES (530, 'Other', 'CHECKLIST RAPPORT VP CPTME.pdf', 'travels/[[schema]]/259/CHECKLIST_RAPPORT_VP_CPTME.pdf', 259); +INSERT INTO [[schema]].t2f_travelattachment VALUES (531, 'Other', 'Security Ndjam 2.pdf', 'travels/[[schema]]/451/Security_Ndjam_2.pdf', 451); +INSERT INTO [[schema]].t2f_travelattachment VALUES (533, 'Other', 'SC.pdf', 'travels/[[schema]]/452/SC.pdf', 452); +INSERT INTO [[schema]].t2f_travelattachment VALUES (534, 'Other', 'RAPPORT MISSION BORKOU.pdf', 'travels/[[schema]]/281/RAPPORT_MISSION_BORKOU.pdf', 281); +INSERT INTO [[schema]].t2f_travelattachment VALUES (535, 'Other', 'CERTIFCATS NGARMAGUE KOSLENGAR FULBERT.zip', 'travels/[[schema]]/458/CERTIFCATS_NGARMAGUE_KOSLENGAR_FULBERT.zip', 458); +INSERT INTO [[schema]].t2f_travelattachment VALUES (537, 'Cleareance Doc', 'SECURITY CLEARANCE FULBERT.docx', 'travels/[[schema]]/458/SECURITY_CLEARANCE_FULBERT.docx', 458); +INSERT INTO [[schema]].t2f_travelattachment VALUES (538, 'Other', 'TDR_mission Supervision PEV des districts YAO_ASSINET-OUM H_DJEDDA FULBERT.docx', 'travels/[[schema]]/458/TDR_mission_Supervision_PEV_des_districts_YAO_ASSINET-OUM_H_DJEDDA_FULBERT_s0Bvohx.docx', 458); +INSERT INTO [[schema]].t2f_travelattachment VALUES (539, 'Other', 'Rapport.pdf', 'travels/[[schema]]/261/Rapport.pdf', 261); +INSERT INTO [[schema]].t2f_travelattachment VALUES (541, 'Other', 'Rapport.pdf', 'travels/[[schema]]/261/Rapport_o2SINny.pdf', 261); +INSERT INTO [[schema]].t2f_travelattachment VALUES (543, 'Other', 'TERMES DE REFRENCE DES REUNIONS SEMESTRIELLES S2 2019.docx', 'travels/[[schema]]/262/TERMES_DE_REFRENCE_DES_REUNIONS_SEMESTRIELLES_S2_2019.docx', 262); +INSERT INTO [[schema]].t2f_travelattachment VALUES (545, 'Other', 'TERMES DE REFRENCE DES REUNIONS SEMESTRIELLES S2 2019.docx', 'travels/[[schema]]/262/TERMES_DE_REFRENCE_DES_REUNIONS_SEMESTRIELLES_S2_2019_VVQHXso.docx', 262); +INSERT INTO [[schema]].t2f_travelattachment VALUES (547, 'Other', 'Rapport.pdf', 'travels/[[schema]]/262/Rapport_nWTuE9S.pdf', 262); +INSERT INTO [[schema]].t2f_travelattachment VALUES (564, 'Other', 'Rapport de mission de convergence du 11 au 14 dans 3 cantons_ (002)_Educ.docx', 'travels/[[schema]]/365/Rapport_de_mission_de_convergence_du_11_au_14_dans_3_cantons__002_Educ.docx', 365); +INSERT INTO [[schema]].t2f_travelattachment VALUES (551, 'Other', 'numérisation0017.pdf', 'travels/[[schema]]/269/numérisation0017.pdf', 269); +INSERT INTO [[schema]].t2f_travelattachment VALUES (553, 'Other', 'RapportMission evaluation Bongor.pdf', 'travels/[[schema]]/217/RapportMission_evaluation_Bongor.pdf', 217); +INSERT INTO [[schema]].t2f_travelattachment VALUES (555, 'Cleareance Doc', 'TA Supervision Campagne Rougeole Dec 2019.pdf', 'travels/[[schema]]/460/TA_Supervision_Campagne_Rougeole_Dec_2019.pdf', 460); +INSERT INTO [[schema]].t2f_travelattachment VALUES (557, 'Cleareance Doc', 'Face-Form Riposte Rougeole Decembre 2019.pdf', 'travels/[[schema]]/460/Face-Form_Riposte_Rougeole_Decembre_2019.pdf', 460); +INSERT INTO [[schema]].t2f_travelattachment VALUES (559, 'Other', 'Rapport formation PRU DOBA.pdf', 'travels/[[schema]]/294/Rapport_formation_PRU_DOBA.pdf', 294); +INSERT INTO [[schema]].t2f_travelattachment VALUES (561, 'Cleareance Doc', 'REQUETE ASC KRIM KRIM REVISE et FACE.pdf', 'travels/[[schema]]/459/REQUETE_ASC_KRIM_KRIM_REVISE_et_FACE.pdf', 459); +INSERT INTO [[schema]].t2f_travelattachment VALUES (563, 'Cleareance Doc', 'TDRs VP CFC-RTM Krim-Krim et Benoye Janvier 2020.pdf', 'travels/[[schema]]/459/TDRs_VP_CFC-RTM_Krim-Krim_et_Benoye_Janvier_2020.pdf', 459); +INSERT INTO [[schema]].t2f_travelattachment VALUES (566, 'Other', 'Certificats de Dobone Ngarodje.docx', 'travels/[[schema]]/462/Certificats_de_Dobone_Ngarodje.docx', 462); +INSERT INTO [[schema]].t2f_travelattachment VALUES (568, 'Cleareance Doc', 'SECURITY CLEARENCE.docx', 'travels/[[schema]]/462/SECURITY_CLEARENCE.docx', 462); +INSERT INTO [[schema]].t2f_travelattachment VALUES (569, 'Other', 'DEMANDE DE VOYAGE Laurent - Copy.docx', 'travels/[[schema]]/464/DEMANDE_DE_VOYAGE_Laurent_-_Copy.docx', 464); +INSERT INTO [[schema]].t2f_travelattachment VALUES (570, 'Cleareance Doc', 'SECURITY CLEARENCE.docx', 'travels/[[schema]]/464/SECURITY_CLEARENCE.docx', 464); +INSERT INTO [[schema]].t2f_travelattachment VALUES (572, 'Other', 'Cours Obligatoires Dr Bambe.docx', 'travels/[[schema]]/465/Cours_Obligatoires_Dr_Bambe.docx', 465); +INSERT INTO [[schema]].t2f_travelattachment VALUES (574, 'Other', 'TDR_MISSION D''APPUI VIH$Sida aux DSP BATHA SALAMAT V Fin.docx', 'travels/[[schema]]/465/TDR_MISSION_DAPPUI_VIHSida_aux_DSP_BATHA__SALAMAT_V_Fin.docx', 465); +INSERT INTO [[schema]].t2f_travelattachment VALUES (576, 'Other', 'TERMES DE REFRENCE DES REUNIONS SEMESTRIELLES S2 2019.docx', 'travels/[[schema]]/260/TERMES_DE_REFRENCE_DES_REUNIONS_SEMESTRIELLES_S2_2019.docx', 260); +INSERT INTO [[schema]].t2f_travelattachment VALUES (578, 'Other', 'TERMES DE REFRENCE DES REUNIONS SEMESTRIELLES S2 2019.docx', 'travels/[[schema]]/260/TERMES_DE_REFRENCE_DES_REUNIONS_SEMESTRIELLES_S2_2019_Awyozj6.docx', 260); +INSERT INTO [[schema]].t2f_travelattachment VALUES (580, 'Other', 'RapportSigneBalto.pdf', 'travels/[[schema]]/260/RapportSigneBalto.pdf', 260); +INSERT INTO [[schema]].t2f_travelattachment VALUES (582, 'Other', 'TDR Missions VP LOR.docx', 'travels/[[schema]]/454/TDR_Missions_VP_LOR.docx', 454); +INSERT INTO [[schema]].t2f_travelattachment VALUES (584, 'Other', 'Capture d''ecran des coursObligatoiresBalto.docx', 'travels/[[schema]]/453/Capture_decran_des_coursObligatoiresBalto.docx', 453); +INSERT INTO [[schema]].t2f_travelattachment VALUES (623, 'Other', 'RE Appui du BZ de Bol - Israel.msg', 'travels/[[schema]]/476/RE_Appui_du_BZ_de_Bol_-_Israel.msg', 476); +INSERT INTO [[schema]].t2f_travelattachment VALUES (592, 'Other', 'Demande de voyage - Askem.docx', 'travels/[[schema]]/466/Demande_de_voyage_-_Askem_OTpIvWc.docx', 466); +INSERT INTO [[schema]].t2f_travelattachment VALUES (594, 'Other', 'TDR Mission Urgence bagasola 1 2020.docx', 'travels/[[schema]]/466/TDR_Mission_Urgence_bagasola_1_2020_QIU4Lr5.docx', 466); +INSERT INTO [[schema]].t2f_travelattachment VALUES (596, 'Other', 'Attestation de BSAFE.PDF', 'travels/[[schema]]/466/Attestation_de_BSAFE_qjcaur8.PDF', 466); +INSERT INTO [[schema]].t2f_travelattachment VALUES (598, 'Other', 'TDR Mission Urgence bagasola 1 2020.docx', 'travels/[[schema]]/466/TDR_Mission_Urgence_bagasola_1_2020_7eBE6D4.docx', 466); +INSERT INTO [[schema]].t2f_travelattachment VALUES (600, 'Other', 'Attestation de BSAFE.PDF', 'travels/[[schema]]/466/Attestation_de_BSAFE_jv6vHcE.PDF', 466); +INSERT INTO [[schema]].t2f_travelattachment VALUES (602, 'Other', 'Your security clearance request is GRANTED.msg', 'travels/[[schema]]/466/Your_security_clearance_request_is_GRANTED_ndY9RMK.msg', 466); +INSERT INTO [[schema]].t2f_travelattachment VALUES (491, 'Other', 'R.Bokoro.pdf', 'travels/[[schema]]/249/R.Bokoro.pdf', 249); +INSERT INTO [[schema]].t2f_travelattachment VALUES (492, 'Other', 'Draft Rapport de la revue annuelle 2019Bureau de Zone Abéché_V18112019.docx', 'travels/[[schema]]/270/Draft_Rapport_de_la_revue_annuelle_2019Bureau_de_Zone_Abéché_V18112019.docx', 270); +INSERT INTO [[schema]].t2f_travelattachment VALUES (493, 'Other', 'Certificate BSAFE (English) Fabienne Bertrand.pdf', 'travels/[[schema]]/435/Certificate_BSAFE_English_Fabienne_Bertrand.pdf', 435); +INSERT INTO [[schema]].t2f_travelattachment VALUES (494, 'Other', 'Rapport de missionPS fevrier 2020.pdf', 'travels/[[schema]]/223/Rapport_de_missionPS_fevrier_2020.pdf', 223); +INSERT INTO [[schema]].t2f_travelattachment VALUES (496, 'Other', 'AL et SECTO Akaye du 25.03 au 08.04.20.pdf', 'travels/[[schema]]/439/AL_et_SECTO_Akaye_du_25.03_au_08.04.20.pdf', 439); +INSERT INTO [[schema]].t2f_travelattachment VALUES (499, 'Other', 'Certificats BSAFE+E.pdf', 'travels/[[schema]]/440/Certificats_BSAFEE.pdf', 440); +INSERT INTO [[schema]].t2f_travelattachment VALUES (501, 'Other', 'Demande Conge 1.pdf', 'travels/[[schema]]/440/Demande_Conge_1.pdf', 440); +INSERT INTO [[schema]].t2f_travelattachment VALUES (503, 'Other', 'DEMANDE DE VOYAGE-SOULEY.docx', 'travels/[[schema]]/441/DEMANDE_DE_VOYAGE-SOULEY.docx', 441); +INSERT INTO [[schema]].t2f_travelattachment VALUES (505, 'Other', 'Security clearance.docx', 'travels/[[schema]]/441/Security_clearance_T65QCTI.docx', 441); +INSERT INTO [[schema]].t2f_travelattachment VALUES (507, 'Other', 'les certificats douro.pdf', 'travels/[[schema]]/442/les_certificats_douro.pdf', 442); +INSERT INTO [[schema]].t2f_travelattachment VALUES (509, 'Other', 'UNICEF_T[[schema]]_Trip_Report_VP CoordPTME 2020_24_28_02 Douguia final.docx', 'travels/[[schema]]/259/UNICEF_T[[schema]]_Trip_Report_VP_CoordPTME_2020_24_28_02_Douguia_final.docx', 259); +INSERT INTO [[schema]].t2f_travelattachment VALUES (512, 'Other', 'Mandatory courses completed.docx', 'travels/[[schema]]/443/Mandatory_courses_completed.docx', 443); +INSERT INTO [[schema]].t2f_travelattachment VALUES (514, 'Cleareance Doc', 'Mandatory courses completed.docx', 'travels/[[schema]]/444/Mandatory_courses_completed.docx', 444); +INSERT INTO [[schema]].t2f_travelattachment VALUES (516, 'Cleareance Doc', 'TDR_mission a Gore Campagne de riposte la poliomyelite.docx', 'travels/[[schema]]/444/TDR_mission__a_Gore_Campagne_de_riposte_la_poliomyelite.docx', 444); +INSERT INTO [[schema]].t2f_travelattachment VALUES (653, 'HACT Programme Monitoring Report', 'UNICEF_T[[schema]]_Trip_Report_VP_ESMS 18.03.2020.pdf', 'travels/[[schema]]/435/UNICEF_T[[schema]]_Trip_Report_VP_ESMS_18.03.2020.pdf', 435); +INSERT INTO [[schema]].t2f_travelattachment VALUES (520, 'Other', 'rapport mission.pdf', 'travels/[[schema]]/286/rapport_mission.pdf', 286); +INSERT INTO [[schema]].t2f_travelattachment VALUES (523, 'Other', 'Security clearance.docx', 'travels/[[schema]]/447/Security_clearance.docx', 447); +INSERT INTO [[schema]].t2f_travelattachment VALUES (525, 'Other', 'Souley-BeSafe Certificate.pdf', 'travels/[[schema]]/447/Souley-BeSafe_Certificate.pdf', 447); +INSERT INTO [[schema]].t2f_travelattachment VALUES (529, 'Other', 'facture.pdf', 'travels/[[schema]]/281/facture.pdf', 281); +INSERT INTO [[schema]].t2f_travelattachment VALUES (532, 'Other', '8 cours obligatoires.png', 'travels/[[schema]]/451/8_cours_obligatoires.png', 451); +INSERT INTO [[schema]].t2f_travelattachment VALUES (565, 'Other', 'TDR Missions VP Tandjile.docx', 'travels/[[schema]]/453/TDR_Missions_VP_Tandjile.docx', 453); +INSERT INTO [[schema]].t2f_travelattachment VALUES (540, 'Other', 'TDRMissionSupervisionMoyenChari_inputsHenene.docx', 'travels/[[schema]]/261/TDRMissionSupervisionMoyenChari_inputsHenene.docx', 261); +INSERT INTO [[schema]].t2f_travelattachment VALUES (542, 'Other', 'Your security clearance request has been submitted.msg', 'travels/[[schema]]/262/Your_security_clearance_request_has_been_submitted.msg', 262); +INSERT INTO [[schema]].t2f_travelattachment VALUES (544, 'Other', 'Your security clearance request has been submitted.msg', 'travels/[[schema]]/262/Your_security_clearance_request_has_been_submitted_gZhe9ZC.msg', 262); +INSERT INTO [[schema]].t2f_travelattachment VALUES (546, 'Other', 'Rapport.pdf', 'travels/[[schema]]/262/Rapport.pdf', 262); +INSERT INTO [[schema]].t2f_travelattachment VALUES (567, 'Other', 'DEMANDE DE VOYAGE Dobone - Copy.docx', 'travels/[[schema]]/462/DEMANDE_DE_VOYAGE_Dobone_-_Copy.docx', 462); +INSERT INTO [[schema]].t2f_travelattachment VALUES (550, 'Other', 'numérisation0018.pdf', 'travels/[[schema]]/269/numérisation0018_0cqi6NT.pdf', 269); +INSERT INTO [[schema]].t2f_travelattachment VALUES (552, 'Other', 'numérisation0019.pdf', 'travels/[[schema]]/202/numérisation0019.pdf', 202); +INSERT INTO [[schema]].t2f_travelattachment VALUES (554, 'Other', 'RapportMission evaluation Bongor.pdf', 'travels/[[schema]]/217/RapportMission_evaluation_Bongor_fR5Cd64.pdf', 217); +INSERT INTO [[schema]].t2f_travelattachment VALUES (556, 'Cleareance Doc', 'TDRs du Superviseur Campagne Riposte Rougeole Decembre 2019.pdf', 'travels/[[schema]]/460/TDRs_du_Superviseur_Campagne_Riposte_Rougeole_Decembre_2019.pdf', 460); +INSERT INTO [[schema]].t2f_travelattachment VALUES (558, 'HACT Programme Monitoring Report', 'Trip report VP Camapgne de riposte contre la rougeole Decembre 2019 et Checklist.pdf', 'travels/[[schema]]/460/Trip_report_VP_Camapgne_de_riposte_contre_la_rougeole__Decembre_2019_et_Checklist.pdf', 460); +INSERT INTO [[schema]].t2f_travelattachment VALUES (560, 'Other', 'Rapport formation PRU DOBA.pdf', 'travels/[[schema]]/294/Rapport_formation_PRU_DOBA_hScCCFM.pdf', 294); +INSERT INTO [[schema]].t2f_travelattachment VALUES (562, 'HACT Programme Monitoring Report', 'Trip report VP CFC-RTM a Benoye et Krim-Krim Janvier 2020 et Checlist.pdf', 'travels/[[schema]]/459/Trip_report_VP_CFC-RTM_a_Benoye_et_Krim-Krim_Janvier_2020_et_Checlist.pdf', 459); +INSERT INTO [[schema]].t2f_travelattachment VALUES (571, 'Other', 'certificats Agora Ritoingue Nadjalngar.docx', 'travels/[[schema]]/464/certificats_Agora_Ritoingue_Nadjalngar.docx', 464); +INSERT INTO [[schema]].t2f_travelattachment VALUES (573, 'Other', 'Cours Obligatoires Dr Bambe.docx', 'travels/[[schema]]/465/Cours_Obligatoires_Dr_Bambe_IykEjrq.docx', 465); +INSERT INTO [[schema]].t2f_travelattachment VALUES (575, 'Other', 'Sec Clear Mission VIH Salam-Batha 07-15 Av 20 avec Dobone.docx', 'travels/[[schema]]/465/Sec_Clear_Mission_VIH_Salam-Batha_07-15_Av_20_avec_Dobone.docx', 465); +INSERT INTO [[schema]].t2f_travelattachment VALUES (577, 'Other', 'ChecklistesigneBalto.pdf', 'travels/[[schema]]/260/ChecklistesigneBalto.pdf', 260); +INSERT INTO [[schema]].t2f_travelattachment VALUES (579, 'Other', 'ChecklistesigneBalto.pdf', 'travels/[[schema]]/260/ChecklistesigneBalto_dxb19VJ.pdf', 260); +INSERT INTO [[schema]].t2f_travelattachment VALUES (581, 'Other', 'RapportSigneBalto.pdf', 'travels/[[schema]]/260/RapportSigneBalto_Dmuc4UK.pdf', 260); +INSERT INTO [[schema]].t2f_travelattachment VALUES (583, 'Other', 'TDR Missions VP Mandoul.docx', 'travels/[[schema]]/455/TDR_Missions_VP_Mandoul.docx', 455); +INSERT INTO [[schema]].t2f_travelattachment VALUES (585, 'Other', 'Capture d''ecran des coursObligatoiresBalto.docx', 'travels/[[schema]]/454/Capture_decran_des_coursObligatoiresBalto.docx', 454); +INSERT INTO [[schema]].t2f_travelattachment VALUES (624, 'Other', 'Cours obligatoires Assengar 2019.docx', 'travels/[[schema]]/476/Cours_obligatoires_Assengar_2019.docx', 476); +INSERT INTO [[schema]].t2f_travelattachment VALUES (626, 'Other', 'Rapport de mission d''appui Logistique au Kanem du 26.02 au 07.03.20.pdf', 'travels/[[schema]]/288/Rapport_de_mission_dappui_Logistique_au_Kanem_du_26.02_au_07.03.20.pdf', 288); +INSERT INTO [[schema]].t2f_travelattachment VALUES (628, 'Other', 'Rapport de mission d''appui Logistique au Kanem du 26.02 au 07.03.20.pdf', 'travels/[[schema]]/288/Rapport_de_mission_dappui_Logistique_au_Kanem_du_26.02_au_07.03.20_Tig70wY.pdf', 288); +INSERT INTO [[schema]].t2f_travelattachment VALUES (630, 'Other', 'TA 1853759 SECTO du 09.03 au 16.03.2020.msg', 'travels/[[schema]]/345/TA_1853759_SECTO_du_09.03_au_16.03.2020.msg', 345); +INSERT INTO [[schema]].t2f_travelattachment VALUES (632, 'Other', 'TDR_mission appui BZ Bol draft V1.docx', 'travels/[[schema]]/475/TDR_mission_appui_BZ_Bol_draft_V1.docx', 475); +INSERT INTO [[schema]].t2f_travelattachment VALUES (636, 'Other', 'Rappor M.pdf', 'travels/[[schema]]/431/Rappor_M.pdf', 431); +INSERT INTO [[schema]].t2f_travelattachment VALUES (605, 'Other', 'SC Urgence.pdf', 'travels/[[schema]]/469/SC_Urgence.pdf', 469); +INSERT INTO [[schema]].t2f_travelattachment VALUES (606, 'Other', 'Cours Obligatoires.pdf', 'travels/[[schema]]/469/Cours_Obligatoires.pdf', 469); +INSERT INTO [[schema]].t2f_travelattachment VALUES (608, 'Other', 'GRANTED SAAD.msg', 'travels/[[schema]]/471/GRANTED_SAAD.msg', 471); +INSERT INTO [[schema]].t2f_travelattachment VALUES (609, 'Other', 'BSAFE Saad.pdf', 'travels/[[schema]]/471/BSAFE_Saad.pdf', 471); +INSERT INTO [[schema]].t2f_travelattachment VALUES (610, 'Other', 'Your security clearance request is GRANTED.msg', 'travels/[[schema]]/468/Your_security_clearance_request_is_GRANTED_9F5HLdo.msg', 468); +INSERT INTO [[schema]].t2f_travelattachment VALUES (611, 'Other', 'Certificat Jerome.pdf', 'travels/[[schema]]/468/Certificat_Jerome.pdf', 468); +INSERT INTO [[schema]].t2f_travelattachment VALUES (612, 'Other', 'TDR Mission Bagasola 2020.docx', 'travels/[[schema]]/468/TDR_Mission_Bagasola_2020.docx', 468); +INSERT INTO [[schema]].t2f_travelattachment VALUES (613, 'Other', 'TDR Mission Urgence bagasola saad.docx', 'travels/[[schema]]/471/TDR_Mission_Urgence_bagasola_saad.docx', 471); +INSERT INTO [[schema]].t2f_travelattachment VALUES (614, 'Other', 'Demande de voyage - Saad.docx', 'travels/[[schema]]/471/Demande_de_voyage_-_Saad.docx', 471); +INSERT INTO [[schema]].t2f_travelattachment VALUES (615, 'Other', 'TDR Mission Urgence bagasola Mora.docx', 'travels/[[schema]]/469/TDR_Mission_Urgence_bagasola_Mora.docx', 469); +INSERT INTO [[schema]].t2f_travelattachment VALUES (616, 'Other', 'GRANTED SAAD.msg', 'travels/[[schema]]/470/GRANTED_SAAD.msg', 470); +INSERT INTO [[schema]].t2f_travelattachment VALUES (617, 'Other', 'BSAFE Saad.pdf', 'travels/[[schema]]/470/BSAFE_Saad.pdf', 470); +INSERT INTO [[schema]].t2f_travelattachment VALUES (618, 'Other', 'TDR Mission Urgence bagasola saad.docx', 'travels/[[schema]]/470/TDR_Mission_Urgence_bagasola_saad.docx', 470); +INSERT INTO [[schema]].t2f_travelattachment VALUES (619, 'Other', 'GRANTED SAAD.msg', 'travels/[[schema]]/470/GRANTED_SAAD_KjR81J4.msg', 470); +INSERT INTO [[schema]].t2f_travelattachment VALUES (620, 'Other', 'BSAFE Saad.pdf', 'travels/[[schema]]/470/BSAFE_Saad_IQ4ecyH.pdf', 470); +INSERT INTO [[schema]].t2f_travelattachment VALUES (621, 'Other', 'Demande de voyage - Saad.docx', 'travels/[[schema]]/470/Demande_de_voyage_-_Saad.docx', 470); +INSERT INTO [[schema]].t2f_travelattachment VALUES (622, 'Other', 'Demande de voyage - Mora.docx', 'travels/[[schema]]/469/Demande_de_voyage_-_Mora.docx', 469); +INSERT INTO [[schema]].t2f_travelattachment VALUES (625, 'Other', 'RE Appui du BZ de Bol - Israel.msg', 'travels/[[schema]]/476/RE_Appui_du_BZ_de_Bol_-_Israel_UNLT6wr.msg', 476); +INSERT INTO [[schema]].t2f_travelattachment VALUES (627, 'Other', 'Claim Mission Livraisons intrants Nut.pdf', 'travels/[[schema]]/288/Claim_Mission_Livraisons_intrants_Nut.pdf', 288); +INSERT INTO [[schema]].t2f_travelattachment VALUES (629, 'Other', 'Claim Mission Livraisons intrants Nut.pdf', 'travels/[[schema]]/288/Claim_Mission_Livraisons_intrants_Nut_N6hVMQd.pdf', 288); +INSERT INTO [[schema]].t2f_travelattachment VALUES (631, 'Other', 'RE UNICEFs support to reinforce the cluster + its own presence in Bagasola.msg', 'travels/[[schema]]/475/RE_UNICEFs_support_to_reinforce_the_cluster__its_own_presence_in_Bagasola.msg', 475); +INSERT INTO [[schema]].t2f_travelattachment VALUES (633, 'Other', 'Your security clearance request has been submitted.msg', 'travels/[[schema]]/475/Your_security_clearance_request_has_been_submitted.msg', 475); +INSERT INTO [[schema]].t2f_travelattachment VALUES (634, 'Other', 'cours obligatoire Israel.pdf', 'travels/[[schema]]/475/cours_obligatoire_Israel.pdf', 475); +INSERT INTO [[schema]].t2f_travelattachment VALUES (635, 'Other', 'demande de voyage d''appui BZ BOL.docx', 'travels/[[schema]]/475/demande_de_voyage_dappui_BZ_BOL.docx', 475); +INSERT INTO [[schema]].t2f_travelattachment VALUES (637, 'Other', 'TDR.pdf', 'travels/[[schema]]/60/TDR.pdf', 60); +INSERT INTO [[schema]].t2f_travelattachment VALUES (638, 'Other', 'TDR.pdf', 'travels/[[schema]]/60/TDR_046Qxku.pdf', 60); +INSERT INTO [[schema]].t2f_travelattachment VALUES (639, 'Other', 'Rapport de mission d''appui Logistique du 09.10 au 16.10.2019.pdf', 'travels/[[schema]]/60/Rapport_de_mission_dappui_Logistique_du_09.10_au_16.10.2019.pdf', 60); +INSERT INTO [[schema]].t2f_travelattachment VALUES (654, 'Other', 'UNICEF_T[[schema]]_Trip_Report_FORMATION-vf31032020 final signed.pdf', 'travels/[[schema]]/307/UNICEF_T[[schema]]_Trip_Report_FORMATION-vf31032020_final_signed.pdf', 307); +INSERT INTO [[schema]].t2f_travelattachment VALUES (655, 'HACT Programme Monitoring Report', 'VP CRT Mars 2020 SIGNED.pdf', 'travels/[[schema]]/307/VP_CRT_Mars_2020_SIGNED.pdf', 307); +INSERT INTO [[schema]].t2f_travelattachment VALUES (656, 'HACT Programme Monitoring Report', 'VP APDI Mars 2020 SIGNED.pdf', 'travels/[[schema]]/307/VP_APDI_Mars_2020_SIGNED.pdf', 307); +INSERT INTO [[schema]].t2f_travelattachment VALUES (643, 'Other', 'Grille d''ouverture UNA.xlsx', 'travels/[[schema]]/320/Grille_douverture_UNA.xlsx', 320); +INSERT INTO [[schema]].t2f_travelattachment VALUES (644, 'Other', 'Rapport de mission d''évaluation des CS Mandoul.pdf', 'travels/[[schema]]/320/Rapport_de_mission_dévaluation_des_CS_Mandoul.pdf', 320); +INSERT INTO [[schema]].t2f_travelattachment VALUES (645, 'Other', 'Grille d''ouverture UNA.xlsx', 'travels/[[schema]]/320/Grille_douverture_UNA_J96lxHn.xlsx', 320); +INSERT INTO [[schema]].t2f_travelattachment VALUES (646, 'Other', 'Rapport de mission suivi post distribution Mandoul 16 au 20 _3_20.pdf', 'travels/[[schema]]/320/Rapport_de_mission_suivi_post_distribution_Mandoul_16_au_20__3_20.pdf', 320); +INSERT INTO [[schema]].t2f_travelattachment VALUES (647, 'Other', 'Rapport de mission suivi post distribution Mandoul 16 au 20 _3_20.pdf', 'travels/[[schema]]/320/Rapport_de_mission_suivi_post_distribution_Mandoul_16_au_20__3_20_AiIuBCq.pdf', 320); +INSERT INTO [[schema]].t2f_travelattachment VALUES (648, 'Other', 'Rapport de mission d''évaluation des CS Mandoul.pdf', 'travels/[[schema]]/320/Rapport_de_mission_dévaluation_des_CS_Mandoul_NcbqXlF.pdf', 320); +INSERT INTO [[schema]].t2f_travelattachment VALUES (649, 'Other', 'Grille d''ouverture UNA.xlsx', 'travels/[[schema]]/320/Grille_douverture_UNA_8XVbFL6.xlsx', 320); +INSERT INTO [[schema]].t2f_travelattachment VALUES (650, 'Other', 'Rapport de mission d''évaluation des CS Mandoul.pdf', 'travels/[[schema]]/320/Rapport_de_mission_dévaluation_des_CS_Mandoul_I8p4XF5.pdf', 320); +INSERT INTO [[schema]].t2f_travelattachment VALUES (651, 'Other', 'Rapport de mission suivi post distribution Mandoul 16 au 20 _3_20.pdf', 'travels/[[schema]]/320/Rapport_de_mission_suivi_post_distribution_Mandoul_16_au_20__3_20_vdacmHZ.pdf', 320); +INSERT INTO [[schema]].t2f_travelattachment VALUES (657, 'Other', 'RapportVP Association Scouts T[[schema]]-cv.pdf', 'travels/[[schema]]/319/RapportVP_Association_Scouts_T[[schema]]-cv.pdf', 319); +INSERT INTO [[schema]].t2f_travelattachment VALUES (658, 'HACT Programme Monitoring Report', 'Visite Programmatique_Yedenou.Mongo Roun 2.pdf', 'travels/[[schema]]/483/Visite_Programmatique_Yedenou.Mongo_Roun_2.pdf', 483); +INSERT INTO [[schema]].t2f_travelattachment VALUES (660, 'Other', 'Termes de rérence Sup Log T[[schema]] 2019.docx', 'travels/[[schema]]/483/Termes_de_rérence_Sup_Log_T[[schema]]_2019.docx', 483); +INSERT INTO [[schema]].t2f_travelattachment VALUES (661, 'Other', 'demande de voyage Salamat 20-4-2020.docx', 'travels/[[schema]]/486/demande_de_voyage_Salamat_20-4-2020.docx', 486); +INSERT INTO [[schema]].t2f_travelattachment VALUES (662, 'Other', 'TDR_mission VP Salamat du 20-25-04-2020 vf.docx', 'travels/[[schema]]/486/TDR_mission__VP_Salamat_du_20-25-04-2020_vf.docx', 486); +INSERT INTO [[schema]].t2f_travelattachment VALUES (663, 'Other', 'SECURITY CLEARANCE DU 20-25-04-2020.doc', 'travels/[[schema]]/486/SECURITY_CLEARANCE_DU_20-25-04-2020.doc', 486); +INSERT INTO [[schema]].t2f_travelattachment VALUES (664, 'Other', 'cours obligatoires Dr Gregoire1.docx', 'travels/[[schema]]/486/cours_obligatoires_Dr_Gregoire1.docx', 486); +INSERT INTO [[schema]].t2f_travelattachment VALUES (665, 'Other', 'certificats yamtemadji.docx', 'travels/[[schema]]/486/certificats_yamtemadji.docx', 486); +INSERT INTO [[schema]].t2f_travelattachment VALUES (666, 'Other', 'TDR_mission VP Salamat du 20-25-04-2020 vf.docx', 'travels/[[schema]]/487/TDR_mission__VP_Salamat_du_20-25-04-2020_vf.docx', 487); +INSERT INTO [[schema]].t2f_travelattachment VALUES (667, 'Other', 'demande de voyage Salamat 20-4-2020.docx', 'travels/[[schema]]/487/demande_de_voyage_Salamat_20-4-2020.docx', 487); +INSERT INTO [[schema]].t2f_travelattachment VALUES (668, 'Other', 'SC.msg', 'travels/[[schema]]/487/SC.msg', 487); +INSERT INTO [[schema]].t2f_travelattachment VALUES (669, 'Other', 'Mes Certificats (004).docx', 'travels/[[schema]]/487/Mes_Certificats_004.docx', 487); +INSERT INTO [[schema]].t2f_travelattachment VALUES (670, 'Other', 'Claim Douro.pdf', 'travels/[[schema]]/442/Claim_Douro.pdf', 442); -- @@ -17348,6 +23792,9 @@ INSERT INTO [[schema]].t2f_travelattachment VALUES (46, 'Other', 'Rapport de VP INSERT INTO [[schema]].unicef_attachments_attachment VALUES (3, '2018-03-29 09:22:28.829453+00', '2018-12-11 01:00:28.36217+00', '', '', 3, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (4, '2018-03-29 09:22:28.894914+00', '2018-12-11 01:00:28.428227+00', '', '', 4, 'partners_partner_assessment', 275, 35, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (442, '2020-01-28 15:37:45.874559+00', '2020-01-28 15:37:45.874559+00', 'public/files/unknown/tmp/Spot_check_JRS_2020.zip', '', NULL, '', NULL, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (545, '2020-02-19 13:05:38.345609+00', '2020-02-19 13:05:38.345609+00', 'public/files/unknown/tmp/2_e_extension_sans_cout_AGT..pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (446, '2020-01-29 13:43:45.811712+00', '2020-01-29 13:44:00.06687+00', 'public/files/unknown/tmp/face_salamat_T1_repris.pdf', '', 3, 'audit_engagement', 220, 9, 7798); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (5, '2018-03-29 09:22:28.955057+00', '2018-12-11 01:00:28.498492+00', '', '', 5, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (6, '2018-03-29 09:22:29.018194+00', '2018-12-11 01:00:28.561098+00', '', '', 6, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (7, '2018-03-29 09:22:29.085908+00', '2018-12-11 01:00:28.624938+00', '', '', 7, 'partners_partner_assessment', 275, 35, NULL); @@ -17414,9 +23861,17 @@ INSERT INTO [[schema]].unicef_attachments_attachment VALUES (73, '2018-03-29 09: INSERT INTO [[schema]].unicef_attachments_attachment VALUES (75, '2018-03-29 09:22:33.748803+00', '2018-12-11 01:00:33.643117+00', '', '', 76, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (45, '2018-03-29 09:22:31.727389+00', '2018-12-11 01:01:01.734428+00', '', '', 46, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (1, '2018-03-29 09:22:28.6891+00', '2018-12-11 01:00:28.297272+00', '', '', 2, 'partners_partner_assessment', 275, 35, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (502, '2020-02-17 14:28:09.015233+00', '2020-02-17 14:28:09.015233+00', 'public/files/unknown/tmp/3.document_de_programme_CDVT.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (443, '2020-01-28 15:41:43.720037+00', '2020-01-28 15:41:43.720037+00', 'public/files/unknown/tmp/Spot_check_JRS_2020_NaoQP2l.zip', '', NULL, '', NULL, NULL, 7798); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (79, '2018-03-29 09:22:34.01672+00', '2018-12-11 01:00:33.999905+00', '', '', 80, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (81, '2018-03-29 09:22:34.146733+00', '2018-12-11 01:00:34.175208+00', '', '', 82, 'partners_partner_assessment', 275, 35, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (449, '2020-02-12 13:53:12.888102+00', '2020-02-12 13:53:25.588892+00', 'public/files/unknown/tmp/UNICEF_-_CHAD_-_Rapport__Micro_Evaluation_-_RNTAP_Final.pdf', '', 409, 'partners_partner_assessment', 275, NULL, 12023); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (447, '2020-01-29 13:44:12.280172+00', '2020-01-29 13:44:20.689693+00', 'public/files/unknown/tmp/Requete_T3_2018..pdf', '', 3, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (507, '2020-02-17 14:34:09.225033+00', '2020-02-17 14:34:09.225033+00', 'public/files/unknown/tmp/7.formulaire_evaluation_finale_CDVT.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (460, '2020-02-12 15:11:44.081159+00', '2020-02-12 15:11:48.030053+00', 'public/files/unknown/tmp/1-Liste_de_controle_PCA.pdf', '', 2, 'partners_intervention_attachment', 156, NULL, 4606); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (82, '2018-03-29 09:22:34.208193+00', '2018-12-11 01:00:34.297328+00', '', '', 83, 'partners_partner_assessment', 275, 35, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (465, '2020-02-12 15:13:10.68323+00', '2020-02-12 15:13:10.68323+00', 'public/files/unknown/tmp/8._Formulaire_de_soumission_des_accords_de_partenariat.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (471, '2020-02-12 15:14:33.631988+00', '2020-02-12 15:14:33.631988+00', 'public/files/unknown/tmp/Attestation_de_reconnaissance.pdf', '', NULL, '', NULL, NULL, 4606); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (83, '2018-03-29 09:22:34.291916+00', '2018-12-11 01:00:34.445914+00', '', '', 84, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (84, '2018-03-29 09:22:34.354664+00', '2018-12-11 01:00:34.530395+00', '', '', 85, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (85, '2018-03-29 09:22:34.417716+00', '2018-12-11 01:00:34.602635+00', '', '', 86, 'partners_partner_assessment', 275, 35, NULL); @@ -17477,7 +23932,37 @@ INSERT INTO [[schema]].unicef_attachments_attachment VALUES (141, '2018-03-29 09 INSERT INTO [[schema]].unicef_attachments_attachment VALUES (21, '2018-03-29 09:22:30.042132+00', '2018-12-11 01:00:29.690458+00', '', '', 21, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (78, '2018-03-29 09:22:33.950083+00', '2018-12-11 01:00:33.90009+00', '', '', 79, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (80, '2018-03-29 09:22:34.081728+00', '2018-12-11 01:00:34.066413+00', '', '', 81, 'partners_partner_assessment', 275, 35, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (450, '2020-02-12 14:14:56.725947+00', '2020-02-12 14:14:56.725947+00', 'public/files/unknown/tmp/2._Accord_de_coopération.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (444, '2020-01-28 15:42:12.121538+00', '2020-01-28 15:42:36.017657+00', 'public/files/unknown/tmp/JRS_FACE_de_liquidation_de_125_605_517.pdf', '', 1, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (448, '2020-01-29 13:44:29.969341+00', '2020-01-29 13:44:34.492059+00', 'public/files/unknown/tmp/requete_T4_Salamat.pdf', '', 3, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (380, '2018-03-29 09:22:54.181568+00', '2018-12-11 01:00:57.308685+00', '', '', 384, 'partners_partner_assessment', 275, 35, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (455, '2020-02-12 15:00:41.957455+00', '2020-02-12 15:01:50.636554+00', 'public/files/unknown/tmp/3-_Annexe_C_1ere_Partie_-_Document_de_programme.pdf', '', 5, 'partners_intervention_signed_pd', 151, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (491, '2020-02-17 10:49:58.835904+00', '2020-02-17 10:50:05.268202+00', 'public/files/unknown/tmp/1.accord_UNICEF-CELIAF.pdf', '', 3, 'partners_agreement', 72, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (461, '2020-02-12 15:12:04.701372+00', '2020-02-12 15:12:12.767337+00', 'public/files/unknown/tmp/4-Annexe_C_2e_partie-Rapport_davancement_nqYJQXj.pdf', '', 3, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (492, '2020-02-17 12:26:45.182618+00', '2020-02-17 12:29:59.752703+00', 'public/files/unknown/tmp/3.document_de_programme_CELIAF.pdf', '', 7, 'partners_intervention_signed_pd', 151, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (467, '2020-02-12 15:13:32.151494+00', '2020-02-12 15:13:34.243935+00', 'public/files/unknown/tmp/9.A-Annexe_H_budget_détaillé_du_programme.pdf', '', 7, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (494, '2020-02-17 12:37:19.013815+00', '2020-02-17 12:37:22.144789+00', 'public/files/unknown/tmp/0.liste_de_contrôle_CELIAF.pdf', '', 23, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (472, '2020-02-12 15:14:54.734907+00', '2020-02-12 15:14:57.637985+00', 'public/files/unknown/tmp/10-Annexe_I_Evaluation_conjointe_du_partenaire_nPBSucs.pdf', '', 8, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (475, '2020-02-12 15:18:48.18906+00', '2020-02-12 15:18:53.936777+00', 'public/files/unknown/tmp/RNTAP_DCT_Liquidation_16212000_ODyaziY.pdf', '', 10, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (478, '2020-02-12 15:20:09.247788+00', '2020-02-12 15:20:13.384672+00', 'public/files/unknown/tmp/Rapport_Unicef_T1_2019_final.docx', '', 12, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (481, '2020-02-12 16:21:20.408819+00', '2020-02-12 16:23:37.900491+00', 'public/files/unknown/tmp/afdi_doc_de_prog.pdf', '', 6, 'partners_intervention_signed_pd', 151, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (496, '2020-02-17 12:37:57.49507+00', '2020-02-17 12:37:59.918092+00', 'public/files/unknown/tmp/4.rapport_trimestriel_CELIAF.pdf', '', 25, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (485, '2020-02-12 16:25:13.920074+00', '2020-02-12 16:25:19.116291+00', 'public/files/unknown/tmp/afdi_eval_final_part.pdf', '', 16, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (488, '2020-02-12 16:26:06.261584+00', '2020-02-12 16:26:08.34817+00', 'public/files/unknown/tmp/afdi_soumission.pdf', '', 19, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (498, '2020-02-17 12:38:29.553124+00', '2020-02-17 12:38:29.553124+00', 'public/files/unknown/tmp/7.formulaire_devaluation_finale_CELIAF.pdf', '', NULL, '', NULL, NULL, 4606); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (214, '2018-03-29 09:22:43.159448+00', '2018-12-11 01:00:44.758861+00', '', '', 215, 'partners_partner_assessment', 275, 35, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (530, '2020-02-18 14:00:58.115752+00', '2020-02-18 14:01:04.207529+00', 'public/files/unknown/tmp/Accords_Juridique_URPT.pdf', '', 7, 'partners_agreement', 72, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (500, '2020-02-17 12:38:57.834278+00', '2020-02-17 12:39:00.554466+00', 'public/files/unknown/tmp/7.formulaire_devaluation_finale_CELIAF_aXlG9RM.pdf', '', 28, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (503, '2020-02-17 14:32:54.072377+00', '2020-02-17 14:32:56.329749+00', 'public/files/unknown/tmp/0.liste_de_contrôle_CDVT.pdf', '', 29, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (505, '2020-02-17 14:33:29.70239+00', '2020-02-17 14:33:32.356865+00', 'public/files/unknown/tmp/4.rapport_trimestriel_CDVT.pdf', '', 31, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (508, '2020-02-17 14:34:17.166242+00', '2020-02-17 14:34:19.757605+00', 'public/files/unknown/tmp/8.budget_CDVT.pdf', '', 33, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (510, '2020-02-17 14:37:29.12808+00', '2020-02-17 14:37:32.32633+00', 'public/files/unknown/tmp/RE_Document_de_programme_avec_CDVT_sur_le_financement_KFW2_pour_ton_approbation_et_transmission_au_Secretariat_PRC.zip', '', 35, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (512, '2020-02-17 15:14:19.685756+00', '2020-02-17 15:14:27.799782+00', 'public/files/unknown/tmp/SSFA_2019_AST_COMMUNICATION.pdf', '', 9, 'partners_intervention_signed_pd', 151, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (514, '2020-02-17 15:29:11.503764+00', '2020-02-17 15:29:16.504018+00', 'public/files/unknown/tmp/paiement_1ere_tranche_AST.pdf', '', 38, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (517, '2020-02-17 16:28:35.49783+00', '2020-02-17 16:28:38.172741+00', 'public/files/unknown/tmp/PCA_2018_AGT_1ere_tranche.pdf', '', 39, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (519, '2020-02-17 16:29:32.239215+00', '2020-02-17 16:29:34.48148+00', 'public/files/unknown/tmp/0-Fiche_de_revue_de_la_documentation_PCA_u2vPwn4.pdf', '', 41, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (521, '2020-02-17 16:30:02.949765+00', '2020-02-17 16:30:05.490253+00', 'public/files/unknown/tmp/4-Annexe_C_2e_partie-Rapport_davancement_E04CBD7.pdf', '', 43, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (523, '2020-02-17 16:30:57.402624+00', '2020-02-17 16:30:59.713916+00', 'public/files/unknown/tmp/6_et_7_Annexe_E_et_F_Déclaration_du_partenaire_UWmbQyy.pdf', '', 45, 'partners_intervention_attachment', 156, NULL, 4606); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (215, '2018-03-29 09:22:43.222449+00', '2018-12-11 01:00:44.824605+00', '', '', 216, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (216, '2018-03-29 09:22:43.285007+00', '2018-12-11 01:00:44.914804+00', '', '', 217, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (217, '2018-03-29 09:22:43.346212+00', '2018-12-11 01:00:45.016185+00', '', '', 218, 'partners_partner_assessment', 275, 35, NULL); @@ -17503,8 +23988,14 @@ INSERT INTO [[schema]].unicef_attachments_attachment VALUES (210, '2018-03-29 09 INSERT INTO [[schema]].unicef_attachments_attachment VALUES (211, '2018-03-29 09:22:42.970115+00', '2018-12-11 01:00:44.559902+00', '', '', 212, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (212, '2018-03-29 09:22:43.030378+00', '2018-12-11 01:00:44.62055+00', '', '', 213, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (213, '2018-03-29 09:22:43.090197+00', '2018-12-11 01:00:44.68605+00', '', '', 214, 'partners_partner_assessment', 275, 35, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (451, '2020-02-12 14:20:21.016869+00', '2020-02-12 14:20:21.016869+00', 'public/files/unknown/tmp/CHDPCA20201.pdf', '', NULL, '', NULL, NULL, 4606); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (230, '2018-03-29 09:22:44.214466+00', '2018-12-11 01:00:45.967983+00', '', '', 231, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (231, '2018-03-29 09:22:44.27531+00', '2018-12-11 01:00:46.03117+00', '', '', 232, 'partners_partner_assessment', 275, 35, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (445, '2020-01-28 15:45:46.434256+00', '2020-01-28 15:46:42.489225+00', 'public/files/unknown/tmp/PCA_JRS_-_version_finale.zip', '', 1, 'audit_engagement', 220, 10, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (456, '2020-02-12 15:07:57.483812+00', '2020-02-12 15:07:57.483812+00', 'public/files/unknown/tmp/4-Annexe_C_2e_partie-Rapport_davancement.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (462, '2020-02-12 15:12:26.286563+00', '2020-02-12 15:12:28.791942+00', 'public/files/unknown/tmp/5-Annexe_D_-_Résumé_des_services.pdf', '', 4, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (466, '2020-02-12 15:13:17.515145+00', '2020-02-12 15:13:19.470779+00', 'public/files/unknown/tmp/8._Formulaire_de_soumission_des_accords_de_partenariat_PPAxoAj.pdf', '', 6, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (468, '2020-02-12 15:13:52.064525+00', '2020-02-12 15:13:52.064525+00', 'public/files/unknown/tmp/10-Annexe_I_Evaluation_conjointe_du_partenaire.pdf', '', NULL, '', NULL, NULL, 4606); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (232, '2018-03-29 09:22:44.366838+00', '2018-12-11 01:00:46.094165+00', '', '', 233, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (233, '2018-03-29 09:22:44.430389+00', '2018-12-11 01:00:46.167238+00', '', '', 234, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (234, '2018-03-29 09:22:44.491388+00', '2018-12-11 01:00:46.258466+00', '', '', 235, 'partners_partner_assessment', 275, 35, NULL); @@ -17566,6 +24057,17 @@ INSERT INTO [[schema]].unicef_attachments_attachment VALUES (270, '2018-03-29 09 INSERT INTO [[schema]].unicef_attachments_attachment VALUES (23, '2018-03-29 09:22:30.199429+00', '2018-12-11 01:00:29.822091+00', '', '', 23, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (228, '2018-03-29 09:22:44.074368+00', '2018-12-11 01:00:45.836592+00', '', '', 229, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (229, '2018-03-29 09:22:44.139742+00', '2018-12-11 01:00:45.903057+00', '', '', 230, 'partners_partner_assessment', 275, 35, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (452, '2020-02-12 14:21:18.47273+00', '2020-02-12 14:21:18.47273+00', 'public/files/unknown/tmp/CHD_PCA20201-RESEAU_NATIONAL_TCHADIEN_DES_ASSOCIATIONS_DES_PERSONNES_VIVANT_AVEC_LE_VIH_RNTAP.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (457, '2020-02-12 15:10:48.684882+00', '2020-02-12 15:10:48.684882+00', 'public/files/unknown/tmp/0-Fiche_de_revue_de_la_documentation_PCA.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (463, '2020-02-12 15:12:44.302043+00', '2020-02-12 15:12:44.302043+00', 'public/files/unknown/tmp/6_et_7_Annexe_E_et_F_Déclaration_du_partenaire.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (469, '2020-02-12 15:13:59.18195+00', '2020-02-12 15:13:59.18195+00', 'public/files/unknown/tmp/10-Annexe_I_Evaluation_conjointe_du_partenaire_w6iNj3q.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (542, '2020-02-19 13:00:16.43393+00', '2020-02-19 13:00:16.43393+00', 'public/files/unknown/tmp/Reponse_extension_sans_cout__PCA_AGT_31_dec_19.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (473, '2020-02-12 15:15:07.213031+00', '2020-02-12 15:15:09.440348+00', 'public/files/unknown/tmp/Attestation_de_reconnaissance_4KqfPvw.pdf', '', 9, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (476, '2020-02-12 15:19:11.329481+00', '2020-02-12 15:19:11.329481+00', 'public/files/unknown/tmp/Remboursement_RNTAP_1800000_FCFA.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (479, '2020-02-12 15:50:23.442562+00', '2020-02-12 15:50:26.743344+00', 'public/files/unknown/tmp/afdi_accord_de_coop.pdf', '', 2, 'partners_agreement', 72, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (482, '2020-02-12 16:24:06.730786+00', '2020-02-12 16:24:09.957262+00', 'public/files/unknown/tmp/afdi_budget.pdf', '', 13, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (486, '2020-02-12 16:25:31.246528+00', '2020-02-12 16:25:33.484343+00', 'public/files/unknown/tmp/afdi_liste_de_controle.pdf', '', 17, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (489, '2020-02-12 16:26:25.951706+00', '2020-02-12 16:26:28.670374+00', 'public/files/unknown/tmp/Mail_BdZ_Abeche_PCA_AFDI.pdf', '', 20, 'partners_intervention_attachment', 156, NULL, 4606); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (326, '2018-03-29 09:22:50.583161+00', '2018-12-11 01:00:53.316078+00', '', '', 328, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (327, '2018-03-29 09:22:50.643583+00', '2018-12-11 01:00:53.445024+00', '', '', 329, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (328, '2018-03-29 09:22:50.707335+00', '2018-12-11 01:00:53.506595+00', '', '', 330, 'partners_partner_assessment', 275, 35, NULL); @@ -17629,11 +24131,11 @@ INSERT INTO [[schema]].unicef_attachments_attachment VALUES (2, '2018-03-29 09:2 INSERT INTO [[schema]].unicef_attachments_attachment VALUES (74, '2018-03-29 09:22:33.688769+00', '2018-12-11 01:00:33.583926+00', '', '', 75, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (76, '2018-03-29 09:22:33.811907+00', '2018-12-11 01:00:33.705534+00', '', '', 77, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (94, '2018-03-29 09:22:35.079272+00', '2018-12-11 01:00:35.249224+00', '', '', 95, 'partners_partner_assessment', 275, 35, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (453, '2020-02-12 14:28:10.32325+00', '2020-02-12 14:28:10.32325+00', 'public/files/unknown/tmp/CHD_PCA20201-RESEAU_NATIONAL_TCHADIEN_DES_ASSOCIATIONS_DES_PERSONNES_VIVANT_AVEC_LE_VIH_RNTAP_VgIQEHv.pdf', '', NULL, '', NULL, NULL, 4606); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (376, '2018-03-29 09:22:53.891403+00', '2018-12-11 01:00:57.058469+00', '', '', 380, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (377, '2018-03-29 09:22:53.952225+00', '2018-12-11 01:00:57.121256+00', '', '', 381, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (379, '2018-03-29 09:22:54.106411+00', '2018-12-11 01:00:57.184652+00', '', '', 382, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (378, '2018-03-29 09:22:54.015521+00', '2018-12-11 01:00:57.249481+00', '', '', 383, 'partners_partner_assessment', 275, 35, NULL); -INSERT INTO [[schema]].unicef_attachments_attachment VALUES (380, '2018-03-29 09:22:54.181568+00', '2018-12-11 01:00:57.308685+00', '', '', 384, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (381, '2018-03-29 09:22:54.251099+00', '2018-12-11 01:00:57.388456+00', '', '', 385, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (382, '2018-03-29 09:22:54.311232+00', '2018-12-11 01:00:57.461001+00', '', '', 386, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (383, '2018-03-29 09:22:54.371717+00', '2018-12-11 01:00:57.562838+00', '', '', 387, 'partners_partner_assessment', 275, 35, NULL); @@ -17692,6 +24194,7 @@ INSERT INTO [[schema]].unicef_attachments_attachment VALUES (147, '2018-03-29 09 INSERT INTO [[schema]].unicef_attachments_attachment VALUES (436, '2018-08-29 04:00:04.619093+00', '2018-12-11 01:00:49.043178+00', '', '', 436, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (430, '2018-04-12 16:14:27.516475+00', '2018-12-11 01:00:54.194354+00', '', '', 340, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (431, '2018-04-25 16:13:45.296746+00', '2018-12-11 01:00:54.439694+00', '', '', 343, 'partners_partner_assessment', 275, 35, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (458, '2020-02-12 15:11:03.246669+00', '2020-02-12 15:11:03.246669+00', 'public/files/unknown/tmp/0-Fiche_de_revue_de_la_documentation_PCA_OPuwY28.pdf', '', NULL, '', NULL, NULL, 4606); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (226, '2018-03-29 09:22:43.935273+00', '2018-12-11 01:00:45.696887+00', '', '', 227, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (227, '2018-03-29 09:22:44.005375+00', '2018-12-11 01:00:45.764409+00', '', '', 228, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (272, '2018-03-29 09:22:46.976264+00', '2018-12-11 01:00:49.164734+00', '', '', 274, 'partners_partner_assessment', 275, 35, NULL); @@ -17787,6 +24290,215 @@ INSERT INTO [[schema]].unicef_attachments_attachment VALUES (314, '2018-03-29 09 INSERT INTO [[schema]].unicef_attachments_attachment VALUES (315, '2018-03-29 09:22:49.859175+00', '2018-12-11 01:00:52.431383+00', '', '', 317, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (316, '2018-03-29 09:22:49.921706+00', '2018-12-11 01:00:52.52601+00', '', '', 318, 'partners_partner_assessment', 275, 35, NULL); INSERT INTO [[schema]].unicef_attachments_attachment VALUES (317, '2018-03-29 09:22:49.981379+00', '2018-12-11 01:00:52.589751+00', '', '', 319, 'partners_partner_assessment', 275, 35, NULL); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (493, '2020-02-17 12:37:03.799657+00', '2020-02-17 12:37:06.62193+00', 'public/files/unknown/tmp/FACE_111219CELIA.pdf', '', 22, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (454, '2020-02-12 14:51:29.655057+00', '2020-02-12 14:51:33.704004+00', 'public/files/unknown/tmp/CHD_PCA20201-RESEAU_NATIONAL_TCHADIEN_DES_ASSOCIATIONS_DES_PERSONNES_VIVANT_AVEC_LE_VIH_RNTAP_2F5wiTE.pdf', '', 1, 'partners_agreement', 72, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (495, '2020-02-17 12:37:38.327591+00', '2020-02-17 12:37:42.876362+00', 'public/files/unknown/tmp/2.declaration_du_profil_du_partenaire_CELIAF.pdf', '', 24, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (459, '2020-02-12 15:11:24.026276+00', '2020-02-12 15:11:27.650419+00', 'public/files/unknown/tmp/0-Fiche_de_revue_de_la_documentation_PCA_pvbPSCp.pdf', '', 1, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (464, '2020-02-12 15:12:57.465133+00', '2020-02-12 15:12:59.722512+00', 'public/files/unknown/tmp/6_et_7_Annexe_E_et_F_Déclaration_du_partenaire_7QQYa38.pdf', '', 5, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (470, '2020-02-12 15:14:23.647773+00', '2020-02-12 15:14:23.647773+00', 'public/files/unknown/tmp/10-Annexe_I_Evaluation_conjointe_du_partenaire_YNLAsA0.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (474, '2020-02-12 15:18:08.44997+00', '2020-02-12 15:18:08.44997+00', 'public/files/unknown/tmp/RNTAP_DCT_Liquidation_16212000.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (497, '2020-02-17 12:38:14.031329+00', '2020-02-17 12:38:16.560772+00', 'public/files/unknown/tmp/5.formulaire_de_soumission_CELIAF.pdf', '', 26, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (477, '2020-02-12 15:19:43.881592+00', '2020-02-12 15:19:46.699566+00', 'public/files/unknown/tmp/Remboursement_RNTAP_1800000_FCFA_nhltqxS.pdf', '', 11, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (480, '2020-02-12 16:19:21.777882+00', '2020-02-12 16:19:21.777882+00', 'public/files/unknown/tmp/Mail_au_Gouvernement.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (483, '2020-02-12 16:24:24.814751+00', '2020-02-12 16:24:41.907794+00', 'public/files/unknown/tmp/afdi_capa_d_appro.pdf', '', 14, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (484, '2020-02-12 16:24:59.144745+00', '2020-02-12 16:25:02.252313+00', 'public/files/unknown/tmp/afdi_declaration_du_partenaire.pdf', '', 15, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (499, '2020-02-17 12:38:41.416445+00', '2020-02-17 12:38:43.698415+00', 'public/files/unknown/tmp/8.budget_CELIAF.pdf', '', 27, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (487, '2020-02-12 16:25:47.520229+00', '2020-02-12 16:25:53.153608+00', 'public/files/unknown/tmp/afdi_rapport_tri.pdf', '', 18, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (490, '2020-02-12 16:27:05.75717+00', '2020-02-12 16:27:08.123724+00', 'public/files/unknown/tmp/Mail_BdZ_Abeche_PCA_AFDI_Z1ZvUWK.pdf', '', 21, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (501, '2020-02-17 14:08:15.362471+00', '2020-02-17 14:08:25.319099+00', 'public/files/unknown/tmp/1.accord_UNICEF-_CDVT.pdf', '', 4, 'partners_agreement', 72, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (504, '2020-02-17 14:33:10.018696+00', '2020-02-17 14:33:12.895152+00', 'public/files/unknown/tmp/2.declaration_du_profil_du_partenaire_CDVT.pdf', '', 30, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (506, '2020-02-17 14:33:47.256167+00', '2020-02-17 14:33:57.514796+00', 'public/files/unknown/tmp/5.formulaire_de_soumissionCDVT.pdf', '', 32, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (509, '2020-02-17 14:34:35.557226+00', '2020-02-17 14:34:40.380832+00', 'public/files/unknown/tmp/7.formulaire_evaluation_finale_CDVT_kLJJYuh.pdf', '', 34, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (511, '2020-02-17 14:37:46.097198+00', '2020-02-17 14:37:49.280296+00', 'public/files/unknown/tmp/Re_Docs_pour_le_document_de_progamme_debut_echange_avecc_CDVT.zip', '', 36, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (513, '2020-02-17 15:27:16.197562+00', '2020-02-17 15:27:26.576234+00', 'public/files/unknown/tmp/SSFA_2019_AST_COMMUNICATION_lg6mQY3.pdf', '', 37, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (515, '2020-02-17 15:39:05.313882+00', '2020-02-17 15:39:47.109334+00', 'public/files/unknown/tmp/2.A_Accord_de_coopération.pdf', '', 6, 'partners_agreement', 72, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (516, '2020-02-17 16:23:23.393742+00', '2020-02-17 16:25:25.653992+00', 'public/files/unknown/tmp/3-Annexe_C1ere_Partie-_Document_de_programme.pdf', '', 10, 'partners_intervention_signed_pd', 151, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (518, '2020-02-17 16:28:53.272665+00', '2020-02-17 16:28:56.4772+00', 'public/files/unknown/tmp/2è_Tranche_PCA_AGT.pdf', '', 40, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (520, '2020-02-17 16:29:48.126868+00', '2020-02-17 16:29:50.044802+00', 'public/files/unknown/tmp/1-Liste_de_controle.pdf', '', 42, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (522, '2020-02-17 16:30:19.38863+00', '2020-02-17 16:30:21.560444+00', 'public/files/unknown/tmp/5-Annexe_D.pdf', '', 44, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (524, '2020-02-17 16:31:18.415712+00', '2020-02-17 16:31:21.725457+00', 'public/files/unknown/tmp/8-Annexe_G.pdf', '', 46, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (525, '2020-02-17 16:31:35.984023+00', '2020-02-17 16:31:38.578882+00', 'public/files/unknown/tmp/9.A-Annexe_H_budget_détaillé_du_programme_Zn4Jx1m.pdf', '', 47, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (526, '2020-02-17 16:31:49.185555+00', '2020-02-17 16:31:51.568716+00', 'public/files/unknown/tmp/10-Annexe_I_Evaluation_conjointe_du_partenaire_yP0292o.pdf', '', 48, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (527, '2020-02-17 16:32:18.016053+00', '2020-02-17 16:32:21.146856+00', 'public/files/unknown/tmp/Autorisation_de_fonctionner.pdf', '', 49, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (528, '2020-02-17 16:32:38.124249+00', '2020-02-17 16:32:40.101191+00', 'public/files/unknown/tmp/Note_au_dossier_selection_directe.pdf', '', 50, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (543, '2020-02-19 13:01:38.325277+00', '2020-02-19 13:01:38.325277+00', 'public/files/unknown/tmp/Reponse_extension_sans_cout__PCA_AGT_31_dec_19_Nz72D7E.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (529, '2020-02-17 16:36:04.759026+00', '2020-02-17 16:36:07.056368+00', 'public/files/unknown/tmp/Accord_de_coopération_-_PSEA.pdf', '', 51, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (532, '2020-02-18 14:36:18.772468+00', '2020-02-18 14:36:23.288505+00', 'public/files/unknown/tmp/Formulaire_Declaration_URPT.pdf', '', 52, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (533, '2020-02-18 14:36:40.064537+00', '2020-02-18 14:36:43.810746+00', 'public/files/unknown/tmp/Formulaire_soumission.pdf', '', 53, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (544, '2020-02-19 13:02:03.126051+00', '2020-02-19 13:02:08.15423+00', 'public/files/unknown/tmp/Reponse_extension_sans_cout__PCA_AGT_31_dec_19_mv8kiUB.pdf', '', 1, 'partners_intervention_amendment_signed', 152, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (534, '2020-02-18 14:37:36.477785+00', '2020-02-18 14:38:46.234649+00', 'public/files/unknown/tmp/Liste_controle.pdf', '', 54, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (535, '2020-02-18 14:39:09.936506+00', '2020-02-18 14:39:09.936506+00', 'public/files/unknown/tmp/Note_au_dossier.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (548, '2020-02-20 12:51:37.93351+00', '2020-02-20 12:51:43.768239+00', 'public/files/unknown/tmp/ACF_Accord_new.pdf', '', 8, 'partners_agreement', 72, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (536, '2020-02-18 14:39:25.99631+00', '2020-02-18 14:39:30.014949+00', 'public/files/unknown/tmp/Note_au_dossier_V2nwUSD.pdf', '', 55, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (546, '2020-02-19 13:05:49.602273+00', '2020-02-19 13:05:54.210627+00', 'public/files/unknown/tmp/2_e_extension_sans_cout_AGT._D5kWxPt.pdf', '', 60, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (537, '2020-02-18 14:39:44.4429+00', '2020-02-18 14:39:51.508255+00', 'public/files/unknown/tmp/Rapport_Progres_URPT.pdf', '', 56, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (538, '2020-02-18 14:40:50.769126+00', '2020-02-18 14:40:50.769126+00', 'public/files/unknown/tmp/1ère_Tranche_SSFA_URPT.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (601, '2020-02-25 13:51:40.111419+00', '2020-02-25 13:51:40.111419+00', 'public/files/unknown/tmp/1ERE_TRANCHE_AFA.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (547, '2020-02-19 13:12:25.685816+00', '2020-02-19 13:12:29.087867+00', 'public/files/unknown/tmp/2_e_extension_sans_cout_AGT._4sPm6CW.pdf', '', 2, 'partners_intervention_amendment_signed', 152, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (540, '2020-02-18 14:43:53.326269+00', '2020-02-18 14:43:57.671483+00', 'public/files/unknown/tmp/FACE_1ere_Tranche_URPT.pdf', '', 58, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (550, '2020-02-20 14:01:34.950407+00', '2020-02-20 14:01:38.340235+00', 'public/files/unknown/tmp/Annexe_D.pdf', '', 61, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (541, '2020-02-18 14:44:22.876127+00', '2020-02-18 14:44:25.164395+00', 'public/files/unknown/tmp/FACE_2e_tranche_URPT.pdf', '', 59, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (531, '2020-02-18 14:31:20.134131+00', '2020-02-18 14:45:39.10026+00', 'public/files/unknown/tmp/Document_de_Programme_URPT.pdf', '', 11, 'partners_intervention_signed_pd', 151, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (551, '2020-02-20 14:01:55.869373+00', '2020-02-20 14:01:59.205317+00', 'public/files/unknown/tmp/Annexe_G_qBqwhqB.pdf', '', 62, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (552, '2020-02-20 14:02:12.598644+00', '2020-02-20 14:02:14.979148+00', 'public/files/unknown/tmp/Annexe_I_Evaluation_conjointe.pdf', '', 63, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (553, '2020-02-20 14:02:26.478716+00', '2020-02-20 14:02:28.478674+00', 'public/files/unknown/tmp/Annexe_K_supply.pdf', '', 64, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (554, '2020-02-20 14:02:44.493408+00', '2020-02-20 14:02:46.945631+00', 'public/files/unknown/tmp/Budget_tbWMoBb.pdf', '', 65, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (555, '2020-02-20 14:03:05.878266+00', '2020-02-20 14:03:15.559314+00', 'public/files/unknown/tmp/Declaration_du_profil_de_partenaire.pdf', '', 66, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (556, '2020-02-20 14:03:30.711629+00', '2020-02-20 14:03:33.558594+00', 'public/files/unknown/tmp/Echange.pdf', '', 67, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (557, '2020-02-20 14:03:45.404173+00', '2020-02-20 14:03:47.447557+00', 'public/files/unknown/tmp/fiche_de_revue_du_PCA.pdf', '', 68, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (558, '2020-02-20 14:04:02.864884+00', '2020-02-20 14:04:05.98848+00', 'public/files/unknown/tmp/Liste_de_controle.pdf', '', 69, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (559, '2020-02-20 14:04:31.459834+00', '2020-02-20 14:04:34.780569+00', 'public/files/unknown/tmp/Dossier_liquidation_ACFT1_et_paiement_T2_002.pdf', '', 70, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (560, '2020-02-20 14:04:49.966449+00', '2020-02-20 14:04:52.19894+00', 'public/files/unknown/tmp/Liqui_partiel_T1__paiement_T2_WASH_In_NUT.pdf', '', 71, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (561, '2020-02-20 14:05:07.819231+00', '2020-02-20 14:05:10.340724+00', 'public/files/unknown/tmp/paiemt_T1_PCA_NO_7_ACF_WASH_NUT.pdf', '', 72, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (549, '2020-02-20 13:59:41.678768+00', '2020-02-20 14:05:21.375871+00', 'public/files/unknown/tmp/Annexe_C_1ere_partie.pdf', '', 12, 'partners_intervention_signed_pd', 151, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (562, '2020-02-20 14:23:13.213513+00', '2020-02-20 14:23:14.955469+00', 'public/files/unknown/tmp/Accord_de_cooperation.pdf', '', 9, 'partners_agreement', 72, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (563, '2020-02-20 14:47:27.04783+00', '2020-02-20 14:47:27.04783+00', 'public/files/unknown/tmp/Document_de_Programme_humanitaire.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (564, '2020-02-20 14:48:38.173146+00', '2020-02-20 14:49:22.738566+00', 'public/files/unknown/tmp/Document_de_Programme_humanitaire_vl0GpqY.pdf', '', 13, 'partners_intervention_signed_pd', 151, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (565, '2020-02-20 14:49:47.701861+00', '2020-02-20 14:49:50.251931+00', 'public/files/unknown/tmp/amendement_1.pdf', '', 73, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (566, '2020-02-20 14:50:02.535888+00', '2020-02-20 14:50:05.735277+00', 'public/files/unknown/tmp/budget_amendement_1.pdf', '', 74, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (567, '2020-02-20 14:50:16.521607+00', '2020-02-20 14:50:18.793651+00', 'public/files/unknown/tmp/Budget_cfWAvJz.pdf', '', 75, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (568, '2020-02-20 14:50:33.31595+00', '2020-02-20 14:50:35.497869+00', 'public/files/unknown/tmp/Echange_kRoySHi.pdf', '', 76, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (569, '2020-02-20 14:50:46.84238+00', '2020-02-20 14:50:46.84238+00', 'public/files/unknown/tmp/Evaluation_des_capacites_dapprovisionnt.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (570, '2020-02-20 14:50:57.067038+00', '2020-02-20 14:50:59.534632+00', 'public/files/unknown/tmp/Evaluation_des_capacites_dapprovisionnt_3gW4XbE.pdf', '', 77, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (571, '2020-02-20 14:51:10.054818+00', '2020-02-20 14:51:12.110077+00', 'public/files/unknown/tmp/Formulaire_d_Evaluation_finale_du_partenariat.pdf', '', 78, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (572, '2020-02-20 14:51:20.349248+00', '2020-02-20 14:51:23.963732+00', 'public/files/unknown/tmp/Formulaire_de_demande_fourniture.pdf', '', 79, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (573, '2020-02-20 14:51:35.948734+00', '2020-02-20 14:51:35.948734+00', 'public/files/unknown/tmp/Formulaire_de_soumission_et_demande_dapprobation_non_PCR.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (574, '2020-02-20 14:51:45.176291+00', '2020-02-20 14:51:48.06802+00', 'public/files/unknown/tmp/Formulaire_de_soumission_et_demande_dapprobation_non_PCR_Oh6frVB.pdf', '', 80, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (575, '2020-02-20 14:52:00.656907+00', '2020-02-20 14:52:23.220496+00', 'public/files/unknown/tmp/Formulaire_du_declaration_du_partenaire.pdf', '', 81, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (576, '2020-02-20 14:52:35.950011+00', '2020-02-20 14:52:38.233725+00', 'public/files/unknown/tmp/Liste_de_controle_3iPQned.pdf', '', 82, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (577, '2020-02-20 14:52:59.735424+00', '2020-02-20 14:52:59.735424+00', 'public/files/unknown/tmp/NCE_ASD.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (578, '2020-02-20 14:53:06.129729+00', '2020-02-20 14:53:08.263126+00', 'public/files/unknown/tmp/NCE_ASD_paQBLhG.pdf', '', 83, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (579, '2020-02-20 14:53:19.890654+00', '2020-02-20 14:53:22.044922+00', 'public/files/unknown/tmp/Rapport_Humanitaire_transmis_une_fois_par_mois.pdf', '', 84, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (580, '2020-02-20 14:53:40.882002+00', '2020-02-20 14:53:46.729358+00', 'public/files/unknown/tmp/Paiement_asd_cholera_mk.pdf', '', 85, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (581, '2020-02-20 14:55:08.580275+00', '2020-02-20 14:55:12.984601+00', 'public/files/unknown/tmp/130120AASD.pdf', '', 86, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (598, '2020-02-24 13:36:14.852895+00', '2020-02-24 13:36:20.454567+00', 'public/files/unknown/tmp/3.document_de_programme_CDVT_B0igF09.pdf', '', 8, 'partners_intervention_signed_pd', 151, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (582, '2020-02-20 14:55:27.282832+00', '2020-02-20 14:55:30.498816+00', 'public/files/unknown/tmp/210120AASD.pdf', '', 87, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (583, '2020-02-20 16:11:39.557709+00', '2020-02-20 16:11:39.557709+00', 'public/files/unknown/tmp/Document_de_Programme_8opvTYw.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (584, '2020-02-20 16:46:20.141146+00', '2020-02-20 16:46:20.141146+00', 'public/files/unknown/tmp/Document_de_Programme_5YbOyop.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (585, '2020-02-20 16:46:55.335465+00', '2020-02-20 16:46:55.335465+00', 'public/files/unknown/tmp/Budget_detaille_3jjbqW0.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (707, '2020-04-02 10:57:53.91286+00', '2020-04-02 10:57:53.91286+00', 'public/files/unknown/tmp/Signed_DPH_INTERSOS.pdf', '', NULL, '', NULL, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (586, '2020-02-20 16:47:04.56526+00', '2020-02-20 16:47:08.631583+00', 'public/files/unknown/tmp/Budget_detaille_z7Ywa2U.pdf', '', 88, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (600, '2020-02-25 13:51:00.568175+00', '2020-02-25 13:51:07.880608+00', 'public/files/unknown/tmp/SSFA_DE_AFA_mrJmiVd.pdf', '', 98, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (587, '2020-02-20 16:47:22.638632+00', '2020-02-20 16:47:24.719751+00', 'public/files/unknown/tmp/Fiche_de_revue_de_PCA.pdf', '', 89, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (604, '2020-03-04 07:13:12.915281+00', '2020-03-04 07:13:15.360211+00', 'public/files/unknown/tmp/FACE_1051_WV_Liquidation_51_189_794FCFA.pdf', '', 4, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (588, '2020-02-20 16:47:36.05105+00', '2020-02-20 16:47:39.456289+00', 'public/files/unknown/tmp/Fiche_dexamen_de_la_documentation_PCA.pdf', '', 90, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (613, '2020-03-05 16:31:25.295323+00', '2020-03-05 16:31:28.650268+00', 'public/files/unknown/tmp/Attestation_de_reconnaissance_partenaire.pdf', '', 101, 'partners_intervention_attachment', 156, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (589, '2020-02-20 16:48:03.452532+00', '2020-02-20 16:48:05.424806+00', 'public/files/unknown/tmp/Formualire_de_demande_de_fournitures.pdf', '', 91, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (599, '2020-02-25 13:50:15.429742+00', '2020-02-25 13:56:44.21252+00', 'public/files/unknown/tmp/SSFA_DE_AFA.pdf', '', 15, 'partners_intervention_signed_pd', 151, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (590, '2020-02-20 16:48:22.036148+00', '2020-02-20 16:48:23.913573+00', 'public/files/unknown/tmp/formulaire_de_declaration_du_parternaire.pdf', '', 92, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (605, '2020-03-04 07:13:34.235952+00', '2020-03-04 07:13:36.110073+00', 'public/files/unknown/tmp/FACE_1141WV_Liquidation_59_763_319FCFA.pdf', '', 4, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (591, '2020-02-20 16:48:38.436979+00', '2020-02-20 16:48:40.525979+00', 'public/files/unknown/tmp/Formulaire_de_soumission_et_dapprobation.pdf', '', 93, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (603, '2020-02-25 15:49:11.315582+00', '2020-02-25 15:49:17.078191+00', 'public/files/unknown/tmp/1ere_Tranche_9_687_000_AFA.pdf', '', 100, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (592, '2020-02-20 16:48:52.924487+00', '2020-02-20 16:48:54.834468+00', 'public/files/unknown/tmp/formulaire_devaluation_final.pdf', '', 94, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (616, '2020-03-06 13:08:11.098024+00', '2020-03-06 13:38:10.955212+00', 'public/files/unknown/tmp/PCA_INTERSOS_Ksrj7Zp.pdf', '', 14, 'partners_agreement', 72, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (593, '2020-02-20 16:49:08.182283+00', '2020-02-20 16:49:11.589995+00', 'public/files/unknown/tmp/Liste_de_controle_dpy08nY.pdf', '', 95, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (606, '2020-03-04 08:21:04.317628+00', '2020-03-04 08:21:12.691841+00', 'public/files/unknown/tmp/ACRA_liquidation_de_16_712_484.pdf', '', 5, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (594, '2020-02-20 16:49:23.040963+00', '2020-02-20 16:49:25.000492+00', 'public/files/unknown/tmp/Rapport_standard_trimestriel_du_progres.pdf', '', 96, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (614, '2020-03-05 16:32:35.907159+00', '2020-03-05 16:32:38.809282+00', 'public/files/unknown/tmp/FACE_APSELPA_LIQUIDATION_-_PAIEMENT_5_717_000_XAF.pdf', '', 102, 'partners_intervention_attachment', 156, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (595, '2020-02-20 16:49:51.20373+00', '2020-02-20 16:49:54.136992+00', 'public/files/unknown/tmp/DECAISSMT_T1_PCA_24_2019_ESMS.pdf', '', 97, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (607, '2020-03-04 08:21:28.016326+00', '2020-03-04 08:21:29.650165+00', 'public/files/unknown/tmp/ACRA_liquidation_de_74_068_782.pdf', '', 5, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (596, '2020-02-20 16:52:55.905693+00', '2020-02-20 16:53:01.070703+00', 'public/files/unknown/tmp/Accord_de_cooperation_XET1FYe.pdf', '', 10, 'partners_agreement', 72, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (615, '2020-03-05 16:32:53.582764+00', '2020-03-05 16:32:53.582764+00', 'public/files/unknown/tmp/FACE_APSELPA_LIQUIDATION_22868000.pdf', '', NULL, '', NULL, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (597, '2020-02-20 16:54:12.538071+00', '2020-02-20 16:54:17.697894+00', 'public/files/unknown/tmp/Document_de_Programme_67FSC2s.pdf', '', 14, 'partners_intervention_signed_pd', 151, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (608, '2020-03-04 08:21:41.446557+00', '2020-03-04 08:21:43.864872+00', 'public/files/unknown/tmp/ACRA_liquidation_de_208_962_962.pdf', '', 5, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (650, '2020-03-11 10:54:29.518308+00', '2020-03-11 10:54:29.518308+00', 'public/files/unknown/tmp/CPPET_Liquidation__de__10_086_600.pdf', '', NULL, '', NULL, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (618, '2020-03-06 14:37:19.341739+00', '2020-03-06 14:37:26.841635+00', 'public/files/unknown/tmp/00_-_Fiche_de_revue_de_la_documentation_PCA.pdf', '', 103, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (610, '2020-03-04 15:03:33.507871+00', '2020-03-04 15:03:53.178351+00', 'public/files/unknown/tmp/Document_programme_PCA_urgence_APSELPA_Sept_2019_dBcRF9X.pdf', '', 13, 'partners_agreement', 72, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (611, '2020-03-04 17:19:07.248432+00', '2020-03-04 17:19:07.248432+00', 'public/files/unknown/tmp/Humanitarian_Programme_document__APSELPA.pdf', '', NULL, '', NULL, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (612, '2020-03-04 17:45:05.310265+00', '2020-03-04 17:46:36.829062+00', 'public/files/unknown/tmp/Humanitarian_Programme_document__APSELPA_zFE4tVp.pdf', '', 16, 'partners_intervention_signed_pd', 151, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (619, '2020-03-06 14:37:40.072638+00', '2020-03-06 14:37:43.838522+00', 'public/files/unknown/tmp/0_-_Lettre_activation_PCA_urgence.pdf', '', 104, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (620, '2020-03-06 14:37:53.348601+00', '2020-03-06 14:37:53.348601+00', 'public/files/unknown/tmp/1_-_Note_pour_memoire.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (621, '2020-03-06 14:38:01.171649+00', '2020-03-06 14:38:04.255189+00', 'public/files/unknown/tmp/1_-_Note_pour_memoire_EIC3TPQ.pdf', '', 105, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (622, '2020-03-06 14:38:15.419159+00', '2020-03-06 14:38:17.996404+00', 'public/files/unknown/tmp/3_-_Liste_de_controle_PCA.pdf', '', 106, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (624, '2020-03-06 14:38:55.760662+00', '2020-03-06 14:38:58.578259+00', 'public/files/unknown/tmp/4_-_05PCA2019PROINTERSOS.pdf', '', 108, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (625, '2020-03-06 14:39:12.914834+00', '2020-03-06 14:39:15.439607+00', 'public/files/unknown/tmp/6_-_Annexe_B_2eme_partie_document_de_programme.pdf', '', 109, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (626, '2020-03-06 14:39:28.411807+00', '2020-03-06 14:39:30.583323+00', 'public/files/unknown/tmp/5_-Annexe_B_1ere_partie_document_de_programme_humanitaire_simplifie.pdf', '', 110, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (627, '2020-03-06 14:39:40.070675+00', '2020-03-06 14:39:42.939766+00', 'public/files/unknown/tmp/7_-_Annexe_D_resume_des_services_et_repartition_type_activites.pdf', '', 111, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (628, '2020-03-06 14:39:52.748168+00', '2020-03-06 14:39:55.991597+00', 'public/files/unknown/tmp/8_-_Annexe_E_Dclaration_du_profil_de_partenaire.pdf', '', 112, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (629, '2020-03-06 14:40:08.042587+00', '2020-03-06 14:40:13.213238+00', 'public/files/unknown/tmp/9_-_Annexe_G_Formulaire_de_demande_au_PRC_evaluation_et_approbation.pdf', '', 113, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (630, '2020-03-06 14:40:24.175404+00', '2020-03-06 14:40:27.921988+00', 'public/files/unknown/tmp/10_-_Annexe_H_budget.pdf', '', 114, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (631, '2020-03-06 14:40:37.198102+00', '2020-03-06 14:40:39.196153+00', 'public/files/unknown/tmp/11_-_Annexe_I_Evaluation_conjointe_du_partenaire.pdf', '', 115, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (637, '2020-03-06 14:41:48.674002+00', '2020-03-06 14:41:48.674002+00', 'public/files/unknown/tmp/Note_au_dossier_PCA_Intersos_active.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (632, '2020-03-06 14:40:48.097176+00', '2020-03-06 14:40:50.900066+00', 'public/files/unknown/tmp/12_-_Autres_echange_mail.pdf', '', 116, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (648, '2020-03-11 10:53:40.748733+00', '2020-03-11 10:53:44.442805+00', 'public/files/unknown/tmp/CPPET_dliquidation_de_1_887_080.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (633, '2020-03-06 14:41:03.930177+00', '2020-03-06 14:41:07.444756+00', 'public/files/unknown/tmp/Budget_PCA_05_PCA_2019_PRO_Intersoso_active.pdf', '', 117, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (634, '2020-03-06 14:41:17.344181+00', '2020-03-06 14:41:17.344181+00', 'public/files/unknown/tmp/Document_programme_PCA_active_05PCA2019PROINTERSOS_6OLQ2qS.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (635, '2020-03-06 14:41:22.994121+00', '2020-03-06 14:41:22.994121+00', 'public/files/unknown/tmp/Document_programme_PCA_active_05PCA2019PROINTERSOS_qAK6V0V.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (636, '2020-03-06 14:41:38.881778+00', '2020-03-06 14:41:38.881778+00', 'public/files/unknown/tmp/Document_programme_PCA_active_05PCA2019PROINTERSOS_Q5Syfy7.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (700, '2020-03-12 16:50:01.798175+00', '2020-03-12 16:50:10.517159+00', 'public/files/unknown/tmp/201119AFDI.pdf', '', 11, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (638, '2020-03-06 14:41:59.015261+00', '2020-03-06 14:42:04.321765+00', 'public/files/unknown/tmp/Document_programme_PCA_active_05PCA2019PROINTERSOS_rL138mR.pdf', '', 118, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (651, '2020-03-11 10:55:05.894658+00', '2020-03-11 10:55:08.858858+00', 'public/files/unknown/tmp/CPPET_Liquidation__de__10_086_600_JwwcNSw.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (639, '2020-03-06 14:42:14.428947+00', '2020-03-06 14:42:16.592046+00', 'public/files/unknown/tmp/Note_au_dossier_PCA_Intersos_active_7RR40Jp.pdf', '', 119, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (653, '2020-03-11 10:55:50.796667+00', '2020-03-11 10:55:56.466322+00', 'public/files/unknown/tmp/CPPET_Liquidation__de__842_500.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (655, '2020-03-11 10:56:31.061311+00', '2020-03-11 10:56:33.085991+00', 'public/files/unknown/tmp/CPPET_Liquidation__de_2_127_000.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (657, '2020-03-11 10:57:22.69952+00', '2020-03-11 10:57:23.865537+00', 'public/files/unknown/tmp/CPPET_liquidation__de_2_300_000.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (702, '2020-03-12 16:53:46.987865+00', '2020-03-12 16:53:48.80596+00', 'public/files/unknown/tmp/121119DSROU.pdf', '', 10, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (659, '2020-03-11 10:58:06.646641+00', '2020-03-11 10:58:08.278009+00', 'public/files/unknown/tmp/CPPET_liquidation__de_5_241_500.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (708, '2020-04-06 19:37:36.026583+00', '2020-04-06 19:37:36.026583+00', 'public/files/unknown/tmp/3._Formulaire_de_soumission_PRC.pdf', '', NULL, '', NULL, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (661, '2020-03-11 10:58:45.949339+00', '2020-03-11 10:58:47.65229+00', 'public/files/unknown/tmp/CPPET_Liquidation__de_14_013_000.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (704, '2020-03-16 15:12:45.545569+00', '2020-03-16 15:12:51.77596+00', 'public/files/unknown/tmp/FACE_de_la_demande_de_remboursement-IAS.pdf', '', 12, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (706, '2020-04-01 10:03:35.503642+00', '2020-04-01 10:03:50.552819+00', 'public/files/unknown/tmp/Accord_de_Cooperation_UNICEF__Menthor_Initiative.pdf', '', 15, 'partners_agreement', 72, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (713, '2020-04-15 08:05:27.434454+00', '2020-04-15 08:05:27.434454+00', 'public/files/unknown/tmp/Formulaire_de_soumission_et_dapprobation_au_PRC.pdf', '', NULL, '', NULL, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (709, '2020-04-07 08:28:42.361615+00', '2020-04-07 08:38:13.102132+00', 'public/files/unknown/tmp/3._Formulaire_de_soumission_PRC_Cob3jLL.pdf', '', 22, 'partners_intervention_prc_review', 151, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (666, '2020-03-11 11:01:49.384934+00', '2020-03-11 11:01:51.048895+00', 'public/files/unknown/tmp/CPPET_Liquidation__de_177_400.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (711, '2020-04-07 08:43:56.947623+00', '2020-04-07 08:44:02.74363+00', 'public/files/unknown/tmp/4._Document_de_programme_CELIAF_UqhjvTC.pdf', '', 123, 'partners_intervention_attachment', 156, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (668, '2020-03-11 11:03:19.399308+00', '2020-03-11 11:03:20.634199+00', 'public/files/unknown/tmp/CPPET_Liquidation__de_30_282_200.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (670, '2020-03-11 11:04:21.536958+00', '2020-03-11 11:04:21.536958+00', 'public/files/unknown/tmp/CPPET_liquidation__de_798_600.pdf', '', NULL, '', NULL, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (672, '2020-03-11 11:05:17.166185+00', '2020-03-11 11:05:17.166185+00', 'public/files/unknown/tmp/CPPET_liquidation__de_798_600_0We4Vsw.pdf', '', NULL, '', NULL, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (715, '2020-04-15 12:26:05.850287+00', '2020-04-15 12:26:08.810489+00', 'public/files/unknown/tmp/NCE_07-2019-_PCA-ACF_-WASH.pdf', '', 4, 'partners_intervention_amendment_signed', 152, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (674, '2020-03-11 11:06:39.183234+00', '2020-03-11 11:06:42.761896+00', 'public/files/unknown/tmp/CPPET_Liquidation_1_155_250.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (716, '2020-04-16 10:41:45.077886+00', '2020-04-16 11:55:24.146876+00', 'public/files/unknown/tmp/HELP_DPH_2020.pdf', '', 25, 'partners_intervention_signed_pd', 151, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (676, '2020-03-11 11:07:15.008631+00', '2020-03-11 11:07:18.167322+00', 'public/files/unknown/tmp/CPPET_Liquidation_1_300_000.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (717, '2020-04-20 12:12:41.696432+00', '2020-04-20 12:13:12.03818+00', 'public/files/unknown/tmp/Lettre_réponse_UNICEF_Extension_avec_cout_5_mars-4_mai_2020.pdf', '', 5, 'partners_intervention_amendment_signed', 152, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (678, '2020-03-11 11:08:03.855258+00', '2020-03-11 11:08:06.253981+00', 'public/files/unknown/tmp/CPPET_liquidation_2_954_500.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (680, '2020-03-11 11:12:39.720173+00', '2020-03-11 11:12:44.068573+00', 'public/files/unknown/tmp/CPPET_Liquidation_5_338_700_E7dwDdt.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (681, '2020-03-11 11:13:03.953775+00', '2020-03-11 11:13:10.316134+00', 'public/files/unknown/tmp/CPPET_liquidation_7_084_800.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (683, '2020-03-11 11:13:47.336806+00', '2020-03-11 11:13:50.847504+00', 'public/files/unknown/tmp/CPPET_Liquidation_105_279_560.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (685, '2020-03-11 11:14:24.98076+00', '2020-03-11 11:14:28.620763+00', 'public/files/unknown/tmp/CPPET_Liquidation_886_500.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (687, '2020-03-11 11:15:38.686393+00', '2020-03-11 11:15:38.686393+00', 'public/files/unknown/tmp/CPPET_liquidation_de_1_000_000_de_17_811_500.pdf', '', NULL, '', NULL, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (689, '2020-03-11 11:17:10.398197+00', '2020-03-11 11:17:14.278996+00', 'public/files/unknown/tmp/CPPET_liquidation_de_1_877_040.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (691, '2020-03-11 11:17:52.303012+00', '2020-03-11 11:19:13.774199+00', 'public/files/unknown/tmp/CPPET_liquidation_de_4_456_100.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (693, '2020-03-11 11:19:57.791285+00', '2020-03-11 11:20:00.648018+00', 'public/files/unknown/tmp/CPPET_liquidation_de_5_054_200.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (696, '2020-03-11 11:21:22.56501+00', '2020-03-11 11:21:22.56501+00', 'public/files/unknown/tmp/CPPET_liquidation_de_9_667_000.pdf', '', NULL, '', NULL, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (699, '2020-03-11 11:22:37.362318+00', '2020-03-11 11:22:41.747585+00', 'public/files/unknown/tmp/CPPET_liquidation_de_28_308_190_15Qq2C2.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (640, '2020-03-06 14:45:34.924291+00', '2020-03-06 14:45:34.924291+00', 'public/files/unknown/tmp/FACE_INTERSOS_94_286_021_XAF.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (641, '2020-03-06 14:46:56.129108+00', '2020-03-06 14:46:56.129108+00', 'public/files/unknown/tmp/FACE_INTERSOS_77919697_XAF.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (617, '2020-03-06 14:35:28.885009+00', '2020-03-06 14:51:53.561771+00', 'public/files/unknown/tmp/Document_programme_PCA_active_05PCA2019PROINTERSOS.pdf', '', 18, 'partners_intervention_signed_pd', 151, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (642, '2020-03-06 15:35:06.529711+00', '2020-03-06 15:35:11.808799+00', 'public/files/unknown/tmp/Formulaire_de_modification_de_programme_UNICEF_Amendement_PCA_INTERSOS.pdf', '', 120, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (649, '2020-03-11 10:54:06.815196+00', '2020-03-11 10:54:08.55119+00', 'public/files/unknown/tmp/CPPET_Liquidation__de__6_543_050.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (643, '2020-03-06 15:36:03.963244+00', '2020-03-06 15:36:06.741768+00', 'public/files/unknown/tmp/BUDGET_AMENDE.pdf', '', 121, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (701, '2020-03-12 16:53:24.914514+00', '2020-03-12 16:53:32.855076+00', 'public/files/unknown/tmp/100919DSROU.pdf', '', 10, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (652, '2020-03-11 10:55:30.335949+00', '2020-03-11 10:55:32.995102+00', 'public/files/unknown/tmp/CPPET_Liquidation__de__16_288_980_et__4_327_120.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (644, '2020-03-06 15:36:45.690926+00', '2020-03-06 15:37:25.156323+00', 'public/files/unknown/tmp/BUDGET_AMENDE_yE3yWk7.pdf', '', 3, 'partners_intervention_amendment_signed', 152, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (645, '2020-03-06 15:37:06.14012+00', '2020-03-06 15:37:25.192293+00', 'public/files/unknown/tmp/Formulaire_de_modification_de_programme_UNICEF_Amendement_PCA_INTERSOS_AmdTkCz.pdf', '', 3, 'partners_intervention_amendment_internal_prc_review', 152, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (646, '2020-03-06 15:46:58.021902+00', '2020-03-06 15:46:58.021902+00', 'public/files/unknown/tmp/Lettre_Demande_Amendement.pdf', '', NULL, '', NULL, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (705, '2020-03-16 15:13:06.456796+00', '2020-03-16 15:13:10.951717+00', 'public/files/unknown/tmp/RE_ATT_IAS_Mission_Spot_check_.msg', '', 12, 'audit_engagement', 220, 10, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (647, '2020-03-06 15:47:03.769692+00', '2020-03-06 15:47:06.931436+00', 'public/files/unknown/tmp/Lettre_Demande_Amendement_uZFla1Y.pdf', '', 122, 'partners_intervention_attachment', 156, NULL, 4606); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (654, '2020-03-11 10:56:13.638014+00', '2020-03-11 10:56:15.428695+00', 'public/files/unknown/tmp/CPPET_Liquidation__de_1_650_000.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (703, '2020-03-12 16:54:01.623056+00', '2020-03-12 16:54:03.740961+00', 'public/files/unknown/tmp/121119DSROU1.pdf', '', 10, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (656, '2020-03-11 10:57:00.854111+00', '2020-03-11 10:57:02.207539+00', 'public/files/unknown/tmp/CPPET_liquidation__de_2_176_000.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (710, '2020-04-07 08:36:38.714946+00', '2020-04-07 08:38:13.138588+00', 'public/files/unknown/tmp/4._Document_de_programme_CELIAF.pdf', '', 22, 'partners_intervention_signed_pd', 151, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (658, '2020-03-11 10:57:41.574326+00', '2020-03-11 10:57:42.960793+00', 'public/files/unknown/tmp/CPPET_Liquidation__de_3_209_500.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (714, '2020-04-15 08:05:45.072157+00', '2020-04-15 10:04:36.210112+00', 'public/files/unknown/tmp/Document_programme_PCA_02_2020_Mentor.pdf', '', 21, 'partners_intervention_signed_pd', 151, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (660, '2020-03-11 10:58:27.902605+00', '2020-03-11 10:58:29.925081+00', 'public/files/unknown/tmp/CPPET_Liquidation__de_6_666_000.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (712, '2020-04-07 08:50:21.046764+00', '2020-04-07 08:51:10.177859+00', 'public/files/unknown/tmp/Signed_DPH_INTERSOS_AM8Fu4Z.pdf', '', 19, 'partners_intervention_signed_pd', 151, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (667, '2020-03-11 11:02:59.220313+00', '2020-03-11 11:03:00.708737+00', 'public/files/unknown/tmp/CPPET_Liquidation__de_14_300_040.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (669, '2020-03-11 11:03:33.911961+00', '2020-03-11 11:03:35.105161+00', 'public/files/unknown/tmp/CPPET_Liquidation__de_625_000.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (671, '2020-03-11 11:04:51.266957+00', '2020-03-11 11:04:51.266957+00', 'public/files/unknown/tmp/CPPET_liquidation__de_798_600_mdc729t.pdf', '', NULL, '', NULL, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (673, '2020-03-11 11:06:18.550964+00', '2020-03-11 11:06:22.264002+00', 'public/files/unknown/tmp/CPPET_liquidation__de_798_600_ZOc4gWO.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (675, '2020-03-11 11:06:57.290003+00', '2020-03-11 11:07:00.850815+00', 'public/files/unknown/tmp/CPPET_liquidation_1_212_428.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (677, '2020-03-11 11:07:40.487509+00', '2020-03-11 11:07:42.296193+00', 'public/files/unknown/tmp/CPPET_liquidation_1_760_400.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (679, '2020-03-11 11:12:02.649935+00', '2020-03-11 11:12:02.649935+00', 'public/files/unknown/tmp/CPPET_Liquidation_5_338_700.pdf', '', NULL, '', NULL, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (682, '2020-03-11 11:13:26.062524+00', '2020-03-11 11:13:29.780488+00', 'public/files/unknown/tmp/CPPET_liquidation_8_095_450.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (684, '2020-03-11 11:14:07.9204+00', '2020-03-11 11:14:11.546574+00', 'public/files/unknown/tmp/CPPET_liquidation_630_000.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (686, '2020-03-11 11:14:53.267533+00', '2020-03-11 11:14:54.892844+00', 'public/files/unknown/tmp/CPPET_liquidation_de__4_052_350_et__1_917_000.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (688, '2020-03-11 11:16:47.832551+00', '2020-03-11 11:16:52.753368+00', 'public/files/unknown/tmp/CPPET_liquidation_de_1_000_000_de_17_811_500_6TTz6D1.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (690, '2020-03-11 11:17:29.583487+00', '2020-03-11 11:17:33.73451+00', 'public/files/unknown/tmp/CPPET_liquidation_de_2_290_914_et_4_027_200.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (692, '2020-03-11 11:19:33.121549+00', '2020-03-11 11:19:36.596232+00', 'public/files/unknown/tmp/CPPET_liquidation_de_4_708_400.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (694, '2020-03-11 11:20:38.971406+00', '2020-03-11 11:20:38.971406+00', 'public/files/unknown/tmp/CPPET_liquidation_de_6_920_100.pdf', '', NULL, '', NULL, NULL, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (695, '2020-03-11 11:20:57.31891+00', '2020-03-11 11:21:02.031369+00', 'public/files/unknown/tmp/CPPET_liquidation_de_6_920_100_c26zGfC.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (697, '2020-03-11 11:21:41.538997+00', '2020-03-11 11:21:51.751161+00', 'public/files/unknown/tmp/CPPET_liquidation_de_9_667_000_XS3AE3E.pdf', '', 2, 'audit_engagement', 220, 9, 7798); +INSERT INTO [[schema]].unicef_attachments_attachment VALUES (698, '2020-03-11 11:22:13.149298+00', '2020-03-11 11:22:13.149298+00', 'public/files/unknown/tmp/CPPET_liquidation_de_28_308_190.pdf', '', NULL, '', NULL, NULL, 7798); -- @@ -17805,57 +24517,60 @@ INSERT INTO [[schema]].unicef_attachments_attachment VALUES (317, '2018-03-29 09 -- Data for Name: unicef_attachments_filetype; Type: TABLE DATA; Schema: [[schema]]; Owner: - -- -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (17, 2, 'workplan', 'Workplan', 'audit_engagement', '{audit_engagement}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (9, 3, 'face_form', 'FACE form', 'audit_engagement', '{audit_engagement}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (8, 4, 'ice_form', 'ICE', 'audit_engagement', '{audit_engagement}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (10, 5, 'other', 'Other', 'audit_engagement', '{audit_engagement}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (11, 0, 'report', 'Report', 'audit_report', '{audit_report}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (9, 3, 'face_form', 'FACE form', 'audit_engagement', '{audit_engagement}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (17, 2, 'workplan', 'Workplan', 'audit_engagement', '{audit_engagement}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (14, 1, 'other', 'Other', 'audit_report', '{audit_report}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (52, 0, 'psea_investigation_policy_procedure', 'PSEA investigation policy/procedure', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (51, 0, 'dedicated_resources_for_investigations', 'Dedicated resources for investigation(s)', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (50, 0, 'names_of_possible_investigators', 'Name(s) of possible investigator(s)', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (49, 0, 'referral_form_for_survivors_of_gbv_sea', 'Referral form for survivors of GBV/SEA', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (48, 0, 'list_of_service_providers', 'List of service providers', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (47, 0, 'whistleblower_policy', 'Whistleblower policy', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (46, 0, 'description_of_reporting_mechanisms', 'Description of reportings mechanism(s)', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (45, 0, 'm_e_framework', 'M&E framework', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (44, 0, 'risk_assessments', 'Risk assessments', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (43, 0, 'needs_assessments', 'Needs assessments', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (42, 0, 'communication_materials', 'Communication materials', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (41, 0, 'attendance_sheets', 'Attendance sheets', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (40, 0, 'training_agenda', 'Training Agenda', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (39, 0, 'contracts_partnership_agreements', 'Contracts/partnership agreements', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (38, 0, 'tor', 'ToR', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (10, 5, 'other', 'Other', '', '{audit_engagement,audit_report,tpm,tpm_report,tpm_partner,tpm_report_attachments}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (11, 0, 'report', 'Report', 'audit_report', '{audit_report,tpm_report}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (34, 0, 'code_of_conduct', 'Code of Conduct', 'psea_answer', '{psea_answer}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (35, 0, 'psea_policy', 'PSEA Policy', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (37, 0, 'recruitment_procedure', 'Recruitment procedure', 'psea_answer', '{psea_answer}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (36, 0, 'relevant_human_resources_policies', 'Relevant human resources policies', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (37, 0, 'recruitment_procedure', 'Recruitment procedure', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (38, 0, 'tor', 'ToR', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (39, 0, 'contracts_partnership_agreements', 'Contracts/partnership agreements', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (40, 0, 'training_agenda', 'Training Agenda', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (41, 0, 'attendance_sheets', 'Attendance sheets', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (42, 0, 'communication_materials', 'Communication materials', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (43, 0, 'needs_assessments', 'Needs assessments', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (44, 0, 'risk_assessments', 'Risk assessments', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (45, 0, 'm_e_framework', 'M&E framework', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (46, 0, 'description_of_reporting_mechanisms', 'Description of reportings mechanism(s)', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (47, 0, 'whistleblower_policy', 'Whistleblower policy', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (48, 0, 'list_of_service_providers', 'List of service providers', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (49, 0, 'referral_form_for_survivors_of_gbv_sea', 'Referral form for survivors of GBV/SEA', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (50, 0, 'names_of_possible_investigators', 'Name(s) of possible investigator(s)', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (51, 0, 'dedicated_resources_for_investigations', 'Dedicated resources for investigation(s)', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (52, 0, 'psea_investigation_policy_procedure', 'PSEA investigation policy/procedure', 'psea_answer', '{psea_answer}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (57, 0, 'written_process_for_review_of_sea', 'Written process for review of SEA', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (56, 0, 'description_of_referral_process_for_survivors_of_gbvsea', 'Description of referral process for survivors of GBV/SEA', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (55, 0, 'annual_training_plan', 'Annual training plan', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (54, 0, 'documentation_of_standard_procedure', 'Documentation of standard procedure', 'psea_answer', '{psea_answer}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (53, 0, 'other', 'Other', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (58, 0, 'sop', 'SOP', 'fm_common', NULL); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (59, 1, 'other', 'Other', 'fm_common', NULL); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (60, 0, 'psea_awareness_raising_plan', 'PSEA awareness-raising plan', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (18, 7, 'other', 'Other', 'tpm', '{tpm}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (29, 16, 'other', 'Other', 'tpm_partner', '{tpm_partner}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (19, 0, 'report', 'Report', 'tpm_report', '{tpm_report}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (24, 11, 'other', 'Other', 'tpm_report', '{tpm_report}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (32, 3, 'other', 'Other', 'tpm_report_attachments', '{tpm_report_attachments}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (1, 0, 'programme_document', 'FACE', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (2, 1, 'supply_manual_list', 'Progress report', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (3, 2, 'unicef_trip_report_action_point_report', 'Partnership review', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (4, 3, 'partner_report', 'Final Partnership Review', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (5, 4, 'previous_trip_reports', 'Correspondence', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (6, 5, 'training_materials', 'Supply/Distribution Plan', 'tpm', '{tpm}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (7, 6, 'tors', 'Workplan', 'tpm', '{tpm}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (18, 7, 'other', 'Other', 'tpm', '{tpm}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (7, 6, 'tors', 'Workplan', '', '{tpm,audit_engagement}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (22, 9, 'signed_pd/ssfa', 'Signed PD/SSFA', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (23, 10, 'prc_submission', 'PRC Submission', 'tpm', '{tpm}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (25, 12, 'terms_of_reference', 'Terms of Reference', 'tpm_partner', '{tpm_partner}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (26, 13, 'training_material', 'Training Material', 'tpm_partner', '{tpm_partner}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (27, 14, 'contract', 'Contract', 'tpm_partner', '{tpm_partner}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (28, 15, 'questionnaires', 'Questionnaires', 'tpm_partner', '{tpm_partner}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (29, 16, 'other', 'Other', 'tpm_partner', '{tpm_partner}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (19, 0, 'report', 'Report', 'tpm_report', '{tpm_report}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (24, 11, 'other', 'Other', 'tpm_report', '{tpm_report}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (33, 0, 'overall_report', 'Overall Report', 'tpm_report_attachments', '{tpm_report_attachments}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (30, 1, 'picture_dataset', 'Picture Dataset', 'tpm_report_attachments', '{tpm_report_attachments}'); INSERT INTO [[schema]].unicef_attachments_filetype VALUES (31, 2, 'questionnaire', 'Questionnaire', 'tpm_report_attachments', '{tpm_report_attachments}'); -INSERT INTO [[schema]].unicef_attachments_filetype VALUES (32, 3, 'other', 'Other', 'tpm_report_attachments', '{tpm_report_attachments}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (33, 0, 'overall_report', 'Overall Report', 'tpm_report_attachments', '{tpm_report_attachments}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (53, 0, 'other', 'Other', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (54, 0, 'documentation_of_standard_procedure', 'Documentation of standard procedure', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (55, 0, 'annual_training_plan', 'Annual training plan', 'psea_answer', '{psea_answer}'); +INSERT INTO [[schema]].unicef_attachments_filetype VALUES (56, 0, 'description_of_referral_process_for_survivors_of_gbvsea', 'Description of referral process for survivors of GBV/SEA', 'psea_answer', '{psea_answer}'); -- @@ -17891,11 +24606,11 @@ INSERT INTO [[schema]].unicef_snapshot_activity VALUES (38, '2019-10-30 10:23:42 INSERT INTO [[schema]].unicef_snapshot_activity VALUES (39, '2019-10-30 10:25:29.904961+00', '2019-10-30 10:25:29.904961+00', '18', 'create', '{"id": 18, "author": 12132, "office": 387, "status": "open", "history": [], "partner": 187, "section": 11, "category": "None", "comments": [], "due_date": "2019-10-31", "location": 12, "cp_output": 29, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 12132, "description": "2.\tConcevoir et mettre à la disposition des ASC un outil d’analyse et de présentation mensuelle des données communautaires (performances/indicateurs clés et leurs écarts) aux réunions des plateformes communautaires pour la résolution des problèmes constatés.", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": "None", "date_of_completion": "None"}', '{}', 12132, 270); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (40, '2019-10-30 10:26:46.056179+00', '2019-10-30 10:26:46.056179+00', '18', 'update', '{"id": 18, "author": 12132, "office": 387, "status": "open", "history": [39], "partner": 187, "section": 11, "category": "None", "comments": [9], "due_date": "2019-10-31", "location": 12, "cp_output": 29, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 12132, "description": "2.\tConcevoir et mettre à la disposition des ASC un outil d’analyse et de présentation mensuelle des données communautaires (performances/indicateurs clés et leurs écarts) aux réunions des plateformes communautaires pour la résolution des problèmes constatés.", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": "None", "date_of_completion": "None"}', '{"comments": {"after": [9], "before": []}}', 12132, 270); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (41, '2019-10-30 10:26:52.251108+00', '2019-10-30 10:26:52.251108+00', '18', 'update', '{"id": 18, "author": 12132, "office": 387, "status": "completed", "history": [40, 39], "partner": 187, "section": 11, "category": "None", "comments": [9], "due_date": "2019-10-31", "location": 12, "cp_output": 29, "engagement": "None", "key_events": ["status_update"], "assigned_by": 12132, "assigned_to": 12132, "description": "2.\tConcevoir et mettre à la disposition des ASC un outil d’analyse et de présentation mensuelle des données communautaires (performances/indicateurs clés et leurs écarts) aux réunions des plateformes communautaires pour la résolution des problèmes constatés.", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": "None", "date_of_completion": "2019-10-30 10:26:52.226204+00:00"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2019-10-30 10:26:52.226204+00:00", "before": "None"}}', 12132, 270); -INSERT INTO [[schema]].unicef_snapshot_activity VALUES (42, '2019-10-30 10:28:29.116237+00', '2019-10-30 10:28:29.116237+00', '19', 'create', '{"id": 19, "author": 12132, "office": 387, "status": "open", "history": [], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2019-12-31", "location": 12, "cp_output": 29, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 11647, "description": "3.\tDocumenter l’approche du CFC/RTM ainsi que les leçons apprises avec une meilleure participation des autres sections de l’UNICEF", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "date_of_completion": "None"}', '{}', 12132, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (130, '2019-12-17 15:09:22.664125+00', '2019-12-17 15:09:22.664125+00', '70', 'create', '{"id": 70, "author": 13372, "office": 391, "status": "open", "history": [], "partner": 420, "section": 10, "category": "None", "comments": [], "due_date": "2020-01-31", "location": "None", "cp_output": 49, "engagement": "None", "key_events": [], "assigned_by": 13372, "assigned_to": 13372, "description": "1.Appuyer le CPA du Logone Oriental à identifier les acteurs à former\n2.Faire la restitution de la formation au niveau provincial", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 154, "reference_number": "CHD/2019/70/APD", "date_of_completion": "None"}', '{}', 13372, 270); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (43, '2019-10-30 10:30:03.151776+00', '2019-10-30 10:30:03.151776+00', '20', 'create', '{"id": 20, "author": 12132, "office": 391, "status": "open", "history": [], "partner": 187, "section": 3, "category": "None", "comments": [], "due_date": "2019-11-29", "location": 22, "cp_output": 29, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 12528, "description": "Accélérer la mise en place d’une UNA dans les centres de santé de Bénoye et Krim-Krim pour la prise en charge des enfants malnutris dépistés par les ASC dans leur communauté", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": "None", "date_of_completion": "None"}', '{}', 12132, 270); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (44, '2019-10-30 10:31:59.931565+00', '2019-10-30 10:31:59.931565+00', '21', 'create', '{"id": 21, "author": 12132, "office": 391, "status": "open", "history": [], "partner": 187, "section": 3, "category": "None", "comments": [], "due_date": "2019-11-29", "location": 22, "cp_output": 29, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 11859, "description": "Renforcer l’offre de services de qualité en appuyer la DSP/LOC, les 2 districts et les 2 centres de santé à adopter un système efficace d’approvisionnement en vaccins, cartes de vaccination, médicaments essentiels et en registre d’enregistrement des naissances ainsi que l’organisation des services", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "date_of_completion": "None"}', '{}', 12132, 270); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (45, '2019-10-30 10:32:06.89898+00', '2019-10-30 10:32:06.89898+00', '21', 'update', '{"id": 21, "author": 12132, "office": 391, "status": "open", "history": [44], "partner": 187, "section": 3, "category": "None", "comments": [], "due_date": "2019-11-29", "location": 22, "cp_output": 29, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 11859, "description": "Renforcer l’offre de services de qualité en appuyer la DSP/LOC, les 2 districts et les 2 centres de santé à adopter un système efficace d’approvisionnement en vaccins, cartes de vaccination, médicaments essentiels et en registre d’enregistrement des naissances ainsi que l’organisation des services", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "date_of_completion": "None"}', '{}', 12132, 270); -INSERT INTO [[schema]].unicef_snapshot_activity VALUES (46, '2019-10-30 10:33:28.166184+00', '2019-10-30 10:33:28.166184+00', '22', 'create', '{"id": 22, "author": 12132, "office": 387, "status": "open", "history": [], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2019-11-29", "location": 12, "cp_output": 29, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 11647, "description": "Accélérer la mise à disposition des réfrigérateurs, du matériel médical et des motos de supervision", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": "None", "date_of_completion": "None"}', '{}', 12132, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (131, '2019-12-21 10:36:09.772143+00', '2019-12-21 10:36:09.772143+00', '71', 'create', '{"id": 71, "author": 9984, "office": 391, "status": "open", "history": [], "partner": 450, "section": 8, "category": "None", "comments": [], "due_date": "2019-12-31", "location": "None", "cp_output": 37, "engagement": "None", "key_events": [], "assigned_by": 9984, "assigned_to": 13512, "description": "-\tIl a été demandé au Délégué et a l’ASD de faire la situation des intrants, assurer \n-\tLa prochaine mission sur le terrain va s’assurer de la prise en compte de ces mesures", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 149, "reference_number": "None", "date_of_completion": "None"}', '{}', 9984, 270); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (47, '2019-11-04 07:17:25.478035+00', '2019-11-04 07:17:25.478035+00', '23', 'create', '{"id": 23, "author": 14700, "office": 387, "status": "open", "history": [], "partner": "None", "section": 3, "category": "None", "comments": [], "due_date": "2019-11-19", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 13846, "description": "1.\tFaire participer le point focal PRU des Bureaux de zone de Moundou et de Bol à l’atelier de formation des formateurs", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 79, "date_of_completion": "None"}', '{}', 14700, 270); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (48, '2019-11-04 07:18:41.591876+00', '2019-11-04 07:18:41.591876+00', '24', 'create', '{"id": 24, "author": 14700, "office": 387, "status": "open", "history": [], "partner": "None", "section": 2, "category": "None", "comments": [], "due_date": "2019-11-30", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "2.\tAssister à la désignation des lanceurs de SMS dans les localités identifiées compte tenu de difficultés logistiques du CPA", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 79, "date_of_completion": "None"}', '{}', 14700, 270); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (49, '2019-11-04 07:19:46.071201+00', '2019-11-04 07:19:46.071201+00', '25', 'create', '{"id": 25, "author": 14700, "office": 387, "status": "open", "history": [], "partner": "None", "section": 2, "category": "None", "comments": [], "due_date": "2019-11-30", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "3.\tFormer les lanceurs de SMS à l’utilisation du protocole d’envoi des messages et de la promotion et de recrutement de U-reporters", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 79, "date_of_completion": "None"}', '{}', 14700, 270); @@ -17925,17 +24640,484 @@ INSERT INTO [[schema]].unicef_snapshot_activity VALUES (72, '2019-11-12 14:49:25 INSERT INTO [[schema]].unicef_snapshot_activity VALUES (73, '2019-11-12 14:49:39.169443+00', '2019-11-12 14:49:39.169443+00', '39', 'update', '{"id": 39, "author": 14616, "office": 390, "status": "completed", "history": [72, 71, 67], "partner": "None", "section": 9, "category": "None", "comments": [12], "due_date": "2019-10-24", "location": 55, "cp_output": 12, "engagement": "None", "key_events": ["status_update"], "assigned_by": 14616, "assigned_to": 14616, "description": "Mission de supervision de distribution de kits scolaires", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": "None", "date_of_completion": "2019-11-12 14:49:39.144639+00:00"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2019-11-12 14:49:39.144639+00:00", "before": "None"}}', 14616, 270); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (74, '2019-11-12 15:28:32.245806+00', '2019-11-12 15:28:32.245806+00', '41', 'create', '{"id": 41, "author": 14616, "office": 390, "status": "open", "history": [], "partner": "None", "section": 9, "category": "None", "comments": [], "due_date": "2019-10-24", "location": 55, "cp_output": 12, "engagement": "None", "key_events": [], "assigned_by": 14616, "assigned_to": 14616, "description": "Mobiliser les APE pour qu’elles mobilisent les communautes à soutenir la scolarisation des enfants", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": "None", "date_of_completion": "None"}', '{}', 14616, 270); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (79, '2019-11-13 10:16:43.804241+00', '2019-11-13 10:16:43.804241+00', '43', 'create', '{"id": 43, "author": 22479, "office": 391, "status": "open", "history": [], "partner": 237, "section": 7, "category": "None", "comments": [], "due_date": "2020-02-03", "location": "None", "cp_output": 55, "engagement": "None", "key_events": [], "assigned_by": 22479, "assigned_to": 12528, "description": "Elaborer deux projets distincts de formation en PCIMA des agents de santé qualifiés et des agents de santé communautaires.\nProgrammer le suivi/évaluation trimestrielle de la mise en œuvre et de la performance du programme PCIMA dans les centres de santé.", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 95, "date_of_completion": "None"}', '{}', 22479, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (80, '2019-11-18 11:29:34.456153+00', '2019-11-18 11:29:34.456153+00', '44', 'create', '{"id": 44, "author": 11859, "office": 387, "status": "open", "history": [], "partner": 48, "section": 7, "category": "None", "comments": [], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 9333, "description": "Contacter la SDV pour in approvisionnement des districts sanitaires de Doba, Bebedjia et Bodo en cartes de vaccination et en cartes doubles", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "date_of_completion": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (82, '2019-11-18 11:35:29.963561+00', '2019-11-18 11:35:29.963561+00', '46', 'create', '{"id": 46, "author": 11859, "office": 391, "status": "open", "history": [], "partner": 48, "section": 7, "category": "None", "comments": [], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Instruire les RCS de mettre en place in cahier d''enregistrement des nouveau-nes dans chaque village en collaboration avec les chefs de villages", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "date_of_completion": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (84, '2019-11-18 11:43:20.133768+00', '2019-11-18 11:43:20.133768+00', '48', 'create', '{"id": 48, "author": 11859, "office": 391, "status": "open", "history": [], "partner": 48, "section": 7, "category": "None", "comments": [], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Instruire les RCS de Bodo-MSP et de Miandoum (DS Doba)de doubler le nombre de séances de vaccination en strategie fixe", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "date_of_completion": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (86, '2019-11-18 11:48:54.691751+00', '2019-11-18 11:48:54.691751+00', '50', 'create', '{"id": 50, "author": 11859, "office": 391, "status": "open", "history": [], "partner": 48, "section": 7, "category": "None", "comments": [], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Le DS de bebedjia doit organiser les reunions de monitorage sur une base reguliere, en l''absence de ressources, une reunion de monitorage trimestrielle reguliere pourrait suffire", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "date_of_completion": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (87, '2019-11-20 12:16:41.562306+00', '2019-11-20 12:16:41.562306+00', '51', 'create', '{"id": 51, "author": 5069, "office": 387, "status": "open", "history": [], "partner": "None", "section": 10, "category": "None", "comments": [], "due_date": "2019-10-31", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 5069, "assigned_to": 9109, "description": "1.\tFinaliser le plan d’action de soin personnel", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 29, "date_of_completion": "None"}', '{}', 5069, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (89, '2019-11-20 12:21:45.215387+00', '2019-11-20 12:21:45.215387+00', '53', 'create', '{"id": 53, "author": 5069, "office": 387, "status": "open", "history": [], "partner": "None", "section": 7, "category": "None", "comments": [], "due_date": "2019-12-31", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 5069, "assigned_to": 5069, "description": "3.\tFaire le suivi du plan d’action de soin personnel", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 29, "date_of_completion": "None"}', '{}', 5069, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (90, '2019-11-21 11:03:21.029048+00', '2019-11-21 11:03:21.029048+00', '41', 'update', '{"id": 41, "author": 14616, "office": 390, "status": "open", "history": [74], "partner": "None", "section": 9, "category": "None", "comments": [], "due_date": "2019-10-24", "location": 55, "cp_output": 12, "engagement": "None", "key_events": [], "assigned_by": 14616, "assigned_to": 14616, "description": "Mobiliser les APE pour qu’elles mobilisent les communautes à soutenir la scolarisation des enfants", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": "None", "date_of_completion": "None"}', '{}', 14616, 270); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (75, '2019-11-12 15:34:08.398482+00', '2019-11-12 15:34:08.398482+00', '42', 'create', '{"id": 42, "author": 14616, "office": 390, "status": "open", "history": [], "partner": "None", "section": 9, "category": "None", "comments": [], "due_date": "2019-11-24", "location": 55, "cp_output": 12, "engagement": "None", "key_events": [], "assigned_by": 14616, "assigned_to": 14616, "description": "Mission de supervision de distribution de kits scolaires", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": "None", "date_of_completion": "None"}', '{}', 14616, 270); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (76, '2019-11-12 15:37:37.329674+00', '2019-11-12 15:37:37.329674+00', '12', 'update', '{"id": 12, "author": 14616, "office": 390, "status": "open", "history": [31], "partner": "None", "section": 9, "category": "None", "comments": [13], "due_date": "2019-10-20", "location": 87, "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 14616, "assigned_to": 14616, "description": "Formation etools module assurance qualite", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": "None", "date_of_completion": "None"}', '{"comments": {"after": [13], "before": []}}', 14616, 270); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (77, '2019-11-12 15:37:42.77785+00', '2019-11-12 15:37:42.77785+00', '12', 'update', '{"id": 12, "author": 14616, "office": 390, "status": "open", "history": [76, 31], "partner": "None", "section": 9, "category": "None", "comments": [13], "due_date": "2019-10-20", "location": 87, "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 14616, "assigned_to": 14616, "description": "Formation etools module assurance qualite", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": "None", "date_of_completion": "None"}', '{}', 14616, 270); INSERT INTO [[schema]].unicef_snapshot_activity VALUES (78, '2019-11-12 15:37:49.0309+00', '2019-11-12 15:37:49.0309+00', '12', 'update', '{"id": 12, "author": 14616, "office": 390, "status": "open", "history": [77, 76, 31], "partner": "None", "section": 9, "category": "None", "comments": [13], "due_date": "2019-10-20", "location": 87, "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 14616, "assigned_to": 14616, "description": "Formation etools module assurance qualite", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": "None", "date_of_completion": "None"}', '{}', 14616, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (81, '2019-11-18 11:33:13.630976+00', '2019-11-18 11:33:13.630976+00', '45', 'create', '{"id": 45, "author": 11859, "office": 391, "status": "open", "history": [], "partner": 48, "section": 7, "category": "None", "comments": [], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Instruire les RCS de determiner les cibles attendues pour la vaccinationpar village", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "date_of_completion": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (83, '2019-11-18 11:39:38.845528+00', '2019-11-18 11:39:38.845528+00', '47', 'create', '{"id": 47, "author": 11859, "office": 391, "status": "open", "history": [], "partner": 48, "section": 7, "category": "None", "comments": [], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Instruire les RCS de Doba, bebidjia et Bodo ayant des cartes de vaccination de mettre en place in echeancier", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "date_of_completion": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (85, '2019-11-18 11:46:46.918384+00', '2019-11-18 11:46:46.918384+00', '49', 'create', '{"id": 49, "author": 11859, "office": 391, "status": "open", "history": [], "partner": 48, "section": 7, "category": "None", "comments": [], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Instruire les RCS a preparer les séances de vaccination avec les vaccinateurs et les ASC et evaluer avec eux chaque séance de vaccination realisee (degree d''atteinte de la cible attendee, perdus de vue a rechercher, etc.)", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "date_of_completion": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (88, '2019-11-20 12:19:38.185737+00', '2019-11-20 12:19:38.185737+00', '52', 'create', '{"id": 52, "author": 5069, "office": 387, "status": "open", "history": [], "partner": "None", "section": 10, "category": "None", "comments": [], "due_date": "2019-11-30", "location": "None", "cp_output": 51, "engagement": "None", "key_events": [], "assigned_by": 5069, "assigned_to": 9109, "description": "2.\tMettre en œuvre le plan d’action de soin personnel", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 29, "date_of_completion": "None"}', '{}', 5069, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (91, '2019-11-21 11:04:04.754652+00', '2019-11-21 11:04:04.754652+00', '41', 'update', '{"id": 41, "author": 14616, "office": 390, "status": "completed", "history": [90, 74], "partner": "None", "section": 9, "category": "None", "comments": [14], "due_date": "2019-10-24", "location": 55, "cp_output": 12, "engagement": "None", "key_events": ["status_update"], "assigned_by": 14616, "assigned_to": 14616, "description": "Mobiliser les APE pour qu’elles mobilisent les communautes à soutenir la scolarisation des enfants", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": "None", "date_of_completion": "2019-11-21 11:04:04.729601+00:00"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2019-11-21 11:04:04.729601+00:00", "before": "None"}}', 14616, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (92, '2019-11-21 11:14:24.545707+00', '2019-11-21 11:14:24.545707+00', '54', 'create', '{"id": 54, "author": 14616, "office": 390, "status": "open", "history": [], "partner": "None", "section": 9, "category": "None", "comments": [], "due_date": "2019-11-21", "location": 87, "cp_output": 33, "engagement": "None", "key_events": [], "assigned_by": 14616, "assigned_to": 14616, "description": "Restituer le contenu des echanges aux delegues de l''education", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": "None", "date_of_completion": "None"}', '{}', 14616, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (187, '2020-02-12 14:05:13.970519+00', '2020-02-12 14:05:13.970519+00', '1', 'create', '{"id": 1, "end": "2021-12-31", "start": "2019-02-27", "status": "draft", "partner": 169, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 1, "agreement_number": "CHD/PCA20201", "country_programme": 73, "attached_agreement": "", "authorized_officers": [1], "reference_number_year": 2020, "signed_by_unicef_date": "2019-02-27", "signed_by_partner_date": "2019-02-22", "special_conditions_pca": false}', '{}', 4606, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (93, '2019-11-25 08:14:28.002564+00', '2019-11-25 08:14:28.002564+00', '44', 'update', '{"id": 44, "author": 11859, "office": 387, "status": "open", "history": [80], "partner": 48, "section": 7, "category": "None", "comments": [15], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 9333, "description": "Contacter la SDV pour in approvisionnement des districts sanitaires de Doba, Bebedjia et Bodo en cartes de vaccination et en cartes doubles", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "date_of_completion": "None"}', '{"comments": {"after": [15], "before": []}}', 9333, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (94, '2019-11-25 08:15:10.518065+00', '2019-11-25 08:15:10.518065+00', '44', 'update', '{"id": 44, "author": 11859, "office": 387, "status": "open", "history": [93, 80], "partner": 48, "section": 7, "category": "None", "comments": [15], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 9333, "description": "Contacter la SDV pour in approvisionnement des districts sanitaires de Doba, Bebedjia et Bodo en cartes de vaccination et en cartes doubles", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "date_of_completion": "None"}', '{}', 9333, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (95, '2019-11-25 08:17:50.771179+00', '2019-11-25 08:17:50.771179+00', '44', 'update', '{"id": 44, "author": 11859, "office": 387, "status": "open", "history": [94, 93, 80], "partner": 48, "section": 7, "category": "None", "comments": [15], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 9333, "description": "Contacter la SDV pour in approvisionnement des districts sanitaires de Doba, Bebedjia et Bodo en cartes de vaccination et en cartes doubles", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "date_of_completion": "None"}', '{}', 9333, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (96, '2019-11-25 08:17:59.862126+00', '2019-11-25 08:17:59.862126+00', '44', 'update', '{"id": 44, "author": 11859, "office": 387, "status": "completed", "history": [95, 94, 93, 80], "partner": 48, "section": 7, "category": "None", "comments": [15], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": ["status_update"], "assigned_by": 11859, "assigned_to": 9333, "description": "Contacter la SDV pour in approvisionnement des districts sanitaires de Doba, Bebedjia et Bodo en cartes de vaccination et en cartes doubles", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "date_of_completion": "2019-11-25 08:17:59.837050+00:00"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2019-11-25 08:17:59.837050+00:00", "before": "None"}}', 9333, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (97, '2019-11-29 07:29:10.85737+00', '2019-11-29 07:29:10.85737+00', '55', 'create', '{"id": 55, "author": 11672, "office": 387, "status": "open", "history": [], "partner": 435, "section": 7, "category": "None", "comments": [], "due_date": "2019-11-30", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 11672, "assigned_to": 60199, "description": "Faire le suivi de l''analyse des donnees et la publication du rapport final", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 10, "date_of_completion": "None"}', '{}', 11672, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (98, '2019-11-29 10:08:13.645307+00', '2019-11-29 10:08:13.645307+00', '56', 'create', '{"id": 56, "author": 11672, "office": 387, "status": "open", "history": [], "partner": 435, "section": 7, "category": "None", "comments": [], "due_date": "2019-12-31", "location": "None", "cp_output": 59, "engagement": "None", "key_events": [], "assigned_by": 11672, "assigned_to": 11672, "description": "Présenter les constats observés sur les ruptures en intrants du PAM dans le district de Mongo", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 10, "date_of_completion": "None"}', '{}', 11672, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (99, '2019-12-02 07:58:17.788347+00', '2019-12-02 07:58:17.788347+00', '14', 'update', '{"id": 14, "author": 173681, "office": 390, "status": "open", "history": [33], "partner": 42, "section": 7, "category": "None", "comments": [16], "due_date": "2019-11-30", "location": "None", "cp_output": 55, "engagement": "None", "key_events": [], "assigned_by": 173681, "assigned_to": 173681, "description": "Mettre a la disposition des centres de sante des UNA des fiches de suivi individuel", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 82, "date_of_completion": "None"}', '{"comments": {"after": [16], "before": []}}', 173681, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (100, '2019-12-02 07:58:35.795717+00', '2019-12-02 07:58:35.795717+00', '14', 'update', '{"id": 14, "author": 173681, "office": 390, "status": "open", "history": [99, 33], "partner": 42, "section": 7, "category": "None", "comments": [16], "due_date": "2019-11-30", "location": "None", "cp_output": 55, "engagement": "None", "key_events": [], "assigned_by": 173681, "assigned_to": 173681, "description": "Mettre a la disposition des centres de sante des UNA des fiches de suivi individuel", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 82, "date_of_completion": "None"}', '{}', 173681, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (101, '2019-12-02 08:01:59.10051+00', '2019-12-02 08:01:59.10051+00', '15', 'update', '{"id": 15, "author": 173681, "office": 390, "status": "open", "history": [34], "partner": 42, "section": 7, "category": "None", "comments": [17], "due_date": "2019-11-30", "location": "None", "cp_output": 55, "engagement": "None", "key_events": [], "assigned_by": 173681, "assigned_to": 173681, "description": "aider la delegation sanitaire provinciale du Salamat a elaborer le formulaire d''audit des deces dans les UNT", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 82, "date_of_completion": "None"}', '{"comments": {"after": [17], "before": []}}', 173681, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (102, '2019-12-02 08:02:15.898398+00', '2019-12-02 08:02:15.898398+00', '15', 'update', '{"id": 15, "author": 173681, "office": 390, "status": "open", "history": [101, 34], "partner": 42, "section": 7, "category": "None", "comments": [17], "due_date": "2019-11-30", "location": "None", "cp_output": 55, "engagement": "None", "key_events": [], "assigned_by": 173681, "assigned_to": 173681, "description": "aider la delegation sanitaire provinciale du Salamat a elaborer le formulaire d''audit des deces dans les UNT", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 82, "date_of_completion": "None"}', '{}', 173681, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (103, '2019-12-02 08:04:13.985505+00', '2019-12-02 08:04:13.985505+00', '50', 'update', '{"id": 50, "author": 11859, "office": 391, "status": "open", "history": [86], "partner": 48, "section": 7, "category": "None", "comments": [18], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Le DS de bebedjia doit organiser les reunions de monitorage sur une base reguliere, en l''absence de ressources, une reunion de monitorage trimestrielle reguliere pourrait suffire", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "date_of_completion": "None"}', '{"comments": {"after": [18], "before": []}}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (104, '2019-12-02 08:05:19.98306+00', '2019-12-02 08:05:19.98306+00', '50', 'update', '{"id": 50, "author": 11859, "office": 391, "status": "open", "history": [103, 86], "partner": 48, "section": 7, "category": "None", "comments": [18], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Le DS de bebedjia doit organiser les reunions de monitorage sur une base reguliere, en l''absence de ressources, une reunion de monitorage trimestrielle reguliere pourrait suffire", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "date_of_completion": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (105, '2019-12-02 08:40:59.540968+00', '2019-12-02 08:40:59.540968+00', '45', 'update', '{"id": 45, "author": 11859, "office": 391, "status": "open", "history": [81], "partner": 48, "section": 7, "category": "None", "comments": [19], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Instruire les RCS de determiner les cibles attendues pour la vaccinationpar village", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "date_of_completion": "None"}', '{"comments": {"after": [19], "before": []}}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (106, '2019-12-02 08:41:08.160894+00', '2019-12-02 08:41:08.160894+00', '45', 'update', '{"id": 45, "author": 11859, "office": 391, "status": "completed", "history": [105, 81], "partner": 48, "section": 7, "category": "None", "comments": [19], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": ["status_update"], "assigned_by": 11859, "assigned_to": 11859, "description": "Instruire les RCS de determiner les cibles attendues pour la vaccinationpar village", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "date_of_completion": "2019-12-02 08:41:08.140391+00:00"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2019-12-02 08:41:08.140391+00:00", "before": "None"}}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (107, '2019-12-02 16:12:31.900671+00', '2019-12-02 16:12:31.900671+00', '46', 'update', '{"id": 46, "author": 11859, "office": 391, "status": "open", "history": [82], "partner": 48, "section": 7, "category": "None", "comments": [20], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Instruire les RCS de mettre en place in cahier d''enregistrement des nouveau-nes dans chaque village en collaboration avec les chefs de villages", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "date_of_completion": "None"}', '{"comments": {"after": [20], "before": []}}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (108, '2019-12-02 16:12:45.742197+00', '2019-12-02 16:12:45.742197+00', '46', 'update', '{"id": 46, "author": 11859, "office": 391, "status": "open", "history": [107, 82], "partner": 48, "section": 7, "category": "None", "comments": [20], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Instruire les RCS de mettre en place in cahier d''enregistrement des nouveau-nes dans chaque village en collaboration avec les chefs de villages", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "date_of_completion": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (109, '2019-12-02 16:18:40.559044+00', '2019-12-02 16:18:40.559044+00', '47', 'update', '{"id": 47, "author": 11859, "office": 391, "status": "open", "history": [83], "partner": 48, "section": 7, "category": "None", "comments": [], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Instruire les RCS de Doba, bebidjia et Bodo ayant des cartes de vaccination de mettre en place in echeancier", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "date_of_completion": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (110, '2019-12-02 16:18:47.661124+00', '2019-12-02 16:18:47.661124+00', '47', 'update', '{"id": 47, "author": 11859, "office": 391, "status": "open", "history": [109, 83], "partner": 48, "section": 7, "category": "None", "comments": [21], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Instruire les RCS de Doba, bebidjia et Bodo ayant des cartes de vaccination de mettre en place in echeancier", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "date_of_completion": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (111, '2019-12-02 16:20:41.524699+00', '2019-12-02 16:20:41.524699+00', '50', 'update', '{"id": 50, "author": 11859, "office": 391, "status": "completed", "history": [104, 103, 86], "partner": 48, "section": 7, "category": "None", "comments": [18], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": ["status_update"], "assigned_by": 11859, "assigned_to": 11859, "description": "Le DS de bebedjia doit organiser les reunions de monitorage sur une base reguliere, en l''absence de ressources, une reunion de monitorage trimestrielle reguliere pourrait suffire", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "date_of_completion": "2019-12-02 16:20:41.502616+00:00"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2019-12-02 16:20:41.502616+00:00", "before": "None"}}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (112, '2019-12-04 13:35:47.241068+00', '2019-12-04 13:35:47.241068+00', '57', 'create', '{"id": 57, "author": 12528, "office": 391, "status": "open", "history": [], "partner": 415, "section": 7, "category": "None", "comments": [], "due_date": "2019-12-31", "location": "None", "cp_output": 55, "engagement": "None", "key_events": [], "assigned_by": 12528, "assigned_to": 12528, "description": "Assurer le suivi des recommandations issues de travaux de groupe PCA WVI. \nIdentifier les interventions a documenter pour l''ecriture d''articles par le Reseau des Journalistes T[[schema]]ien pour la Nutrition", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 105, "date_of_completion": "None"}', '{}', 12528, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (113, '2019-12-07 09:28:27.126502+00', '2019-12-07 09:28:27.126502+00', '36', 'update', '{"id": 36, "author": 20819, "office": 391, "status": "open", "history": [64], "partner": "None", "section": 7, "category": "None", "comments": [], "due_date": "2019-11-30", "location": "None", "cp_output": 47, "engagement": "None", "key_events": ["reassign"], "assigned_by": 20819, "assigned_to": 13031, "description": "Appuyer le DS de Laramanaye à finaliser la requête permettant de relancer les activités communautaires", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 107, "reference_number": "CHD/2019/36/APD", "date_of_completion": "None"}', '{"office": {"after": 391, "before": 388}, "assigned_to": {"after": 13031, "before": 9329}, "description": {"after": "Appuyer le DS de Laramanaye à finaliser la requête permettant de relancer les activités communautaires", "before": "Appuyer la Maison de Culture Ahmat Pecos d’Abeche à renforcer la planification et le reporting des interventions communautaires via les pairs éducateurs"}}', 20819, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (114, '2019-12-07 09:29:07.986457+00', '2019-12-07 09:29:07.986457+00', '37', 'update', '{"id": 37, "author": 20819, "office": 388, "status": "open", "history": [65], "partner": 437, "section": 7, "category": "None", "comments": [], "due_date": "2019-12-30", "location": "None", "cp_output": 47, "engagement": "None", "key_events": [], "assigned_by": 20819, "assigned_to": 9329, "description": "Appuyer le DS d’Abougoudam à intégrer dans la prochaine requête, l’appui aux interventions des relais communautaires et la formation de l’Union des organisations de femmes d’Abougoudam", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 107, "reference_number": "CHD/2019/37/APD", "date_of_completion": "None"}', '{}', 20819, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (115, '2019-12-07 09:33:55.770441+00', '2019-12-07 09:33:55.770441+00', '38', 'update', '{"id": 38, "author": 20819, "office": 388, "status": "open", "history": [66], "partner": 437, "section": 7, "category": "None", "comments": [], "due_date": "2019-12-30", "location": "None", "cp_output": 45, "engagement": "None", "key_events": [], "assigned_by": 20819, "assigned_to": 9329, "description": "Appuyer le DS d’Abougoudam à acquérir un tricycle en vue de faciliter les déplacements des équipes vers les villages environnant en stratégie avancée", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 107, "reference_number": "CHD/2019/38/APD", "date_of_completion": "None"}', '{}', 20819, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (116, '2019-12-07 09:34:13.780788+00', '2019-12-07 09:34:13.780788+00', '38', 'update', '{"id": 38, "author": 20819, "office": 388, "status": "open", "history": [115, 66], "partner": 437, "section": 7, "category": "None", "comments": [], "due_date": "2019-12-30", "location": "None", "cp_output": 45, "engagement": "None", "key_events": ["reassign"], "assigned_by": 20819, "assigned_to": 9329, "description": "Rien à signaler", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 107, "reference_number": "CHD/2019/38/APD", "date_of_completion": "None"}', '{"assigned_to": {"after": 9329, "before": 24090}, "description": {"after": "Rien à signaler", "before": "n/a"}}', 20819, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (117, '2019-12-07 09:34:41.872957+00', '2019-12-07 09:34:41.872957+00', '38', 'update', '{"id": 38, "author": 20819, "office": 388, "status": "open", "history": [116, 115, 66], "partner": 437, "section": 7, "category": "None", "comments": [], "due_date": "2019-12-30", "location": "None", "cp_output": 45, "engagement": "None", "key_events": [], "assigned_by": 20819, "assigned_to": 9329, "description": "Rien à signaler", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 107, "reference_number": "CHD/2019/38/APD", "date_of_completion": "None"}', '{}', 20819, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (118, '2019-12-07 09:42:02.923135+00', '2019-12-07 09:42:02.923135+00', '58', 'create', '{"id": 58, "author": 20819, "office": 387, "status": "open", "history": [], "partner": 437, "section": 7, "category": "None", "comments": [], "due_date": "2019-12-31", "location": "None", "cp_output": 47, "engagement": "None", "key_events": [], "assigned_by": 20819, "assigned_to": 24090, "description": "Appuyer la Maison de Culture Ahmat Pecos d’Abeche à renforcer la planification et le reporting des interventions communautaires via les pairs éducateurs", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 42, "reference_number": "CHD/2019/58/APD", "date_of_completion": "None"}', '{}', 20819, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (119, '2019-12-07 09:43:12.801812+00', '2019-12-07 09:43:12.801812+00', '59', 'create', '{"id": 59, "author": 20819, "office": 388, "status": "open", "history": [], "partner": 437, "section": 7, "category": "None", "comments": [], "due_date": "2019-12-31", "location": "None", "cp_output": 47, "engagement": "None", "key_events": [], "assigned_by": 20819, "assigned_to": 9329, "description": "Appuyer le DS d’Abougoudam à intégrer dans la prochaine requête, l’appui aux interventions des relais communautaires et la formation de l’Union des organisations de femmes d’Abougoudam", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 42, "reference_number": "CHD/2019/59/APD", "date_of_completion": "None"}', '{}', 20819, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (120, '2019-12-07 09:44:56.934764+00', '2019-12-07 09:44:56.934764+00', '60', 'create', '{"id": 60, "author": 20819, "office": 388, "status": "open", "history": [], "partner": "None", "section": 7, "category": "None", "comments": [], "due_date": "2020-01-31", "location": "None", "cp_output": 46, "engagement": "None", "key_events": [], "assigned_by": 20819, "assigned_to": 9329, "description": "Appuyer le DS d’Abougoudam à acquérir un tricycle en vue de faciliter les déplacements des équipes vers les villages environnant en stratégie avancée", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 42, "reference_number": "CHD/2019/60/APD", "date_of_completion": "None"}', '{}', 20819, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (121, '2019-12-09 11:09:05.787436+00', '2019-12-09 11:09:05.787436+00', '61', 'create', '{"id": 61, "author": 5074, "office": 387, "status": "open", "history": [], "partner": 74, "section": 11, "category": "None", "comments": [], "due_date": "2019-12-16", "location": "None", "cp_output": 16, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "Finaliser la cartographie des interventions en protection sociale au niveau des provinces et les partager avec les participants et le ministère en charge du plan", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 151, "reference_number": "CHD/2019/61/APD", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (122, '2019-12-09 11:10:46.353947+00', '2019-12-09 11:10:46.353947+00', '62', 'create', '{"id": 62, "author": 5074, "office": 387, "status": "open", "history": [], "partner": 74, "section": 11, "category": "None", "comments": [], "due_date": "2020-02-29", "location": "None", "cp_output": 16, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "Sur la base des résultats de l’évaluation de la formation et des orientations issues de la révision de la SNPS, recadrer en termes de contenu et de participants\n les prochaines formations en protection sociale au niveau local", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 151, "reference_number": "CHD/2019/62/APD", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (123, '2019-12-11 07:34:41.444085+00', '2019-12-11 07:34:41.444085+00', '63', 'create', '{"id": 63, "author": 4606, "office": 387, "status": "open", "history": [], "partner": 74, "section": 11, "category": "None", "comments": [], "due_date": "2020-02-29", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 4606, "assigned_to": 4606, "description": "Faire le suivi avec les Sections / Unités afin de contacter tous les partenaires de la société civile nationale à s’enregistrer sur la Portail des Partenaires des Nations Unies (UNPP)", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 73, "reference_number": "CHD/2019/63/APD", "date_of_completion": "None"}', '{}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (124, '2019-12-11 07:35:43.505409+00', '2019-12-11 07:35:43.505409+00', '64', 'create', '{"id": 64, "author": 4606, "office": 387, "status": "open", "history": [], "partner": 74, "section": 11, "category": "None", "comments": [], "due_date": "2019-12-30", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 4606, "assigned_to": 4606, "description": "Faire le suivi pour que le MEPD puisse justifier avant le 31 décembre 2019, les dépenses liées à la formation en HACT", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 73, "reference_number": "CHD/2019/64/APD", "date_of_completion": "None"}', '{}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (132, '2019-12-21 12:49:48.829814+00', '2019-12-21 12:49:48.829814+00', '72', 'create', '{"id": 72, "author": 9984, "office": 387, "status": "open", "history": [], "partner": 187, "section": 11, "category": "None", "comments": [], "due_date": "2019-12-31", "location": "None", "cp_output": 21, "engagement": "None", "key_events": [], "assigned_by": 9984, "assigned_to": 12132, "description": "3. Recommandations\tResponsable\tEchéance\nDocumenter l’approche du CFC/RTM ainsi que les leçons apprises avec une meilleure participation des autres sections de l’UNICEF.\tChef CSD/BZ Moundou\tD’ici 31/12/2019\nAccélérer la mise en place d’une UNA dans les centres de santé de Benoé et Krim Krim pour la prise en charge des enfants malnutris dépistés par les ASC dans leur communauté\tBZ-Moundou/ DSP LOC/DNTA\tD’ici Nov. 2019\nLa demande étant fortement suscitée, renforcer l’offre de services de qualité en appuyer la DSP/LOC, les 2 districts et les 2 centres de santé à adopter un système efficace d’approvisionnement en vaccins, cartes de vaccination, médicaments essentiels et en registre d’enregistrement des naissances ainsi que l’organisation des services. Accélérer la mise à disposition des réfrigérateurs, du matériel médical et des motos de supervision\tBZ-Moundou/ Chef CSD\tD’ici Nov. 2019", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 87, "reference_number": "None", "date_of_completion": "None"}', '{}', 9984, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (133, '2019-12-21 12:52:03.845238+00', '2019-12-21 12:52:03.845238+00', '73', 'create', '{"id": 73, "author": 9984, "office": 391, "status": "open", "history": [], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2019-12-31", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 9984, "assigned_to": 21654, "description": "Documenter l’approche du CFC/RTM ainsi que les leçons apprises avec une meilleure participation des autres sections de l’UNICEF.", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 87, "reference_number": "CHD/2019/73/APD", "date_of_completion": "None"}', '{}', 9984, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (127, '2019-12-12 14:42:32.121928+00', '2019-12-12 14:42:32.121928+00', '67', 'create', '{"id": 67, "author": 12132, "office": 387, "status": "open", "history": [], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2019-11-30", "location": "None", "cp_output": 29, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 11647, "description": "3.\tAccélérer la mise à disposition des réfrigérateurs, du matériel médical et des motos de supervision", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 7, "reference_number": "CHD/2019/67/APD", "date_of_completion": "None"}', '{}', 12132, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (134, '2019-12-23 14:04:04.662462+00', '2019-12-23 14:04:04.662462+00', '74', 'create', '{"id": 74, "author": 12058, "office": 387, "status": "open", "history": [], "partner": 55, "section": 2, "category": "None", "comments": [], "due_date": "2020-03-30", "location": "None", "cp_output": 23, "engagement": "None", "key_events": [], "assigned_by": 12058, "assigned_to": 5056, "description": "Développer des accords de longue durée avec quelques radios et télévisions pour la production et la diffusion des émissions", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 179, "reference_number": "CHD/2019/74/APD", "date_of_completion": "None"}', '{}', 12058, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (135, '2019-12-26 16:27:16.357407+00', '2019-12-26 16:27:16.357407+00', '30', 'update', '{"id": 30, "author": 13512, "office": 391, "status": "open", "history": [58], "partner": 447, "section": 8, "category": "None", "comments": [], "due_date": "2019-10-30", "location": "None", "cp_output": 37, "engagement": "None", "key_events": [], "assigned_by": 13512, "assigned_to": 13512, "description": "appuyer le partenaire pour finaliser et envoyer le rapport de liquidation", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 85, "reference_number": "CHD/2019/30/APD", "date_of_completion": "None"}', '{}', 13512, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (136, '2019-12-26 16:36:39.911341+00', '2019-12-26 16:36:39.911341+00', '75', 'create', '{"id": 75, "author": 13512, "office": 387, "status": "open", "history": [], "partner": 444, "section": 8, "category": "None", "comments": [], "due_date": "2020-01-06", "location": "None", "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13512, "assigned_to": 9032, "description": "fournir les outils wash in school et pour la sensibilisation au partenaires APDI et CRT", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 186, "reference_number": "CHD/2019/75/APD", "date_of_completion": "None"}', '{}', 13512, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (137, '2019-12-26 16:55:12.201239+00', '2019-12-26 16:55:12.201239+00', '76', 'create', '{"id": 76, "author": 13512, "office": 387, "status": "open", "history": [], "partner": 450, "section": 8, "category": "None", "comments": [], "due_date": "2020-01-17", "location": "None", "cp_output": 38, "engagement": "None", "key_events": [], "assigned_by": 13512, "assigned_to": 9032, "description": "complement du dispositifs de lavage de mains", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 150, "reference_number": "CHD/2019/76/APD", "date_of_completion": "None"}', '{}', 13512, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (138, '2019-12-30 15:46:46.866595+00', '2019-12-30 15:46:46.866595+00', '77', 'create', '{"id": 77, "author": 5056, "office": 387, "status": "open", "history": [], "partner": 81, "section": 2, "category": "None", "comments": [], "due_date": "2020-01-31", "location": "None", "cp_output": 23, "engagement": "None", "key_events": [], "assigned_by": 5056, "assigned_to": 5056, "description": "Participer à la restitution que les partenaires de la santé souhaitent faire à la direction générale dudit Ministère.", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 106, "reference_number": "CHD/2019/77/APD", "date_of_completion": "None"}', '{}', 5056, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (139, '2019-12-30 15:48:00.91365+00', '2019-12-30 15:48:00.91365+00', '78', 'create', '{"id": 78, "author": 5056, "office": 387, "status": "open", "history": [], "partner": 81, "section": 2, "category": "None", "comments": [], "due_date": "2020-02-29", "location": "None", "cp_output": 23, "engagement": "None", "key_events": [], "assigned_by": 5056, "assigned_to": 5056, "description": "Elargir les échanges en techniques d’accueil à tous les niveaux des structures sanitaires tout en impliquant les leaders religieux et traditionnels.", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 106, "reference_number": "CHD/2019/78/APD", "date_of_completion": "None"}', '{}', 5056, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (140, '2019-12-30 15:48:40.223526+00', '2019-12-30 15:48:40.223526+00', '79', 'create', '{"id": 79, "author": 5056, "office": 387, "status": "open", "history": [], "partner": 81, "section": 2, "category": "None", "comments": [], "due_date": "2020-02-29", "location": "None", "cp_output": 23, "engagement": "None", "key_events": [], "assigned_by": 5056, "assigned_to": 5056, "description": "Assurer le suivi de la mise en œuvre effective des techniques apprises lors des ateliers en accord avec le Ministère de la sante.", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 106, "reference_number": "CHD/2019/79/APD", "date_of_completion": "None"}', '{}', 5056, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (141, '2019-12-31 09:39:13.596351+00', '2019-12-31 09:39:13.596351+00', '64', 'update', '{"id": 64, "author": 4606, "office": 387, "status": "open", "history": [124], "partner": 74, "section": 11, "category": "None", "comments": [22], "due_date": "2019-12-30", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 4606, "assigned_to": 4606, "description": "Faire le suivi pour que le MEPD puisse justifier avant le 31 décembre 2019, les dépenses liées à la formation en HACT", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 73, "reference_number": "CHD/2019/64/APD", "date_of_completion": "None"}', '{"comments": {"after": [22], "before": []}}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (142, '2019-12-31 09:39:22.202293+00', '2019-12-31 09:39:22.202293+00', '64', 'update', '{"id": 64, "author": 4606, "office": 387, "status": "completed", "history": [141, 124], "partner": 74, "section": 11, "category": "None", "comments": [22], "due_date": "2019-12-30", "location": "None", "cp_output": 14, "engagement": "None", "key_events": ["status_update"], "assigned_by": 4606, "assigned_to": 4606, "description": "Faire le suivi pour que le MEPD puisse justifier avant le 31 décembre 2019, les dépenses liées à la formation en HACT", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 73, "reference_number": "CHD/2019/64/APD", "date_of_completion": "2019-12-31 09:39:22.176963+00:00"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2019-12-31 09:39:22.176963+00:00", "before": "None"}}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (143, '2019-12-31 14:29:51.6115+00', '2019-12-31 14:29:51.6115+00', '80', 'create', '{"id": 80, "author": 13512, "office": 391, "status": "open", "history": [], "partner": "None", "section": 8, "category": "None", "comments": [], "due_date": "2020-01-30", "location": "None", "cp_output": 39, "engagement": "None", "key_events": [], "assigned_by": 13512, "assigned_to": 13512, "description": "integration de l''aspect de la protection transversale dans mes planifications", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 167, "reference_number": "CHD/2019/80/APD", "date_of_completion": "None"}', '{}', 13512, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (144, '2019-12-31 21:24:53.363829+00', '2019-12-31 21:24:53.363829+00', '81', 'create', '{"id": 81, "author": 9984, "office": 387, "status": "open", "history": [], "partner": 238, "section": 7, "category": "None", "comments": [], "due_date": "2020-01-31", "location": "None", "cp_output": 55, "engagement": "None", "key_events": [], "assigned_by": 9984, "assigned_to": 11672, "description": "Relancer la mise en place d’une UNT a Pala", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 188, "reference_number": "CHD/2019/81/APD", "date_of_completion": "None"}', '{}', 9984, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (145, '2019-12-31 21:28:30.36174+00', '2019-12-31 21:28:30.36174+00', '82', 'create', '{"id": 82, "author": 9984, "office": 391, "status": "open", "history": [], "partner": 206, "section": 7, "category": "None", "comments": [], "due_date": "2019-12-31", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 9984, "assigned_to": 12528, "description": "Relancer la mise en place d’une UNT a Pala", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 188, "reference_number": "CHD/2019/82/APD", "date_of_completion": "None"}', '{}', 9984, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (146, '2019-12-31 21:33:53.215294+00', '2019-12-31 21:33:53.215294+00', '83', 'create', '{"id": 83, "author": 9984, "office": 387, "status": "open", "history": [], "partner": 430, "section": 7, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 28, "engagement": "None", "key_events": [], "assigned_by": 9984, "assigned_to": 11647, "description": "Plaidoyer auprès du Ministère pour élaborer des micros plans de façon ascendante et participative", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 188, "reference_number": "CHD/2019/83/APD", "date_of_completion": "None"}', '{}', 9984, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (147, '2019-12-31 21:38:58.519538+00', '2019-12-31 21:38:58.519538+00', '84', 'create', '{"id": 84, "author": 9984, "office": 387, "status": "open", "history": [], "partner": 405, "section": 7, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 29, "engagement": "None", "key_events": [], "assigned_by": 9984, "assigned_to": 11566, "description": "Mettre l’accent sur la préparation de la campagne en faisant l’état des lieux en termes de disponibilités ( chaines de froid, ressources humaines, formations, logistiques, intrants…etc.)", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 188, "reference_number": "CHD/2019/84/APD", "date_of_completion": "None"}', '{}', 9984, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (148, '2020-01-02 10:56:24.330994+00', '2020-01-02 10:56:24.330994+00', '85', 'create', '{"id": 85, "author": 8721, "office": 387, "status": "open", "history": [], "partner": 74, "section": 12, "category": "None", "comments": [], "due_date": "2020-01-15", "location": "None", "cp_output": 13, "engagement": "None", "key_events": [], "assigned_by": 8721, "assigned_to": 3701, "description": "1.\tSigner un memo sur les couts unitaires pour application par les sections et unités de l’UNICEF", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 191, "reference_number": "None", "date_of_completion": "None"}', '{}', 8721, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (149, '2020-01-02 10:57:28.091813+00', '2020-01-02 10:57:28.091813+00', '86', 'create', '{"id": 86, "author": 8721, "office": 387, "status": "open", "history": [], "partner": 74, "section": 11, "category": "None", "comments": [], "due_date": "2020-01-10", "location": "None", "cp_output": 13, "engagement": "None", "key_events": [], "assigned_by": 8721, "assigned_to": 8721, "description": "2.\tAccompagner la finalisation du rapport de la revue et la révision du PPA", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 191, "reference_number": "CHD/2020/86/APD", "date_of_completion": "None"}', '{}', 8721, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (150, '2020-01-02 11:05:40.809125+00', '2020-01-02 11:05:40.809125+00', '86', 'update', '{"id": 86, "author": 8721, "office": 387, "status": "open", "history": [149], "partner": 74, "section": 11, "category": "None", "comments": [], "due_date": "2020-01-10", "location": "None", "cp_output": 13, "engagement": "None", "key_events": [], "assigned_by": 8721, "assigned_to": 8721, "description": "2.\tAccompagner la finalisation du rapport de la revue et la révision du PAP", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 191, "reference_number": "CHD/2020/86/APD", "date_of_completion": "None"}', '{"description": {"after": "2.\tAccompagner la finalisation du rapport de la revue et la révision du PAP", "before": "2.\tAccompagner la finalisation du rapport de la revue et la révision du PPA"}}', 8721, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (151, '2020-01-02 13:12:17.301574+00', '2020-01-02 13:12:17.301574+00', '87', 'create', '{"id": 87, "author": 8721, "office": 387, "status": "open", "history": [], "partner": 74, "section": 11, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 13, "engagement": "None", "key_events": [], "assigned_by": 8721, "assigned_to": 177097, "description": "Faire le suivi de l’atelier de mobilisation des ressources", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 191, "reference_number": "CHD/2020/87/APD", "date_of_completion": "None"}', '{}', 8721, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (152, '2020-01-04 09:54:20.982529+00', '2020-01-04 09:54:20.982529+00', '61', 'update', '{"id": 61, "author": 5074, "office": 387, "status": "open", "history": [121], "partner": 74, "section": 11, "category": "None", "comments": [], "due_date": "2019-12-16", "location": "None", "cp_output": 16, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "Finaliser la cartographie des interventions en protection sociale au niveau des provinces et les partager avec les participants et le ministère en charge du plan", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 151, "reference_number": "CHD/2019/61/APD", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (153, '2020-01-04 09:54:32.486007+00', '2020-01-04 09:54:32.486007+00', '61', 'update', '{"id": 61, "author": 5074, "office": 387, "status": "open", "history": [152, 121], "partner": 74, "section": 11, "category": "None", "comments": [23], "due_date": "2019-12-16", "location": "None", "cp_output": 16, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "Finaliser la cartographie des interventions en protection sociale au niveau des provinces et les partager avec les participants et le ministère en charge du plan", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 151, "reference_number": "CHD/2019/61/APD", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (154, '2020-01-07 07:30:39.273999+00', '2020-01-07 07:30:39.273999+00', '88', 'create', '{"id": 88, "author": 5064, "office": 387, "status": "open", "history": [], "partner": 104, "section": 8, "category": "None", "comments": [], "due_date": "2020-01-30", "location": "None", "cp_output": 40, "engagement": "None", "key_events": [], "assigned_by": 5064, "assigned_to": 14239, "description": "Suivre l’accélération de la sensibilisation de masse 2e phase qui est une activité du T5 alors logiquement doit être à la t4 mais budgétiser sur T5", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 153, "reference_number": "CHD/2020/88/APD", "date_of_completion": "None"}', '{}', 5064, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (155, '2020-01-07 09:28:19.464045+00', '2020-01-07 09:28:19.464045+00', '85', 'update', '{"id": 85, "author": 8721, "office": 387, "status": "open", "history": [148], "partner": 74, "section": 12, "category": "None", "comments": [24], "due_date": "2020-01-15", "location": "None", "cp_output": 13, "engagement": "None", "key_events": [], "assigned_by": 8721, "assigned_to": 3701, "description": "1.\tSigner un memo sur les couts unitaires pour application par les sections et unités de l’UNICEF", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 191, "reference_number": "CHD/2020/85/APD", "date_of_completion": "None"}', '{"comments": {"after": [24], "before": []}}', 3701, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (156, '2020-01-07 09:28:39.036255+00', '2020-01-07 09:28:39.036255+00', '85', 'update', '{"id": 85, "author": 8721, "office": 387, "status": "completed", "history": [155, 148], "partner": 74, "section": 12, "category": "None", "comments": [24], "due_date": "2020-01-15", "location": "None", "cp_output": 13, "engagement": "None", "key_events": ["status_update"], "assigned_by": 8721, "assigned_to": 3701, "description": "1.\tSigner un memo sur les couts unitaires pour application par les sections et unités de l’UNICEF", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 191, "reference_number": "CHD/2020/85/APD", "date_of_completion": "2020-01-07 09:28:39.005965+00:00"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2020-01-07 09:28:39.005965+00:00", "before": "None"}}', 3701, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (157, '2020-01-20 11:23:49.84654+00', '2020-01-20 11:23:49.84654+00', '89', 'create', '{"id": 89, "author": 14700, "office": 387, "status": "open", "history": [], "partner": 302, "section": 3, "category": "None", "comments": [], "due_date": "2020-01-20", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14700, "description": "-\tContacter Tigo pour la réactivation des téléphones des lanceurs de SMS et de superviseurs", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 196, "reference_number": "CHD/2020/89/APD", "date_of_completion": "None"}', '{}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (158, '2020-01-20 11:25:07.746463+00', '2020-01-20 11:25:07.746463+00', '90', 'create', '{"id": 90, "author": 14700, "office": 391, "status": "open", "history": [], "partner": 302, "section": 2, "category": "None", "comments": [], "due_date": "2020-12-31", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "-\tEnvoyer deux SMS au 1301 par mois même au cas où il n’y a aucun cas à rapporter. Le contenu du message peut être RAS", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 196, "reference_number": "CHD/2020/90/APD", "date_of_completion": "None"}', '{}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (159, '2020-01-20 11:26:46.091368+00', '2020-01-20 11:26:46.091368+00', '91', 'create', '{"id": 91, "author": 14700, "office": 391, "status": "open", "history": [], "partner": 302, "section": 2, "category": "None", "comments": [], "due_date": "2020-12-31", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "-\tSe connecter au moins deux fois par jour pour consulter la boite de réception des SMS", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 196, "reference_number": "CHD/2020/91/APD", "date_of_completion": "None"}', '{}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (160, '2020-01-20 11:30:26.079572+00', '2020-01-20 11:30:26.079572+00', '90', 'update', '{"id": 90, "author": 14700, "office": 387, "status": "open", "history": [158], "partner": 302, "section": 2, "category": "None", "comments": [], "due_date": "2020-12-31", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "-\tEnvoyer deux SMS au 1301 par mois même au cas où il n’y a aucun cas à rapporter. Le contenu du message peut être RAS", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 196, "reference_number": "CHD/2020/90/APD", "date_of_completion": "None"}', '{"office": {"after": 387, "before": 391}}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (161, '2020-01-20 11:32:35.955523+00', '2020-01-20 11:32:35.955523+00', '23', 'update', '{"id": 23, "author": 14700, "office": 387, "status": "open", "history": [47], "partner": "None", "section": 3, "category": "None", "comments": [25], "due_date": "2019-11-19", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 13846, "description": "1.\tFaire participer le point focal PRU des Bureaux de zone de Moundou et de Bol à l’atelier de formation des formateurs", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 79, "reference_number": "CHD/2019/23/APD", "date_of_completion": "None"}', '{"comments": {"after": [25], "before": []}}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (162, '2020-01-20 11:33:29.196653+00', '2020-01-20 11:33:29.196653+00', '24', 'update', '{"id": 24, "author": 14700, "office": 387, "status": "open", "history": [48], "partner": "None", "section": 2, "category": "None", "comments": [26], "due_date": "2019-11-30", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "2.\tAssister à la désignation des lanceurs de SMS dans les localités identifiées compte tenu de difficultés logistiques du CPA", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 79, "reference_number": "CHD/2019/24/APD", "date_of_completion": "None"}', '{"comments": {"after": [26], "before": []}}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (163, '2020-01-20 11:34:18.509126+00', '2020-01-20 11:34:18.509126+00', '25', 'update', '{"id": 25, "author": 14700, "office": 387, "status": "open", "history": [49], "partner": "None", "section": 2, "category": "None", "comments": [27], "due_date": "2019-11-30", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "3.\tFormer les lanceurs de SMS à l’utilisation du protocole d’envoi des messages et de la promotion et de recrutement de U-reporters", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 79, "reference_number": "CHD/2019/25/APD", "date_of_completion": "None"}', '{"comments": {"after": [27], "before": []}}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (164, '2020-01-20 11:34:56.167991+00', '2020-01-20 11:34:56.167991+00', '26', 'update', '{"id": 26, "author": 14700, "office": 387, "status": "open", "history": [50], "partner": "None", "section": 2, "category": "None", "comments": [28], "due_date": "2019-11-30", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "4.\tFormer les Points focaux SAP du CPA à l’utilisation de la plateforme technique du SAP", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 79, "reference_number": "CHD/2019/26/APD", "date_of_completion": "None"}', '{"comments": {"after": [28], "before": []}}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (165, '2020-01-20 11:35:29.790255+00', '2020-01-20 11:35:29.790255+00', '89', 'update', '{"id": 89, "author": 14700, "office": 387, "status": "open", "history": [157], "partner": 302, "section": 3, "category": "None", "comments": [], "due_date": "2020-01-20", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14700, "description": "-\tContacter Tigo pour la réactivation des téléphones des lanceurs de SMS et de superviseurs", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 196, "reference_number": "CHD/2020/89/APD", "date_of_completion": "None"}', '{}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (166, '2020-01-20 11:35:50.96086+00', '2020-01-20 11:35:50.96086+00', '23', 'update', '{"id": 23, "author": 14700, "office": 387, "status": "open", "history": [161, 47], "partner": "None", "section": 3, "category": "None", "comments": [25], "due_date": "2019-11-19", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 13846, "description": "1.\tFaire participer le point focal PRU des Bureaux de zone de Moundou et de Bol à l’atelier de formation des formateurs", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 79, "reference_number": "CHD/2019/23/APD", "date_of_completion": "None"}', '{}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (167, '2020-01-20 11:36:32.771036+00', '2020-01-20 11:36:32.771036+00', '24', 'update', '{"id": 24, "author": 14700, "office": 387, "status": "completed", "history": [162, 48], "partner": "None", "section": 2, "category": "None", "comments": [26], "due_date": "2019-11-30", "location": "None", "cp_output": 22, "engagement": "None", "key_events": ["status_update"], "assigned_by": 14700, "assigned_to": 14362, "description": "2.\tAssister à la désignation des lanceurs de SMS dans les localités identifiées compte tenu de difficultés logistiques du CPA", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 79, "reference_number": "CHD/2019/24/APD", "date_of_completion": "2020-01-20 11:36:32.747793+00:00"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2020-01-20 11:36:32.747793+00:00", "before": "None"}}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (168, '2020-01-20 11:36:58.842396+00', '2020-01-20 11:36:58.842396+00', '25', 'update', '{"id": 25, "author": 14700, "office": 387, "status": "completed", "history": [163, 49], "partner": "None", "section": 2, "category": "None", "comments": [27], "due_date": "2019-11-30", "location": "None", "cp_output": 22, "engagement": "None", "key_events": ["status_update"], "assigned_by": 14700, "assigned_to": 14362, "description": "3.\tFormer les lanceurs de SMS à l’utilisation du protocole d’envoi des messages et de la promotion et de recrutement de U-reporters", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 79, "reference_number": "CHD/2019/25/APD", "date_of_completion": "2020-01-20 11:36:58.820623+00:00"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2020-01-20 11:36:58.820623+00:00", "before": "None"}}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (169, '2020-01-20 11:37:43.447503+00', '2020-01-20 11:37:43.447503+00', '26', 'update', '{"id": 26, "author": 14700, "office": 387, "status": "open", "history": [164, 50], "partner": "None", "section": 2, "category": "None", "comments": [28], "due_date": "2019-11-30", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "4.\tFormer les Points focaux SAP du CPA à l’utilisation de la plateforme technique du SAP", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 79, "reference_number": "CHD/2019/26/APD", "date_of_completion": "None"}', '{}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (170, '2020-01-20 11:37:47.176589+00', '2020-01-20 11:37:47.176589+00', '26', 'update', '{"id": 26, "author": 14700, "office": 387, "status": "open", "history": [169, 164, 50], "partner": "None", "section": 2, "category": "None", "comments": [28], "due_date": "2019-11-30", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "4.\tFormer les Points focaux SAP du CPA à l’utilisation de la plateforme technique du SAP", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 79, "reference_number": "CHD/2019/26/APD", "date_of_completion": "None"}', '{}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (171, '2020-01-20 11:48:23.910365+00', '2020-01-20 11:48:23.910365+00', '89', 'update', '{"id": 89, "author": 14700, "office": 387, "status": "open", "history": [165, 157], "partner": 302, "section": 3, "category": "None", "comments": [29], "due_date": "2020-01-20", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14700, "description": "-\tContacter Tigo pour la réactivation des téléphones des lanceurs de SMS et de superviseurs", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 196, "reference_number": "CHD/2020/89/APD", "date_of_completion": "None"}', '{}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (172, '2020-01-20 11:48:41.116999+00', '2020-01-20 11:48:41.116999+00', '89', 'update', '{"id": 89, "author": 14700, "office": 387, "status": "completed", "history": [171, 165, 157], "partner": 302, "section": 3, "category": "None", "comments": [29], "due_date": "2020-01-20", "location": "None", "cp_output": 22, "engagement": "None", "key_events": ["status_update"], "assigned_by": 14700, "assigned_to": 14700, "description": "-\tContacter Tigo pour la réactivation des téléphones des lanceurs de SMS et de superviseurs", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 196, "reference_number": "CHD/2020/89/APD", "date_of_completion": "2020-01-20 11:48:41.093430+00:00"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2020-01-20 11:48:41.093430+00:00", "before": "None"}}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (173, '2020-01-30 09:32:27.789971+00', '2020-01-30 09:32:27.789971+00', '34', 'update', '{"id": 34, "author": 13031, "office": 391, "status": "open", "history": [62], "partner": 41, "section": 7, "category": "None", "comments": [], "due_date": "2019-12-31", "location": "None", "cp_output": 46, "engagement": "None", "key_events": [], "assigned_by": 13031, "assigned_to": 13031, "description": "Assurer le coaching des gestionnaires de DS de Mandoul lors de mission de supervision sur le HACT en vue d''ameliorer la qualite des pieces justificatives", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 111, "reference_number": "CHD/2019/34/APD", "date_of_completion": "None"}', '{}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (174, '2020-01-30 09:32:39.061168+00', '2020-01-30 09:32:39.061168+00', '34', 'update', '{"id": 34, "author": 13031, "office": 391, "status": "completed", "history": [173, 62], "partner": 41, "section": 7, "category": "None", "comments": [30], "due_date": "2019-12-31", "location": "None", "cp_output": 46, "engagement": "None", "key_events": ["status_update"], "assigned_by": 13031, "assigned_to": 13031, "description": "Assurer le coaching des gestionnaires de DS de Mandoul lors de mission de supervision sur le HACT en vue d''ameliorer la qualite des pieces justificatives", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 111, "reference_number": "CHD/2019/34/APD", "date_of_completion": "2020-01-30 09:32:39.038251+00:00"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2020-01-30 09:32:39.038251+00:00", "before": "None"}}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (175, '2020-01-30 09:39:50.167893+00', '2020-01-30 09:39:50.167893+00', '36', 'update', '{"id": 36, "author": 20819, "office": 391, "status": "open", "history": [113, 64], "partner": "None", "section": 7, "category": "None", "comments": [31], "due_date": "2019-11-30", "location": "None", "cp_output": 47, "engagement": "None", "key_events": [], "assigned_by": 20819, "assigned_to": 13031, "description": "Appuyer le DS de Laramanaye à finaliser la requête permettant de relancer les activités communautaires", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 107, "reference_number": "CHD/2019/36/APD", "date_of_completion": "None"}', '{"comments": {"after": [31], "before": []}}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (176, '2020-01-30 09:40:02.500996+00', '2020-01-30 09:40:02.500996+00', '36', 'update', '{"id": 36, "author": 20819, "office": 391, "status": "open", "history": [175, 113, 64], "partner": "None", "section": 7, "category": "None", "comments": [31], "due_date": "2019-11-30", "location": "None", "cp_output": 47, "engagement": "None", "key_events": [], "assigned_by": 20819, "assigned_to": 13031, "description": "Appuyer le DS de Laramanaye à finaliser la requête permettant de relancer les activités communautaires", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 107, "reference_number": "CHD/2019/36/APD", "date_of_completion": "None"}', '{}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (177, '2020-02-07 11:36:32.861379+00', '2020-02-07 11:36:32.861379+00', '92', 'create', '{"id": 92, "author": 12132, "office": 391, "status": "open", "history": [], "partner": 187, "section": 3, "category": "None", "comments": [], "due_date": "2020-02-28", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 11859, "description": "1.\tSuivre avec la DSP/LOC et les districts l’approvisionnement rapide des centres de santé en cartes de vaccination pour faciliter un meilleur suivi personnalisé des enfants de 0-59 mois sur l’utilisation des services de vaccination sans perdre de vue le carnet de la femme enceinte pour le suivi des CPN.", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 193, "reference_number": "CHD/2020/92/APD", "date_of_completion": "None"}', '{}', 12132, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (178, '2020-02-07 11:37:47.920222+00', '2020-02-07 11:37:47.920222+00', '93', 'create', '{"id": 93, "author": 12132, "office": 387, "status": "open", "history": [], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2020-02-15", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 11344, "description": "2.Accélérer le processus d’immatriculation des motos et la remise en place des équipements médico techniques et moyens roulants afin d’améliorer l’offre de services dans les 2 zones de responsabilité", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 193, "reference_number": "None", "date_of_completion": "None"}', '{}', 12132, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (179, '2020-02-07 11:38:57.122153+00', '2020-02-07 11:38:57.122153+00', '94', 'create', '{"id": 94, "author": 12132, "office": 391, "status": "open", "history": [], "partner": 187, "section": 3, "category": "None", "comments": [], "due_date": "2020-03-14", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 12528, "description": "3.Planifier et accentuer des supervisions conjointes mensuelles des mobilisateurs communautaires ainsi que des ASC des 2 ZR avec la DSP et les 2 DS en vue de renforcer leurs capacités d’intervention (Mobilisateur de Bénoye, nouveaux ASC de Krim-Krim et anciens ASC encore fébriles).", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 193, "reference_number": "CHD/2020/94/APD", "date_of_completion": "None"}', '{}', 12132, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (180, '2020-02-07 11:40:02.832254+00', '2020-02-07 11:40:02.832254+00', '95', 'create', '{"id": 95, "author": 12132, "office": 391, "status": "open", "history": [], "partner": 187, "section": 3, "category": "None", "comments": [], "due_date": "2020-03-14", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 12528, "description": "4.Veiller à l’assurance qualité des données communautaires en participant aux séances mensuelles de validation des données communautaires dans les 2 ZR afin de récupérer ces données et celles des centres de santé et les transmettre au niveau central pour analyse complémentaire et orientation.", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 193, "reference_number": "CHD/2020/95/APD", "date_of_completion": "None"}', '{}', 12132, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (181, '2020-02-07 11:41:32.966866+00', '2020-02-07 11:41:32.966866+00', '96', 'create', '{"id": 96, "author": 12132, "office": 391, "status": "open", "history": [], "partner": 187, "section": 3, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 12528, "description": "5.\tAppuyer la mise en place des plateformes communautaires multisectorielles dans les communautés nouvellement couvertes y compris leur formation sur leur rôle, fonctionnement et l’analyse mensuelles des goulots d’étranglement à l’utilisation des services et prendre des actions correctrices locales.", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 193, "reference_number": "CHD/2020/96/APD", "date_of_completion": "None"}', '{}', 12132, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (317, '2020-02-25 13:27:47.342071+00', '2020-02-25 13:27:47.342071+00', '11', 'create', '{"id": 11, "end": "None", "start": "None", "status": "draft", "partner": 403, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "SSFA", "partner_manager": "None", "agreement_number": "CHD/SSFA201911", "country_programme": "None", "attached_agreement": "", "authorized_officers": [15], "reference_number_year": 2019, "signed_by_unicef_date": "None", "signed_by_partner_date": "None", "special_conditions_pca": false}', '{}', 4606, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (182, '2020-02-07 11:42:18.234813+00', '2020-02-07 11:42:18.234813+00', '97', 'create', '{"id": 97, "author": 12132, "office": 391, "status": "open", "history": [], "partner": 187, "section": 3, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 21654, "description": "6.\tAppuyer la DSP/LOC et les 2 districts dans la préparation et l’organisation périodique des journée foraines communautaires afin d’offrir de services intégrés dans les communautés à problèmes", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 193, "reference_number": "CHD/2020/97/APD", "date_of_completion": "None"}', '{}', 12132, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (183, '2020-02-09 18:53:43.893153+00', '2020-02-09 18:53:43.893153+00', '81', 'update', '{"id": 81, "author": 9984, "office": 387, "status": "open", "history": [144], "partner": 238, "section": 7, "category": "None", "comments": [], "due_date": "2020-01-31", "location": "None", "cp_output": 55, "engagement": "None", "key_events": [], "assigned_by": 9984, "assigned_to": 11672, "description": "Relancer la mise en place d’une UNT a Pala", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 188, "reference_number": "CHD/2019/81/APD", "date_of_completion": "None"}', '{}', 11672, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (184, '2020-02-09 18:53:55.773147+00', '2020-02-09 18:53:55.773147+00', '81', 'update', '{"id": 81, "author": 9984, "office": 387, "status": "open", "history": [183, 144], "partner": 238, "section": 7, "category": "None", "comments": [32], "due_date": "2020-01-31", "location": "None", "cp_output": 55, "engagement": "None", "key_events": [], "assigned_by": 9984, "assigned_to": 11672, "description": "Relancer la mise en place d’une UNT a Pala", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 188, "reference_number": "CHD/2019/81/APD", "date_of_completion": "None"}', '{}', 11672, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (185, '2020-02-12 13:49:44.007969+00', '2020-02-12 13:49:44.007969+00', '169', 'update', '{"id": 169, "city": "NDJAMENA", "name": "RESEAU NATIONAL TCHADIEN DES ASSOCIATIONS DES PERSONNES VIVANT AVEC LE VIH RNTAP", "email": "GABLADIBA@YAHOO.FR", "hidden": false, "rating": "Significant", "address": "AVENUE KONDOL", "blocked": false, "country": "081", "cso_type": "National", "net_ct_cy": "0.00", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "38956.25", "shared_with": "None", "total_ct_cp": "277383.20", "total_ct_cy": "0.00", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "66276004", "total_ct_ytd": "5723.65", "staff_members": [], "vendor_number": "2500221790", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [114, 233], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-09-30", "basis_for_risk_rating": "", "core_values_assessments": [409], "core_values_assessment_date": "2017-12-14", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (186, '2020-02-12 13:53:25.540617+00', '2020-02-12 13:53:25.540617+00', '169', 'update', '{"id": 169, "city": "NDJAMENA", "name": "RESEAU NATIONAL TCHADIEN DES ASSOCIATIONS DES PERSONNES VIVANT AVEC LE VIH RNTAP", "email": "GABLADIBA@YAHOO.FR", "hidden": false, "rating": "Significant", "address": "AVENUE KONDOL", "blocked": false, "country": "081", "cso_type": "National", "net_ct_cy": "0.00", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "complete", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "38956.25", "shared_with": "None", "total_ct_cp": "277383.20", "total_ct_cy": "0.00", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "66276004", "total_ct_ytd": "5723.65", "staff_members": [1], "vendor_number": "2500221790", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [114, 233], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-09-30", "basis_for_risk_rating": "", "core_values_assessments": [409], "core_values_assessment_date": "2017-12-14", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 12023, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (215, '2020-02-17 11:45:31.96063+00', '2020-02-17 11:45:31.96063+00', '7', 'update', '{"id": 7, "end": "2021-01-09", "frs": [], "start": "2019-12-10", "title": "Appui à l''amélioration de l''accès équitable aux services sociaux de qualité inclusifs pour les garçons et les filles au T[[schema]] dans les provinces du Hadjer Lamis et di=u Ouaddai", "number": "CHD/PCA20193/PD20197", "status": "draft", "offices": [387], "metadata": {}, "sections": [7, 2, 9], "agreement": 3, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [5, 6, 7, 8, 9], "document_type": "PD", "contingency_pd": false, "flat_locations": [19, 8], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [14044], "partner_focal_points": [3], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (211, '2020-02-17 10:45:49.778781+00', '2020-02-17 10:45:49.778781+00', '339', 'update', '{"id": 339, "city": "NDJAMENA", "name": "CELLULE DE LIAISON ET D INFORMATION DES ASSOCIATIONS FEMININES COORDINATION NATIONALE", "email": "NEHOUDAMADJI@YAHOO.FR", "hidden": false, "rating": "Medium", "address": "NDJAMENA", "blocked": false, "country": "081", "cso_type": "National", "net_ct_cy": "193928.47", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 2}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "91619.30", "shared_with": "None", "total_ct_cp": "816715.23", "total_ct_cy": "193928.47", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "00 235 93 20 75 75", "total_ct_ytd": "0.00", "staff_members": [], "vendor_number": "2500233143", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [24, 149], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2018-07-31", "basis_for_risk_rating": "", "core_values_assessments": [114], "core_values_assessment_date": "2017-09-10", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (190, '2020-02-12 14:51:03.627556+00', '2020-02-12 14:51:03.627556+00', '1', 'update', '{"id": 1, "end": "2021-12-31", "start": "2019-02-27", "status": "draft", "partner": 169, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 1, "agreement_number": "CHD/PCA20191", "country_programme": 73, "attached_agreement": "", "authorized_officers": [1], "reference_number_year": 2019, "signed_by_unicef_date": "2019-02-27", "signed_by_partner_date": "2019-02-22", "special_conditions_pca": false}', '{"agreement_number": {"after": "CHD/PCA20191", "before": "CHD/PCA20201"}, "reference_number_year": {"after": 2019, "before": 2020}}', 4606, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (216, '2020-02-17 12:02:35.451355+00', '2020-02-17 12:02:35.451355+00', '7', 'update', '{"id": 7, "end": "2021-01-09", "frs": [], "start": "2019-12-10", "title": "Appui à l''amélioration de l''accès équitable aux services sociaux de qualité inclusifs pour les garçons et les filles au T[[schema]] dans les provinces du Hadjer Lamis et di=u Ouaddai", "number": "CHD/PCA20193/PD20197", "status": "draft", "offices": [387], "metadata": {}, "sections": [7, 2, 9], "agreement": 3, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [5, 6, 7, 8, 9], "document_type": "PD", "contingency_pd": false, "flat_locations": [19, 8], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [14044], "partner_focal_points": [3], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (219, '2020-02-17 12:29:59.746324+00', '2020-02-17 12:29:59.746324+00', '7', 'update', '{"id": 7, "end": "2021-01-09", "frs": [], "start": "2019-12-10", "title": "Appui à l''amélioration de l''accès équitable aux services sociaux de qualité inclusifs pour les garçons et les filles au T[[schema]] dans les provinces du Hadjer Lamis et di=u Ouaddai", "number": "CHD/PCA20193/PD20197", "status": "draft", "offices": [387], "metadata": {}, "sections": [7, 2, 9, 8], "agreement": 3, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [5, 6, 7, 8, 9], "document_type": "PD", "contingency_pd": false, "flat_locations": [19, 8], "planned_visits": [1], "review_date_prc": "2019-12-05", "submission_date": "2019-10-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-11-05", "unicef_focal_points": [14044], "partner_focal_points": [3], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-09", "reporting_requirements": [], "signed_by_partner_date": "2019-12-10", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 3}', '{"review_date_prc": {"after": "2019-12-05", "before": "None"}, "submission_date": {"after": "2019-10-26", "before": "None"}, "unicef_signatory": {"after": 8462, "before": "None"}, "submission_date_prc": {"after": "2019-11-05", "before": "None"}, "signed_by_unicef_date": {"after": "2019-12-09", "before": "None"}, "signed_by_partner_date": {"after": "2019-12-10", "before": "None"}, "partner_authorized_officer_signatory": {"after": 3, "before": "None"}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (221, '2020-02-17 13:46:22.777325+00', '2020-02-17 13:46:22.777325+00', '372', 'update', '{"id": 372, "city": "NDJAMENA", "name": "COMITE POUR LE DEVELOPPEMENT DU VOLONTARIAT AU TCHAD", "email": "KHADIDJAA038@GMAIL.COM", "hidden": false, "rating": "High", "address": "QUARTIER BEGUINAGE RUE JOSEPH BRAHIM SEID", "blocked": false, "country": "081", "cso_type": "National", "net_ct_cy": "46687.04", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "28814.46", "shared_with": "None", "total_ct_cp": "192396.85", "total_ct_cy": "48495.16", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "95686603", "total_ct_ytd": "0.00", "staff_members": [], "vendor_number": "2500233727", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [28, 152], "manually_blocked": false, "type_of_assessment": "High Risk Assumed", "last_assessment_date": "2015-09-30", "basis_for_risk_rating": "", "core_values_assessments": [136], "core_values_assessment_date": "2015-09-30", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (191, '2020-02-12 14:51:33.69856+00', '2020-02-12 14:51:33.69856+00', '1', 'update', '{"id": 1, "end": "2021-12-31", "start": "2019-02-27", "status": "draft", "partner": 169, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 1, "agreement_number": "CHD/PCA20191", "country_programme": 73, "attached_agreement": "", "authorized_officers": [1], "reference_number_year": 2019, "signed_by_unicef_date": "2019-02-27", "signed_by_partner_date": "2019-02-22", "special_conditions_pca": false}', '{}', 4606, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (212, '2020-02-17 10:49:33.742561+00', '2020-02-17 10:49:33.742561+00', '3', 'create', '{"id": 3, "end": "2021-12-31", "start": "2019-05-31", "status": "draft", "partner": 339, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 3, "agreement_number": "CHD/PCA20193", "country_programme": 73, "attached_agreement": "", "authorized_officers": [3], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-31", "signed_by_partner_date": "2019-05-31", "special_conditions_pca": false}', '{}', 4606, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (217, '2020-02-17 12:04:30.066601+00', '2020-02-17 12:04:30.066601+00', '7', 'update', '{"id": 7, "end": "2021-01-09", "frs": [], "start": "2019-12-10", "title": "Appui à l''amélioration de l''accès équitable aux services sociaux de qualité inclusifs pour les garçons et les filles au T[[schema]] dans les provinces du Hadjer Lamis et di=u Ouaddai", "number": "CHD/PCA20193/PD20197", "status": "draft", "offices": [387], "metadata": {}, "sections": [7, 2, 9, 8], "agreement": 3, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [5, 6, 7, 8, 9], "document_type": "PD", "contingency_pd": false, "flat_locations": [19, 8], "planned_visits": [1], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [14044], "partner_focal_points": [3], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{"sections": {"after": [7, 2, 9, 8], "before": [7, 2, 9]}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (194, '2020-02-12 15:01:50.632513+00', '2020-02-12 15:01:50.632513+00', '5', 'create', '{"id": 5, "end": "None", "frs": [], "start": "None", "title": "Appui a la mobilisation communautaire et plaidoyer", "number": "CHD/PCA20191/PD20195", "status": "draft", "offices": [387], "metadata": {}, "sections": [7], "agreement": 1, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [21, 22, 4, 23, 6, 7, 12, 8, 14, 24], "planned_visits": [], "review_date_prc": "2019-01-14", "submission_date": "2018-12-23", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-01-07", "unicef_focal_points": [12023], "partner_focal_points": [1], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-02-27", "reporting_requirements": [], "signed_by_partner_date": "2019-02-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 1}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (195, '2020-02-12 15:20:29.282462+00', '2020-02-12 15:20:29.282462+00', '5', 'update', '{"id": 5, "end": "None", "frs": [1048], "start": "None", "title": "Appui a la mobilisation communautaire et plaidoyer", "number": "CHD/PCA20191/PD20195", "status": "draft", "offices": [387], "metadata": {}, "sections": [7], "agreement": 1, "amendments": [], "attachments": [12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [21, 22, 4, 23, 6, 7, 12, 8, 14, 24], "planned_visits": [], "review_date_prc": "2019-01-14", "submission_date": "2018-12-23", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-01-07", "unicef_focal_points": [12023], "partner_focal_points": [1], "signed_pd_attachment": [455], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-02-27", "reporting_requirements": [], "signed_by_partner_date": "2019-02-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 1}', '{"frs": {"after": [1048], "before": []}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (204, '2020-02-12 15:50:07.887119+00', '2020-02-12 15:50:07.887119+00', '2', 'create', '{"id": 2, "end": "2021-12-31", "start": "2019-07-16", "status": "draft", "partner": 182, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 2, "agreement_number": "CHD/PCA20192", "country_programme": 73, "attached_agreement": "", "authorized_officers": [2], "reference_number_year": 2019, "signed_by_unicef_date": "2019-07-16", "signed_by_partner_date": "2019-07-08", "special_conditions_pca": false}', '{}', 4606, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (222, '2020-02-17 14:08:25.313977+00', '2020-02-17 14:08:25.313977+00', '4', 'create', '{"id": 4, "end": "2021-12-31", "start": "2019-05-31", "status": "draft", "partner": 372, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 4, "agreement_number": "CHD/PCA20194", "country_programme": 73, "attached_agreement": "", "authorized_officers": [4], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-31", "signed_by_partner_date": "2019-05-31", "special_conditions_pca": false}', '{}', 4606, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (196, '2020-02-12 15:25:58.314748+00', '2020-02-12 15:25:58.314748+00', '5', 'update', '{"id": 5, "end": "None", "frs": [1048], "start": "None", "title": "Appui a la mobilisation communautaire et plaidoyer", "number": "CHD/PCA20191/PD20195", "status": "draft", "offices": [387], "metadata": {}, "sections": [7], "agreement": 1, "amendments": [], "attachments": [12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1], "in_amendment": false, "result_links": [1, 2], "document_type": "PD", "contingency_pd": false, "flat_locations": [21, 22, 4, 23, 6, 7, 12, 8, 14, 24], "planned_visits": [], "review_date_prc": "2019-01-14", "submission_date": "2018-12-23", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-01-07", "unicef_focal_points": [12023], "partner_focal_points": [1], "signed_pd_attachment": [455], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-02-27", "reporting_requirements": [], "signed_by_partner_date": "2019-02-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 1}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (197, '2020-02-12 15:26:59.655687+00', '2020-02-12 15:26:59.655687+00', '5', 'update', '{"id": 5, "end": "None", "frs": [1048], "start": "None", "title": "Appui a la mobilisation communautaire et plaidoyer", "number": "CHD/PCA20191/PD20195", "status": "draft", "offices": [387], "metadata": {}, "sections": [7], "agreement": 1, "amendments": [], "attachments": [12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1], "in_amendment": false, "result_links": [1, 2], "document_type": "PD", "contingency_pd": false, "flat_locations": [21, 22, 4, 23, 6, 7, 12, 8, 14, 24], "planned_visits": [], "review_date_prc": "2019-01-14", "submission_date": "2018-12-23", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-01-07", "unicef_focal_points": [12023], "partner_focal_points": [1], "signed_pd_attachment": [455], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-02-27", "reporting_requirements": [], "signed_by_partner_date": "2019-02-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 1}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (198, '2020-02-12 15:28:33.901378+00', '2020-02-12 15:28:33.901378+00', '5', 'update', '{"id": 5, "end": "None", "frs": [1048], "start": "None", "title": "Appui a la mobilisation communautaire et plaidoyer", "number": "CHD/PCA20191/PD20195", "status": "draft", "offices": [387], "metadata": {}, "sections": [7], "agreement": 1, "amendments": [], "attachments": [12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1], "in_amendment": false, "result_links": [1, 2], "document_type": "PD", "contingency_pd": false, "flat_locations": [21, 22, 4, 23, 6, 7, 12, 8, 14, 24], "planned_visits": [], "review_date_prc": "2019-01-14", "submission_date": "2018-12-23", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-01-07", "unicef_focal_points": [12023], "partner_focal_points": [1], "signed_pd_attachment": [455], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-02-27", "reporting_requirements": [], "signed_by_partner_date": "2019-02-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 1}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (199, '2020-02-12 15:29:50.491801+00', '2020-02-12 15:29:50.491801+00', '5', 'update', '{"id": 5, "end": "None", "frs": [1048], "start": "None", "title": "Appui a la mobilisation communautaire et plaidoyer", "number": "CHD/PCA20191/PD20195", "status": "draft", "offices": [387], "metadata": {}, "sections": [7], "agreement": 1, "amendments": [], "attachments": [12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1], "in_amendment": false, "result_links": [1, 2], "document_type": "PD", "contingency_pd": false, "flat_locations": [21, 22, 4, 23, 6, 7, 12, 8, 14, 24], "planned_visits": [], "review_date_prc": "2019-01-14", "submission_date": "2018-12-23", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-01-07", "unicef_focal_points": [12023], "partner_focal_points": [1], "signed_pd_attachment": [455], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-02-27", "reporting_requirements": [], "signed_by_partner_date": "2019-02-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 1}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (205, '2020-02-12 15:50:26.738418+00', '2020-02-12 15:50:26.738418+00', '2', 'update', '{"id": 2, "end": "2021-12-31", "start": "2019-07-16", "status": "draft", "partner": 182, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 2, "agreement_number": "CHD/PCA20192", "country_programme": 73, "attached_agreement": "", "authorized_officers": [2], "reference_number_year": 2019, "signed_by_unicef_date": "2019-07-16", "signed_by_partner_date": "2019-07-08", "special_conditions_pca": false}', '{}', 4606, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (213, '2020-02-17 10:50:05.263492+00', '2020-02-17 10:50:05.263492+00', '3', 'update', '{"id": 3, "end": "2021-12-31", "start": "2019-05-31", "status": "draft", "partner": 339, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 3, "agreement_number": "CHD/PCA20193", "country_programme": 73, "attached_agreement": "", "authorized_officers": [3], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-31", "signed_by_partner_date": "2019-05-31", "special_conditions_pca": false}', '{}', 4606, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (200, '2020-02-12 15:38:04.025377+00', '2020-02-12 15:38:04.025377+00', '5', 'update', '{"id": 5, "end": "2019-11-24", "frs": [1048], "start": "2019-02-27", "title": "Appui a la mobilisation communautaire et plaidoyer", "number": "CHD/PCA20191/PD20195", "status": "draft", "offices": [387], "metadata": {}, "sections": [7], "agreement": 1, "amendments": [], "attachments": [12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1], "in_amendment": false, "result_links": [1, 2], "document_type": "PD", "contingency_pd": false, "flat_locations": [21, 22, 4, 23, 6, 7, 12, 8, 14, 24], "planned_visits": [], "review_date_prc": "2019-01-14", "submission_date": "2018-12-23", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-01-07", "unicef_focal_points": [12023], "partner_focal_points": [1], "signed_pd_attachment": [455], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-02-27", "reporting_requirements": [], "signed_by_partner_date": "2019-02-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 1}', '{"end": {"after": "2019-11-24", "before": "None"}, "start": {"after": "2019-02-27", "before": "None"}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (201, '2020-02-12 15:44:26.938689+00', '2020-02-12 15:44:26.938689+00', '5', 'update', '{"id": 5, "end": "2019-11-24", "frs": [1048], "start": "2019-02-27", "title": "Appui a la mobilisation communautaire et plaidoyer", "number": "CHD/PCA20191/PD20195", "status": "closed", "offices": [387], "metadata": {}, "sections": [7], "agreement": 1, "amendments": [], "attachments": [12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1], "in_amendment": false, "result_links": [1, 2], "document_type": "PD", "contingency_pd": false, "flat_locations": [21, 22, 4, 23, 6, 7, 12, 8, 14, 24], "planned_visits": [], "review_date_prc": "2019-01-14", "submission_date": "2018-12-23", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-01-07", "unicef_focal_points": [12023], "partner_focal_points": [1], "signed_pd_attachment": [455], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-02-27", "reporting_requirements": [], "signed_by_partner_date": "2019-02-22", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 1}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (202, '2020-02-12 15:47:14.866565+00', '2020-02-12 15:47:14.866565+00', '182', 'update', '{"id": 182, "city": "ABECHE", "name": "ASSOCIATION DES FEMMES POUR LE DEVELOPPEMENT INTEGRE AFDI", "email": "AFDITCHAD@YAHOO.FR", "hidden": false, "rating": "Significant", "address": "BOULEVARD PRINCIPAL", "blocked": false, "country": "081", "cso_type": "National", "net_ct_cy": "67258.42", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "63790.52", "shared_with": "None", "total_ct_cp": "138318.85", "total_ct_cy": "67258.42", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "66276959", "total_ct_ytd": "0.00", "staff_members": [], "vendor_number": "2500223261", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [138], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2015-07-20", "basis_for_risk_rating": "", "core_values_assessments": [47, 469], "core_values_assessment_date": "2019-07-08", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (203, '2020-02-12 15:47:49.45689+00', '2020-02-12 15:47:49.45689+00', '182', 'update', '{"id": 182, "city": "ABECHE", "name": "ASSOCIATION DES FEMMES POUR LE DEVELOPPEMENT INTEGRE AFDI", "email": "AFDITCHAD@YAHOO.FR", "hidden": false, "rating": "Significant", "address": "BOULEVARD PRINCIPAL", "blocked": false, "country": "081", "cso_type": "National", "net_ct_cy": "67258.42", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "63790.52", "shared_with": "None", "total_ct_cp": "138318.85", "total_ct_cy": "67258.42", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "66276959", "total_ct_ytd": "0.00", "staff_members": [2], "vendor_number": "2500223261", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [138], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2015-07-20", "basis_for_risk_rating": "", "core_values_assessments": [47, 469], "core_values_assessment_date": "2019-07-08", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (206, '2020-02-12 15:53:45.993698+00', '2020-02-12 15:53:45.993698+00', '6', 'create', '{"id": 6, "end": "None", "frs": [], "start": "None", "title": "Appui a la prevention et au traitement de la malnutrition aigue severe a travers la mise en oeuvre des activites WASH-In-Nut dans les provinces Sila, Ouaddai et Wadi Fira", "number": "CHD/PCA20192/PD20196", "status": "draft", "offices": [387], "metadata": {}, "sections": [], "agreement": 2, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [9032], "partner_focal_points": [2], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (207, '2020-02-12 16:07:01.140489+00', '2020-02-12 16:07:01.140489+00', '6', 'update', '{"id": 6, "end": "None", "frs": [], "start": "None", "title": "Appui a la prevention et au traitement de la malnutrition aigue severe a travers la mise en oeuvre des activites WASH-In-Nut dans les provinces Sila, Ouaddai et Wadi Fira", "number": "CHD/PCA20192/PD20196", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 2, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [3, 4], "document_type": "PD", "contingency_pd": false, "flat_locations": [8, 10, 24], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [9032], "partner_focal_points": [2], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{"sections": {"after": [8], "before": []}, "flat_locations": {"after": [8, 10, 24], "before": []}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (208, '2020-02-12 16:23:37.89501+00', '2020-02-12 16:23:37.89501+00', '6', 'update', '{"id": 6, "end": "2020-02-09", "frs": [], "start": "2019-07-16", "title": "Appui a la prevention et au traitement de la malnutrition aigue severe a travers la mise en oeuvre des activites WASH-In-Nut dans les provinces Sila, Ouaddai et Wadi Fira", "number": "CHD/PCA20192/PD20196", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 2, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [3, 4], "document_type": "PD", "contingency_pd": false, "flat_locations": [8, 10, 24], "planned_visits": [], "review_date_prc": "2019-05-27", "submission_date": "2019-05-15", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-20", "unicef_focal_points": [9032], "partner_focal_points": [2], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-07-16", "reporting_requirements": [], "signed_by_partner_date": "2019-07-08", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 2}', '{"end": {"after": "2020-02-09", "before": "None"}, "start": {"after": "2019-07-16", "before": "None"}, "review_date_prc": {"after": "2019-05-27", "before": "None"}, "submission_date": {"after": "2019-05-15", "before": "None"}, "unicef_signatory": {"after": 8462, "before": "None"}, "submission_date_prc": {"after": "2019-05-20", "before": "None"}, "signed_by_unicef_date": {"after": "2019-07-16", "before": "None"}, "signed_by_partner_date": {"after": "2019-07-08", "before": "None"}, "partner_authorized_officer_signatory": {"after": 2, "before": "None"}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (209, '2020-02-12 16:27:33.590414+00', '2020-02-12 16:27:33.590414+00', '6', 'update', '{"id": 6, "end": "2020-02-09", "frs": [], "start": "2019-07-16", "title": "Appui a la prevention et au traitement de la malnutrition aigue severe a travers la mise en oeuvre des activites WASH-In-Nut dans les provinces Sila, Ouaddai et Wadi Fira", "number": "CHD/PCA20192/PD20196", "status": "signed", "offices": [387], "metadata": {}, "sections": [8], "agreement": 2, "amendments": [], "attachments": [21, 20, 19, 18, 17, 16, 15, 14, 13], "in_amendment": false, "result_links": [3, 4], "document_type": "PD", "contingency_pd": false, "flat_locations": [8, 10, 24], "planned_visits": [], "review_date_prc": "2019-05-27", "submission_date": "2019-05-15", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-20", "unicef_focal_points": [9032], "partner_focal_points": [2], "signed_pd_attachment": [481], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-07-16", "reporting_requirements": [], "signed_by_partner_date": "2019-07-08", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 2}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (223, '2020-02-17 14:12:05.443727+00', '2020-02-17 14:12:05.443727+00', '8', 'create', '{"id": 8, "end": "2020-09-30", "frs": [], "start": "2019-12-10", "title": "Appui au renforcement des capacités des membres des associations des parents d''élèves (APE/AME) en compétences de vie courante et à Bokoro, Mao et Moussoro", "number": "CHD/PCA20194/PD20198", "status": "draft", "offices": [387], "metadata": {}, "sections": [9], "agreement": 4, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 19, 18], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [14044], "partner_focal_points": [4], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (210, '2020-02-12 16:29:04.788915+00', '2020-02-12 16:29:04.788915+00', '6', 'update', '{"id": 6, "end": "2020-02-09", "frs": [1046], "start": "2019-07-16", "title": "Appui a la prevention et au traitement de la malnutrition aigue severe a travers la mise en oeuvre des activites WASH-In-Nut dans les provinces Sila, Ouaddai et Wadi Fira", "number": "CHD/PCA20192/PD20196", "status": "signed", "offices": [387], "metadata": {}, "sections": [8], "agreement": 2, "amendments": [], "attachments": [21, 20, 19, 18, 17, 16, 15, 14, 13], "in_amendment": false, "result_links": [3, 4], "document_type": "PD", "contingency_pd": false, "flat_locations": [8, 10, 24], "planned_visits": [], "review_date_prc": "2019-05-27", "submission_date": "2019-05-15", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-05-20", "unicef_focal_points": [9032], "partner_focal_points": [2], "signed_pd_attachment": [481], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-07-16", "reporting_requirements": [], "signed_by_partner_date": "2019-07-08", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 2}', '{"frs": {"after": [1046], "before": []}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (214, '2020-02-17 11:04:23.237484+00', '2020-02-17 11:04:23.237484+00', '7', 'create', '{"id": 7, "end": "2021-01-09", "frs": [], "start": "2019-12-10", "title": "Appui à l''amélioration de l''accès équitable aux services sociaux de qualité inclusifs pour les garçons et les filles au T[[schema]] dans les provinces du Hadjer Lamis et di=u Ouaddai", "number": "CHD/PCA20193/PD20197", "status": "draft", "offices": [387], "metadata": {}, "sections": [7, 2, 9], "agreement": 3, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [19, 8], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [14044], "partner_focal_points": [3], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (218, '2020-02-17 12:20:14.15457+00', '2020-02-17 12:20:14.15457+00', '7', 'update', '{"id": 7, "end": "2021-01-09", "frs": [], "start": "2019-12-10", "title": "Appui à l''amélioration de l''accès équitable aux services sociaux de qualité inclusifs pour les garçons et les filles au T[[schema]] dans les provinces du Hadjer Lamis et di=u Ouaddai", "number": "CHD/PCA20193/PD20197", "status": "draft", "offices": [387], "metadata": {}, "sections": [7, 2, 9, 8], "agreement": 3, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [5, 6, 7, 8, 9], "document_type": "PD", "contingency_pd": false, "flat_locations": [19, 8], "planned_visits": [1], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [14044], "partner_focal_points": [3], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (220, '2020-02-17 12:39:19.576957+00', '2020-02-17 12:39:19.576957+00', '7', 'update', '{"id": 7, "end": "2021-01-09", "frs": [1075], "start": "2019-12-10", "title": "Appui à l''amélioration de l''accès équitable aux services sociaux de qualité inclusifs pour les garçons et les filles au T[[schema]] dans les provinces du Hadjer Lamis et di=u Ouaddai", "number": "CHD/PCA20193/PD20197", "status": "signed", "offices": [387], "metadata": {}, "sections": [7, 2, 9, 8], "agreement": 3, "amendments": [], "attachments": [28, 27, 26, 25, 24, 23, 22], "in_amendment": false, "result_links": [5, 6, 7, 8, 9], "document_type": "PD", "contingency_pd": false, "flat_locations": [19, 8], "planned_visits": [1], "review_date_prc": "2019-12-05", "submission_date": "2019-10-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-11-05", "unicef_focal_points": [14044], "partner_focal_points": [3], "signed_pd_attachment": [492], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-09", "reporting_requirements": [], "signed_by_partner_date": "2019-12-10", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 3}', '{"frs": {"after": [1075], "before": []}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (232, '2020-02-17 14:58:56.277676+00', '2020-02-17 14:58:56.277676+00', '5', 'create', '{"id": 5, "end": "None", "start": "None", "status": "draft", "partner": 220, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "SSFA", "partner_manager": "None", "agreement_number": "CHD/SSFA20195", "country_programme": "None", "attached_agreement": "", "authorized_officers": [5], "reference_number_year": 2019, "signed_by_unicef_date": "None", "signed_by_partner_date": "None", "special_conditions_pca": false}', '{}', 4606, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (240, '2020-02-17 15:39:47.104622+00', '2020-02-17 15:39:47.104622+00', '6', 'create', '{"id": 6, "end": "2021-12-31", "start": "2018-12-28", "status": "draft", "partner": 28, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 6, "agreement_number": "CHD/PCA20186", "country_programme": 73, "attached_agreement": "", "authorized_officers": [6], "reference_number_year": 2018, "signed_by_unicef_date": "2018-12-20", "signed_by_partner_date": "2018-12-28", "special_conditions_pca": false}', '{}', 4606, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (224, '2020-02-17 14:25:51.668933+00', '2020-02-17 14:25:51.668933+00', '8', 'update', '{"id": 8, "end": "2020-09-30", "frs": [], "start": "2019-12-10", "title": "Appui au renforcement des capacités des membres des associations des parents d''élèves (APE/AME) en compétences de vie courante et à Bokoro, Mao et Moussoro", "number": "CHD/PCA20194/PD20198", "status": "draft", "offices": [387], "metadata": {}, "sections": [9], "agreement": 4, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [10, 11], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 19, 18], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [14044], "partner_focal_points": [4], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (225, '2020-02-17 14:32:23.919966+00', '2020-02-17 14:32:23.919966+00', '8', 'update', '{"id": 8, "end": "2020-09-30", "frs": [1072], "start": "2019-12-10", "title": "Appui au renforcement des capacités des membres des associations des parents d''élèves (APE/AME) en compétences de vie courante et à Bokoro, Mao et Moussoro", "number": "CHD/PCA20194/PD20198", "status": "draft", "offices": [387], "metadata": {}, "sections": [9], "agreement": 4, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [10, 11], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 19, 18], "planned_visits": [2], "review_date_prc": "2019-12-06", "submission_date": "2019-10-14", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-12-04", "unicef_focal_points": [14044], "partner_focal_points": [4], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-09", "reporting_requirements": [], "signed_by_partner_date": "2019-12-10", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 4}', '{"frs": {"after": [1072], "before": []}, "review_date_prc": {"after": "2019-12-06", "before": "None"}, "submission_date": {"after": "2019-10-14", "before": "None"}, "unicef_signatory": {"after": 8462, "before": "None"}, "submission_date_prc": {"after": "2019-12-04", "before": "None"}, "signed_by_unicef_date": {"after": "2019-12-09", "before": "None"}, "signed_by_partner_date": {"after": "2019-12-10", "before": "None"}, "partner_authorized_officer_signatory": {"after": 4, "before": "None"}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (226, '2020-02-17 14:34:46.904029+00', '2020-02-17 14:34:46.904029+00', '8', 'update', '{"id": 8, "end": "2020-09-30", "frs": [1072], "start": "2019-12-10", "title": "Appui au renforcement des capacités des membres des associations des parents d''élèves (APE/AME) en compétences de vie courante et à Bokoro, Mao et Moussoro", "number": "CHD/PCA20194/PD20198", "status": "draft", "offices": [387], "metadata": {}, "sections": [9], "agreement": 4, "amendments": [], "attachments": [34, 33, 32, 31, 30, 29], "in_amendment": false, "result_links": [10, 11], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 19, 18], "planned_visits": [2], "review_date_prc": "2019-12-06", "submission_date": "2019-10-14", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-12-04", "unicef_focal_points": [14044], "partner_focal_points": [4], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-09", "reporting_requirements": [], "signed_by_partner_date": "2019-12-10", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 4}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (227, '2020-02-17 14:37:58.064123+00', '2020-02-17 14:37:58.064123+00', '8', 'update', '{"id": 8, "end": "2020-09-30", "frs": [1072], "start": "2019-12-10", "title": "Appui au renforcement des capacités des membres des associations des parents d''élèves (APE/AME) en compétences de vie courante et à Bokoro, Mao et Moussoro", "number": "CHD/PCA20194/PD20198", "status": "draft", "offices": [387], "metadata": {}, "sections": [9], "agreement": 4, "amendments": [], "attachments": [36, 35, 34, 33, 32, 31, 30, 29], "in_amendment": false, "result_links": [10, 11], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 19, 18], "planned_visits": [2], "review_date_prc": "2019-12-06", "submission_date": "2019-10-14", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-12-04", "unicef_focal_points": [14044], "partner_focal_points": [4], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-09", "reporting_requirements": [], "signed_by_partner_date": "2019-12-10", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 4}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (233, '2020-02-17 15:05:02.218228+00', '2020-02-17 15:05:02.218228+00', '9', 'create', '{"id": 9, "end": "2020-05-30", "frs": [], "start": "2019-12-15", "title": "Promotion de l’engagement communautaire des jeunes Scouts à N’Djamena, Doba et Moundou", "number": "CHD/SSFA20195", "status": "draft", "offices": [387], "metadata": {}, "sections": [2], "agreement": 5, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "SSFA", "contingency_pd": false, "flat_locations": [22, 4, 12], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [12058], "partner_focal_points": [5], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": "None", "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (228, '2020-02-17 14:38:16.362522+00', '2020-02-17 14:38:16.362522+00', '8', 'update', '{"id": 8, "end": "2020-09-30", "frs": [1072], "start": "2019-12-10", "title": "Appui au renforcement des capacités des membres des associations des parents d''élèves (APE/AME) en compétences de vie courante et à Bokoro, Mao et Moussoro", "number": "CHD/PCA20194/PD20198", "status": "draft", "offices": [387], "metadata": {}, "sections": [9], "agreement": 4, "amendments": [], "attachments": [36, 35, 34, 33, 32, 31, 30, 29], "in_amendment": false, "result_links": [10, 11], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 19, 18], "planned_visits": [2], "review_date_prc": "2019-12-06", "submission_date": "2019-10-14", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-12-04", "unicef_focal_points": [14044], "partner_focal_points": [4], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-09", "reporting_requirements": [], "signed_by_partner_date": "2019-12-10", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 4}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (229, '2020-02-17 14:38:32.876567+00', '2020-02-17 14:38:32.876567+00', '8', 'update', '{"id": 8, "end": "2020-09-30", "frs": [1072], "start": "2019-12-10", "title": "Appui au renforcement des capacités des membres des associations des parents d''élèves (APE/AME) en compétences de vie courante et à Bokoro, Mao et Moussoro", "number": "CHD/PCA20194/PD20198", "status": "draft", "offices": [387], "metadata": {}, "sections": [9], "agreement": 4, "amendments": [], "attachments": [36, 35, 34, 33, 32, 31, 30, 29], "in_amendment": false, "result_links": [10, 11], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 19, 18], "planned_visits": [2], "review_date_prc": "2019-12-06", "submission_date": "2019-10-14", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-12-04", "unicef_focal_points": [14044], "partner_focal_points": [4], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-09", "reporting_requirements": [], "signed_by_partner_date": "2019-12-10", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 4}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (245, '2020-02-18 13:40:05.131709+00', '2020-02-18 13:40:05.131709+00', '448', 'update', '{"id": 448, "city": "NDJAMENA", "name": "UNION DES RADIOS PRIVEES DU TCHAD", "email": "MEKONDOSONY2@GMAIL.COM", "hidden": false, "rating": "High", "address": "NDJAMENA", "blocked": false, "country": "081", "cso_type": "National", "net_ct_cy": "26317.76", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "29524.16", "shared_with": "None", "total_ct_cp": "56676.28", "total_ct_cy": "26317.76", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "+235 66 29 59 08", "total_ct_ytd": "26317.76", "staff_members": [], "vendor_number": "2500240733", "vision_synced": true, "alternate_name": "None", "planned_visits": [], "street_address": "None", "psea_assessment": [], "related_partner": [240], "manually_blocked": false, "type_of_assessment": "High Risk Assumed", "last_assessment_date": "2019-09-11", "basis_for_risk_rating": "", "core_values_assessments": [472], "core_values_assessment_date": "2019-09-10", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (249, '2020-02-18 14:45:39.095013+00', '2020-02-18 14:45:39.095013+00', '11', 'update', '{"id": 11, "end": "2020-03-15", "frs": [1055, 1088], "start": "2019-12-09", "title": "Coordination et suivi des émissions radiophoniques dans les radios communautaires et l’encadrement des Jeunes Reporters Club (JRC)", "number": "CHD/PCA20197/PD201911", "status": "draft", "offices": [387], "metadata": {}, "sections": [2], "agreement": 7, "amendments": [], "attachments": [59, 58, 56, 55, 54, 53, 52], "in_amendment": false, "result_links": [14], "document_type": "PD", "contingency_pd": false, "flat_locations": [17, 59, 21, 22, 23, 5, 7, 12, 8, 14], "planned_visits": [], "review_date_prc": "None", "submission_date": "2019-09-26", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [5056], "partner_focal_points": [7], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-09", "reporting_requirements": [], "signed_by_partner_date": "2019-12-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 7}', '{"frs": {"after": [1055, 1088], "before": []}, "submission_date": {"after": "2019-09-26", "before": "None"}, "unicef_signatory": {"after": 8462, "before": "None"}, "signed_by_unicef_date": {"after": "2019-12-09", "before": "None"}, "signed_by_partner_date": {"after": "2019-12-06", "before": "None"}, "partner_authorized_officer_signatory": {"after": 7, "before": "None"}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (265, '2020-02-20 12:40:36.460523+00', '2020-02-20 12:40:36.460523+00', '8', 'create', '{"id": 8, "end": "2021-12-31", "start": "2019-05-30", "status": "draft", "partner": 130, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 9, "agreement_number": "CHD/PCA20198", "country_programme": 73, "attached_agreement": "", "authorized_officers": [8], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-28", "signed_by_partner_date": "2019-05-30", "special_conditions_pca": false}', '{}', 4606, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (230, '2020-02-17 14:38:42.338323+00', '2020-02-17 14:38:42.338323+00', '8', 'update', '{"id": 8, "end": "2020-09-30", "frs": [1072], "start": "2019-12-10", "title": "Appui au renforcement des capacités des membres des associations des parents d''élèves (APE/AME) en compétences de vie courante et à Bokoro, Mao et Moussoro", "number": "CHD/PCA20194/PD20198", "status": "draft", "offices": [387], "metadata": {}, "sections": [9], "agreement": 4, "amendments": [], "attachments": [36, 35, 34, 33, 32, 31, 30, 29], "in_amendment": false, "result_links": [10, 11], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 19, 18], "planned_visits": [2], "review_date_prc": "2019-12-06", "submission_date": "2019-10-14", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-12-04", "unicef_focal_points": [14044], "partner_focal_points": [4], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-09", "reporting_requirements": [], "signed_by_partner_date": "2019-12-10", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 4}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (231, '2020-02-17 14:57:44.554536+00', '2020-02-17 14:57:44.554536+00', '220', 'update', '{"id": 220, "city": "NDJAMENA", "name": "ASSOCIATION DES SCOUTS DU TCHAD", "email": "SCOUTCHAD@YAHOO.FR", "hidden": false, "rating": "High", "address": "SIS AU 7E ARRONDISSEMENT QUARTIER CHAGOUA", "blocked": false, "country": "081", "cso_type": "International", "net_ct_cy": "24854.51", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "0.00", "shared_with": "None", "total_ct_cp": "57687.22", "total_ct_cy": "24854.51", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "236 666 30 21 37", "total_ct_ytd": "0.00", "staff_members": [], "vendor_number": "2500224593", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [16, 140], "manually_blocked": false, "type_of_assessment": "High Risk Assumed", "last_assessment_date": "2017-10-24", "basis_for_risk_rating": "", "core_values_assessments": [55], "core_values_assessment_date": "2016-05-18", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (246, '2020-02-18 13:45:28.938489+00', '2020-02-18 13:45:28.938489+00', '7', 'create', '{"id": 7, "end": "2021-12-31", "start": "2019-12-09", "status": "draft", "partner": 448, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 7, "agreement_number": "CHD/PCA20197", "country_programme": 73, "attached_agreement": "", "authorized_officers": [7], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-09", "signed_by_partner_date": "2019-12-06", "special_conditions_pca": false}', '{}', 4606, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (250, '2020-02-19 10:12:46.679365+00', '2020-02-19 10:12:46.679365+00', '10', 'update', '{"id": 10, "end": "2019-09-30", "frs": [984, 1092], "start": "2018-12-28", "title": "Renforcer l’engagement communautaire des adolescentes et jeunes filles dans les régions de N’Djamena, du Moyen Chari, de la Tandjilé et du Logone Oriental", "number": "CHD/PCA20186/PD201810", "status": "active", "offices": [387], "metadata": {}, "sections": [2], "agreement": 6, "amendments": [], "attachments": [51, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39], "in_amendment": false, "result_links": [13], "document_type": "PD", "contingency_pd": false, "flat_locations": [4, 7, 12, 14], "planned_visits": [4], "review_date_prc": "2018-10-10", "submission_date": "2018-09-27", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-10-03", "unicef_focal_points": [12058], "partner_focal_points": [6], "signed_pd_attachment": [516], "prc_review_attachment": [], "reference_number_year": 2018, "signed_by_unicef_date": "2018-12-20", "reporting_requirements": [], "signed_by_partner_date": "2018-12-28", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{"status": {"after": "active", "before": "ended"}}', 1657, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (252, '2020-02-19 13:04:23.466251+00', '2020-02-19 13:04:23.466251+00', '10', 'update', '{"id": 10, "end": "2020-03-30", "frs": [984, 1092], "start": "2018-12-28", "title": "Renforcer l’engagement communautaire des adolescentes et jeunes filles dans les régions de N’Djamena, du Moyen Chari, de la Tandjilé et du Logone Oriental", "number": "CHD/PCA20186/PD201810-1", "status": "active", "offices": [387], "metadata": {}, "sections": [2], "agreement": 6, "amendments": [1], "attachments": [51, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39], "in_amendment": true, "result_links": [13], "document_type": "PD", "contingency_pd": false, "flat_locations": [4, 7, 12, 14], "planned_visits": [4], "review_date_prc": "2018-10-10", "submission_date": "2018-09-27", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-10-03", "unicef_focal_points": [12058], "partner_focal_points": [6], "signed_pd_attachment": [516], "prc_review_attachment": [], "reference_number_year": 2018, "signed_by_unicef_date": "2018-12-20", "reporting_requirements": [], "signed_by_partner_date": "2018-12-28", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{"end": {"after": "2020-03-30", "before": "2019-09-30"}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (234, '2020-02-17 15:08:33.220627+00', '2020-02-17 15:08:33.220627+00', '9', 'update', '{"id": 9, "end": "2020-05-30", "frs": [], "start": "2019-12-15", "title": "Promotion de l’engagement communautaire des jeunes Scouts à N’Djamena, Doba et Moundou", "number": "CHD/SSFA20195", "status": "draft", "offices": [387], "metadata": {}, "sections": [2], "agreement": 5, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [12], "document_type": "SSFA", "contingency_pd": false, "flat_locations": [22, 4, 12], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [12058], "partner_focal_points": [5], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": "None", "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (235, '2020-02-17 15:14:27.795595+00', '2020-02-17 15:14:27.795595+00', '9', 'update', '{"id": 9, "end": "2020-05-30", "frs": [], "start": "2019-12-15", "title": "Promotion de l’engagement communautaire des jeunes Scouts à N’Djamena, Doba et Moundou", "number": "CHD/SSFA20195", "status": "draft", "offices": [387], "metadata": {}, "sections": [2], "agreement": 5, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [12], "document_type": "SSFA", "contingency_pd": false, "flat_locations": [22, 4, 12], "planned_visits": [3], "review_date_prc": "None", "submission_date": "2019-10-17", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [12058], "partner_focal_points": [5], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": "None", "signed_by_unicef_date": "2019-12-06", "reporting_requirements": [], "signed_by_partner_date": "2019-12-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 5}', '{"submission_date": {"after": "2019-10-17", "before": "None"}, "unicef_signatory": {"after": 8462, "before": "None"}, "signed_by_unicef_date": {"after": "2019-12-06", "before": "None"}, "signed_by_partner_date": {"after": "2019-12-06", "before": "None"}, "partner_authorized_officer_signatory": {"after": 5, "before": "None"}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (236, '2020-02-17 15:19:44.834565+00', '2020-02-17 15:19:44.834565+00', '9', 'update', '{"id": 9, "end": "2020-05-30", "frs": [], "start": "2019-12-15", "title": "Promotion de l’engagement communautaire des jeunes Scouts à N’Djamena, Doba et Moundou", "number": "CHD/SSFA20195", "status": "signed", "offices": [387], "metadata": {}, "sections": [2], "agreement": 5, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [12], "document_type": "SSFA", "contingency_pd": false, "flat_locations": [22, 4, 12], "planned_visits": [3], "review_date_prc": "None", "submission_date": "2019-10-17", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [12058], "partner_focal_points": [5], "signed_pd_attachment": [512], "prc_review_attachment": [], "reference_number_year": "None", "signed_by_unicef_date": "2019-12-06", "reporting_requirements": [], "signed_by_partner_date": "2019-12-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 5}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (237, '2020-02-17 15:28:17.243626+00', '2020-02-17 15:28:17.243626+00', '9', 'update', '{"id": 9, "end": "2020-05-30", "frs": [1079], "start": "2019-12-15", "title": "Promotion de l’engagement communautaire des jeunes Scouts à N’Djamena, Doba et Moundou", "number": "CHD/SSFA20195", "status": "signed", "offices": [387], "metadata": {}, "sections": [2], "agreement": 5, "amendments": [], "attachments": [37], "in_amendment": false, "result_links": [12], "document_type": "SSFA", "contingency_pd": false, "flat_locations": [22, 4, 12], "planned_visits": [3], "review_date_prc": "None", "submission_date": "2019-10-17", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [12058], "partner_focal_points": [5], "signed_pd_attachment": [512], "prc_review_attachment": [], "reference_number_year": "None", "signed_by_unicef_date": "2019-12-06", "reporting_requirements": [], "signed_by_partner_date": "2019-12-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 5}', '{"frs": {"after": [1079], "before": []}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (238, '2020-02-17 15:29:21.629704+00', '2020-02-17 15:29:21.629704+00', '9', 'update', '{"id": 9, "end": "2020-05-30", "frs": [1079], "start": "2019-12-15", "title": "Promotion de l’engagement communautaire des jeunes Scouts à N’Djamena, Doba et Moundou", "number": "CHD/SSFA20195", "status": "active", "offices": [387], "metadata": {}, "sections": [2], "agreement": 5, "amendments": [], "attachments": [38, 37], "in_amendment": false, "result_links": [12], "document_type": "SSFA", "contingency_pd": false, "flat_locations": [22, 4, 12], "planned_visits": [3], "review_date_prc": "None", "submission_date": "2019-10-17", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [12058], "partner_focal_points": [5], "signed_pd_attachment": [512], "prc_review_attachment": [], "reference_number_year": "None", "signed_by_unicef_date": "2019-12-06", "reporting_requirements": [], "signed_by_partner_date": "2019-12-06", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 5}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (239, '2020-02-17 15:35:43.210918+00', '2020-02-17 15:35:43.210918+00', '28', 'update', '{"id": 28, "city": "NDJAMENA", "name": "ASSOCIATION DES GUIDES DU TCHAD", "email": "LODEMADJI@GMAIL.COM", "hidden": false, "rating": "High", "address": "QTIER CHAGOUA PAROISSE ST EMMANUEL", "blocked": false, "country": "081", "cso_type": "National", "net_ct_cy": "16850.72", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "16735.12", "shared_with": "None", "total_ct_cp": "87565.84", "total_ct_cy": "16850.72", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "00235 6687 3595", "total_ct_ytd": "16850.72", "staff_members": [], "vendor_number": "2500213937", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [15, 139], "manually_blocked": false, "type_of_assessment": "High Risk Assumed", "last_assessment_date": "2019-06-26", "basis_for_risk_rating": "", "core_values_assessments": [48, 467], "core_values_assessment_date": "2019-06-26", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (241, '2020-02-17 15:53:15.90109+00', '2020-02-17 15:53:15.90109+00', '10', 'create', '{"id": 10, "end": "2019-09-30", "frs": [], "start": "2018-12-28", "title": "Renforcer l’engagement communautaire des adolescentes et jeunes filles dans les régions de N’Djamena, du Moyen Chari, de la Tandjilé et du Logone Oriental", "number": "CHD/PCA20186/PD201810", "status": "draft", "offices": [387], "metadata": {}, "sections": [2], "agreement": 6, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [4, 7, 12, 14], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [12058], "partner_focal_points": [6], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2018, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (242, '2020-02-17 16:05:12.777155+00', '2020-02-17 16:05:12.777155+00', '10', 'update', '{"id": 10, "end": "2019-09-30", "frs": [], "start": "2018-12-28", "title": "Renforcer l’engagement communautaire des adolescentes et jeunes filles dans les régions de N’Djamena, du Moyen Chari, de la Tandjilé et du Logone Oriental", "number": "CHD/PCA20186/PD201810", "status": "draft", "offices": [387], "metadata": {}, "sections": [2], "agreement": 6, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [13], "document_type": "PD", "contingency_pd": false, "flat_locations": [4, 7, 12, 14], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [12058], "partner_focal_points": [6], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2018, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (243, '2020-02-17 16:06:46.563477+00', '2020-02-17 16:06:46.563477+00', '10', 'update', '{"id": 10, "end": "2019-09-30", "frs": [], "start": "2018-12-28", "title": "Renforcer l’engagement communautaire des adolescentes et jeunes filles dans les régions de N’Djamena, du Moyen Chari, de la Tandjilé et du Logone Oriental", "number": "CHD/PCA20186/PD201810", "status": "draft", "offices": [387], "metadata": {}, "sections": [2], "agreement": 6, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [13], "document_type": "PD", "contingency_pd": false, "flat_locations": [4, 7, 12, 14], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [12058], "partner_focal_points": [6], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2018, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (247, '2020-02-18 14:01:04.201872+00', '2020-02-18 14:01:04.201872+00', '7', 'update', '{"id": 7, "end": "2021-12-31", "start": "2019-12-09", "status": "draft", "partner": 448, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 7, "agreement_number": "CHD/PCA20197", "country_programme": 73, "attached_agreement": "", "authorized_officers": [7], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-09", "signed_by_partner_date": "2019-12-06", "special_conditions_pca": false}', '{}', 4606, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (251, '2020-02-19 11:22:15.31655+00', '2020-02-19 11:22:15.31655+00', '98', 'create', '{"id": 98, "author": 14363, "office": 387, "status": "open", "history": [], "partner": 393, "section": 11, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 15, "engagement": "None", "key_events": [], "assigned_by": 14363, "assigned_to": 5074, "description": "Voir la possibilité de mutualisation des ressources entre Edutrac et la plateforme de l’OTFIP", "intervention": 5, "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 192, "reference_number": "None", "date_of_completion": "None"}', '{}', 14363, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (244, '2020-02-17 16:25:25.647671+00', '2020-02-17 16:25:25.647671+00', '10', 'update', '{"id": 10, "end": "2019-09-30", "frs": [984, 1092], "start": "2018-12-28", "title": "Renforcer l’engagement communautaire des adolescentes et jeunes filles dans les régions de N’Djamena, du Moyen Chari, de la Tandjilé et du Logone Oriental", "number": "CHD/PCA20186/PD201810", "status": "draft", "offices": [387], "metadata": {}, "sections": [2], "agreement": 6, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [13], "document_type": "PD", "contingency_pd": false, "flat_locations": [4, 7, 12, 14], "planned_visits": [4], "review_date_prc": "2018-10-10", "submission_date": "2018-09-27", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-10-03", "unicef_focal_points": [12058], "partner_focal_points": [6], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2018, "signed_by_unicef_date": "2018-12-20", "reporting_requirements": [], "signed_by_partner_date": "2018-12-28", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{"frs": {"after": [984, 1092], "before": []}, "review_date_prc": {"after": "2018-10-10", "before": "None"}, "submission_date": {"after": "2018-09-27", "before": "None"}, "unicef_signatory": {"after": 8462, "before": "None"}, "submission_date_prc": {"after": "2018-10-03", "before": "None"}, "signed_by_unicef_date": {"after": "2018-12-20", "before": "None"}, "signed_by_partner_date": {"after": "2018-12-28", "before": "None"}, "partner_authorized_officer_signatory": {"after": 6, "before": "None"}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (248, '2020-02-18 14:12:43.115345+00', '2020-02-18 14:12:43.115345+00', '11', 'create', '{"id": 11, "end": "2020-03-15", "frs": [], "start": "2019-12-09", "title": "Coordination et suivi des émissions radiophoniques dans les radios communautaires et l’encadrement des Jeunes Reporters Club (JRC)", "number": "CHD/PCA20197/PD201911", "status": "draft", "offices": [387], "metadata": {}, "sections": [2], "agreement": 7, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [17, 59, 21, 22, 23, 5, 7, 12, 8, 14], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [5056], "partner_focal_points": [7], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (253, '2020-02-19 13:09:08.987698+00', '2020-02-19 13:09:08.987698+00', '10', 'update', '{"id": 10, "end": "2020-03-30", "frs": [984, 1092], "start": "2018-12-28", "title": "Renforcer l’engagement communautaire des adolescentes et jeunes filles dans les régions de N’Djamena, du Moyen Chari, de la Tandjilé et du Logone Oriental", "number": "CHD/PCA20186/PD201810-1", "status": "active", "offices": [387], "metadata": {}, "sections": [2], "agreement": 6, "amendments": [1], "attachments": [60, 51, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39], "in_amendment": true, "result_links": [13], "document_type": "PD", "contingency_pd": false, "flat_locations": [4, 7, 12, 14], "planned_visits": [4], "review_date_prc": "2018-10-10", "submission_date": "2018-09-27", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-10-03", "unicef_focal_points": [12058], "partner_focal_points": [6], "signed_pd_attachment": [516], "prc_review_attachment": [], "reference_number_year": 2018, "signed_by_unicef_date": "2018-12-20", "reporting_requirements": [], "signed_by_partner_date": "2018-12-28", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (254, '2020-02-19 13:09:44.448151+00', '2020-02-19 13:09:44.448151+00', '10', 'update', '{"id": 10, "end": "2020-03-30", "frs": [984, 1092], "start": "2018-12-28", "title": "Renforcer l’engagement communautaire des adolescentes et jeunes filles dans les régions de N’Djamena, du Moyen Chari, de la Tandjilé et du Logone Oriental", "number": "CHD/PCA20186/PD201810-1", "status": "active", "offices": [387], "metadata": {}, "sections": [2], "agreement": 6, "amendments": [1], "attachments": [60, 51, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39], "in_amendment": true, "result_links": [13], "document_type": "PD", "contingency_pd": false, "flat_locations": [4, 7, 12, 14], "planned_visits": [4], "review_date_prc": "2018-10-10", "submission_date": "2018-09-27", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-10-03", "unicef_focal_points": [12058], "partner_focal_points": [6], "signed_pd_attachment": [516], "prc_review_attachment": [], "reference_number_year": 2018, "signed_by_unicef_date": "2018-12-20", "reporting_requirements": [], "signed_by_partner_date": "2018-12-28", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (266, '2020-02-20 12:51:43.7639+00', '2020-02-20 12:51:43.7639+00', '8', 'update', '{"id": 8, "end": "2021-12-31", "start": "2019-05-30", "status": "draft", "partner": 130, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 9, "agreement_number": "CHD/PCA20198", "country_programme": 73, "attached_agreement": "", "authorized_officers": [8], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-28", "signed_by_partner_date": "2019-05-30", "special_conditions_pca": false}', '{}', 4606, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (255, '2020-02-19 13:10:18.719907+00', '2020-02-19 13:10:18.719907+00', '10', 'update', '{"id": 10, "end": "2020-03-30", "frs": [984, 1092], "start": "2018-12-28", "title": "Renforcer l’engagement communautaire des adolescentes et jeunes filles dans les régions de N’Djamena, du Moyen Chari, de la Tandjilé et du Logone Oriental", "number": "CHD/PCA20186/PD201810-1", "status": "active", "offices": [387], "metadata": {}, "sections": [2], "agreement": 6, "amendments": [1], "attachments": [60, 51, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39], "in_amendment": false, "result_links": [13], "document_type": "PD", "contingency_pd": false, "flat_locations": [4, 7, 12, 14], "planned_visits": [4], "review_date_prc": "2018-10-10", "submission_date": "2018-09-27", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-10-03", "unicef_focal_points": [12058], "partner_focal_points": [6], "signed_pd_attachment": [516], "prc_review_attachment": [], "reference_number_year": 2018, "signed_by_unicef_date": "2018-12-20", "reporting_requirements": [], "signed_by_partner_date": "2018-12-28", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{"in_amendment": {"after": false, "before": true}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (256, '2020-02-19 13:12:37.679564+00', '2020-02-19 13:12:37.679564+00', '10', 'update', '{"id": 10, "end": "2020-03-30", "frs": [984, 1092], "start": "2018-12-28", "title": "Renforcer l’engagement communautaire des adolescentes et jeunes filles dans les régions de N’Djamena, du Moyen Chari, de la Tandjilé et du Logone Oriental", "number": "CHD/PCA20186/PD201810-2", "status": "active", "offices": [387], "metadata": {}, "sections": [2], "agreement": 6, "amendments": [2, 1], "attachments": [60, 51, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39], "in_amendment": false, "result_links": [13], "document_type": "PD", "contingency_pd": false, "flat_locations": [4, 7, 12, 14], "planned_visits": [4], "review_date_prc": "2018-10-10", "submission_date": "2018-09-27", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-10-03", "unicef_focal_points": [12058], "partner_focal_points": [6], "signed_pd_attachment": [516], "prc_review_attachment": [], "reference_number_year": 2018, "signed_by_unicef_date": "2018-12-20", "reporting_requirements": [], "signed_by_partner_date": "2018-12-28", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{"in_amendment": {"after": false, "before": true}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (257, '2020-02-19 13:13:01.677148+00', '2020-02-19 13:13:01.677148+00', '10', 'update', '{"id": 10, "end": "2020-03-30", "frs": [984, 1092], "start": "2018-12-28", "title": "Renforcer l’engagement communautaire des adolescentes et jeunes filles dans les régions de N’Djamena, du Moyen Chari, de la Tandjilé et du Logone Oriental", "number": "CHD/PCA20186/PD201810-2", "status": "active", "offices": [387], "metadata": {}, "sections": [2], "agreement": 6, "amendments": [2, 1], "attachments": [60, 51, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39], "in_amendment": false, "result_links": [13], "document_type": "PD", "contingency_pd": false, "flat_locations": [4, 7, 12, 14], "planned_visits": [4], "review_date_prc": "2018-10-10", "submission_date": "2018-09-27", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2018-10-03", "unicef_focal_points": [12058], "partner_focal_points": [6], "signed_pd_attachment": [516], "prc_review_attachment": [], "reference_number_year": 2018, "signed_by_unicef_date": "2018-12-20", "reporting_requirements": [], "signed_by_partner_date": "2018-12-28", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 6}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (258, '2020-02-20 12:31:49.158405+00', '2020-02-20 12:31:49.158405+00', '130', 'update', '{"id": 130, "city": "NDJAMENA", "name": "ACTION CONTRE LA FAIM FRANCE", "email": "CDM@TD-ACTIONCONTRELAFAIM.ORG", "hidden": false, "rating": "Low", "address": "NDJAMENA", "blocked": false, "country": "081", "cso_type": "International", "net_ct_cy": "95784.35", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "467326.27", "shared_with": "None", "total_ct_cp": "1166607.20", "total_ct_cy": "95784.35", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "23566619175", "total_ct_ytd": "0.00", "staff_members": [], "vendor_number": "2500213920", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [2, 127], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-08-01", "basis_for_risk_rating": "", "core_values_assessments": [8], "core_values_assessment_date": "2018-07-15", "outstanding_dct_amount_6_to_9_months_usd": "1796.19", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (373, '2020-03-04 13:41:24.816023+00', '2020-03-04 13:41:24.816023+00', '12', 'create', '{"id": 12, "end": "2021-12-31", "start": "2019-09-09", "status": "draft", "partner": 261, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": "None", "agreement_number": "CHD/PCA201912", "country_programme": 73, "attached_agreement": "", "authorized_officers": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-06", "signed_by_partner_date": "2019-09-09", "special_conditions_pca": false}', '{}', 7798, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (296, '2020-02-21 12:26:39.315124+00', '2020-02-21 12:26:39.315124+00', '99', 'create', '{"id": 99, "author": 9984, "office": 391, "status": "open", "history": [], "partner": "None", "section": 3, "category": "None", "comments": [], "due_date": "2020-02-05", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 9984, "assigned_to": 9984, "description": "Retravailler les PPA au Niveau du BZ", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 200, "reference_number": "CHD/2020/99/APD", "date_of_completion": "None"}', '{}', 9984, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (300, '2020-02-21 13:47:00.272606+00', '2020-02-21 13:47:00.272606+00', '103', 'create', '{"id": 103, "author": 4606, "office": 387, "status": "open", "history": [], "partner": 180, "section": 11, "category": "None", "comments": [], "due_date": "2020-05-31", "location": "None", "cp_output": 50, "engagement": "None", "key_events": [], "assigned_by": 4606, "assigned_to": 4606, "description": "Faire une autre formation en HACT aux partenaires qui étaient absent", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 28, "reference_number": "CHD/2020/103/APD", "date_of_completion": "None"}', '{}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (301, '2020-02-21 13:50:02.930447+00', '2020-02-21 13:50:02.930447+00', '100', 'update', '{"id": 100, "author": 4606, "office": 387, "status": "open", "history": [297], "partner": 315, "section": 11, "category": "None", "comments": [], "due_date": "2020-02-29", "location": "None", "cp_output": 50, "engagement": "None", "key_events": [], "assigned_by": 4606, "assigned_to": 4606, "description": "Faire le suivi avec le Section Protection pour que le DCT de cette activité soit liquidé rapidement", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 27, "reference_number": "CHD/2020/100/APD", "date_of_completion": "None"}', '{"description": {"after": "Faire le suivi avec le Section Protection pour que le DCT de cette activité soit liquidé rapidement", "before": "Faire le suivi avec le Section Protection que le DCT de cette activité soit liquider rapidement"}}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (262, '2020-02-20 12:37:04.541144+00', '2020-02-20 12:37:04.541144+00', '130', 'update', '{"id": 130, "city": "NDJAMENA", "name": "ACTION CONTRE LA FAIM FRANCE", "email": "CDM@TD-ACTIONCONTRELAFAIM.ORG", "hidden": false, "rating": "Low", "address": "NDJAMENA", "blocked": false, "country": "081", "cso_type": "International", "net_ct_cy": "95784.35", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "467326.27", "shared_with": "None", "total_ct_cp": "1166607.20", "total_ct_cy": "95784.35", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "23566619175", "total_ct_ytd": "0.00", "staff_members": [8], "vendor_number": "2500213920", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [2, 127], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-08-01", "basis_for_risk_rating": "", "core_values_assessments": [8], "core_values_assessment_date": "2018-07-15", "outstanding_dct_amount_6_to_9_months_usd": "1796.19", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (302, '2020-02-22 14:51:06.824222+00', '2020-02-22 14:51:06.824222+00', '35', 'update', '{"id": 35, "author": 13031, "office": 391, "status": "open", "history": [63], "partner": 41, "section": 7, "category": "None", "comments": [33], "due_date": "2019-11-30", "location": "None", "cp_output": 46, "engagement": "None", "key_events": [], "assigned_by": 13031, "assigned_to": 13031, "description": "Assurer le suivi de prelevement des enfants nes des meres seropositives pour le diagnostic precoce rencontres a l''hopital et dans les 2 autres CS visites", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 111, "reference_number": "CHD/2019/35/APD", "date_of_completion": "None"}', '{"comments": {"after": [33], "before": []}}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (304, '2020-02-22 14:51:25.168561+00', '2020-02-22 14:51:25.168561+00', '35', 'update', '{"id": 35, "author": 13031, "office": 391, "status": "completed", "history": [303, 302, 63], "partner": 41, "section": 7, "category": "None", "comments": [33], "due_date": "2019-11-30", "location": "None", "cp_output": 46, "engagement": "None", "key_events": ["status_update"], "assigned_by": 13031, "assigned_to": 13031, "description": "Assurer le suivi de prelevement des enfants nes des meres seropositives pour le diagnostic precoce rencontres a l''hopital et dans les 2 autres CS visites", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 111, "reference_number": "CHD/2019/35/APD", "date_of_completion": "2020-02-22 14:51:25.147938+00:00"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2020-02-22 14:51:25.147938+00:00", "before": "None"}}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (305, '2020-02-22 15:06:57.96413+00', '2020-02-22 15:06:57.96413+00', '104', 'create', '{"id": 104, "author": 13031, "office": 391, "status": "open", "history": [], "partner": 48, "section": 7, "category": "None", "comments": [], "due_date": "2021-12-31", "location": "None", "cp_output": 28, "engagement": "None", "key_events": [], "assigned_by": 13031, "assigned_to": 13031, "description": "Assurer le plaidoyer pour la dotation du DS de Laramanaye en chaine de froid", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 182, "reference_number": "CHD/2020/104/APD", "date_of_completion": "None"}', '{}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (307, '2020-02-24 14:33:21.500125+00', '2020-02-24 14:33:21.500125+00', '105', 'create', '{"id": 105, "author": 5052, "office": 387, "status": "open", "history": [], "partner": 125, "section": 9, "category": "None", "comments": [], "due_date": "2020-03-15", "location": "None", "cp_output": 33, "engagement": "None", "key_events": [], "assigned_by": 5052, "assigned_to": 5052, "description": "1.\tSuivre avec la Coordination le reversement des perdiems des cadres qui n’ont pas effectué la mission dans le Batha.", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 222, "reference_number": "CHD/2020/105/APD", "date_of_completion": "None"}', '{}', 5052, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (263, '2020-02-20 12:37:20.531183+00', '2020-02-20 12:37:20.531183+00', '130', 'update', '{"id": 130, "city": "NDJAMENA", "name": "ACTION CONTRE LA FAIM FRANCE", "email": "CDM@TD-ACTIONCONTRELAFAIM.ORG", "hidden": false, "rating": "Low", "address": "NDJAMENA", "blocked": false, "country": "081", "cso_type": "International", "net_ct_cy": "95784.35", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "467326.27", "shared_with": "None", "total_ct_cp": "1166607.20", "total_ct_cy": "95784.35", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "23566619175", "total_ct_ytd": "0.00", "staff_members": [8, 9], "vendor_number": "2500213920", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [2, 127], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-08-01", "basis_for_risk_rating": "", "core_values_assessments": [8], "core_values_assessment_date": "2018-07-15", "outstanding_dct_amount_6_to_9_months_usd": "1796.19", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (264, '2020-02-20 12:39:11.136078+00', '2020-02-20 12:39:11.136078+00', '130', 'update', '{"id": 130, "city": "NDJAMENA", "name": "ACTION CONTRE LA FAIM FRANCE", "email": "CDM@TD-ACTIONCONTRELAFAIM.ORG", "hidden": false, "rating": "Low", "address": "NDJAMENA", "blocked": false, "country": "081", "cso_type": "International", "net_ct_cy": "95784.35", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "467326.27", "shared_with": "None", "total_ct_cp": "1166607.20", "total_ct_cy": "95784.35", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "23566619175", "total_ct_ytd": "0.00", "staff_members": [8, 9], "vendor_number": "2500213920", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [2, 127], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-08-01", "basis_for_risk_rating": "", "core_values_assessments": [8], "core_values_assessment_date": "2018-07-15", "outstanding_dct_amount_6_to_9_months_usd": "1796.19", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (267, '2020-02-20 12:56:19.363662+00', '2020-02-20 12:56:19.363662+00', '12', 'create', '{"id": 12, "end": "2020-04-30", "frs": [], "start": "2019-06-01", "title": "Appui à la prévention et au traitement de la malnutrition aigüe sévère à travers la mise en œuvre des activités WASH In Nut dans les provinces de Bahr El ghazel et Kanem.", "number": "CHD/PCA20198/PD201912", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 8, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [9148], "partner_focal_points": [8], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (268, '2020-02-20 13:24:42.176709+00', '2020-02-20 13:24:42.176709+00', '12', 'update', '{"id": 12, "end": "2020-04-30", "frs": [], "start": "2019-06-01", "title": "Appui à la prévention et au traitement de la malnutrition aigüe sévère à travers la mise en œuvre des activités WASH In Nut dans les provinces de Bahr El ghazel et Kanem.", "number": "CHD/PCA20198/PD201912", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 8, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [16, 17], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 18], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [9148], "partner_focal_points": [8], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{"flat_locations": {"after": [15, 18], "before": []}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (276, '2020-02-20 14:23:14.951195+00', '2020-02-20 14:23:14.951195+00', '9', 'create', '{"id": 9, "end": "2021-12-31", "start": "2019-09-18", "status": "draft", "partner": 450, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 11, "agreement_number": "CHD/PCA20199", "country_programme": 73, "attached_agreement": "", "authorized_officers": [11], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-17", "signed_by_partner_date": "2019-09-18", "special_conditions_pca": false}', '{}', 4606, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (269, '2020-02-20 13:39:26.999037+00', '2020-02-20 13:39:26.999037+00', '12', 'update', '{"id": 12, "end": "2020-04-30", "frs": [], "start": "2019-06-01", "title": "Appui à la prévention et au traitement de la malnutrition aigüe sévère à travers la mise en œuvre des activités WASH In Nut dans les provinces de Bahr El ghazel et Kanem.", "number": "CHD/PCA20198/PD201912", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 8, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [16, 17], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 18], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [9148], "partner_focal_points": [8], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (270, '2020-02-20 13:40:23.348217+00', '2020-02-20 13:40:23.348217+00', '12', 'update', '{"id": 12, "end": "2020-04-30", "frs": [], "start": "2019-06-01", "title": "Appui à la prévention et au traitement de la malnutrition aigüe sévère à travers la mise en œuvre des activités WASH In Nut dans les provinces de Bahr El ghazel et Kanem.", "number": "CHD/PCA20198/PD201912", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 8, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [16, 17], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 18], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [9148], "partner_focal_points": [8], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (271, '2020-02-20 13:53:49.051629+00', '2020-02-20 13:53:49.051629+00', '12', 'update', '{"id": 12, "end": "2020-04-30", "frs": [], "start": "2019-06-01", "title": "Appui à la prévention et au traitement de la malnutrition aigüe sévère à travers la mise en œuvre des activités WASH In Nut dans les provinces de Bahr El ghazel et Kanem.", "number": "CHD/PCA20198/PD201912", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 8, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [16, 17], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 18], "planned_visits": [7, 8], "review_date_prc": "2019-04-10", "submission_date": "2019-02-28", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-03-25", "unicef_focal_points": [9148], "partner_focal_points": [8], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{"review_date_prc": {"after": "2019-04-10", "before": "None"}, "submission_date": {"after": "2019-02-28", "before": "None"}, "submission_date_prc": {"after": "2019-03-25", "before": "None"}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (272, '2020-02-20 13:56:47.170685+00', '2020-02-20 13:56:47.170685+00', '130', 'update', '{"id": 130, "city": "NDJAMENA", "name": "ACTION CONTRE LA FAIM FRANCE", "email": "CDM@TD-ACTIONCONTRELAFAIM.ORG", "hidden": false, "rating": "Low", "address": "NDJAMENA", "blocked": false, "country": "081", "cso_type": "International", "net_ct_cy": "95784.35", "agreements": [8], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "467326.27", "shared_with": "None", "total_ct_cp": "1166607.20", "total_ct_cy": "95784.35", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "23566619175", "total_ct_ytd": "0.00", "staff_members": [8, 9], "vendor_number": "2500213920", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [2, 127], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-08-01", "basis_for_risk_rating": "", "core_values_assessments": [8], "core_values_assessment_date": "2018-07-15", "outstanding_dct_amount_6_to_9_months_usd": "1796.19", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (286, '2020-02-20 16:11:42.109889+00', '2020-02-20 16:11:42.109889+00', '10', 'create', '{"id": 10, "end": "2021-12-31", "start": "2019-06-21", "status": "draft", "partner": 95, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 14, "agreement_number": "CHD/PCA201910", "country_programme": 73, "attached_agreement": "", "authorized_officers": [14], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-17", "signed_by_partner_date": "2019-06-21", "special_conditions_pca": false}', '{}', 4606, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (548, '2020-04-15 18:41:55.389969+00', '2020-04-15 18:41:55.389969+00', '16', 'create', '{"id": 16, "end": "None", "start": "None", "status": "draft", "partner": 163, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "SSFA", "partner_manager": "None", "agreement_number": "CHD/SSFA202016", "country_programme": "None", "attached_agreement": "", "authorized_officers": [22], "reference_number_year": 2020, "signed_by_unicef_date": "None", "signed_by_partner_date": "None", "special_conditions_pca": false}', '{}', 7798, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (273, '2020-02-20 14:05:21.370275+00', '2020-02-20 14:05:21.370275+00', '12', 'update', '{"id": 12, "end": "2020-04-30", "frs": [1038], "start": "2019-06-01", "title": "Appui à la prévention et au traitement de la malnutrition aigüe sévère à travers la mise en œuvre des activités WASH In Nut dans les provinces de Bahr El ghazel et Kanem.", "number": "CHD/PCA20198/PD201912", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 8, "amendments": [], "attachments": [72, 71, 70, 69, 68, 67, 66, 65, 64, 63, 62, 61], "in_amendment": false, "result_links": [16, 17], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 18], "planned_visits": [7, 8], "review_date_prc": "2019-04-10", "submission_date": "2019-02-28", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-03-25", "unicef_focal_points": [9148], "partner_focal_points": [8], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-28", "reporting_requirements": [], "signed_by_partner_date": "2019-05-30", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 8}', '{"frs": {"after": [1038], "before": []}, "unicef_signatory": {"after": 8462, "before": "None"}, "signed_by_unicef_date": {"after": "2019-05-28", "before": "None"}, "signed_by_partner_date": {"after": "2019-05-30", "before": "None"}, "partner_authorized_officer_signatory": {"after": 8, "before": "None"}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (274, '2020-02-20 14:08:00.567251+00', '2020-02-20 14:08:00.567251+00', '450', 'update', '{"id": 450, "city": "NDJAMENA", "name": "ALTERNATIVES D APPUI STRATEGIQUE AU DVPT", "email": "ASD.ONGTCHAD@GMAIL.COM", "hidden": false, "rating": "Not Required", "address": "NDJAMENA", "blocked": false, "country": "081", "cso_type": "Community Based Organization", "net_ct_cy": "17862.91", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "96909.53", "shared_with": "None", "total_ct_cp": "114772.44", "total_ct_cy": "17862.91", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "235 6322 5145", "total_ct_ytd": "17862.91", "staff_members": [], "vendor_number": "2500240664", "vision_synced": true, "alternate_name": "None", "planned_visits": [], "street_address": "None", "psea_assessment": [], "related_partner": [132], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2019-08-27", "basis_for_risk_rating": "", "core_values_assessments": [474], "core_values_assessment_date": "2019-08-26", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (275, '2020-02-20 14:19:47.680825+00', '2020-02-20 14:19:47.680825+00', '450', 'update', '{"id": 450, "city": "NDJAMENA", "name": "ALTERNATIVES D APPUI STRATEGIQUE AU DVPT", "email": "ASD.ONGTCHAD@GMAIL.COM", "hidden": false, "rating": "Not Required", "address": "NDJAMENA", "blocked": false, "country": "081", "cso_type": "Community Based Organization", "net_ct_cy": "17862.91", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "96909.53", "shared_with": "None", "total_ct_cp": "114772.44", "total_ct_cy": "17862.91", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "235 6322 5145", "total_ct_ytd": "17862.91", "staff_members": [11], "vendor_number": "2500240664", "vision_synced": true, "alternate_name": "None", "planned_visits": [], "street_address": "None", "psea_assessment": [], "related_partner": [132], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2019-08-27", "basis_for_risk_rating": "", "core_values_assessments": [474], "core_values_assessment_date": "2019-08-26", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (277, '2020-02-20 14:27:40.261807+00', '2020-02-20 14:27:40.261807+00', '13', 'create', '{"id": 13, "end": "2020-02-29", "frs": [], "start": "2019-09-18", "title": "Réponse Eau-Assainissement et Hygiène (WASH) à l’épidémie de Choléra dans les Délégations Sanitaires Provinciales de Mayo Kebbi Est et Mayo Kebbi Ouest et Mise en œuvre de l’ATPC dans 37 villages dans 2 zones de responsabilités dans le district sanitaire d", "number": "CHD/PCA20199/HPD201913", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 9, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "HPD", "contingency_pd": false, "flat_locations": [5, 6], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [9032], "partner_focal_points": [11], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (293, '2020-02-20 16:53:01.066488+00', '2020-02-20 16:53:01.066488+00', '10', 'update', '{"id": 10, "end": "2021-12-31", "start": "2019-06-21", "status": "draft", "partner": 95, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [14], "agreement_type": "PCA", "partner_manager": 14, "agreement_number": "CHD/PCA201910", "country_programme": 73, "attached_agreement": "", "authorized_officers": [14], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-17", "signed_by_partner_date": "2019-06-21", "special_conditions_pca": false}', '{}', 4606, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (278, '2020-02-20 14:49:22.732737+00', '2020-02-20 14:49:22.732737+00', '13', 'update', '{"id": 13, "end": "2020-02-29", "frs": [1052], "start": "2019-09-18", "title": "Réponse Eau-Assainissement et Hygiène (WASH) à l’épidémie de Choléra dans les Délégations Sanitaires Provinciales de Mayo Kebbi Est et Mayo Kebbi Ouest et Mise en œuvre de l’ATPC dans 37 villages dans 2 zones de responsabilités dans le district sanitaire d", "number": "CHD/PCA20199/HPD201913", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 9, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [18, 19], "document_type": "HPD", "contingency_pd": false, "flat_locations": [5, 6], "planned_visits": [], "review_date_prc": "None", "submission_date": "2019-08-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 3701, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [9032], "partner_focal_points": [11], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-17", "reporting_requirements": [], "signed_by_partner_date": "2019-09-18", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{"frs": {"after": [1052], "before": []}, "submission_date": {"after": "2019-08-20", "before": "None"}, "unicef_signatory": {"after": 3701, "before": "None"}, "signed_by_unicef_date": {"after": "2019-09-17", "before": "None"}, "signed_by_partner_date": {"after": "2019-09-18", "before": "None"}, "partner_authorized_officer_signatory": {"after": 11, "before": "None"}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (279, '2020-02-20 14:55:55.313767+00', '2020-02-20 14:55:55.313767+00', '13', 'update', '{"id": 13, "end": "2020-02-29", "frs": [1052], "start": "2019-09-18", "title": "Réponse Eau-Assainissement et Hygiène (WASH) à l’épidémie de Choléra dans les Délégations Sanitaires Provinciales de Mayo Kebbi Est et Mayo Kebbi Ouest et Mise en œuvre de l’ATPC dans 37 villages dans 2 zones de responsabilités dans le district sanitaire d", "number": "CHD/PCA20199/HPD201913", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 9, "amendments": [], "attachments": [87, 86, 85, 84, 83, 82, 81, 80, 79, 78, 77, 76, 75, 74, 73], "in_amendment": false, "result_links": [18, 19], "document_type": "HPD", "contingency_pd": false, "flat_locations": [5, 6], "planned_visits": [], "review_date_prc": "None", "submission_date": "2019-08-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 3701, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [9032], "partner_focal_points": [11], "signed_pd_attachment": [564], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-17", "reporting_requirements": [], "signed_by_partner_date": "2019-09-18", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (280, '2020-02-20 14:57:13.647791+00', '2020-02-20 14:57:13.647791+00', '13', 'update', '{"id": 13, "end": "2020-02-29", "frs": [1052], "start": "2019-09-18", "title": "Réponse Eau-Assainissement et Hygiène (WASH) à l’épidémie de Choléra dans les Délégations Sanitaires Provinciales de Mayo Kebbi Est et Mayo Kebbi Ouest et Mise en œuvre de l’ATPC dans 37 villages dans 2 zones de responsabilités dans le district sanitaire d", "number": "CHD/PCA20199/HPD201913", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 9, "amendments": [], "attachments": [87, 86, 85, 84, 83, 82, 81, 80, 79, 78, 77, 76, 75, 74, 73], "in_amendment": false, "result_links": [18, 19], "document_type": "HPD", "contingency_pd": false, "flat_locations": [5, 6], "planned_visits": [], "review_date_prc": "None", "submission_date": "2019-08-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 3701, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [9032], "partner_focal_points": [11], "signed_pd_attachment": [564], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-17", "reporting_requirements": [], "signed_by_partner_date": "2019-09-18", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (281, '2020-02-20 14:58:59.351996+00', '2020-02-20 14:58:59.351996+00', '13', 'update', '{"id": 13, "end": "2020-02-29", "frs": [1052], "start": "2019-09-18", "title": "Réponse Eau-Assainissement et Hygiène (WASH) à l’épidémie de Choléra dans les Délégations Sanitaires Provinciales de Mayo Kebbi Est et Mayo Kebbi Ouest et Mise en œuvre de l’ATPC dans 37 villages dans 2 zones de responsabilités dans le district sanitaire d", "number": "CHD/PCA20199/HPD201913", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 9, "amendments": [], "attachments": [87, 86, 85, 84, 83, 82, 81, 80, 79, 78, 77, 76, 75, 74, 73], "in_amendment": false, "result_links": [18, 19], "document_type": "HPD", "contingency_pd": false, "flat_locations": [5, 6], "planned_visits": [], "review_date_prc": "None", "submission_date": "2019-08-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 3701, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [9032], "partner_focal_points": [11], "signed_pd_attachment": [564], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-17", "reporting_requirements": [], "signed_by_partner_date": "2019-09-18", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (297, '2020-02-21 13:40:05.511806+00', '2020-02-21 13:40:05.511806+00', '100', 'create', '{"id": 100, "author": 4606, "office": 387, "status": "open", "history": [], "partner": 315, "section": 11, "category": "None", "comments": [], "due_date": "2020-02-29", "location": "None", "cp_output": 50, "engagement": "None", "key_events": [], "assigned_by": 4606, "assigned_to": 4606, "description": "Faire le suivi avec le Section Protection que le DCT de cette activité soit liquider rapidement", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 27, "reference_number": "CHD/2020/100/APD", "date_of_completion": "None"}', '{}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (282, '2020-02-20 15:06:28.163377+00', '2020-02-20 15:06:28.163377+00', '13', 'update', '{"id": 13, "end": "2020-02-29", "frs": [1052], "start": "2019-09-18", "title": "Réponse Eau-Assainissement et Hygiène (WASH) à l’épidémie de Choléra dans les Délégations Sanitaires Provinciales de Mayo Kebbi Est et Mayo Kebbi Ouest et Mise en œuvre de l’ATPC dans 37 villages dans 2 zones de responsabilités dans le district sanitaire d", "number": "CHD/PCA20199/HPD201913", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 9, "amendments": [], "attachments": [87, 86, 85, 84, 83, 82, 81, 80, 79, 78, 77, 76, 75, 74, 73], "in_amendment": false, "result_links": [18, 19], "document_type": "HPD", "contingency_pd": false, "flat_locations": [5, 6], "planned_visits": [9, 10], "review_date_prc": "None", "submission_date": "2019-08-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 3701, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [9032], "partner_focal_points": [11], "signed_pd_attachment": [564], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-17", "reporting_requirements": [], "signed_by_partner_date": "2019-09-18", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 11}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (283, '2020-02-20 15:11:47.356581+00', '2020-02-20 15:11:47.356581+00', '296', 'update', '{"id": 296, "city": "NDJAMENA", "name": "ALLIANCE FOR INTERNATIONAL MEDICAL ACTION ALIMA", "email": "TCHAD.RP@ALIMA-NGO.ORG", "hidden": false, "rating": "Low", "address": "NDJAMENA", "blocked": false, "country": "081", "cso_type": "Community Based Organization", "net_ct_cy": "38960.19", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "235", "reported_cy": "0.00", "shared_with": "None", "total_ct_cp": "1679337.93", "total_ct_cy": "38960.19", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "68702711", "total_ct_ytd": "0.00", "staff_members": [], "vendor_number": "2500228510", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [8, 131], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-08-01", "basis_for_risk_rating": "", "core_values_assessments": [24], "core_values_assessment_date": "2016-09-20", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (284, '2020-02-20 16:05:14.163438+00', '2020-02-20 16:05:14.163438+00', '95', 'update', '{"id": 95, "city": "N DJAMENA", "name": "ECOLE SAINE MENAGE SAIN", "email": "ECOLESAINE@YAHOO.FR", "hidden": false, "rating": "Medium", "address": "AVENUE PASCAL YOADOUMNADJI", "blocked": false, "country": "081", "cso_type": "National", "net_ct_cy": "123267.17", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 2}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "20803.87", "shared_with": "None", "total_ct_cp": "359729.34", "total_ct_cy": "123267.17", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "66298271", "total_ct_ytd": "0.00", "staff_members": [], "vendor_number": "2500214062", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [79, 204], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2018-08-28", "basis_for_risk_rating": "", "core_values_assessments": [479, 272, 435], "core_values_assessment_date": "2018-08-28", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (285, '2020-02-20 16:05:27.555828+00', '2020-02-20 16:05:27.555828+00', '95', 'update', '{"id": 95, "city": "N DJAMENA", "name": "ECOLE SAINE MENAGE SAIN", "email": "ECOLESAINE@YAHOO.FR", "hidden": false, "rating": "Medium", "address": "AVENUE PASCAL YOADOUMNADJI", "blocked": false, "country": "081", "cso_type": "National", "net_ct_cy": "123267.17", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 2}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "20803.87", "shared_with": "None", "total_ct_cp": "359729.34", "total_ct_cy": "123267.17", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "66298271", "total_ct_ytd": "0.00", "staff_members": [14], "vendor_number": "2500214062", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [79, 204], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2018-08-28", "basis_for_risk_rating": "", "core_values_assessments": [479, 272, 435], "core_values_assessment_date": "2018-08-28", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (287, '2020-02-20 16:15:05.590174+00', '2020-02-20 16:15:05.590174+00', '14', 'create', '{"id": 14, "end": "2021-01-31", "frs": [], "start": "2019-12-10", "title": "Renforcement de la résilience des communautés et des écoles du canton de Moito, district sanitaire de Bokoro, province de Hadjer-Lamis puis des écoles des districts sanitaires de Moussoro, Mao dans les provinces de Barh el gazal et du Kanem", "number": "CHD/PCA201910/PD201914", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 10, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 19, 18], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [14239], "partner_focal_points": [14], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (288, '2020-02-20 16:17:06.129304+00', '2020-02-20 16:17:06.129304+00', '14', 'update', '{"id": 14, "end": "2021-01-31", "frs": [], "start": "2019-12-10", "title": "Renforcement de la résilience des communautés et des écoles du canton de Moito, district sanitaire de Bokoro, province de Hadjer-Lamis puis des écoles des districts sanitaires de Moussoro, Mao dans les provinces de Barh el gazal et du Kanem", "number": "CHD/PCA201910/PD201914", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 10, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 19, 18], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [14239], "partner_focal_points": [14], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (289, '2020-02-20 16:44:36.387591+00', '2020-02-20 16:44:36.387591+00', '14', 'update', '{"id": 14, "end": "2021-01-31", "frs": [], "start": "2019-12-10", "title": "Renforcement de la résilience des communautés et des écoles du canton de Moito, district sanitaire de Bokoro, province de Hadjer-Lamis puis des écoles des districts sanitaires de Moussoro, Mao dans les provinces de Barh el gazal et du Kanem", "number": "CHD/PCA201910/PD201914", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 10, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [20, 21], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 19, 18], "planned_visits": [11], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [14239], "partner_focal_points": [14], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (290, '2020-02-20 16:50:06.012408+00', '2020-02-20 16:50:06.012408+00', '14', 'update', '{"id": 14, "end": "2021-01-31", "frs": [1040], "start": "2019-12-10", "title": "Renforcement de la résilience des communautés et des écoles du canton de Moito, district sanitaire de Bokoro, province de Hadjer-Lamis puis des écoles des districts sanitaires de Moussoro, Mao dans les provinces de Barh el gazal et du Kanem", "number": "CHD/PCA201910/PD201914", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 10, "amendments": [], "attachments": [97, 96, 95, 94, 93, 92, 91, 90, 89, 88], "in_amendment": false, "result_links": [20, 21], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 19, 18], "planned_visits": [11], "review_date_prc": "None", "submission_date": "2019-10-25", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [14239], "partner_focal_points": [14], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-09", "reporting_requirements": [], "signed_by_partner_date": "2019-12-10", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 14}', '{"frs": {"after": [1040], "before": []}, "submission_date": {"after": "2019-10-25", "before": "None"}, "unicef_signatory": {"after": 8462, "before": "None"}, "signed_by_unicef_date": {"after": "2019-12-09", "before": "None"}, "signed_by_partner_date": {"after": "2019-12-10", "before": "None"}, "partner_authorized_officer_signatory": {"after": 14, "before": "None"}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (298, '2020-02-21 13:40:59.661377+00', '2020-02-21 13:40:59.661377+00', '101', 'create', '{"id": 101, "author": 4606, "office": 387, "status": "open", "history": [], "partner": 315, "section": 11, "category": "None", "comments": [], "due_date": "2020-05-31", "location": "None", "cp_output": 50, "engagement": "None", "key_events": [], "assigned_by": 4606, "assigned_to": 4606, "description": "Faire la restitution des feedbacks des partenaires sur les liquidations à 100% proposées aux partenaires", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 27, "reference_number": "CHD/2020/101/APD", "date_of_completion": "None"}', '{}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (303, '2020-02-22 14:51:13.224095+00', '2020-02-22 14:51:13.224095+00', '35', 'update', '{"id": 35, "author": 13031, "office": 391, "status": "open", "history": [302, 63], "partner": 41, "section": 7, "category": "None", "comments": [33], "due_date": "2019-11-30", "location": "None", "cp_output": 46, "engagement": "None", "key_events": [], "assigned_by": 13031, "assigned_to": 13031, "description": "Assurer le suivi de prelevement des enfants nes des meres seropositives pour le diagnostic precoce rencontres a l''hopital et dans les 2 autres CS visites", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 111, "reference_number": "CHD/2019/35/APD", "date_of_completion": "None"}', '{}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (291, '2020-02-20 16:51:07.371947+00', '2020-02-20 16:51:07.371947+00', '14', 'update', '{"id": 14, "end": "2021-01-31", "frs": [1040], "start": "2019-12-10", "title": "Renforcement de la résilience des communautés et des écoles du canton de Moito, district sanitaire de Bokoro, province de Hadjer-Lamis puis des écoles des districts sanitaires de Moussoro, Mao dans les provinces de Barh el gazal et du Kanem", "number": "CHD/PCA201910/PD201914", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 10, "amendments": [], "attachments": [97, 96, 95, 94, 93, 92, 91, 90, 89, 88], "in_amendment": false, "result_links": [20, 21], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 19, 18], "planned_visits": [11], "review_date_prc": "None", "submission_date": "2019-10-25", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [14239], "partner_focal_points": [14], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-09", "reporting_requirements": [], "signed_by_partner_date": "2019-12-10", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 14}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (292, '2020-02-20 16:52:22.432542+00', '2020-02-20 16:52:22.432542+00', '14', 'update', '{"id": 14, "end": "2021-01-31", "frs": [1040], "start": "2019-12-10", "title": "Renforcement de la résilience des communautés et des écoles du canton de Moito, district sanitaire de Bokoro, province de Hadjer-Lamis puis des écoles des districts sanitaires de Moussoro, Mao dans les provinces de Barh el gazal et du Kanem", "number": "CHD/PCA201910/PD201914", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 10, "amendments": [], "attachments": [97, 96, 95, 94, 93, 92, 91, 90, 89, 88], "in_amendment": false, "result_links": [20, 21], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 19, 18], "planned_visits": [11], "review_date_prc": "None", "submission_date": "2019-10-25", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [14239], "partner_focal_points": [14], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-09", "reporting_requirements": [], "signed_by_partner_date": "2019-12-10", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 14}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (294, '2020-02-20 16:53:23.460986+00', '2020-02-20 16:53:23.460986+00', '14', 'update', '{"id": 14, "end": "2021-01-31", "frs": [1040], "start": "2019-12-10", "title": "Renforcement de la résilience des communautés et des écoles du canton de Moito, district sanitaire de Bokoro, province de Hadjer-Lamis puis des écoles des districts sanitaires de Moussoro, Mao dans les provinces de Barh el gazal et du Kanem", "number": "CHD/PCA201910/PD201914", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 10, "amendments": [], "attachments": [97, 96, 95, 94, 93, 92, 91, 90, 89, 88], "in_amendment": false, "result_links": [20, 21], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 19, 18], "planned_visits": [11], "review_date_prc": "None", "submission_date": "2019-10-25", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [14239], "partner_focal_points": [14], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-09", "reporting_requirements": [], "signed_by_partner_date": "2019-12-10", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 14}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (295, '2020-02-20 16:54:17.693439+00', '2020-02-20 16:54:17.693439+00', '14', 'update', '{"id": 14, "end": "2021-01-31", "frs": [1040], "start": "2019-12-10", "title": "Renforcement de la résilience des communautés et des écoles du canton de Moito, district sanitaire de Bokoro, province de Hadjer-Lamis puis des écoles des districts sanitaires de Moussoro, Mao dans les provinces de Barh el gazal et du Kanem", "number": "CHD/PCA201910/PD201914", "status": "draft", "offices": [387], "metadata": {}, "sections": [8], "agreement": 10, "amendments": [], "attachments": [97, 96, 95, 94, 93, 92, 91, 90, 89, 88], "in_amendment": false, "result_links": [20, 21], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 19, 18], "planned_visits": [11], "review_date_prc": "None", "submission_date": "2019-10-25", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [14239], "partner_focal_points": [14], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-09", "reporting_requirements": [], "signed_by_partner_date": "2019-12-10", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 14}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (299, '2020-02-21 13:46:23.313955+00', '2020-02-21 13:46:23.313955+00', '102', 'create', '{"id": 102, "author": 4606, "office": 387, "status": "open", "history": [], "partner": 180, "section": 11, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 50, "engagement": "None", "key_events": [], "assigned_by": 4606, "assigned_to": 4606, "description": "Faire le suivi avec la Section Protection que le DCT de cette activité soit liquider rapidement", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 28, "reference_number": "None", "date_of_completion": "None"}', '{}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (306, '2020-02-24 13:36:20.446631+00', '2020-02-24 13:36:20.446631+00', '8', 'update', '{"id": 8, "end": "2020-09-30", "frs": [1072], "start": "2019-12-10", "title": "Appui au renforcement des capacités des membres des associations des parents d''élèves (APE/AME) en compétences de vie courante et à Bokoro, Mao et Moussoro", "number": "CHD/PCA20194/PD20198", "status": "draft", "offices": [387], "metadata": {}, "sections": [9], "agreement": 4, "amendments": [], "attachments": [36, 35, 34, 33, 32, 31, 30, 29], "in_amendment": false, "result_links": [10, 11], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 19, 18], "planned_visits": [2], "review_date_prc": "2019-12-06", "submission_date": "2019-10-14", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-12-04", "unicef_focal_points": [14044], "partner_focal_points": [4], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-12-09", "reporting_requirements": [], "signed_by_partner_date": "2019-12-10", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 4}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (309, '2020-02-25 11:19:13.36169+00', '2020-02-25 11:19:13.36169+00', '61', 'update', '{"id": 61, "author": 5074, "office": 387, "status": "open", "history": [153, 152, 121], "partner": 74, "section": 11, "category": "None", "comments": [23], "due_date": "2019-12-16", "location": "None", "cp_output": 16, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "Finaliser la cartographie des interventions en protection sociale au niveau des provinces et les partager avec les participants et le ministère en charge du plan", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 151, "reference_number": "CHD/2019/61/APD", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (311, '2020-02-25 11:46:51.603184+00', '2020-02-25 11:46:51.603184+00', '90', 'update', '{"id": 90, "author": 14700, "office": 387, "status": "open", "history": [160, 158], "partner": 302, "section": 2, "category": "None", "comments": [34], "due_date": "2020-12-31", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "-\tEnvoyer deux SMS au 1301 par mois même au cas où il n’y a aucun cas à rapporter. Le contenu du message peut être RAS", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 196, "reference_number": "CHD/2020/90/APD", "date_of_completion": "None"}', '{"comments": {"after": [34], "before": []}}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (313, '2020-02-25 11:47:43.969047+00', '2020-02-25 11:47:43.969047+00', '91', 'update', '{"id": 91, "author": 14700, "office": 391, "status": "open", "history": [312, 159], "partner": 302, "section": 2, "category": "None", "comments": [35], "due_date": "2020-12-31", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "-\tSe connecter au moins deux fois par jour pour consulter la boite de réception des SMS", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 196, "reference_number": "CHD/2020/91/APD", "date_of_completion": "None"}', '{}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (315, '2020-02-25 12:52:03.78204+00', '2020-02-25 12:52:03.78204+00', '107', 'create', '{"id": 107, "author": 12553, "office": 389, "status": "open", "history": [], "partner": 43, "section": 7, "category": "None", "comments": [], "due_date": "2020-02-25", "location": 59, "cp_output": 53, "engagement": "None", "key_events": [], "assigned_by": 12553, "assigned_to": 9542, "description": "Appui Logistique a la section nutrition pour le dechargment et la livaison des ATPE dans les centres de santes, UNA et UNT des regions du Kanem, Lac et BEG", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "reference_number": "CHD/2020/107/APD", "date_of_completion": "None"}', '{}', 12553, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (318, '2020-02-25 13:31:48.291338+00', '2020-02-25 13:31:48.291338+00', '15', 'create', '{"id": 15, "end": "None", "frs": [], "start": "None", "title": "Mobilisation, participation et engagement des femmes et des jeunes filles pour les PFE, pour l’enregistrement de naissance, pour la scolarisation des filles et contre le mariage des enfants", "number": "CHD/SSFA201911", "status": "draft", "offices": [387], "metadata": {}, "sections": [], "agreement": 11, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "SSFA", "contingency_pd": false, "flat_locations": [], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [5056], "partner_focal_points": [15], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": "None", "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (320, '2020-02-25 13:51:17.64877+00', '2020-02-25 13:51:17.64877+00', '90', 'update', '{"id": 90, "author": 14700, "office": 387, "status": "open", "history": [311, 160, 158], "partner": 302, "section": 2, "category": "None", "comments": [34, 36], "due_date": "2020-12-31", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "-\tEnvoyer deux SMS au 1301 par mois même au cas où il n’y a aucun cas à rapporter. Le contenu du message peut être RAS", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 196, "reference_number": "CHD/2020/90/APD", "date_of_completion": "None"}', '{"comments": {"after": [34, 36], "before": [34]}}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (549, '2020-04-15 18:45:39.464277+00', '2020-04-15 18:45:39.464277+00', '17', 'create', '{"id": 17, "end": "None", "start": "None", "status": "draft", "partner": 163, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "SSFA", "partner_manager": "None", "agreement_number": "CHD/SSFA202017", "country_programme": "None", "attached_agreement": "", "authorized_officers": [22], "reference_number_year": 2020, "signed_by_unicef_date": "None", "signed_by_partner_date": "None", "special_conditions_pca": false}', '{}', 7798, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (308, '2020-02-24 14:34:35.638029+00', '2020-02-24 14:34:35.638029+00', '106', 'create', '{"id": 106, "author": 5052, "office": 387, "status": "open", "history": [], "partner": 125, "section": 9, "category": "None", "comments": [], "due_date": "2020-03-15", "location": "None", "cp_output": 33, "engagement": "None", "key_events": [], "assigned_by": 5052, "assigned_to": 5052, "description": "Récupérer la liste des écoles pilotes avec ProQEB afin de lancer le processus d’appel d’offres pour les constructions scolaires.", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 222, "reference_number": "None", "date_of_completion": "None"}', '{}', 5052, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (310, '2020-02-25 11:22:42.921013+00', '2020-02-25 11:22:42.921013+00', '61', 'update', '{"id": 61, "author": 5074, "office": 387, "status": "completed", "history": [309, 153, 152, 121], "partner": 74, "section": 11, "category": "None", "comments": [23], "due_date": "2019-12-16", "location": "None", "cp_output": 16, "engagement": "None", "key_events": ["status_update"], "assigned_by": 5074, "assigned_to": 5074, "description": "Finaliser la cartographie des interventions en protection sociale au niveau des provinces et les partager avec les participants et le ministère en charge du plan", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 151, "reference_number": "CHD/2019/61/APD", "date_of_completion": "2020-02-25 11:22:42.897747+00:00"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2020-02-25 11:22:42.897747+00:00", "before": "None"}}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (312, '2020-02-25 11:47:37.409916+00', '2020-02-25 11:47:37.409916+00', '91', 'update', '{"id": 91, "author": 14700, "office": 391, "status": "open", "history": [159], "partner": 302, "section": 2, "category": "None", "comments": [35], "due_date": "2020-12-31", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "-\tSe connecter au moins deux fois par jour pour consulter la boite de réception des SMS", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 196, "reference_number": "CHD/2020/91/APD", "date_of_completion": "None"}', '{"comments": {"after": [35], "before": []}}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (314, '2020-02-25 11:50:36.866697+00', '2020-02-25 11:50:36.866697+00', '91', 'update', '{"id": 91, "author": 14700, "office": 391, "status": "open", "history": [313, 312, 159], "partner": 302, "section": 2, "category": "None", "comments": [35], "due_date": "2020-12-31", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "-\tSe connecter au moins deux fois par jour pour consulter la boite de réception des SMS", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 196, "reference_number": "CHD/2020/91/APD", "date_of_completion": "None"}', '{}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (316, '2020-02-25 13:26:52.456719+00', '2020-02-25 13:26:52.456719+00', '403', 'update', '{"id": 403, "city": "NDJAMENA REGION DU LAC", "name": "ASSOCIATION DES FEMMES ALLAITANTES", "email": "KERIM_MBODOU@YAHOO.COM", "hidden": false, "rating": "High", "address": "", "blocked": false, "country": "081", "cso_type": "National", "net_ct_cy": "16155.91", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "16155.91", "shared_with": "None", "total_ct_cp": "45320.41", "total_ct_cy": "16155.91", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "99355862 95390936", "total_ct_ytd": "0.00", "staff_members": [], "vendor_number": "2500235282", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [136], "manually_blocked": false, "type_of_assessment": "High Risk Assumed", "last_assessment_date": "2016-08-10", "basis_for_risk_rating": "", "core_values_assessments": [45], "core_values_assessment_date": "2016-06-15", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (319, '2020-02-25 13:35:00.540248+00', '2020-02-25 13:35:00.540248+00', '15', 'update', '{"id": 15, "end": "2020-04-30", "frs": [], "start": "2019-10-01", "title": "Mobilisation, participation et engagement des femmes et des jeunes filles pour les PFE, pour l’enregistrement de naissance, pour la scolarisation des filles et contre le mariage des enfants", "number": "CHD/SSFA201911", "status": "draft", "offices": [387], "metadata": {}, "sections": [2], "agreement": 11, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [22], "document_type": "SSFA", "contingency_pd": false, "flat_locations": [21], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [5056], "partner_focal_points": [15], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": "None", "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{"end": {"after": "2020-04-30", "before": "None"}, "start": {"after": "2019-10-01", "before": "None"}, "sections": {"after": [2], "before": []}, "flat_locations": {"after": [21], "before": []}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (321, '2020-02-25 13:51:33.809427+00', '2020-02-25 13:51:33.809427+00', '90', 'update', '{"id": 90, "author": 14700, "office": 387, "status": "open", "history": [320, 311, 160, 158], "partner": 302, "section": 2, "category": "None", "comments": [34, 36], "due_date": "2020-12-31", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "-\tEnvoyer deux SMS au 1301 par mois même au cas où il n’y a aucun cas à rapporter. Le contenu du message peut être RAS", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 196, "reference_number": "CHD/2020/90/APD", "date_of_completion": "None"}', '{}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (322, '2020-02-25 13:53:24.256949+00', '2020-02-25 13:53:24.256949+00', '90', 'update', '{"id": 90, "author": 14700, "office": 387, "status": "open", "history": [321, 320, 311, 160, 158], "partner": 302, "section": 2, "category": "None", "comments": [34, 36], "due_date": "2020-01-31", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "-\tEnvoyer deux SMS au 1301 par mois même au cas où il n’y a aucun cas à rapporter. Le contenu du message peut être RAS", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 196, "reference_number": "CHD/2020/90/APD", "date_of_completion": "None"}', '{"due_date": {"after": "2020-01-31", "before": "2020-12-31"}}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (323, '2020-02-25 13:54:54.767097+00', '2020-02-25 13:54:54.767097+00', '91', 'update', '{"id": 91, "author": 14700, "office": 391, "status": "open", "history": [314, 313, 312, 159], "partner": 302, "section": 2, "category": "None", "comments": [35], "due_date": "2020-01-31", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "-\tSe connecter au moins deux fois par jour pour consulter la boite de réception des SMS", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 196, "reference_number": "CHD/2020/91/APD", "date_of_completion": "None"}', '{"due_date": {"after": "2020-01-31", "before": "2020-12-31"}}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (324, '2020-02-25 13:56:44.208407+00', '2020-02-25 13:56:44.208407+00', '15', 'update', '{"id": 15, "end": "2020-04-30", "frs": [1058], "start": "2019-10-01", "title": "Mobilisation, participation et engagement des femmes et des jeunes filles pour les PFE, pour l’enregistrement de naissance, pour la scolarisation des filles et contre le mariage des enfants", "number": "CHD/SSFA201911", "status": "draft", "offices": [387], "metadata": {}, "sections": [2], "agreement": 11, "amendments": [], "attachments": [98], "in_amendment": false, "result_links": [22], "document_type": "SSFA", "contingency_pd": false, "flat_locations": [21], "planned_visits": [12, 13], "review_date_prc": "None", "submission_date": "2019-09-03", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [5056], "partner_focal_points": [15], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": "None", "signed_by_unicef_date": "2019-09-24", "reporting_requirements": [], "signed_by_partner_date": "2019-09-26", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 15}', '{"frs": {"after": [1058], "before": []}, "submission_date": {"after": "2019-09-03", "before": "None"}, "unicef_signatory": {"after": 8462, "before": "None"}, "signed_by_unicef_date": {"after": "2019-09-24", "before": "None"}, "signed_by_partner_date": {"after": "2019-09-26", "before": "None"}, "partner_authorized_officer_signatory": {"after": 15, "before": "None"}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (325, '2020-02-25 13:57:06.61387+00', '2020-02-25 13:57:06.61387+00', '91', 'update', '{"id": 91, "author": 14700, "office": 391, "status": "open", "history": [323, 314, 313, 312, 159], "partner": 302, "section": 2, "category": "None", "comments": [35, 37], "due_date": "2020-01-31", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "-\tSe connecter au moins deux fois par jour pour consulter la boite de réception des SMS", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 196, "reference_number": "CHD/2020/91/APD", "date_of_completion": "None"}', '{"comments": {"after": [35, 37], "before": [35]}}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (326, '2020-02-25 13:57:15.751704+00', '2020-02-25 13:57:15.751704+00', '91', 'update', '{"id": 91, "author": 14700, "office": 391, "status": "open", "history": [325, 323, 314, 313, 312, 159], "partner": 302, "section": 2, "category": "None", "comments": [35, 37], "due_date": "2020-01-31", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "-\tSe connecter au moins deux fois par jour pour consulter la boite de réception des SMS", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 196, "reference_number": "CHD/2020/91/APD", "date_of_completion": "None"}', '{}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (327, '2020-02-25 14:03:15.845571+00', '2020-02-25 14:03:15.845571+00', '91', 'update', '{"id": 91, "author": 14700, "office": 391, "status": "open", "history": [326, 325, 323, 314, 313, 312, 159], "partner": 302, "section": 2, "category": "None", "comments": [35, 37], "due_date": "2020-01-31", "location": "None", "cp_output": 22, "engagement": "None", "key_events": [], "assigned_by": 14700, "assigned_to": 14362, "description": "-\tSe connecter au moins deux fois par jour pour consulter la boite de réception des SMS", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 196, "reference_number": "CHD/2020/91/APD", "date_of_completion": "None"}', '{}', 14700, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (328, '2020-02-25 15:19:20.915609+00', '2020-02-25 15:19:20.915609+00', '107', 'update', '{"id": 107, "author": 12553, "office": 389, "status": "open", "history": [315], "partner": 43, "section": 7, "category": "None", "comments": [], "due_date": "2020-02-25", "location": 59, "cp_output": 53, "engagement": "None", "key_events": [], "assigned_by": 12553, "assigned_to": 9542, "description": "Appui Logistique a la section nutrition pour le dechargment et la livaison des ATPE dans les centres de santes, UNA et UNT des regions du Kanem, Lac et BEG", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "reference_number": "CHD/2020/107/APD", "date_of_completion": "None"}', '{}', 9542, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (329, '2020-02-25 15:19:30.179793+00', '2020-02-25 15:19:30.179793+00', '107', 'update', '{"id": 107, "author": 12553, "office": 389, "status": "open", "history": [328, 315], "partner": 43, "section": 7, "category": "None", "comments": [38], "due_date": "2020-02-25", "location": 59, "cp_output": 53, "engagement": "None", "key_events": [], "assigned_by": 12553, "assigned_to": 9542, "description": "Appui Logistique a la section nutrition pour le dechargment et la livaison des ATPE dans les centres de santes, UNA et UNT des regions du Kanem, Lac et BEG", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "reference_number": "CHD/2020/107/APD", "date_of_completion": "None"}', '{}', 9542, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (330, '2020-02-26 08:25:11.875956+00', '2020-02-26 08:25:11.875956+00', '108', 'create', '{"id": 108, "author": 13031, "office": 391, "status": "open", "history": [], "partner": "None", "section": 7, "category": "None", "comments": [], "due_date": "2019-12-15", "location": "None", "cp_output": 32, "engagement": "None", "key_events": [], "assigned_by": 13031, "assigned_to": 13031, "description": "Appuyer la finalisation du rapport global de la mission avec l’équipe de OCHA", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 152, "reference_number": "CHD/2020/108/APD", "date_of_completion": "None"}', '{}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (331, '2020-02-26 08:26:45.824619+00', '2020-02-26 08:26:45.824619+00', '109', 'create', '{"id": 109, "author": 5074, "office": 387, "status": "open", "history": [], "partner": 302, "section": 11, "category": "None", "comments": [], "due_date": "2020-02-25", "location": 22, "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "S’assurer de la prise en compte des informations/données collectées dans le rapport sur la capitalisation des expériences tirées des processus d’élaboration et de la mise en œuvre des PDP et PDC", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "reference_number": "None", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (332, '2020-02-26 08:27:06.812567+00', '2020-02-26 08:27:06.812567+00', '109', 'update', '{"id": 109, "author": 5074, "office": 387, "status": "open", "history": [331], "partner": 302, "section": 11, "category": "None", "comments": [], "due_date": "2020-02-25", "location": 22, "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "S’assurer de la prise en compte des informations/données collectées dans le rapport sur la capitalisation des expériences tirées des processus d’élaboration et de la mise en œuvre des PDP et PDC", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "reference_number": "CHD/2020/109/APD", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (333, '2020-02-26 08:35:11.926685+00', '2020-02-26 08:35:11.926685+00', '110', 'create', '{"id": 110, "author": 5074, "office": 387, "status": "open", "history": [], "partner": 302, "section": 11, "category": "None", "comments": [], "due_date": "2020-02-28", "location": 22, "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "Appuyer la préparation de la réunion de validation du rapport sur la capitalisation des expériences tirées des processus d’élaboration et de la mise en œuvre des PDP et PDC", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "reference_number": "CHD/2020/110/APD", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (334, '2020-02-26 08:35:15.132232+00', '2020-02-26 08:35:15.132232+00', '110', 'update', '{"id": 110, "author": 5074, "office": 387, "status": "open", "history": [333], "partner": 302, "section": 11, "category": "None", "comments": [], "due_date": "2020-02-28", "location": 22, "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "Appuyer la préparation de la réunion de validation du rapport sur la capitalisation des expériences tirées des processus d’élaboration et de la mise en œuvre des PDP et PDC", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "reference_number": "CHD/2020/110/APD", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (335, '2020-02-26 08:38:31.918616+00', '2020-02-26 08:38:31.918616+00', '111', 'create', '{"id": 111, "author": 13031, "office": 391, "status": "open", "history": [], "partner": "None", "section": 7, "category": "None", "comments": [], "due_date": "2020-02-03", "location": "None", "cp_output": 19, "engagement": "None", "key_events": [], "assigned_by": 13031, "assigned_to": 13031, "description": "1.\tOrganiser dans un bref délai la réunion de restitution de l’atelier de planification 2020-2021", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 248, "reference_number": "None", "date_of_completion": "None"}', '{}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (336, '2020-02-26 08:45:54.27054+00', '2020-02-26 08:45:54.27054+00', '111', 'update', '{"id": 111, "author": 13031, "office": 391, "status": "open", "history": [335], "partner": "None", "section": 7, "category": "None", "comments": [], "due_date": "2020-02-03", "location": "None", "cp_output": 19, "engagement": "None", "key_events": [], "assigned_by": 13031, "assigned_to": 13031, "description": "1.\tOrganiser dans un bref délai la réunion de restitution de l’atelier de planification 2020-2021", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 248, "reference_number": "CHD/2020/111/APD", "date_of_completion": "None"}', '{}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (337, '2020-02-26 08:46:03.901016+00', '2020-02-26 08:46:03.901016+00', '111', 'update', '{"id": 111, "author": 13031, "office": 391, "status": "open", "history": [336, 335], "partner": "None", "section": 7, "category": "None", "comments": [39], "due_date": "2020-02-03", "location": "None", "cp_output": 19, "engagement": "None", "key_events": [], "assigned_by": 13031, "assigned_to": 13031, "description": "1.\tOrganiser dans un bref délai la réunion de restitution de l’atelier de planification 2020-2021", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 248, "reference_number": "CHD/2020/111/APD", "date_of_completion": "None"}', '{}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (338, '2020-02-26 08:46:26.248331+00', '2020-02-26 08:46:26.248331+00', '111', 'update', '{"id": 111, "author": 13031, "office": 391, "status": "open", "history": [337, 336, 335], "partner": "None", "section": 7, "category": "None", "comments": [39], "due_date": "2020-02-03", "location": "None", "cp_output": 19, "engagement": "None", "key_events": [], "assigned_by": 13031, "assigned_to": 13031, "description": "1.\tOrganiser dans un bref délai la réunion de restitution de l’atelier de planification 2020-2021", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 248, "reference_number": "CHD/2020/111/APD", "date_of_completion": "None"}', '{}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (356, '2020-03-01 08:36:45.908125+00', '2020-03-01 08:36:45.908125+00', '56', 'update', '{"id": 56, "author": 11672, "office": 387, "status": "open", "history": [98], "partner": 435, "section": 7, "category": "None", "comments": [], "due_date": "2019-12-31", "location": "None", "cp_output": 59, "engagement": "None", "key_events": [], "assigned_by": 11672, "assigned_to": 11672, "description": "Présenter les constats observés sur les ruptures en intrants du PAM dans le district de Mongo", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 10, "reference_number": "CHD/2019/56/APD", "date_of_completion": "None"}', '{}', 11672, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (339, '2020-02-26 08:48:43.320386+00', '2020-02-26 08:48:43.320386+00', '112', 'create', '{"id": 112, "author": 5074, "office": 387, "status": "open", "history": [], "partner": 302, "section": 11, "category": "None", "comments": [], "due_date": "2020-02-25", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "S’assurer de la prise en compte des informations/données collectées dans le rapport sur la capitalisation des expériences tirées des processus d’élaboration et de la mise en œuvre des PDP et PDC", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 226, "reference_number": "CHD/2020/112/APD", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (340, '2020-02-26 08:50:04.962174+00', '2020-02-26 08:50:04.962174+00', '113', 'create', '{"id": 113, "author": 5074, "office": 387, "status": "open", "history": [], "partner": 302, "section": 11, "category": "None", "comments": [], "due_date": "2020-02-28", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "Appuyer la préparation de la réunion de validation du rapport sur la capitalisation des expériences tirées des processus d’élaboration et de la mise en œuvre des PDP et PDC", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 226, "reference_number": "None", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (341, '2020-02-26 09:00:28.328027+00', '2020-02-26 09:00:28.328027+00', '114', 'create', '{"id": 114, "author": 13031, "office": 391, "status": "open", "history": [], "partner": 435, "section": 7, "category": "None", "comments": [], "due_date": "2019-12-31", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 13031, "assigned_to": 12528, "description": "Assurer la mise en œuvre et le suivi des recommandations issues des travaux du groupe sur le PCA WVI_UNICEF", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 112, "reference_number": "None", "date_of_completion": "None"}', '{}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (342, '2020-02-26 09:20:52.25365+00', '2020-02-26 09:20:52.25365+00', '115', 'create', '{"id": 115, "author": 5074, "office": 387, "status": "open", "history": [], "partner": 335, "section": 11, "category": "None", "comments": [], "due_date": "2020-01-06", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "Suivre la mise en place par arrêté du Gouverneur d’un Comité de Pilotage du processus de Révision du Plan de Développement de la Province du Ouaddaï", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 184, "reference_number": "CHD/2020/115/APD", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (343, '2020-02-26 09:31:07.70387+00', '2020-02-26 09:31:07.70387+00', '116', 'create', '{"id": 116, "author": 5074, "office": 387, "status": "open", "history": [], "partner": 335, "section": 11, "category": "None", "comments": [], "due_date": "2020-01-08", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "Assurer le suivi des documents à remplir par la Mairie et le Gouvernorat par rapport à la capitalisation des expériences du PDC Abéché et PDP du Ouaddaï", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 184, "reference_number": "CHD/2020/116/APD", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (344, '2020-02-26 09:56:47.612667+00', '2020-02-26 09:56:47.612667+00', '107', 'update', '{"id": 107, "author": 12553, "office": 389, "status": "open", "history": [329, 328, 315], "partner": 43, "section": 7, "category": "None", "comments": [38], "due_date": "2020-02-25", "location": 59, "cp_output": 53, "engagement": "None", "key_events": [], "assigned_by": 12553, "assigned_to": 9542, "description": "Appui Logistique a la section nutrition pour le dechargment et la livaison des ATPE dans les centres de santes, UNA et UNT des regions du Kanem, Lac et BEG", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "reference_number": "CHD/2020/107/APD", "date_of_completion": "None"}', '{}', 9542, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (345, '2020-02-26 11:42:36.645471+00', '2020-02-26 11:42:36.645471+00', '109', 'update', '{"id": 109, "author": 5074, "office": 387, "status": "open", "history": [332, 331], "partner": 302, "section": 11, "category": "None", "comments": [40], "due_date": "2020-02-25", "location": 22, "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "S’assurer de la prise en compte des informations/données collectées dans le rapport sur la capitalisation des expériences tirées des processus d’élaboration et de la mise en œuvre des PDP et PDC", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "reference_number": "CHD/2020/109/APD", "date_of_completion": "None"}', '{"comments": {"after": [40], "before": []}}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (346, '2020-02-26 11:42:43.092326+00', '2020-02-26 11:42:43.092326+00', '109', 'update', '{"id": 109, "author": 5074, "office": 387, "status": "open", "history": [345, 332, 331], "partner": 302, "section": 11, "category": "None", "comments": [40], "due_date": "2020-02-25", "location": 22, "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "S’assurer de la prise en compte des informations/données collectées dans le rapport sur la capitalisation des expériences tirées des processus d’élaboration et de la mise en œuvre des PDP et PDC", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "reference_number": "CHD/2020/109/APD", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (347, '2020-02-26 11:42:57.398186+00', '2020-02-26 11:42:57.398186+00', '109', 'update', '{"id": 109, "author": 5074, "office": 387, "status": "open", "history": [346, 345, 332, 331], "partner": 302, "section": 11, "category": "None", "comments": [40], "due_date": "2020-02-25", "location": 22, "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "S’assurer de la prise en compte des informations/données collectées dans le rapport sur la capitalisation des expériences tirées des processus d’élaboration et de la mise en œuvre des PDP et PDC", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "reference_number": "CHD/2020/109/APD", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (348, '2020-02-26 11:46:34.912959+00', '2020-02-26 11:46:34.912959+00', '112', 'update', '{"id": 112, "author": 5074, "office": 387, "status": "open", "history": [339], "partner": 302, "section": 11, "category": "None", "comments": [], "due_date": "2020-02-25", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "S’assurer de la prise en compte des informations/données collectées dans le rapport sur la capitalisation des expériences tirées des processus d’élaboration et de la mise en œuvre des PDP et PDC", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 226, "reference_number": "CHD/2020/112/APD", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (349, '2020-02-26 11:46:44.046466+00', '2020-02-26 11:46:44.046466+00', '112', 'update', '{"id": 112, "author": 5074, "office": 387, "status": "open", "history": [348, 339], "partner": 302, "section": 11, "category": "None", "comments": [41], "due_date": "2020-02-25", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "S’assurer de la prise en compte des informations/données collectées dans le rapport sur la capitalisation des expériences tirées des processus d’élaboration et de la mise en œuvre des PDP et PDC", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 226, "reference_number": "CHD/2020/112/APD", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (350, '2020-02-26 11:56:51.007556+00', '2020-02-26 11:56:51.007556+00', '116', 'update', '{"id": 116, "author": 5074, "office": 387, "status": "open", "history": [343], "partner": 335, "section": 11, "category": "None", "comments": [42], "due_date": "2020-01-08", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "Assurer le suivi des documents à remplir par la Mairie et le Gouvernorat par rapport à la capitalisation des expériences du PDC Abéché et PDP du Ouaddaï", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 184, "reference_number": "CHD/2020/116/APD", "date_of_completion": "None"}', '{"comments": {"after": [42], "before": []}}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (351, '2020-02-26 11:56:55.627016+00', '2020-02-26 11:56:55.627016+00', '116', 'update', '{"id": 116, "author": 5074, "office": 387, "status": "open", "history": [350, 343], "partner": 335, "section": 11, "category": "None", "comments": [42], "due_date": "2020-01-08", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "Assurer le suivi des documents à remplir par la Mairie et le Gouvernorat par rapport à la capitalisation des expériences du PDC Abéché et PDP du Ouaddaï", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 184, "reference_number": "CHD/2020/116/APD", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (352, '2020-02-26 11:57:25.978876+00', '2020-02-26 11:57:25.978876+00', '116', 'update', '{"id": 116, "author": 5074, "office": 387, "status": "open", "history": [351, 350, 343], "partner": 335, "section": 11, "category": "None", "comments": [42], "due_date": "2020-01-08", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "Assurer le suivi des documents à remplir par la Mairie et le Gouvernorat par rapport à la capitalisation des expériences du PDC Abéché et PDP du Ouaddaï", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 184, "reference_number": "CHD/2020/116/APD", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (353, '2020-02-29 11:25:17.073865+00', '2020-02-29 11:25:17.073865+00', '112', 'update', '{"id": 112, "author": 5074, "office": 387, "status": "open", "history": [349, 348, 339], "partner": 302, "section": 11, "category": "None", "comments": [41], "due_date": "2020-02-25", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "S’assurer de la prise en compte des informations/données collectées dans le rapport sur la capitalisation des expériences tirées des processus d’élaboration et de la mise en œuvre des PDP et PDC", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 226, "reference_number": "CHD/2020/112/APD", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (354, '2020-02-29 11:33:19.744289+00', '2020-02-29 11:33:19.744289+00', '113', 'update', '{"id": 113, "author": 5074, "office": 387, "status": "open", "history": [340], "partner": 302, "section": 11, "category": "None", "comments": [43], "due_date": "2020-02-28", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "Appuyer la préparation de la réunion de validation du rapport sur la capitalisation des expériences tirées des processus d’élaboration et de la mise en œuvre des PDP et PDC", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 226, "reference_number": "CHD/2020/113/APD", "date_of_completion": "None"}', '{"comments": {"after": [43], "before": []}}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (355, '2020-02-29 11:33:24.485882+00', '2020-02-29 11:33:24.485882+00', '113', 'update', '{"id": 113, "author": 5074, "office": 387, "status": "open", "history": [354, 340], "partner": 302, "section": 11, "category": "None", "comments": [43], "due_date": "2020-02-28", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 5074, "assigned_to": 5074, "description": "Appuyer la préparation de la réunion de validation du rapport sur la capitalisation des expériences tirées des processus d’élaboration et de la mise en œuvre des PDP et PDC", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 226, "reference_number": "CHD/2020/113/APD", "date_of_completion": "None"}', '{}', 5074, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (357, '2020-03-01 08:36:51.942719+00', '2020-03-01 08:36:51.942719+00', '56', 'update', '{"id": 56, "author": 11672, "office": 387, "status": "completed", "history": [356, 98], "partner": 435, "section": 7, "category": "None", "comments": [44], "due_date": "2019-12-31", "location": "None", "cp_output": 59, "engagement": "None", "key_events": ["status_update"], "assigned_by": 11672, "assigned_to": 11672, "description": "Présenter les constats observés sur les ruptures en intrants du PAM dans le district de Mongo", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 10, "reference_number": "CHD/2019/56/APD", "date_of_completion": "2020-03-01 08:36:51.920350+00:00"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2020-03-01 08:36:51.920350+00:00", "before": "None"}}', 11672, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (358, '2020-03-01 08:41:18.679723+00', '2020-03-01 08:41:18.679723+00', '55', 'update', '{"id": 55, "author": 11672, "office": 387, "status": "open", "history": [97], "partner": 435, "section": 7, "category": "None", "comments": [45], "due_date": "2019-11-30", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 11672, "assigned_to": 60199, "description": "Faire le suivi de l''analyse des donnees et la publication du rapport final", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 10, "reference_number": "CHD/2019/55/APD", "date_of_completion": "None"}', '{"comments": {"after": [45], "before": []}}', 11672, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (359, '2020-03-01 08:41:49.08794+00', '2020-03-01 08:41:49.08794+00', '55', 'update', '{"id": 55, "author": 11672, "office": 387, "status": "completed", "history": [358, 97], "partner": 435, "section": 7, "category": "None", "comments": [45], "due_date": "2019-11-30", "location": "None", "cp_output": "None", "engagement": "None", "key_events": ["status_update"], "assigned_by": 11672, "assigned_to": 60199, "description": "Faire le suivi de l''analyse des donnees et la publication du rapport final", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 10, "reference_number": "CHD/2019/55/APD", "date_of_completion": "2020-03-01 08:41:49.065707+00:00"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2020-03-01 08:41:49.065707+00:00", "before": "None"}}', 11672, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (360, '2020-03-02 09:41:18.835026+00', '2020-03-02 09:41:18.835026+00', '74', 'update', '{"id": 74, "author": 12058, "office": 387, "status": "open", "history": [134], "partner": 55, "section": 2, "category": "None", "comments": [46], "due_date": "2020-03-30", "location": "None", "cp_output": 23, "engagement": "None", "key_events": [], "assigned_by": 12058, "assigned_to": 5056, "description": "Développer des accords de longue durée avec quelques radios et télévisions pour la production et la diffusion des émissions", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 179, "reference_number": "CHD/2019/74/APD", "date_of_completion": "None"}', '{"comments": {"after": [46], "before": []}}', 5056, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (361, '2020-03-02 09:59:03.994615+00', '2020-03-02 09:59:03.994615+00', '117', 'create', '{"id": 117, "author": 5056, "office": 387, "status": "open", "history": [], "partner": 448, "section": 2, "category": "None", "comments": [], "due_date": "2020-03-30", "location": "None", "cp_output": 36, "engagement": "None", "key_events": [], "assigned_by": 5056, "assigned_to": 5056, "description": "Mettre des JRC des 10 regions 10 enregistreurs", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 310, "reference_number": "CHD/2020/117/APD", "date_of_completion": "None"}', '{}', 5056, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (362, '2020-03-02 10:01:03.534887+00', '2020-03-02 10:01:03.534887+00', '117', 'update', '{"id": 117, "author": 5056, "office": 387, "status": "open", "history": [361], "partner": 448, "section": 2, "category": "None", "comments": [], "due_date": "2020-03-30", "location": "None", "cp_output": 36, "engagement": "None", "key_events": [], "assigned_by": 5056, "assigned_to": 5056, "description": "Mettre des JRC des 10 regions 10 enregistreurs", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 310, "reference_number": "CHD/2020/117/APD", "date_of_completion": "None"}', '{}', 5056, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (363, '2020-03-02 10:17:05.653998+00', '2020-03-02 10:17:05.653998+00', '117', 'update', '{"id": 117, "author": 5056, "office": 387, "status": "open", "history": [362, 361], "partner": 448, "section": 2, "category": "None", "comments": [47], "due_date": "2020-03-30", "location": "None", "cp_output": 36, "engagement": "None", "key_events": [], "assigned_by": 5056, "assigned_to": 5056, "description": "Mettre a la disposition des JRC des 10 regions 10 enregistreurs", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 310, "reference_number": "CHD/2020/117/APD", "date_of_completion": "None"}', '{"description": {"after": "Mettre a la disposition des JRC des 10 regions 10 enregistreurs", "before": "Mettre des JRC des 10 regions 10 enregistreurs"}}', 5056, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (364, '2020-03-02 15:43:21.877211+00', '2020-03-02 15:43:21.877211+00', '118', 'create', '{"id": 118, "author": 21654, "office": 387, "status": "open", "history": [], "partner": 237, "section": 7, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 32, "engagement": "None", "key_events": [], "assigned_by": 21654, "assigned_to": 11647, "description": "Continuer avec le plaidoyer auprès du PNLP et MSP pour appropriation et intégration des activités des ASC de Goré, Bessao et Mbaibokoum dans la planification nationale du PNLP afin de fournir des intrants (TDR et antipaludiques) nécessaire à la prise en charge communautaires des patient(e)s de plus de cinq (5) ans.", "intervention": 5, "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 217, "reference_number": "CHD/2020/118/APD", "date_of_completion": "None"}', '{}', 21654, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (365, '2020-03-02 15:48:26.801412+00', '2020-03-02 15:48:26.801412+00', '119', 'create', '{"id": 119, "author": 21654, "office": 391, "status": "open", "history": [], "partner": 237, "section": 7, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 19, "engagement": "None", "key_events": [], "assigned_by": 21654, "assigned_to": 13031, "description": "Faire le plaidoyer auprès des MCD (Goré, Bessao, Mbaibokoum) pour renforcer la supervision de proximité des activités de routine en avancée, des centres de santé couverts par les ASC", "intervention": 5, "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 218, "reference_number": "CHD/2020/119/APD", "date_of_completion": "None"}', '{}', 21654, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (366, '2020-03-02 15:49:39.980677+00', '2020-03-02 15:49:39.980677+00', '120', 'create', '{"id": 120, "author": 21654, "office": 387, "status": "open", "history": [], "partner": 237, "section": 7, "category": "None", "comments": [], "due_date": "2020-03-15", "location": "None", "cp_output": 19, "engagement": "None", "key_events": [], "assigned_by": 21654, "assigned_to": 11344, "description": "Soumettre une note au dossier au management pour demande dérogatoire d’approbation de face trimestriel pour régulariser le 1er trimestre 2020 passé sans PCA.", "intervention": 5, "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 219, "reference_number": "CHD/2020/120/APD", "date_of_completion": "None"}', '{}', 21654, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (367, '2020-03-02 15:50:54.189424+00', '2020-03-02 15:50:54.189424+00', '121', 'create', '{"id": 121, "author": 21654, "office": 387, "status": "open", "history": [], "partner": 237, "section": 7, "category": "None", "comments": [], "due_date": "2020-03-15", "location": "None", "cp_output": 19, "engagement": "None", "key_events": [], "assigned_by": 21654, "assigned_to": 11344, "description": "Faire le suivi rapproché pour la signature du PCA dans les meilleurs délais", "intervention": 5, "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 219, "reference_number": "CHD/2020/121/APD", "date_of_completion": "None"}', '{}', 21654, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (368, '2020-03-02 16:37:08.485091+00', '2020-03-02 16:37:08.485091+00', '122', 'create', '{"id": 122, "author": 21654, "office": 387, "status": "open", "history": [], "partner": 433, "section": 7, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 34, "engagement": "None", "key_events": [], "assigned_by": 21654, "assigned_to": 197100, "description": "Louer des véhicules de supervision pour les mettre à la disposition du partenaire au lieu d’inclure la location dans la requête dès les prochaines campagnes de masse", "intervention": 5, "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 215, "reference_number": "CHD/2020/122/APD", "date_of_completion": "None"}', '{}', 21654, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (369, '2020-03-02 16:40:08.481488+00', '2020-03-02 16:40:08.481488+00', '123', 'create', '{"id": 123, "author": 21654, "office": 387, "status": "open", "history": [], "partner": 433, "section": 7, "category": "None", "comments": [], "due_date": "2020-06-30", "location": "None", "cp_output": 28, "engagement": "None", "key_events": [], "assigned_by": 21654, "assigned_to": 8519, "description": "Plaidoyer pour renforcer la capacité opérationnelle du district (logistique/ Chaine de froid, ressources humaines)", "intervention": 5, "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 215, "reference_number": "CHD/2020/123/APD", "date_of_completion": "None"}', '{}', 21654, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (370, '2020-03-02 16:42:52.381808+00', '2020-03-02 16:42:52.381808+00', '124', 'create', '{"id": 124, "author": 21654, "office": 387, "status": "open", "history": [], "partner": 433, "section": 7, "category": "None", "comments": [], "due_date": "2020-06-30", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 21654, "assigned_to": 197100, "description": "Développer une stratégie de communication de masse spécifique pour les milieux urbains pour les campagnes de vaccination de masse", "intervention": 5, "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 215, "reference_number": "CHD/2020/124/APD", "date_of_completion": "None"}', '{}', 21654, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (371, '2020-03-02 17:01:56.849401+00', '2020-03-02 17:01:56.849401+00', '118', 'update', '{"id": 118, "author": 21654, "office": 387, "status": "open", "history": [364], "partner": 237, "section": 7, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 32, "engagement": "None", "key_events": [], "assigned_by": 21654, "assigned_to": 11647, "description": "Continuer avec le plaidoyer auprès du PNLP et MSP pour appropriation et intégration des activités des ASC de Goré, Bessao et Mbaibokoum dans la planification nationale du PNLP afin de fournir des intrants (TDR et antipaludiques) nécessaire à la prise en charge communautaires des patient(e)s de plus de cinq (5) ans.", "intervention": 5, "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 217, "reference_number": "CHD/2020/118/APD", "date_of_completion": "None"}', '{}', 11647, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (372, '2020-03-03 08:31:37.198795+00', '2020-03-03 08:31:37.198795+00', '125', 'create', '{"id": 125, "author": 10616, "office": 387, "status": "open", "history": [], "partner": 401, "section": 2, "category": "None", "comments": [], "due_date": "2020-03-03", "location": "None", "cp_output": 36, "engagement": "None", "key_events": [], "assigned_by": 10616, "assigned_to": 5056, "description": "Amener UAFAT à mener les activités dans les régions reculées lors de la mise en œuvre du prochain projet en 2020.", "intervention": 5, "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 311, "reference_number": "CHD/2020/125/APD", "date_of_completion": "None"}', '{}', 10616, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (374, '2020-03-04 14:50:34.342103+00', '2020-03-04 14:50:34.342103+00', '261', 'update', '{"id": 261, "city": "ABECHE", "name": "APSELPA", "email": "ONGAPSELPA1@HOTMAIL.FR", "hidden": false, "rating": "Medium", "address": "QUARTIER DJAMBALBARH BP 605", "blocked": false, "country": "081", "cso_type": "National", "net_ct_cy": "78269.50", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "0.00", "shared_with": "None", "total_ct_cp": "127153.95", "total_ct_cy": "78269.50", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "66 21 12 10", "total_ct_ytd": "0.00", "staff_members": [], "vendor_number": "2500227539", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [133], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-12-31", "basis_for_risk_rating": "", "core_values_assessments": [29, 455], "core_values_assessment_date": "2017-12-31", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 7798, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (376, '2020-03-04 15:01:08.476725+00', '2020-03-04 15:01:08.476725+00', '13', 'create', '{"id": 13, "end": "2021-12-31", "start": "2019-09-09", "status": "draft", "partner": 261, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 16, "agreement_number": "CHD/PCA201913", "country_programme": 73, "attached_agreement": "", "authorized_officers": [16], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-06", "signed_by_partner_date": "2019-09-09", "special_conditions_pca": false}', '{}', 7798, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (375, '2020-03-04 14:57:51.077292+00', '2020-03-04 14:57:51.077292+00', '261', 'update', '{"id": 261, "city": "ABECHE", "name": "APSELPA", "email": "ONGAPSELPA1@HOTMAIL.FR", "hidden": false, "rating": "Medium", "address": "QUARTIER DJAMBALBARH BP 605", "blocked": false, "country": "081", "cso_type": "National", "net_ct_cy": "78269.50", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "0.00", "shared_with": "None", "total_ct_cp": "127153.95", "total_ct_cy": "78269.50", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "66 21 12 10", "total_ct_ytd": "0.00", "staff_members": [16], "vendor_number": "2500227539", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [133], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2017-12-31", "basis_for_risk_rating": "", "core_values_assessments": [29, 455], "core_values_assessment_date": "2017-12-31", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 7798, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (385, '2020-03-06 08:47:12.134055+00', '2020-03-06 08:47:12.134055+00', '126', 'create', '{"id": 126, "author": 12767, "office": 391, "status": "open", "history": [], "partner": 206, "section": 7, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 32, "engagement": "None", "key_events": [], "assigned_by": 12767, "assigned_to": 12767, "description": "Doter les centres de sante qui n''ont pas de frigo avec les frigos en panneaux de solaires", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 239, "reference_number": "CHD/2020/126/APD", "date_of_completion": "None"}', '{}', 12767, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (386, '2020-03-06 12:57:54.863144+00', '2020-03-06 12:57:54.863144+00', '139', 'update', '{"id": 139, "city": "N DJAMENA", "name": "INTERSOS PROJET UNICEF", "email": "ADMIN.TCHAD@INTERSOS.ORG", "hidden": false, "rating": "Low", "address": "ROUTE DE L AEROPORT", "blocked": false, "country": "081", "cso_type": "International", "net_ct_cy": "157249.51", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "70437.01", "shared_with": "None", "total_ct_cp": "289377.26", "total_ct_cy": "157249.51", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "60034451", "total_ct_ytd": "0.00", "staff_members": [], "vendor_number": "2500218808", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [214], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2015-12-08", "basis_for_risk_rating": "", "core_values_assessments": [310, 449], "core_values_assessment_date": "2019-03-26", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "25174.89"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (388, '2020-03-06 12:59:34.501077+00', '2020-03-06 12:59:34.501077+00', '139', 'update', '{"id": 139, "city": "N DJAMENA", "name": "INTERSOS PROJET UNICEF", "email": "ADMIN.TCHAD@INTERSOS.ORG", "hidden": false, "rating": "Low", "address": "ROUTE DE L AEROPORT", "blocked": false, "country": "081", "cso_type": "International", "net_ct_cy": "157249.51", "agreements": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "70437.01", "shared_with": "None", "total_ct_cp": "289377.26", "total_ct_cy": "157249.51", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "60034451", "total_ct_ytd": "0.00", "staff_members": [18], "vendor_number": "2500218808", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [214], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2015-12-08", "basis_for_risk_rating": "", "core_values_assessments": [310, 449], "core_values_assessment_date": "2019-03-26", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "25174.89"}', '{}', 4606, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (400, '2020-03-07 11:29:37.84076+00', '2020-03-07 11:29:37.84076+00', '127', 'create', '{"id": 127, "author": 24425, "office": 389, "status": "open", "history": [], "partner": 130, "section": 3, "category": "None", "comments": [], "due_date": "2020-02-28", "location": "None", "cp_output": 19, "engagement": "None", "key_events": [], "assigned_by": 24425, "assigned_to": 11514, "description": "Participer aux reunions de Coordination humanitaire;\nParticiper aux reunios Inter-clusters ICC;\nAmeliore la communication sur la chaine d''approvisionnement des intrants avec les partenaires.", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 36, "reference_number": "None", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 24425, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (471, '2020-04-01 10:02:19.528822+00', '2020-04-01 10:02:19.528822+00', '15', 'create', '{"id": 15, "end": "2021-12-31", "start": "2018-06-21", "status": "draft", "partner": 237, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 20, "agreement_number": "CHD/PCA201815", "country_programme": 73, "attached_agreement": "", "authorized_officers": [20], "reference_number_year": 2018, "signed_by_unicef_date": "2018-06-19", "signed_by_partner_date": "2018-06-21", "special_conditions_pca": false}', '{}', 7798, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (377, '2020-03-04 15:03:53.174543+00', '2020-03-04 15:03:53.174543+00', '13', 'update', '{"id": 13, "end": "2021-12-31", "start": "2019-09-09", "status": "draft", "partner": 261, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 16, "agreement_number": "CHD/PCA201913", "country_programme": 73, "attached_agreement": "", "authorized_officers": [16], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-06", "signed_by_partner_date": "2019-09-09", "special_conditions_pca": false}', '{}', 7798, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (378, '2020-03-04 16:29:20.677412+00', '2020-03-04 16:29:20.677412+00', '16', 'create', '{"id": 16, "end": "2020-03-16", "frs": [], "start": "2019-09-17", "title": "Renforcement du système de protection en faveur des enfants affectés par la crise de la Province du Lac, y compris les mouhadjirines.", "number": "CHD/PCA201913/PD201916", "status": "draft", "offices": [389, 387], "metadata": {}, "sections": [10], "agreement": 13, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [21], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [20384, 24195], "partner_focal_points": [16], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (379, '2020-03-04 16:49:33.34767+00', '2020-03-04 16:49:33.34767+00', '16', 'update', '{"id": 16, "end": "2020-03-16", "frs": [], "start": "2019-09-17", "title": "Renforcement du système de protection en faveur des enfants affectés par la crise de la Province du Lac, y compris les mouhadjirines.", "number": "CHD/PCA201913/PD201916", "status": "draft", "offices": [389, 387], "metadata": {}, "sections": [10], "agreement": 13, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [23], "document_type": "PD", "contingency_pd": false, "flat_locations": [21], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [20384, 24195], "partner_focal_points": [16], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (380, '2020-03-04 16:51:23.454812+00', '2020-03-04 16:51:23.454812+00', '16', 'update', '{"id": 16, "end": "2020-03-16", "frs": [], "start": "2019-09-17", "title": "Renforcement du système de protection en faveur des enfants affectés par la crise de la Province du Lac, y compris les mouhadjirines.", "number": "CHD/PCA201913/PD201916", "status": "draft", "offices": [389, 387], "metadata": {}, "sections": [10], "agreement": 13, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [23], "document_type": "PD", "contingency_pd": false, "flat_locations": [21], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [20384, 24195], "partner_focal_points": [16], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (381, '2020-03-04 16:55:41.53023+00', '2020-03-04 16:55:41.53023+00', '16', 'update', '{"id": 16, "end": "2020-03-16", "frs": [], "start": "2019-09-17", "title": "Renforcement du système de protection en faveur des enfants affectés par la crise de la Province du Lac, y compris les mouhadjirines.", "number": "CHD/PCA201913/PD201916", "status": "draft", "offices": [389, 387], "metadata": {}, "sections": [10], "agreement": 13, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [23], "document_type": "PD", "contingency_pd": false, "flat_locations": [21], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [20384, 24195], "partner_focal_points": [16], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (389, '2020-03-06 13:38:10.949917+00', '2020-03-06 13:38:10.949917+00', '14', 'create', '{"id": 14, "end": "2021-12-31", "start": "2019-06-14", "status": "draft", "partner": 139, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 19, "agreement_number": "CHD/PCA201914", "country_programme": 73, "attached_agreement": "", "authorized_officers": [19], "reference_number_year": 2019, "signed_by_unicef_date": "2019-06-14", "signed_by_partner_date": "2019-05-31", "special_conditions_pca": false}', '{}', 4606, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (401, '2020-03-12 08:40:56.447872+00', '2020-03-12 08:40:56.447872+00', '128', 'create', '{"id": 128, "author": 12059, "office": 391, "status": "open", "history": [], "partner": "None", "section": 8, "category": "None", "comments": [], "due_date": "2020-06-30", "location": "None", "cp_output": 39, "engagement": "None", "key_events": [], "assigned_by": 12059, "assigned_to": 13512, "description": "Rendre concret l''intersectorialite en integrant la formation sur les outils EAHMS pour les enseignants et les animateurs pedagogiques", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 204, "reference_number": "CHD/2020/128/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 12059, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (382, '2020-03-04 17:39:22.148881+00', '2020-03-04 17:39:22.148881+00', '16', 'update', '{"id": 16, "end": "2020-03-16", "frs": [1061], "start": "2019-09-17", "title": "Renforcement du système de protection en faveur des enfants affectés par la crise de la Province du Lac, y compris les mouhadjirines.", "number": "CHD/PCA201913/PD201916", "status": "draft", "offices": [389, 387], "metadata": {}, "sections": [10], "agreement": 13, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [23], "document_type": "PD", "contingency_pd": false, "flat_locations": [21], "planned_visits": [14], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": 3701, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [20384, 24195], "partner_focal_points": [16], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-06", "reporting_requirements": [], "signed_by_partner_date": "2019-09-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{"frs": {"after": [1061], "before": []}, "unicef_signatory": {"after": 3701, "before": "None"}, "signed_by_unicef_date": {"after": "2019-09-06", "before": "None"}, "signed_by_partner_date": {"after": "2019-09-09", "before": "None"}, "partner_authorized_officer_signatory": {"after": 16, "before": "None"}}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (383, '2020-03-04 17:40:15.274428+00', '2020-03-04 17:40:15.274428+00', '16', 'update', '{"id": 16, "end": "2020-03-16", "frs": [1061], "start": "2019-09-17", "title": "Renforcement du système de protection en faveur des enfants affectés par la crise de la Province du Lac, y compris les mouhadjirines.", "number": "CHD/PCA201913/PD201916", "status": "draft", "offices": [389, 387], "metadata": {}, "sections": [10], "agreement": 13, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [23], "document_type": "PD", "contingency_pd": false, "flat_locations": [21], "planned_visits": [14], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": 3701, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [20384, 24195], "partner_focal_points": [16], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-06", "reporting_requirements": [], "signed_by_partner_date": "2019-09-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (384, '2020-03-04 17:46:36.824814+00', '2020-03-04 17:46:36.824814+00', '16', 'update', '{"id": 16, "end": "2020-03-16", "frs": [1061], "start": "2019-09-17", "title": "Renforcement du système de protection en faveur des enfants affectés par la crise de la Province du Lac, y compris les mouhadjirines.", "number": "CHD/PCA201913/PD201916", "status": "draft", "offices": [389, 387], "metadata": {}, "sections": [10], "agreement": 13, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [23], "document_type": "PD", "contingency_pd": false, "flat_locations": [21], "planned_visits": [14], "review_date_prc": "None", "submission_date": "2019-09-03", "termination_doc": "", "population_focus": "None", "unicef_signatory": 3701, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [20384, 24195], "partner_focal_points": [16], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-06", "reporting_requirements": [], "signed_by_partner_date": "2019-09-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{"submission_date": {"after": "2019-09-03", "before": "None"}}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (402, '2020-03-13 13:26:44.770476+00', '2020-03-13 13:26:44.770476+00', '127', 'update', '{"id": 127, "author": 24425, "office": 389, "status": "open", "history": [400], "partner": 130, "section": 3, "category": "None", "comments": [49], "due_date": "2020-02-28", "location": "None", "cp_output": 19, "engagement": "None", "key_events": [], "assigned_by": 24425, "assigned_to": 11514, "description": "Participer aux reunions de Coordination humanitaire;\nParticiper aux reunios Inter-clusters ICC;\nAmeliore la communication sur la chaine d''approvisionnement des intrants avec les partenaires.", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 36, "reference_number": "CHD/2020/127/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [49], "before": []}}', 24425, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (403, '2020-03-13 13:31:16.050248+00', '2020-03-13 13:31:16.050248+00', '127', 'update', '{"id": 127, "author": 24425, "office": 389, "status": "open", "history": [402, 400], "partner": 130, "section": 3, "category": "None", "comments": [49], "due_date": "2020-02-28", "location": "None", "cp_output": 19, "engagement": "None", "key_events": [], "assigned_by": 24425, "assigned_to": 11514, "description": "Participer aux reunions de Coordination humanitaire;\nParticiper aux reunios Inter-clusters ICC;\nAmeliore la communication sur la chaine d''approvisionnement des intrants avec les partenaires.", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 36, "reference_number": "CHD/2020/127/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 24425, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (404, '2020-03-15 14:29:24.210526+00', '2020-03-15 14:29:24.210526+00', '129', 'create', '{"id": 129, "author": 13372, "office": 391, "status": "open", "history": [], "partner": 139, "section": 17, "category": "None", "comments": [], "due_date": "2020-03-20", "location": "None", "cp_output": 52, "engagement": "None", "key_events": [], "assigned_by": 13372, "assigned_to": 9984, "description": "1.\tDemander l’appui d’un ingénieur du bureau de Ndjamena pour la réception définitive des EAE prévue pour fin mars 2020 par le partenaire.", "intervention": 16, "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 287, "reference_number": "CHD/2020/129/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13372, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (391, '2020-03-06 14:05:35.004378+00', '2020-03-06 14:05:35.004378+00', '18', 'create', '{"id": 18, "end": "2020-01-09", "frs": [], "start": "2019-06-14", "title": "Renforcement de la réponse de protection de l’enfance pour les enfants affectés par la crise centrafricaine", "number": "CHD/PCA201914/HPD201918", "status": "draft", "offices": [387], "metadata": {}, "sections": [10], "agreement": 14, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "HPD", "contingency_pd": false, "flat_locations": [4], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [5053], "partner_focal_points": [19], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (392, '2020-03-06 14:20:40.393995+00', '2020-03-06 14:20:40.393995+00', '18', 'update', '{"id": 18, "end": "2020-01-09", "frs": [], "start": "2019-06-14", "title": "Renforcement de la réponse de protection de l’enfance pour les enfants affectés par la crise centrafricaine", "number": "CHD/PCA201914/HPD201918", "status": "draft", "offices": [387], "metadata": {}, "sections": [10], "agreement": 14, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [24], "document_type": "HPD", "contingency_pd": false, "flat_locations": [4], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [5053], "partner_focal_points": [19], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (393, '2020-03-06 14:33:20.33599+00', '2020-03-06 14:33:20.33599+00', '18', 'update', '{"id": 18, "end": "2020-01-09", "frs": [], "start": "2019-06-14", "title": "Renforcement de la réponse de protection de l’enfance pour les enfants affectés par la crise centrafricaine", "number": "CHD/PCA201914/HPD201918", "status": "draft", "offices": [387], "metadata": {}, "sections": [10], "agreement": 14, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [24], "document_type": "HPD", "contingency_pd": false, "flat_locations": [4], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [5053], "partner_focal_points": [19], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (394, '2020-03-06 14:51:53.556237+00', '2020-03-06 14:51:53.556237+00', '18', 'update', '{"id": 18, "end": "2020-01-09", "frs": [1034, 1063], "start": "2019-06-14", "title": "Renforcement de la réponse de protection de l’enfance pour les enfants affectés par la crise centrafricaine", "number": "CHD/PCA201914/HPD201918", "status": "draft", "offices": [387], "metadata": {}, "sections": [10], "agreement": 14, "amendments": [], "attachments": [119, 118, 117, 116, 115, 114, 113, 112, 111, 110, 109, 108, 106, 105, 104, 103], "in_amendment": false, "result_links": [24], "document_type": "HPD", "contingency_pd": false, "flat_locations": [4], "planned_visits": [15], "review_date_prc": "None", "submission_date": "2019-02-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-02-11", "unicef_focal_points": [5053], "partner_focal_points": [19], "signed_pd_attachment": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [], "signed_by_partner_date": "2019-05-21", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 19}', '{"frs": {"after": [1034, 1063], "before": []}, "submission_date": {"after": "2019-02-11", "before": "None"}, "unicef_signatory": {"after": 8462, "before": "None"}, "submission_date_prc": {"after": "2019-02-11", "before": "None"}, "signed_by_unicef_date": {"after": "2019-05-21", "before": "None"}, "signed_by_partner_date": {"after": "2019-05-21", "before": "None"}, "partner_authorized_officer_signatory": {"after": 19, "before": "None"}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (395, '2020-03-06 15:01:07.880104+00', '2020-03-06 15:01:07.880104+00', '18', 'update', '{"id": 18, "end": "2020-01-09", "frs": [1034, 1063], "start": "2019-06-14", "title": "Renforcement de la réponse de protection de l’enfance pour les enfants affectés par la crise centrafricaine", "number": "CHD/PCA201914/HPD201918", "status": "active", "offices": [387], "metadata": {}, "sections": [10], "agreement": 14, "amendments": [], "attachments": [119, 118, 117, 116, 115, 114, 113, 112, 111, 110, 109, 108, 106, 105, 104, 103], "in_amendment": false, "result_links": [24], "document_type": "HPD", "contingency_pd": false, "flat_locations": [4], "planned_visits": [15], "review_date_prc": "None", "submission_date": "2019-02-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-02-11", "unicef_focal_points": [5053], "partner_focal_points": [19], "signed_pd_attachment": [617], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [], "signed_by_partner_date": "2019-05-21", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 19}', '{"status": {"after": "active", "before": "ended"}}', 1657, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (396, '2020-03-06 15:37:45.520969+00', '2020-03-06 15:37:45.520969+00', '18', 'update', '{"id": 18, "end": "2020-01-09", "frs": [1034, 1063], "start": "2019-06-14", "title": "Renforcement de la réponse de protection de l’enfance pour les enfants affectés par la crise centrafricaine", "number": "CHD/PCA201914/HPD201918-1", "status": "active", "offices": [387], "metadata": {}, "sections": [10], "agreement": 14, "amendments": [3], "attachments": [121, 120, 119, 118, 117, 116, 115, 114, 113, 112, 111, 110, 109, 108, 106, 105, 104, 103], "in_amendment": true, "result_links": [24], "document_type": "HPD", "contingency_pd": false, "flat_locations": [4], "planned_visits": [15], "review_date_prc": "None", "submission_date": "2019-02-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-02-11", "unicef_focal_points": [5053], "partner_focal_points": [19], "signed_pd_attachment": [617], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [], "signed_by_partner_date": "2019-05-21", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 19}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (397, '2020-03-06 15:42:02.962187+00', '2020-03-06 15:42:02.962187+00', '18', 'update', '{"id": 18, "end": "2020-01-31", "frs": [1034, 1063], "start": "2019-06-14", "title": "Renforcement de la réponse de protection de l’enfance pour les enfants affectés par la crise centrafricaine", "number": "CHD/PCA201914/HPD201918-1", "status": "active", "offices": [387], "metadata": {}, "sections": [10], "agreement": 14, "amendments": [3], "attachments": [121, 120, 119, 118, 117, 116, 115, 114, 113, 112, 111, 110, 109, 108, 106, 105, 104, 103], "in_amendment": true, "result_links": [24], "document_type": "HPD", "contingency_pd": false, "flat_locations": [4], "planned_visits": [15], "review_date_prc": "None", "submission_date": "2019-02-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-02-11", "unicef_focal_points": [5053], "partner_focal_points": [19], "signed_pd_attachment": [617], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [], "signed_by_partner_date": "2019-05-21", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 19}', '{"end": {"after": "2020-01-31", "before": "2020-01-09"}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (398, '2020-03-06 15:47:38.350276+00', '2020-03-06 15:47:38.350276+00', '18', 'update', '{"id": 18, "end": "2020-01-31", "frs": [1034, 1063], "start": "2019-06-14", "title": "Renforcement de la réponse de protection de l’enfance pour les enfants affectés par la crise centrafricaine", "number": "CHD/PCA201914/HPD201918-1", "status": "active", "offices": [387], "metadata": {}, "sections": [10], "agreement": 14, "amendments": [3], "attachments": [122, 121, 120, 119, 118, 117, 116, 115, 114, 113, 112, 111, 110, 109, 108, 106, 105, 104, 103], "in_amendment": true, "result_links": [24], "document_type": "HPD", "contingency_pd": false, "flat_locations": [4], "planned_visits": [15], "review_date_prc": "None", "submission_date": "2019-02-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-02-11", "unicef_focal_points": [5053], "partner_focal_points": [19], "signed_pd_attachment": [617], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [], "signed_by_partner_date": "2019-05-21", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 19}', '{}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (399, '2020-03-06 15:47:48.673932+00', '2020-03-06 15:47:48.673932+00', '18', 'update', '{"id": 18, "end": "2020-01-31", "frs": [1034, 1063], "start": "2019-06-14", "title": "Renforcement de la réponse de protection de l’enfance pour les enfants affectés par la crise centrafricaine", "number": "CHD/PCA201914/HPD201918-1", "status": "active", "offices": [387], "metadata": {}, "sections": [10], "agreement": 14, "amendments": [3], "attachments": [122, 121, 120, 119, 118, 117, 116, 115, 114, 113, 112, 111, 110, 109, 108, 106, 105, 104, 103], "in_amendment": false, "result_links": [24], "document_type": "HPD", "contingency_pd": false, "flat_locations": [4], "planned_visits": [15], "review_date_prc": "None", "submission_date": "2019-02-11", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-02-11", "unicef_focal_points": [5053], "partner_focal_points": [19], "signed_pd_attachment": [617], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-21", "reporting_requirements": [], "signed_by_partner_date": "2019-05-21", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 19}', '{"in_amendment": {"after": false, "before": true}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (405, '2020-03-15 14:33:16.685369+00', '2020-03-15 14:33:16.685369+00', '130', 'create', '{"id": 130, "author": 13372, "office": 391, "status": "open", "history": [], "partner": 139, "section": 10, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 52, "engagement": "None", "key_events": [], "assigned_by": 13372, "assigned_to": 13372, "description": "2.\tire", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 287, "reference_number": "CHD/2020/130/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13372, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (406, '2020-03-16 08:44:05.705742+00', '2020-03-16 08:44:05.705742+00', '131', 'create', '{"id": 131, "author": 14616, "office": 390, "status": "open", "history": [], "partner": "None", "section": 9, "category": "None", "comments": [], "due_date": "2019-10-30", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 14616, "assigned_to": 14616, "description": "Former les autres collegues sur etools module Trip management", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 66, "reference_number": "CHD/2020/131/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 14616, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (407, '2020-03-16 08:54:33.335503+00', '2020-03-16 08:54:33.335503+00', '132', 'create', '{"id": 132, "author": 14616, "office": 390, "status": "open", "history": [], "partner": 125, "section": 9, "category": "None", "comments": [], "due_date": "2019-10-27", "location": "None", "cp_output": 12, "engagement": "None", "key_events": [], "assigned_by": 14616, "assigned_to": 14616, "description": "Mobiliser les APE a appuyer la scolarisation des enfants.", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 83, "reference_number": "CHD/2020/132/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 14616, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (408, '2020-03-16 09:01:58.463551+00', '2020-03-16 09:01:58.463551+00', '133', 'create', '{"id": 133, "author": 14616, "office": 387, "status": "open", "history": [], "partner": "None", "section": 9, "category": "None", "comments": [], "due_date": "2019-12-31", "location": "None", "cp_output": 33, "engagement": "None", "key_events": [], "assigned_by": 14616, "assigned_to": 11719, "description": "Renforcer la mobilisation des ressources en faveur des enfants en besoins spécifiques", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 136, "reference_number": "CHD/2020/133/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 14616, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (409, '2020-03-16 10:41:19.886014+00', '2020-03-16 10:41:19.886014+00', '134', 'create', '{"id": 134, "author": 14006, "office": 387, "status": "open", "history": [], "partner": 298, "section": 10, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 52, "engagement": "None", "key_events": [], "assigned_by": 14006, "assigned_to": 9109, "description": "Encourager la section Protection de l’Enfant à rétablir la collaboration avec le partenaire IHDL", "intervention": 18, "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 17, "reference_number": "CHD/2020/134/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 14006, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (410, '2020-03-16 10:47:40.713013+00', '2020-03-16 10:47:40.713013+00', '135', 'create', '{"id": 135, "author": 14006, "office": 387, "status": "open", "history": [], "partner": 298, "section": 10, "category": "None", "comments": [], "due_date": "2019-12-31", "location": "None", "cp_output": 52, "engagement": "None", "key_events": [], "assigned_by": 14006, "assigned_to": 9109, "description": "Faire une clarification avec INTERSOS afin de revoir les réalisations des travaux quand il n’existe pas dans les documents les spécifications qui pourraient orienter le travail.", "intervention": 18, "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 17, "reference_number": "CHD/2020/135/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 14006, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (411, '2020-03-16 11:00:19.11852+00', '2020-03-16 11:00:19.11852+00', '136', 'create', '{"id": 136, "author": 14006, "office": 391, "status": "open", "history": [], "partner": "None", "section": 10, "category": "None", "comments": [], "due_date": "2019-12-31", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 14006, "assigned_to": 13372, "description": "Faire le suivi des activités d’INTERSOS pour s’assurer que cela est conforme à l’accord de partenariat", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 17, "reference_number": "CHD/2020/136/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 14006, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (412, '2020-03-16 11:06:30.503338+00', '2020-03-16 11:06:30.503338+00', '137', 'create', '{"id": 137, "author": 14006, "office": 387, "status": "open", "history": [], "partner": 88, "section": 8, "category": "None", "comments": [], "due_date": "2019-12-31", "location": "None", "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 14006, "assigned_to": 11399, "description": "Envoyer une lettre a SECADEV pour prendre les mesures afin d’achever les travaux dans les sites de Don, Békan et Bédangkoussang", "intervention": 18, "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 17, "reference_number": "CHD/2020/137/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 14006, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (413, '2020-03-16 16:06:42.543803+00', '2020-03-16 16:06:42.543803+00', '48', 'update', '{"id": 48, "author": 11859, "office": 391, "status": "open", "history": [84], "partner": 48, "section": 7, "category": "None", "comments": [50], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Instruire les RCS de Bodo-MSP et de Miandoum (DS Doba)de doubler le nombre de séances de vaccination en strategie fixe", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "reference_number": "CHD/2019/48/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [50], "before": []}}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (414, '2020-03-16 16:06:50.014373+00', '2020-03-16 16:06:50.014373+00', '48', 'update', '{"id": 48, "author": 11859, "office": 391, "status": "open", "history": [413, 84], "partner": 48, "section": 7, "category": "None", "comments": [50], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Instruire les RCS de Bodo-MSP et de Miandoum (DS Doba)de doubler le nombre de séances de vaccination en strategie fixe", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "reference_number": "CHD/2019/48/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (472, '2020-04-01 10:03:50.546444+00', '2020-04-01 10:03:50.546444+00', '15', 'update', '{"id": 15, "end": "2021-12-31", "start": "2018-06-21", "status": "draft", "partner": 237, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 20, "agreement_number": "CHD/PCA201815", "country_programme": 73, "attached_agreement": "", "authorized_officers": [20], "reference_number_year": 2018, "signed_by_unicef_date": "2018-06-19", "signed_by_partner_date": "2018-06-21", "special_conditions_pca": false}', '{}', 7798, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (415, '2020-03-16 16:09:35.690171+00', '2020-03-16 16:09:35.690171+00', '49', 'update', '{"id": 49, "author": 11859, "office": 391, "status": "open", "history": [85], "partner": 48, "section": 7, "category": "None", "comments": [51], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Instruire les RCS a preparer les séances de vaccination avec les vaccinateurs et les ASC et evaluer avec eux chaque séance de vaccination realisee (degree d''atteinte de la cible attendee, perdus de vue a rechercher, etc.)", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "reference_number": "CHD/2019/49/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [51], "before": []}}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (416, '2020-03-16 16:09:42.781475+00', '2020-03-16 16:09:42.781475+00', '49', 'update', '{"id": 49, "author": 11859, "office": 391, "status": "completed", "history": [415, 85], "partner": 48, "section": 7, "category": "None", "comments": [51], "due_date": "2019-11-30", "location": "None", "cp_output": 35, "engagement": "None", "key_events": ["status_update"], "assigned_by": 11859, "assigned_to": 11859, "description": "Instruire les RCS a preparer les séances de vaccination avec les vaccinateurs et les ASC et evaluer avec eux chaque séance de vaccination realisee (degree d''atteinte de la cible attendee, perdus de vue a rechercher, etc.)", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 125, "reference_number": "CHD/2019/49/APD", "date_of_completion": "2020-03-16 16:09:42.724141+00:00", "monitoring_activity": "None"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2020-03-16 16:09:42.724141+00:00", "before": "None"}}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (417, '2020-03-16 16:12:51.240087+00', '2020-03-16 16:12:51.240087+00', '17', 'update', '{"id": 17, "author": 12132, "office": 391, "status": "open", "history": [38, 37, 36], "partner": 187, "section": 3, "category": "None", "comments": [52], "due_date": "2019-10-31", "location": 22, "cp_output": 29, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 11859, "description": "1.\tRenforcer les activités de supervision formative des prestataires et des ASC et celles d’encadrement des deux (02) mobilisateurs communautaires au profit des activités communautaires", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": "None", "reference_number": "CHD/2019/17/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [52], "before": []}}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (418, '2020-03-16 16:12:58.963198+00', '2020-03-16 16:12:58.963198+00', '17', 'update', '{"id": 17, "author": 12132, "office": 391, "status": "open", "history": [417, 38, 37, 36], "partner": 187, "section": 3, "category": "None", "comments": [52], "due_date": "2019-10-31", "location": 22, "cp_output": 29, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 11859, "description": "1.\tRenforcer les activités de supervision formative des prestataires et des ASC et celles d’encadrement des deux (02) mobilisateurs communautaires au profit des activités communautaires", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": "None", "reference_number": "CHD/2019/17/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (419, '2020-03-16 16:16:09.08168+00', '2020-03-16 16:16:09.08168+00', '92', 'update', '{"id": 92, "author": 12132, "office": 391, "status": "open", "history": [177], "partner": 187, "section": 3, "category": "None", "comments": [53], "due_date": "2020-02-28", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 11859, "description": "1.\tSuivre avec la DSP/LOC et les districts l’approvisionnement rapide des centres de santé en cartes de vaccination pour faciliter un meilleur suivi personnalisé des enfants de 0-59 mois sur l’utilisation des services de vaccination sans perdre de vue le carnet de la femme enceinte pour le suivi des CPN.", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 193, "reference_number": "CHD/2020/92/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [53], "before": []}}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (420, '2020-03-16 16:16:13.916955+00', '2020-03-16 16:16:13.916955+00', '92', 'update', '{"id": 92, "author": 12132, "office": 391, "status": "completed", "history": [419, 177], "partner": 187, "section": 3, "category": "None", "comments": [53], "due_date": "2020-02-28", "location": "None", "cp_output": 14, "engagement": "None", "key_events": ["status_update"], "assigned_by": 12132, "assigned_to": 11859, "description": "1.\tSuivre avec la DSP/LOC et les districts l’approvisionnement rapide des centres de santé en cartes de vaccination pour faciliter un meilleur suivi personnalisé des enfants de 0-59 mois sur l’utilisation des services de vaccination sans perdre de vue le carnet de la femme enceinte pour le suivi des CPN.", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 193, "reference_number": "CHD/2020/92/APD", "date_of_completion": "2020-03-16 16:16:13.834009+00:00", "monitoring_activity": "None"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2020-03-16 16:16:13.834009+00:00", "before": "None"}}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (421, '2020-03-16 16:19:00.837585+00', '2020-03-16 16:19:00.837585+00', '21', 'update', '{"id": 21, "author": 12132, "office": 391, "status": "open", "history": [45, 44], "partner": 187, "section": 3, "category": "None", "comments": [54], "due_date": "2019-11-29", "location": 22, "cp_output": 29, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 11859, "description": "Renforcer l’offre de services de qualité en appuyer la DSP/LOC, les 2 districts et les 2 centres de santé à adopter un système efficace d’approvisionnement en vaccins, cartes de vaccination, médicaments essentiels et en registre d’enregistrement des naissances ainsi que l’organisation des services", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "reference_number": "CHD/2019/21/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [54], "before": []}}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (422, '2020-03-16 16:19:05.849555+00', '2020-03-16 16:19:05.849555+00', '21', 'update', '{"id": 21, "author": 12132, "office": 391, "status": "completed", "history": [421, 45, 44], "partner": 187, "section": 3, "category": "None", "comments": [54], "due_date": "2019-11-29", "location": 22, "cp_output": 29, "engagement": "None", "key_events": ["status_update"], "assigned_by": 12132, "assigned_to": 11859, "description": "Renforcer l’offre de services de qualité en appuyer la DSP/LOC, les 2 districts et les 2 centres de santé à adopter un système efficace d’approvisionnement en vaccins, cartes de vaccination, médicaments essentiels et en registre d’enregistrement des naissances ainsi que l’organisation des services", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "reference_number": "CHD/2019/21/APD", "date_of_completion": "2020-03-16 16:19:05.794395+00:00", "monitoring_activity": "None"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2020-03-16 16:19:05.794395+00:00", "before": "None"}}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (423, '2020-03-17 14:09:44.436113+00', '2020-03-17 14:09:44.436113+00', '63', 'update', '{"id": 63, "author": 4606, "office": 387, "status": "open", "history": [123], "partner": 74, "section": 11, "category": "None", "comments": [55], "due_date": "2020-02-29", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 4606, "assigned_to": 4606, "description": "Faire le suivi avec les Sections / Unités afin de contacter tous les partenaires de la société civile nationale à s’enregistrer sur la Portail des Partenaires des Nations Unies (UNPP)", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 73, "reference_number": "CHD/2019/63/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [55], "before": []}}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (424, '2020-03-17 14:09:48.275279+00', '2020-03-17 14:09:48.275279+00', '63', 'update', '{"id": 63, "author": 4606, "office": 387, "status": "open", "history": [423, 123], "partner": 74, "section": 11, "category": "None", "comments": [55], "due_date": "2020-02-29", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 4606, "assigned_to": 4606, "description": "Faire le suivi avec les Sections / Unités afin de contacter tous les partenaires de la société civile nationale à s’enregistrer sur la Portail des Partenaires des Nations Unies (UNPP)", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 73, "reference_number": "CHD/2019/63/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (425, '2020-03-17 14:11:15.325828+00', '2020-03-17 14:11:15.325828+00', '100', 'update', '{"id": 100, "author": 4606, "office": 387, "status": "open", "history": [301, 297], "partner": 315, "section": 11, "category": "None", "comments": [56], "due_date": "2020-02-29", "location": "None", "cp_output": 50, "engagement": "None", "key_events": [], "assigned_by": 4606, "assigned_to": 4606, "description": "Faire le suivi avec le Section Protection pour que le DCT de cette activité soit liquidé rapidement", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 27, "reference_number": "CHD/2020/100/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [56], "before": []}}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (426, '2020-03-19 14:22:02.299064+00', '2020-03-19 14:22:02.299064+00', '138', 'create', '{"id": 138, "author": 4606, "office": 387, "status": "open", "history": [], "partner": 335, "section": 11, "category": "None", "comments": [], "due_date": "2020-04-30", "location": "None", "cp_output": 19, "engagement": "None", "key_events": [], "assigned_by": 4606, "assigned_to": 4606, "description": "Suivre avec le bureau de zone d’Abéché la liquidation des DCT de la revue annuelle 2019 du partenaire", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 262, "reference_number": "CHD/2020/138/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (427, '2020-03-19 14:23:10.72451+00', '2020-03-19 14:23:10.72451+00', '139', 'create', '{"id": 139, "author": 4606, "office": 387, "status": "open", "history": [], "partner": 335, "section": 11, "category": "None", "comments": [], "due_date": "2020-05-31", "location": "None", "cp_output": 19, "engagement": "None", "key_events": [], "assigned_by": 4606, "assigned_to": 4606, "description": "Suivre avec le bureau de zone d’Abéché pour que le partenaire soit inclus parmi les participants pour la prochaine formation HACT des partenaires", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 262, "reference_number": "CHD/2020/139/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (428, '2020-03-19 19:17:01.379635+00', '2020-03-19 19:17:01.379635+00', '140', 'create', '{"id": 140, "author": 60199, "office": 387, "status": "open", "history": [], "partner": 174, "section": 7, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 55, "engagement": "None", "key_events": [], "assigned_by": 60199, "assigned_to": 60199, "description": "Suivre la réalisation effective d''une évaluation dans les centres de santé de Mongo par ASRADD pour les besoins de Baseline de l''accord à venir", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 211, "reference_number": "CHD/2020/140/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 60199, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (429, '2020-03-20 13:12:56.830986+00', '2020-03-20 13:12:56.830986+00', '141', 'create', '{"id": 141, "author": 11859, "office": 387, "status": "open", "history": [], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2020-04-15", "location": "None", "cp_output": 32, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11344, "description": "Envoyer les vélos prévus pour les ASC et les motos .les animateurs communautaires", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 315, "reference_number": "CHD/2020/141/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (430, '2020-03-20 13:18:33.354182+00', '2020-03-20 13:18:33.354182+00', '142', 'create', '{"id": 142, "author": 11859, "office": 391, "status": "open", "history": [], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2020-03-30", "location": "None", "cp_output": 32, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Demander au Délégué sanitaire d’envoyer les frais de carburant de l’animateur communautaire de Krim-Krim", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 315, "reference_number": "CHD/2020/142/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (431, '2020-03-20 13:20:10.859867+00', '2020-03-20 13:20:10.859867+00', '143', 'create', '{"id": 143, "author": 11859, "office": 391, "status": "open", "history": [], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2020-03-09", "location": "None", "cp_output": 32, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Demander au MCD de Benoye d’approvisionner le CS en seringues AB BCG et de 0.5ml et a celui de Krim-Krim d’approvisionner le CS en BCG", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 315, "reference_number": "CHD/2020/143/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (432, '2020-03-20 13:21:41.840195+00', '2020-03-20 13:21:41.840195+00', '144', 'create', '{"id": 144, "author": 11859, "office": 391, "status": "open", "history": [], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2020-03-30", "location": "None", "cp_output": 32, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Demander au MCD de Benoye de trouver une solution quant au problème d’accès de la population a l’ambulance en cas de besoin.", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 315, "reference_number": "CHD/2020/144/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (433, '2020-03-20 13:23:00.893282+00', '2020-03-20 13:23:00.893282+00', '145', 'create', '{"id": 145, "author": 11859, "office": 391, "status": "open", "history": [], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2020-03-30", "location": "None", "cp_output": 32, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Accélérer la mise en place d’une UNA dans les centres de santé de Bénoye et Krim-Krim pour la prise en charge des enfants malnutris dépistés par les ASC dans leur communauté.", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 315, "reference_number": "CHD/2020/145/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (434, '2020-03-20 13:24:28.863241+00', '2020-03-20 13:24:28.863241+00', '146', 'create', '{"id": 146, "author": 11859, "office": 391, "status": "open", "history": [], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2020-04-15", "location": "None", "cp_output": 32, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11344, "description": "Envisager la formation des plateformes de Krim-Krim et Benoye sur leurs roles", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 315, "reference_number": "CHD/2020/146/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (435, '2020-03-20 13:33:50.022342+00', '2020-03-20 13:33:50.022342+00', '143', 'update', '{"id": 143, "author": 11859, "office": 391, "status": "open", "history": [431], "partner": 187, "section": 7, "category": "None", "comments": [57], "due_date": "2020-03-09", "location": "None", "cp_output": 32, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Demander au MCD de Benoye d’approvisionner le CS en seringues AB BCG et de 0.5ml et a celui de Krim-Krim d’approvisionner le CS en BCG", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 315, "reference_number": "CHD/2020/143/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [57], "before": []}}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (436, '2020-03-20 13:34:06.697384+00', '2020-03-20 13:34:06.697384+00', '143', 'update', '{"id": 143, "author": 11859, "office": 391, "status": "completed", "history": [435, 431], "partner": 187, "section": 7, "category": "None", "comments": [57], "due_date": "2020-03-09", "location": "None", "cp_output": 32, "engagement": "None", "key_events": ["status_update"], "assigned_by": 11859, "assigned_to": 11859, "description": "Demander au MCD de Benoye d’approvisionner le CS en seringues AB BCG et de 0.5ml et a celui de Krim-Krim d’approvisionner le CS en BCG", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 315, "reference_number": "CHD/2020/143/APD", "date_of_completion": "2020-03-20 13:34:06.621911+00:00", "monitoring_activity": "None"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2020-03-20 13:34:06.621911+00:00", "before": "None"}}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (437, '2020-03-20 13:35:36.063123+00', '2020-03-20 13:35:36.063123+00', '144', 'update', '{"id": 144, "author": 11859, "office": 391, "status": "open", "history": [432], "partner": 187, "section": 7, "category": "None", "comments": [58], "due_date": "2020-03-30", "location": "None", "cp_output": 32, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Demander au MCD de Benoye de trouver une solution quant au problème d’accès de la population a l’ambulance en cas de besoin.", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 315, "reference_number": "CHD/2020/144/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [58], "before": []}}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (438, '2020-03-20 13:35:42.178475+00', '2020-03-20 13:35:42.178475+00', '144', 'update', '{"id": 144, "author": 11859, "office": 391, "status": "open", "history": [437, 432], "partner": 187, "section": 7, "category": "None", "comments": [58], "due_date": "2020-03-30", "location": "None", "cp_output": 32, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Demander au MCD de Benoye de trouver une solution quant au problème d’accès de la population a l’ambulance en cas de besoin.", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 315, "reference_number": "CHD/2020/144/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (439, '2020-03-20 13:46:39.539004+00', '2020-03-20 13:46:39.539004+00', '145', 'update', '{"id": 145, "author": 11859, "office": 391, "status": "open", "history": [433], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2020-03-30", "location": "None", "cp_output": 32, "engagement": "None", "key_events": ["reassign"], "assigned_by": 11859, "assigned_to": 12528, "description": "Accélérer la mise en place d’une UNA dans les centres de santé de Bénoye et Krim-Krim pour la prise en charge des enfants malnutris dépistés par les ASC dans leur communauté.", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 315, "reference_number": "CHD/2020/145/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"assigned_to": {"after": 12528, "before": 11859}}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (440, '2020-03-26 09:24:28.329889+00', '2020-03-26 09:24:28.329889+00', '142', 'update', '{"id": 142, "author": 11859, "office": 391, "status": "open", "history": [430], "partner": 187, "section": 7, "category": "None", "comments": [59], "due_date": "2020-03-30", "location": "None", "cp_output": 32, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Demander au Délégué sanitaire d’envoyer les frais de carburant de l’animateur communautaire de Krim-Krim", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 315, "reference_number": "CHD/2020/142/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [59], "before": []}}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (441, '2020-03-26 09:25:11.120296+00', '2020-03-26 09:25:11.120296+00', '142', 'update', '{"id": 142, "author": 11859, "office": 391, "status": "completed", "history": [440, 430], "partner": 187, "section": 7, "category": "None", "comments": [59], "due_date": "2020-03-30", "location": "None", "cp_output": 32, "engagement": "None", "key_events": ["status_update"], "assigned_by": 11859, "assigned_to": 11859, "description": "Demander au Délégué sanitaire d’envoyer les frais de carburant de l’animateur communautaire de Krim-Krim", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 315, "reference_number": "CHD/2020/142/APD", "date_of_completion": "2020-03-26 09:25:11.058999+00:00", "monitoring_activity": "None"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2020-03-26 09:25:11.058999+00:00", "before": "None"}}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (442, '2020-03-30 09:07:56.016317+00', '2020-03-30 09:07:56.016317+00', '147', 'create', '{"id": 147, "author": 25166, "office": 388, "status": "open", "history": [], "partner": 446, "section": 7, "category": "None", "comments": [], "due_date": "2020-04-30", "location": "None", "cp_output": 53, "engagement": "None", "key_events": [], "assigned_by": 25166, "assigned_to": 25166, "description": "Fournir les matériels (balances, registres de suivi, tables Z-score, registre de rapport mensuel) à l’UNA et l’UNT de Faya ainsi que l’UNA de Kirdimi", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 273, "reference_number": "None", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 25166, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (443, '2020-03-30 09:09:07.536396+00', '2020-03-30 09:09:07.536396+00', '148', 'create', '{"id": 148, "author": 25166, "office": 388, "status": "open", "history": [], "partner": 446, "section": 7, "category": "None", "comments": [], "due_date": "2020-04-30", "location": "None", "cp_output": 53, "engagement": "None", "key_events": [], "assigned_by": 25166, "assigned_to": 25166, "description": "Doter l’UNA de Kirdimi et de Faya en palettes", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 273, "reference_number": "CHD/2020/148/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 25166, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (444, '2020-03-30 09:10:04.173927+00', '2020-03-30 09:10:04.173927+00', '149', 'create', '{"id": 149, "author": 25166, "office": 388, "status": "open", "history": [], "partner": 446, "section": 7, "category": "None", "comments": [], "due_date": "2020-04-30", "location": "None", "cp_output": 53, "engagement": "None", "key_events": [], "assigned_by": 25166, "assigned_to": 25166, "description": "Faire un réajustement sur le PPD du mois d’Avril en vue d’éviter les ruptures au niveau de l’UNA de Faya Urbain", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 273, "reference_number": "CHD/2020/149/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 25166, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (445, '2020-03-31 10:03:34.319411+00', '2020-03-31 10:03:34.319411+00', '150', 'create', '{"id": 150, "author": 13031, "office": 391, "status": "open", "history": [], "partner": 177, "section": 7, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 42, "engagement": "None", "key_events": [], "assigned_by": 13031, "assigned_to": 13031, "description": "Assurer avec le point focal de la DSP du Moyen Chari l’expression des intrants PTME au niveau de chaque DS pour prendre en compte dans la commande trimestrielle", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 245, "reference_number": "CHD/2020/150/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (446, '2020-03-31 10:05:15.794418+00', '2020-03-31 10:05:15.794418+00', '151', 'create', '{"id": 151, "author": 13031, "office": 391, "status": "open", "history": [], "partner": 177, "section": 7, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 42, "engagement": "None", "key_events": [], "assigned_by": 13031, "assigned_to": 13031, "description": "Assurer avec le point focal de la DSP du Moyen Chari l’expression des intrants PTME au niveau de chaque DS pour prendre en compte dans la commande trimestrielle", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 245, "reference_number": "CHD/2020/151/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (447, '2020-03-31 10:19:32.370154+00', '2020-03-31 10:19:32.370154+00', '152', 'create', '{"id": 152, "author": 13031, "office": 391, "status": "open", "history": [], "partner": 238, "section": 7, "category": "None", "comments": [], "due_date": "2020-12-31", "location": "None", "cp_output": 42, "engagement": "None", "key_events": [], "assigned_by": 13031, "assigned_to": 13031, "description": "Appuyer les délégations et les DS a décentralisé davantage le dépistage base sur les cas index", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 246, "reference_number": "CHD/2020/152/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (448, '2020-03-31 10:24:25.337811+00', '2020-03-31 10:24:25.337811+00', '153', 'create', '{"id": 153, "author": 13031, "office": 391, "status": "open", "history": [], "partner": 238, "section": 7, "category": "None", "comments": [], "due_date": "2020-12-31", "location": "None", "cp_output": 42, "engagement": "None", "key_events": [], "assigned_by": 13031, "assigned_to": 13031, "description": "Assurer le suivi de la gestion des intrants dans les provinces couvertes", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 246, "reference_number": "CHD/2020/153/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (449, '2020-03-31 10:26:29.183327+00', '2020-03-31 10:26:29.183327+00', '155', 'create', '{"id": 155, "author": 13031, "office": 391, "status": "open", "history": [], "partner": "None", "section": 7, "category": "None", "comments": [], "due_date": "2020-12-31", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 13031, "assigned_to": 13031, "description": "Appuyer l’intégration avec l’appui des DSP/DS, le dépistage et la PEC des adolescents dans les CLAC/Maisons de la Culture", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 246, "reference_number": "None", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (450, '2020-03-31 14:24:00.688886+00', '2020-03-31 14:24:00.688886+00', '14', 'update', '{"id": 14, "author": 173681, "office": 390, "status": "open", "history": [100, 99, 33], "partner": 42, "section": 7, "category": "None", "comments": [16], "due_date": "2019-11-30", "location": "None", "cp_output": 55, "engagement": "None", "key_events": [], "assigned_by": 173681, "assigned_to": 173681, "description": "Mettre a la disposition des centres de sante des UNA des fiches de suivi individuel", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 82, "reference_number": "CHD/2019/14/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 173681, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (451, '2020-03-31 14:24:36.359455+00', '2020-03-31 14:24:36.359455+00', '14', 'update', '{"id": 14, "author": 173681, "office": 390, "status": "open", "history": [450, 100, 99, 33], "partner": 42, "section": 7, "category": "None", "comments": [16], "due_date": "2019-11-30", "location": "None", "cp_output": 55, "engagement": "None", "key_events": [], "assigned_by": 173681, "assigned_to": 173681, "description": "Mettre a la disposition des centres de sante des UNA des fiches de suivi individuel", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 82, "reference_number": "CHD/2019/14/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 173681, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (452, '2020-03-31 14:42:28.391028+00', '2020-03-31 14:42:28.391028+00', '119', 'update', '{"id": 119, "author": 21654, "office": 391, "status": "open", "history": [365], "partner": 237, "section": 7, "category": "None", "comments": [60], "due_date": "2020-03-31", "location": "None", "cp_output": 19, "engagement": "None", "key_events": [], "assigned_by": 21654, "assigned_to": 13031, "description": "Faire le plaidoyer auprès des MCD (Goré, Bessao, Mbaibokoum) pour renforcer la supervision de proximité des activités de routine en avancée, des centres de santé couverts par les ASC", "intervention": 5, "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 218, "reference_number": "CHD/2020/119/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [60], "before": []}}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (453, '2020-03-31 14:47:01.338259+00', '2020-03-31 14:47:01.338259+00', '108', 'update', '{"id": 108, "author": 13031, "office": 391, "status": "open", "history": [330], "partner": "None", "section": 7, "category": "None", "comments": [61], "due_date": "2019-12-15", "location": "None", "cp_output": 32, "engagement": "None", "key_events": [], "assigned_by": 13031, "assigned_to": 13031, "description": "Appuyer la finalisation du rapport global de la mission avec l’équipe de OCHA", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 152, "reference_number": "CHD/2020/108/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [61], "before": []}}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (454, '2020-03-31 14:47:14.76831+00', '2020-03-31 14:47:14.76831+00', '108', 'update', '{"id": 108, "author": 13031, "office": 391, "status": "open", "history": [453, 330], "partner": "None", "section": 7, "category": "None", "comments": [61], "due_date": "2019-12-15", "location": "None", "cp_output": 32, "engagement": "None", "key_events": [], "assigned_by": 13031, "assigned_to": 13031, "description": "Appuyer la finalisation du rapport global de la mission avec l’équipe de OCHA", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 152, "reference_number": "CHD/2020/108/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (455, '2020-03-31 14:47:20.817672+00', '2020-03-31 14:47:20.817672+00', '108', 'update', '{"id": 108, "author": 13031, "office": 391, "status": "completed", "history": [454, 453, 330], "partner": "None", "section": 7, "category": "None", "comments": [61], "due_date": "2019-12-15", "location": "None", "cp_output": 32, "engagement": "None", "key_events": ["status_update"], "assigned_by": 13031, "assigned_to": 13031, "description": "Appuyer la finalisation du rapport global de la mission avec l’équipe de OCHA", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 152, "reference_number": "CHD/2020/108/APD", "date_of_completion": "2020-03-31 14:47:20.764119+00:00", "monitoring_activity": "None"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2020-03-31 14:47:20.764119+00:00", "before": "None"}}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (456, '2020-03-31 15:18:16.700331+00', '2020-03-31 15:18:16.700331+00', '156', 'create', '{"id": 156, "author": 11859, "office": 387, "status": "open", "history": [], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2019-12-15", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 197100, "description": "Elaborer une requête supplémentaire pour prendre en compte les 7 ZR non budgétisés du District sanitaire de Moundou", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 429, "reference_number": "None", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (457, '2020-03-31 15:20:15.372242+00', '2020-03-31 15:20:15.372242+00', '157', 'create', '{"id": 157, "author": 11859, "office": 391, "status": "open", "history": [], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2019-12-16", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Faire reprendre la vaccination dans les quartiers Mbalkabra Mission (ZR Mbalkabra), Quartier Doyon-Carré 1 (ZR Tri), carre 1 (ZR Béthanie) à cause du grand nombre d’enfants trouvés non-vaccinés au cours des enquêtes rapides pendant la campagne", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 429, "reference_number": "CHD/2020/157/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (458, '2020-03-31 15:21:51.183928+00', '2020-03-31 15:21:51.183928+00', '158', 'create', '{"id": 158, "author": 11859, "office": 391, "status": "open", "history": [], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2019-12-15", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Chaque superviseur doit attirer l’attention des équipes de vaccination et des responsables des centres de sante sur le respect strict de la cible de 6 a 59 mois pour la campagne.", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 429, "reference_number": "None", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (459, '2020-03-31 15:51:39.105321+00', '2020-03-31 15:51:39.105321+00', '159', 'create', '{"id": 159, "author": 11859, "office": 391, "status": "open", "history": [], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2020-01-31", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11859, "description": "Suivre avec la DSP/LOC et les districts l’approvisionnement rapide des centres de santé en cartes de vaccination pour faciliter un meilleur suivi personnalisé des enfants de 0-59 mois sur l’utilisation des services de vaccination", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 428, "reference_number": "CHD/2020/159/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (460, '2020-03-31 15:59:11.112181+00', '2020-03-31 15:59:11.112181+00', '160', 'create', '{"id": 160, "author": 11859, "office": 387, "status": "open", "history": [], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2020-02-15", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 11344, "description": "Accélérer le processus d’immatriculation des motos et la remise en place des équipements médicotechniques et moyens roulants aux 2 zones de responsabilité afin d’améliorer l’offre de services.", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 428, "reference_number": "CHD/2020/160/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (461, '2020-03-31 16:00:46.96476+00', '2020-03-31 16:00:46.96476+00', '161', 'create', '{"id": 161, "author": 11859, "office": 391, "status": "open", "history": [], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2020-02-29", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 12528, "description": "Planifier et accentuer des supervisions conjointes des mobilisateurs communautaires ainsi que les ASC des 2 ZR avec la DSP et les DS en vue de renforcer leurs capacités d’intervention (Mobilisateur de Bénoye, nouveaux ASC de Krim-Krim et anciens ASC encore fébriles).", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 428, "reference_number": "CHD/2020/161/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (462, '2020-03-31 16:01:48.756654+00', '2020-03-31 16:01:48.756654+00', '162', 'create', '{"id": 162, "author": 13372, "office": 391, "status": "open", "history": [], "partner": 452, "section": 10, "category": "None", "comments": [], "due_date": "2020-04-30", "location": "None", "cp_output": 15, "engagement": "None", "key_events": [], "assigned_by": 13372, "assigned_to": 13372, "description": "Suivre avec les collègues des urgences les prochaines étapes pour la validation du plan de contingence de la province. notamment l’élaboration de la Feuille route pour la vulgarisation du document en cours d’élaboration ; l’organisation de l’atelier de validation du plan de contingence et la simulation du plan de contingence.", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 290, "reference_number": "None", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13372, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (463, '2020-03-31 16:02:05.970404+00', '2020-03-31 16:02:05.970404+00', '163', 'create', '{"id": 163, "author": 11859, "office": 391, "status": "open", "history": [], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2020-02-29", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 12528, "description": "Veiller à l’assurance qualité des données communautaires en participant aux séances mensuelles de validation des données communautaires dans les 2 ZR, les récupérer et les transmettre au niveau central pour analyse complémentaire et orientation", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 428, "reference_number": "CHD/2020/163/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (464, '2020-03-31 16:04:00.786118+00', '2020-03-31 16:04:00.786118+00', '164', 'create', '{"id": 164, "author": 11859, "office": 391, "status": "open", "history": [], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 12528, "description": "Appuyer la mise en place des plateformes communautaires multisectorielles dans les communautés nouvellement couvertes y compris leur formation sur leur rôle, fonctionnement et l’analyse mensuelles des données et goulots d’étranglement à l’utilisation des services sociaux de base et prendre des actions correctrices locales.", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 428, "reference_number": "CHD/2020/164/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (465, '2020-03-31 16:04:54.458941+00', '2020-03-31 16:04:54.458941+00', '165', 'create', '{"id": 165, "author": 12132, "office": 390, "status": "open", "history": [], "partner": 423, "section": 3, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 10707, "description": "\tDesigner un point focal devant faciliter l’organisation locale et répondre de toutes les questions relatives au processus du diagnostic devant le chef de bureau et le responsable du niveau central", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 354, "reference_number": "CHD/2020/165/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 12132, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (466, '2020-03-31 16:05:40.479256+00', '2020-03-31 16:05:40.479256+00', '166', 'create', '{"id": 166, "author": 11859, "office": 391, "status": "open", "history": [], "partner": 187, "section": 7, "category": "None", "comments": [], "due_date": "2020-04-15", "location": "None", "cp_output": 35, "engagement": "None", "key_events": [], "assigned_by": 11859, "assigned_to": 21654, "description": "Appuyer la DSP/LOC et les districts dans la préparation et l’organisation des journée foraines communautaires afin d’offrir de services intégrés dans les communautés à problèmes.", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 428, "reference_number": "CHD/2020/166/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 11859, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (467, '2020-03-31 16:06:13.986441+00', '2020-03-31 16:06:13.986441+00', '167', 'create', '{"id": 167, "author": 12132, "office": 390, "status": "open", "history": [], "partner": 423, "section": 3, "category": "None", "comments": [], "due_date": "2020-04-15", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 10707, "description": "Faire participer un représentant de chacun des 4 secteurs d’intervention du niveau provincial à la formation des animateurs locaux", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 354, "reference_number": "CHD/2020/167/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 12132, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (468, '2020-03-31 16:07:15.089121+00', '2020-03-31 16:07:15.089121+00', '168', 'create', '{"id": 168, "author": 12132, "office": 390, "status": "open", "history": [], "partner": 423, "section": 13, "category": "None", "comments": [], "due_date": "2020-04-30", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 10707, "description": "Veiller à ce que la démarche et la logique du travail en focus group soient expliquées en introduction aux focus group", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 354, "reference_number": "CHD/2020/168/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 12132, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (469, '2020-03-31 16:07:50.469433+00', '2020-03-31 16:07:50.469433+00', '167', 'update', '{"id": 167, "author": 12132, "office": 390, "status": "open", "history": [467], "partner": 423, "section": 3, "category": "None", "comments": [], "due_date": "2020-04-15", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 10707, "description": "Faire participer un représentant de chacun des 4 secteurs d’intervention du niveau provincial à la formation des animateurs locaux", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 354, "reference_number": "CHD/2020/167/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"high_priority": {"after": true, "before": false}}', 12132, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (470, '2020-04-01 09:59:04.888335+00', '2020-04-01 09:59:04.888335+00', '237', 'update', '{"id": 237, "city": "GORE", "name": "THE MENTOR INITIATIVE", "email": "MC.CHAD@MENTOR-INITIATIVE.NET", "hidden": false, "rating": "Low", "address": "QUARTIER BITENDA THE PINNACLE CENTRAL COURT STATION WAY", "blocked": false, "country": "081", "cso_type": "International", "net_ct_cy": "135934.20", "agreements": [], "log_issues": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "partial", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 3, "q2": 0, "q3": 0, "q4": 0, "total": 3}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "135934.20", "shared_with": "None", "total_ct_cp": "389001.30", "total_ct_cy": "0.00", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "65236168", "total_ct_ytd": "135934.20", "staff_members": [], "vendor_number": "2500225653", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [121, 238], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2018-04-23", "basis_for_risk_rating": "", "monitoring_activities": [], "core_values_assessments": [421, 444, 476], "core_values_assessment_date": "2019-10-08", "outstanding_dct_amount_6_to_9_months_usd": "77434.77", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 7798, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (473, '2020-04-01 10:26:32.383834+00', '2020-04-01 10:26:32.383834+00', '237', 'update', '{"id": 237, "city": "GORE", "name": "THE MENTOR INITIATIVE", "email": "MC.CHAD@MENTOR-INITIATIVE.NET", "hidden": false, "rating": "Low", "address": "QUARTIER BITENDA THE PINNACLE CENTRAL COURT STATION WAY", "blocked": false, "country": "081", "cso_type": "International", "net_ct_cy": "135934.20", "agreements": [15], "log_issues": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 1}, "assurance_coverage": "partial", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 3, "q2": 0, "q3": 0, "q4": 0, "total": 3}, "minimum_requirements": 1}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "135934.20", "shared_with": "None", "total_ct_cp": "389001.30", "total_ct_cy": "0.00", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "65236168", "total_ct_ytd": "135934.20", "staff_members": [20], "vendor_number": "2500225653", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [121, 238], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2018-04-23", "basis_for_risk_rating": "", "monitoring_activities": [], "core_values_assessments": [421, 444, 476], "core_values_assessment_date": "2019-10-08", "outstanding_dct_amount_6_to_9_months_usd": "77434.77", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 7798, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (474, '2020-04-02 09:52:42.970521+00', '2020-04-02 09:52:42.970521+00', '19', 'create', '{"id": 19, "end": "2020-08-31", "frs": [], "start": "2020-04-01", "title": "Appui à la prévention et au traitement de la malnutrition aigüe sévère à travers la mise en œuvre des activités WASH In Nut dans la province du Lac", "number": "CHD/PCA201914/HPD202019", "status": "draft", "offices": [389, 387], "metadata": {}, "sections": [8], "agreement": 14, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "HPD", "contingency_pd": false, "flat_locations": [21], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [24425, 9148], "partner_focal_points": [18], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (475, '2020-04-02 10:02:29.721211+00', '2020-04-02 10:02:29.721211+00', '19', 'update', '{"id": 19, "end": "2020-08-31", "frs": [], "start": "2020-04-01", "title": "Appui à la prévention et au traitement de la malnutrition aigüe sévère à travers la mise en œuvre des activités WASH In Nut dans la province du Lac", "number": "CHD/PCA201914/HPD202019", "status": "draft", "offices": [389, 387], "metadata": {}, "sections": [8], "agreement": 14, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [26], "document_type": "HPD", "contingency_pd": false, "flat_locations": [21], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [24425, 9148], "partner_focal_points": [18], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (476, '2020-04-02 10:46:48.674309+00', '2020-04-02 10:46:48.674309+00', '19', 'update', '{"id": 19, "end": "2020-08-31", "frs": [], "start": "2020-04-01", "title": "Appui à la prévention et au traitement de la malnutrition aigüe sévère à travers la mise en œuvre des activités WASH In Nut dans la province du Lac", "number": "CHD/PCA201914/HPD202019", "status": "draft", "offices": [389, 387], "metadata": {}, "sections": [8], "agreement": 14, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [26], "document_type": "HPD", "contingency_pd": false, "flat_locations": [21], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [24425, 9148], "partner_focal_points": [18], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (477, '2020-04-02 10:49:38.238022+00', '2020-04-02 10:49:38.238022+00', '19', 'update', '{"id": 19, "end": "2020-08-31", "frs": [], "start": "2020-04-01", "title": "Appui à la prévention et au traitement de la malnutrition aigüe sévère à travers la mise en œuvre des activités WASH In Nut dans la province du Lac", "number": "CHD/PCA201914/HPD202019", "status": "draft", "offices": [389, 387], "metadata": {}, "sections": [8], "agreement": 14, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [26], "document_type": "HPD", "contingency_pd": false, "flat_locations": [21], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [24425, 9148], "partner_focal_points": [18], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (478, '2020-04-02 10:50:01.724296+00', '2020-04-02 10:50:01.724296+00', '19', 'update', '{"id": 19, "end": "2020-08-31", "frs": [], "start": "2020-04-01", "title": "Appui à la prévention et au traitement de la malnutrition aigüe sévère à travers la mise en œuvre des activités WASH In Nut dans la province du Lac", "number": "CHD/PCA201914/HPD202019", "status": "draft", "offices": [389, 387], "metadata": {}, "sections": [8], "agreement": 14, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [26], "document_type": "HPD", "contingency_pd": false, "flat_locations": [21], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [24425, 9148], "partner_focal_points": [18], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (483, '2020-04-02 17:33:25.737442+00', '2020-04-02 17:33:25.737442+00', '21', 'create', '{"id": 21, "end": "2021-03-01", "frs": [], "start": "2020-04-02", "title": "Phase III du Programme pour l’amélioration de l’accès aux soins par la mise en œuvre de la prise en charge intégrée des maladies de l’enfant (PCIME-C/ PEC-C) au niveau communautaire dans les districts sanitaires de Goré, de Béssao et de Baïbokoum (Logone O", "number": "CHD/PCA201815/PD202021", "status": "draft", "offices": [391, 387], "metadata": {}, "sections": [7], "agreement": 15, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [68, 69], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [11344], "partner_focal_points": [21], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (479, '2020-04-02 11:01:09.988971+00', '2020-04-02 11:01:09.988971+00', '19', 'update', '{"id": 19, "end": "2020-08-31", "frs": [], "start": "2020-04-01", "title": "Appui à la prévention et au traitement de la malnutrition aigüe sévère à travers la mise en œuvre des activités WASH In Nut dans la province du Lac", "number": "CHD/PCA201914/HPD202019", "status": "draft", "offices": [389, 387], "metadata": {}, "sections": [8], "agreement": 14, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [26], "document_type": "HPD", "contingency_pd": false, "flat_locations": [21], "planned_visits": [16], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [24425, 9148], "partner_focal_points": [18], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-25", "reporting_requirements": [], "signed_by_partner_date": "2020-03-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 19}', '{"unicef_signatory": {"after": 8462, "before": "None"}, "signed_by_unicef_date": {"after": "2020-03-25", "before": "None"}, "signed_by_partner_date": {"after": "2020-03-25", "before": "None"}, "partner_authorized_officer_signatory": {"after": 19, "before": "None"}}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (480, '2020-04-02 14:45:46.146767+00', '2020-04-02 14:45:46.146767+00', '19', 'update', '{"id": 19, "end": "2020-08-31", "frs": [], "start": "2020-04-01", "title": "Appui à la prévention et au traitement de la malnutrition aigüe sévère à travers la mise en œuvre des activités WASH In Nut dans la province du Lac", "number": "CHD/PCA201914/HPD202019", "status": "draft", "offices": [389, 387], "metadata": {}, "sections": [8], "agreement": 14, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [26], "document_type": "HPD", "contingency_pd": false, "flat_locations": [21], "planned_visits": [16], "review_date_prc": "None", "submission_date": "2020-02-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [24425, 9148], "partner_focal_points": [18], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-25", "reporting_requirements": [], "signed_by_partner_date": "2020-03-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 19}', '{"submission_date": {"after": "2020-02-20", "before": "None"}}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (481, '2020-04-02 17:29:36.643661+00', '2020-04-02 17:29:36.643661+00', '20', 'create', '{"id": 20, "end": "2021-03-01", "frs": [], "start": "2020-04-02", "title": "Phase III du Programme pour l’amélioration de l’accès aux soins par la mise en œuvre de la prise en charge intégrée des maladies de l’enfant (PCIME-C/ PEC-C) au niveau communautaire dans les districts sanitaires de Goré, de Béssao et de Baïbokoum (Logone O", "number": "CHD/PCA201815/PD202020", "status": "draft", "offices": [391, 387], "metadata": {}, "sections": [7], "agreement": 15, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [68, 69], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [11344], "partner_focal_points": [21], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (482, '2020-04-02 17:29:45.814528+00', '2020-04-02 17:29:45.814528+00', '20', 'update', '{"id": 20, "end": "2021-03-01", "frs": [], "start": "2020-04-02", "title": "Phase III du Programme pour l’amélioration de l’accès aux soins par la mise en œuvre de la prise en charge intégrée des maladies de l’enfant (PCIME-C/ PEC-C) au niveau communautaire dans les districts sanitaires de Goré, de Béssao et de Baïbokoum (Logone O", "number": "CHD/PCA201815/PD202020", "status": "draft", "offices": [391, 387], "metadata": {}, "sections": [7], "agreement": 15, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [68, 69], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [11344], "partner_focal_points": [21], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (489, '2020-04-03 09:29:57.770617+00', '2020-04-03 09:29:57.770617+00', '169', 'create', '{"id": 169, "author": 13031, "office": 391, "status": "open", "history": [], "partner": "None", "section": 7, "category": "None", "comments": [], "due_date": "2021-12-31", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 13031, "assigned_to": 13031, "description": "Assurer suivi de traitement prompt des requêtes provenant des DSP au niveau du MSP et leur transmission dans un délais raisonnable aux partenaires afin de faciliter la mise en œuvre des activités planifiées", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 244, "reference_number": "CHD/2020/169/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13031, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (484, '2020-04-02 18:18:01.963631+00', '2020-04-02 18:18:01.963631+00', '21', 'update', '{"id": 21, "end": "2021-03-01", "frs": [], "start": "2020-04-02", "title": "Phase III du Programme pour l’amélioration de l’accès aux soins par la mise en œuvre de la prise en charge intégrée des maladies de l’enfant (PCIME-C/ PEC-C) au niveau communautaire dans les districts sanitaires de Goré, de Béssao et de Baïbokoum (Logone O", "number": "CHD/PCA201815/PD202021", "status": "draft", "offices": [391, 387], "metadata": {}, "sections": [7], "agreement": 15, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [27], "document_type": "PD", "contingency_pd": false, "flat_locations": [68, 69], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [11344], "partner_focal_points": [21], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (485, '2020-04-02 18:55:56.694927+00', '2020-04-02 18:55:56.694927+00', '21', 'update', '{"id": 21, "end": "2021-03-01", "frs": [], "start": "2020-04-02", "title": "Phase III du Programme pour l’amélioration de l’accès aux soins par la mise en œuvre de la prise en charge intégrée des maladies de l’enfant (PCIME-C/ PEC-C) au niveau communautaire dans les districts sanitaires de Goré, de Béssao et de Baïbokoum (Logone O", "number": "CHD/PCA201815/PD202021", "status": "draft", "offices": [391, 387], "metadata": {}, "sections": [7], "agreement": 15, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [27], "document_type": "PD", "contingency_pd": false, "flat_locations": [68, 69], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [11344], "partner_focal_points": [21], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (486, '2020-04-02 19:13:29.658932+00', '2020-04-02 19:13:29.658932+00', '21', 'update', '{"id": 21, "end": "2021-03-01", "frs": [], "start": "2020-04-02", "title": "Phase III du Programme pour l’amélioration de l’accès aux soins par la mise en œuvre de la prise en charge intégrée des maladies de l’enfant (PCIME-C/ PEC-C) au niveau communautaire dans les districts sanitaires de Goré, de Béssao et de Baïbokoum (Logone O", "number": "CHD/PCA201815/PD202021", "status": "draft", "offices": [391, 387], "metadata": {}, "sections": [7], "agreement": 15, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [27], "document_type": "PD", "contingency_pd": false, "flat_locations": [68, 69], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [11344], "partner_focal_points": [21], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (487, '2020-04-02 19:19:35.238029+00', '2020-04-02 19:19:35.238029+00', '21', 'update', '{"id": 21, "end": "2021-03-01", "frs": [], "start": "2020-04-02", "title": "Phase III du Programme pour l’amélioration de l’accès aux soins par la mise en œuvre de la prise en charge intégrée des maladies de l’enfant (PCIME-C/ PEC-C) au niveau communautaire dans les districts sanitaires de Goré, de Béssao et de Baïbokoum (Logone O", "number": "CHD/PCA201815/PD202021", "status": "draft", "offices": [391, 387], "metadata": {}, "sections": [7], "agreement": 15, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [27], "document_type": "PD", "contingency_pd": false, "flat_locations": [68, 69], "planned_visits": [17], "review_date_prc": "2020-03-11", "submission_date": "2020-02-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-24", "unicef_focal_points": [11344], "partner_focal_points": [21], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-31", "reporting_requirements": [], "signed_by_partner_date": "2020-04-02", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 20}', '{"review_date_prc": {"after": "2020-03-11", "before": "None"}, "submission_date": {"after": "2020-02-20", "before": "None"}, "unicef_signatory": {"after": 8462, "before": "None"}, "submission_date_prc": {"after": "2020-02-24", "before": "None"}, "signed_by_unicef_date": {"after": "2020-03-31", "before": "None"}, "signed_by_partner_date": {"after": "2020-04-02", "before": "None"}, "partner_authorized_officer_signatory": {"after": 20, "before": "None"}}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (502, '2020-04-08 15:25:38.466001+00', '2020-04-08 15:25:38.466001+00', '170', 'create', '{"id": 170, "author": 22479, "office": 391, "status": "open", "history": [], "partner": 41, "section": 7, "category": "None", "comments": [], "due_date": "2020-06-01", "location": "None", "cp_output": 57, "engagement": "None", "key_events": [], "assigned_by": 22479, "assigned_to": 22479, "description": "Doter les UNA/UNT des districts sanitaires de Moissala et Bekourou de palettes pour l’entreposage des intrants nutritionnels.", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 314, "reference_number": "None", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 22479, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (488, '2020-04-02 19:27:37.39728+00', '2020-04-02 19:27:37.39728+00', '21', 'update', '{"id": 21, "end": "2021-03-01", "frs": [], "start": "2020-04-02", "title": "Phase III du Programme pour l’amélioration de l’accès aux soins par la mise en œuvre de la prise en charge intégrée des maladies de l’enfant (PCIME-C/ PEC-C) au niveau communautaire dans les districts sanitaires de Goré, de Béssao et de Baïbokoum (Logone O", "number": "CHD/PCA201815/PD202021", "status": "draft", "offices": [391, 387], "metadata": {}, "sections": [7], "agreement": 15, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [27], "document_type": "PD", "contingency_pd": false, "flat_locations": [68, 69], "planned_visits": [17], "review_date_prc": "2020-03-11", "submission_date": "2020-02-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-24", "unicef_focal_points": [11344], "partner_focal_points": [21], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-31", "reporting_requirements": [], "signed_by_partner_date": "2020-04-02", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 20}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (490, '2020-04-06 08:23:56.085764+00', '2020-04-06 08:23:56.085764+00', '22', 'create', '{"id": 22, "end": "2021-06-30", "frs": [], "start": "2020-04-01", "title": "Appui à la participation citoyenne des jeunes et des femmes à la gouvernance locale et à la consolidation de la paix dans les communes de N’Djamena, Moundou, les départements de Bol, Bagassola et Liwa.", "number": "CHD/PCA20193/PD202022", "status": "draft", "offices": [389, 391, 387], "metadata": {}, "sections": [2, 9, 3], "agreement": 3, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [27, 60, 21], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [14044], "partner_focal_points": [3], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (491, '2020-04-06 09:53:35.178375+00', '2020-04-06 09:53:35.178375+00', '22', 'update', '{"id": 22, "end": "2021-06-30", "frs": [], "start": "2020-04-01", "title": "Appui à la participation citoyenne des jeunes et des femmes à la gouvernance locale et à la consolidation de la paix dans les communes de N’Djamena, Moundou, les départements de Bol, Bagassola et Liwa.", "number": "CHD/PCA20193/PD202022", "status": "draft", "offices": [389, 391, 387], "metadata": {}, "sections": [2, 9, 3], "agreement": 3, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [28], "document_type": "PD", "contingency_pd": false, "flat_locations": [27, 60, 21], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [14044], "partner_focal_points": [3], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (492, '2020-04-06 10:16:33.965101+00', '2020-04-06 10:16:33.965101+00', '163', 'update', '{"id": 163, "city": "N DJAMENA", "name": "BASE APPUI DSB ET HRA", "email": "MANOUFI.DAHAB@BASE-TCHAD.ORG", "hidden": false, "rating": "High", "address": "88 RUE 3044 ARRD N 2 KLEMAT", "blocked": false, "country": "081", "cso_type": "National", "net_ct_cy": "0.00", "agreements": [], "log_issues": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "0.00", "shared_with": "None", "total_ct_cp": "87380.99", "total_ct_cy": "0.00", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "6349 5025", "total_ct_ytd": "0.00", "staff_members": [], "vendor_number": "2500221193", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [], "manually_blocked": false, "type_of_assessment": "Micro Assessment", "last_assessment_date": "2013-10-10", "basis_for_risk_rating": "", "monitoring_activities": [], "core_values_assessments": [95], "core_values_assessment_date": "2013-07-10", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 7798, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (503, '2020-04-08 15:28:07.024654+00', '2020-04-08 15:28:07.024654+00', '171', 'create', '{"id": 171, "author": 22479, "office": 391, "status": "open", "history": [], "partner": 41, "section": 7, "category": "None", "comments": [], "due_date": "2020-06-04", "location": "None", "cp_output": 57, "engagement": "None", "key_events": [], "assigned_by": 22479, "assigned_to": 22479, "description": "Poursuivre le renforcement de capacité des acteurs terrain sur la gestion des intrants nutritionnels.", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 314, "reference_number": "CHD/2020/171/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 22479, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (496, '2020-04-07 08:38:13.086847+00', '2020-04-07 08:38:13.086847+00', '22', 'update', '{"id": 22, "end": "2021-06-30", "frs": [], "start": "2020-04-01", "title": "Appui à la participation citoyenne des jeunes et des femmes à la gouvernance locale et à la consolidation de la paix dans les communes de N’Djamena, Moundou, les départements de Bol, Bagassola et Liwa.", "number": "CHD/PCA20193/PD202022", "status": "draft", "offices": [389, 391, 387], "metadata": {}, "sections": [2, 9, 3], "agreement": 3, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [28, 30, 31, 32], "document_type": "PD", "contingency_pd": false, "flat_locations": [27, 60, 21], "planned_visits": [18], "review_date_prc": "2020-03-18", "submission_date": "2020-01-31", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-03-13", "unicef_focal_points": [14044], "partner_focal_points": [3], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-04-01", "reporting_requirements": [], "signed_by_partner_date": "2020-04-01", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 3}', '{"review_date_prc": {"after": "2020-03-18", "before": "None"}, "submission_date": {"after": "2020-01-31", "before": "None"}, "unicef_signatory": {"after": 8462, "before": "None"}, "submission_date_prc": {"after": "2020-03-13", "before": "None"}, "signed_by_unicef_date": {"after": "2020-04-01", "before": "None"}, "signed_by_partner_date": {"after": "2020-04-01", "before": "None"}, "partner_authorized_officer_signatory": {"after": 3, "before": "None"}}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (494, '2020-04-06 18:40:54.632124+00', '2020-04-06 18:40:54.632124+00', '22', 'update', '{"id": 22, "end": "2021-06-30", "frs": [], "start": "2020-04-01", "title": "Appui à la participation citoyenne des jeunes et des femmes à la gouvernance locale et à la consolidation de la paix dans les communes de N’Djamena, Moundou, les départements de Bol, Bagassola et Liwa.", "number": "CHD/PCA20193/PD202022", "status": "draft", "offices": [389, 391, 387], "metadata": {}, "sections": [2, 9, 3], "agreement": 3, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [28], "document_type": "PD", "contingency_pd": false, "flat_locations": [27, 60, 21], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [14044], "partner_focal_points": [3], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (495, '2020-04-06 19:24:46.857172+00', '2020-04-06 19:24:46.857172+00', '22', 'update', '{"id": 22, "end": "2021-06-30", "frs": [], "start": "2020-04-01", "title": "Appui à la participation citoyenne des jeunes et des femmes à la gouvernance locale et à la consolidation de la paix dans les communes de N’Djamena, Moundou, les départements de Bol, Bagassola et Liwa.", "number": "CHD/PCA20193/PD202022", "status": "draft", "offices": [389, 391, 387], "metadata": {}, "sections": [2, 9, 3], "agreement": 3, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [28, 30, 31, 32], "document_type": "PD", "contingency_pd": false, "flat_locations": [27, 60, 21], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [14044], "partner_focal_points": [3], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (497, '2020-04-07 08:51:10.172588+00', '2020-04-07 08:51:10.172588+00', '19', 'update', '{"id": 19, "end": "2020-08-31", "frs": [], "start": "2020-04-01", "title": "Appui à la prévention et au traitement de la malnutrition aigüe sévère à travers la mise en œuvre des activités WASH In Nut dans la province du Lac", "number": "CHD/PCA201914/HPD202019", "status": "draft", "offices": [389, 387], "metadata": {}, "sections": [8], "agreement": 14, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [26], "document_type": "HPD", "contingency_pd": false, "flat_locations": [21], "planned_visits": [16], "review_date_prc": "None", "submission_date": "2020-02-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [24425, 9148], "partner_focal_points": [18], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-25", "reporting_requirements": [], "signed_by_partner_date": "2020-03-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 19}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (504, '2020-04-09 06:47:38.2005+00', '2020-04-09 06:47:38.2005+00', '101', 'update', '{"id": 101, "author": 4606, "office": 387, "status": "open", "history": [298], "partner": 315, "section": 11, "category": "None", "comments": [62], "due_date": "2020-05-31", "location": "None", "cp_output": 50, "engagement": "None", "key_events": [], "assigned_by": 4606, "assigned_to": 4606, "description": "Faire la restitution des feedbacks des partenaires sur les liquidations à 100% proposées aux partenaires", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 27, "reference_number": "CHD/2020/101/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [62], "before": []}}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (561, '2020-04-21 13:20:21.471293+00', '2020-04-21 13:20:21.471293+00', '19', 'create', '{"id": 19, "end": "2021-12-31", "start": "None", "status": "draft", "partner": 163, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 22, "agreement_number": "CHD/PCA202019", "country_programme": 73, "attached_agreement": "", "authorized_officers": [22], "reference_number_year": 2020, "signed_by_unicef_date": "None", "signed_by_partner_date": "None", "special_conditions_pca": false}', '{}', 7798, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (498, '2020-04-07 10:21:06.712075+00', '2020-04-07 10:21:06.712075+00', '19', 'update', '{"id": 19, "end": "2020-08-31", "frs": [1101], "start": "2020-04-01", "title": "Appui à la prévention et au traitement de la malnutrition aigüe sévère à travers la mise en œuvre des activités WASH In Nut dans la province du Lac", "number": "CHD/PCA201914/HPD202019", "status": "signed", "offices": [389, 387], "metadata": {}, "sections": [8], "agreement": 14, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [26], "document_type": "HPD", "contingency_pd": false, "flat_locations": [21], "planned_visits": [16], "review_date_prc": "None", "submission_date": "2020-02-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [24425, 9148], "partner_focal_points": [18], "signed_pd_attachment": [712], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-25", "reporting_requirements": [], "signed_by_partner_date": "2020-03-25", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 19}', '{"frs": {"after": [1101], "before": []}}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (499, '2020-04-07 10:33:25.436935+00', '2020-04-07 10:33:25.436935+00', '22', 'update', '{"id": 22, "end": "2021-06-30", "frs": [1093], "start": "2020-04-01", "title": "Appui à la participation citoyenne des jeunes et des femmes à la gouvernance locale et à la consolidation de la paix dans les communes de N’Djamena, Moundou, les départements de Bol, Bagassola et Liwa.", "number": "CHD/PCA20193/PD202022", "status": "signed", "offices": [389, 391, 387], "metadata": {}, "sections": [2, 9, 3], "agreement": 3, "amendments": [], "attachments": [123], "in_amendment": false, "result_links": [28, 30, 31, 32], "document_type": "PD", "contingency_pd": false, "flat_locations": [27, 60, 21], "planned_visits": [18], "review_date_prc": "2020-03-18", "submission_date": "2020-01-31", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-03-13", "unicef_focal_points": [14044], "partner_focal_points": [3], "signed_pd_attachment": [710], "monitoring_activities": [], "prc_review_attachment": [709], "reference_number_year": 2020, "signed_by_unicef_date": "2020-04-01", "reporting_requirements": [], "signed_by_partner_date": "2020-04-01", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 3}', '{"frs": {"after": [1093], "before": []}}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (500, '2020-04-07 12:17:09.098357+00', '2020-04-07 12:17:09.098357+00', '23', 'create', '{"id": 23, "end": "2021-04-26", "frs": [], "start": "2020-04-27", "title": "Appui à la mobilisation communautaire, plaidoyer en faveur de l''accès et l’utilisation des services de prévention et de soins de qualité chez les femmes enceintes, allaitantes et la lutte contre la stigmatisation et la discrimination des personnes vivant a", "number": "CHD/PCA20191/PD202023", "status": "draft", "offices": [387], "metadata": {}, "sections": [7], "agreement": 1, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [3, 47, 19, 21, 22, 4, 23, 6, 7, 87, 8, 14, 24], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [12023], "partner_focal_points": [1], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (501, '2020-04-07 12:29:32.284291+00', '2020-04-07 12:29:32.284291+00', '23', 'update', '{"id": 23, "end": "2021-04-26", "frs": [], "start": "2020-04-27", "title": "Appui à la mobilisation communautaire, plaidoyer en faveur de l''accès et l’utilisation des services de prévention et de soins de qualité chez les femmes enceintes, allaitantes et la lutte contre la stigmatisation et la discrimination des personnes vivant a", "number": "CHD/PCA20191/PD202023", "status": "draft", "offices": [387], "metadata": {}, "sections": [7], "agreement": 1, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "PD", "contingency_pd": false, "flat_locations": [3, 47, 19, 21, 22, 4, 23, 6, 7, 87, 8, 14, 24], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [12023], "partner_focal_points": [1], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (506, '2020-04-09 06:50:44.624671+00', '2020-04-09 06:50:44.624671+00', '100', 'update', '{"id": 100, "author": 4606, "office": 387, "status": "open", "history": [425, 301, 297], "partner": 315, "section": 11, "category": "None", "comments": [56, 63], "due_date": "2020-02-29", "location": "None", "cp_output": 50, "engagement": "None", "key_events": [], "assigned_by": 4606, "assigned_to": 4606, "description": "Faire le suivi avec le Section Protection pour que le DCT de cette activité soit liquidé rapidement", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 27, "reference_number": "CHD/2020/100/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [56, 63], "before": [56]}}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (505, '2020-04-09 06:48:05.738513+00', '2020-04-09 06:48:05.738513+00', '101', 'update', '{"id": 101, "author": 4606, "office": 387, "status": "completed", "history": [504, 298], "partner": 315, "section": 11, "category": "None", "comments": [62], "due_date": "2020-05-31", "location": "None", "cp_output": 50, "engagement": "None", "key_events": ["status_update"], "assigned_by": 4606, "assigned_to": 4606, "description": "Faire la restitution des feedbacks des partenaires sur les liquidations à 100% proposées aux partenaires", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 27, "reference_number": "CHD/2020/101/APD", "date_of_completion": "2020-04-09 06:48:05.678299+00:00", "monitoring_activity": "None"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2020-04-09 06:48:05.678299+00:00", "before": "None"}}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (516, '2020-04-10 09:48:52.944887+00', '2020-04-10 09:48:52.944887+00', '172', 'create', '{"id": 172, "author": 12058, "office": 387, "status": "open", "history": [], "partner": 270, "section": 2, "category": "None", "comments": [], "due_date": "2020-04-30", "location": "None", "cp_output": 23, "engagement": "None", "key_events": [], "assigned_by": 12058, "assigned_to": 12058, "description": "Mettre à disposition du CLAC les boîtes à images sur le VIH pour les prochaines séances de dialogues communautaires", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 430, "reference_number": "CHD/2020/172/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 12058, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (519, '2020-04-10 11:41:19.504926+00', '2020-04-10 11:41:19.504926+00', '175', 'create', '{"id": 175, "author": 13750, "office": 387, "status": "open", "history": [], "partner": 95, "section": 8, "category": "None", "comments": [], "due_date": "2020-06-30", "location": "None", "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13750, "description": "Finaliser les enquêtes CAP finales pour la gestion de l’hygiène menstruelle (à la reprise des activités dans les écoles)", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "reference_number": "CHD/2020/175/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (521, '2020-04-10 11:57:41.2036+00', '2020-04-10 11:57:41.2036+00', '177', 'create', '{"id": 177, "author": 13750, "office": 387, "status": "open", "history": [], "partner": 95, "section": 8, "category": "None", "comments": [], "due_date": "2020-04-30", "location": "None", "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13750, "description": "Faire le suivi avec le partenaire pour les besoins des écoles en termes de matériels pédagogiques", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 405, "reference_number": "None", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (523, '2020-04-10 11:59:07.696944+00', '2020-04-10 11:59:07.696944+00', '177', 'update', '{"id": 177, "author": 13750, "office": 387, "status": "open", "history": [521], "partner": 95, "section": 8, "category": "None", "comments": [], "due_date": "2020-04-30", "location": "None", "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13750, "description": "Faire le suivi avec le partenaire pour les besoins des écoles en termes de matériels pédagogiques", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 405, "reference_number": "CHD/2020/177/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (525, '2020-04-10 15:11:24.501151+00', '2020-04-10 15:11:24.501151+00', '174', 'update', '{"id": 174, "author": 13750, "office": 387, "status": "open", "history": [518], "partner": 95, "section": 8, "category": "None", "comments": [71], "due_date": "2020-06-30", "location": 87, "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13750, "description": "Organiser une réunion avec les enseignantes et directeurs d’écoles sur l’utilisation correcte des outils pédagogiques (à la reprise des activités dans les écoles)", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "reference_number": "CHD/2020/174/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [71], "before": []}}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (527, '2020-04-10 15:57:00.744627+00', '2020-04-10 15:57:00.744627+00', '179', 'create', '{"id": 179, "author": 13750, "office": 391, "status": "open", "history": [], "partner": 444, "section": 8, "category": "None", "comments": [], "due_date": "2020-04-30", "location": "None", "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13512, "description": "Procéder à la vérification des villages et écoles du canton de Ndjokou et de Djoli", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 306, "reference_number": "CHD/2020/179/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (529, '2020-04-10 15:59:40.415439+00', '2020-04-10 15:59:40.415439+00', '179', 'update', '{"id": 179, "author": 13750, "office": 391, "status": "open", "history": [528, 527], "partner": 444, "section": 8, "category": "None", "comments": [], "due_date": "2020-04-30", "location": "None", "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13512, "description": "Procéder à la vérification des villages et écoles du canton de Ndjokou et de Djoli", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 306, "reference_number": "CHD/2020/179/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"high_priority": {"after": true, "before": false}}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (531, '2020-04-10 16:01:30.591076+00', '2020-04-10 16:01:30.591076+00', '181', 'create', '{"id": 181, "author": 13750, "office": 387, "status": "open", "history": [], "partner": 162, "section": 8, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13750, "description": "Accorder la demande de No-cost extension", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 307, "reference_number": "CHD/2020/181/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (507, '2020-04-09 06:54:12.350375+00', '2020-04-09 06:54:12.350375+00', '102', 'update', '{"id": 102, "author": 4606, "office": 387, "status": "open", "history": [299], "partner": 180, "section": 11, "category": "None", "comments": [64], "due_date": "2020-03-31", "location": "None", "cp_output": 50, "engagement": "None", "key_events": [], "assigned_by": 4606, "assigned_to": 4606, "description": "Faire le suivi avec la Section Protection que le DCT de cette activité soit liquider rapidement", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 28, "reference_number": "CHD/2020/102/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [64], "before": []}}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (508, '2020-04-09 06:54:24.308415+00', '2020-04-09 06:54:24.308415+00', '102', 'update', '{"id": 102, "author": 4606, "office": 387, "status": "open", "history": [507, 299], "partner": 180, "section": 11, "category": "None", "comments": [64, 65], "due_date": "2020-03-31", "location": "None", "cp_output": 50, "engagement": "None", "key_events": [], "assigned_by": 4606, "assigned_to": 4606, "description": "Faire le suivi avec la Section Protection que le DCT de cette activité soit liquider rapidement", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 28, "reference_number": "CHD/2020/102/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [64, 65], "before": [64]}}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (509, '2020-04-09 06:55:39.071856+00', '2020-04-09 06:55:39.071856+00', '102', 'update', '{"id": 102, "author": 4606, "office": 387, "status": "open", "history": [508, 507, 299], "partner": 180, "section": 11, "category": "None", "comments": [64, 65, 66], "due_date": "2020-03-31", "location": "None", "cp_output": 50, "engagement": "None", "key_events": [], "assigned_by": 4606, "assigned_to": 4606, "description": "Faire le suivi avec la Section Protection que le DCT de cette activité soit liquider rapidement", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 28, "reference_number": "CHD/2020/102/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [64, 65, 66], "before": [64, 65]}}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (510, '2020-04-09 06:57:42.624805+00', '2020-04-09 06:57:42.624805+00', '103', 'update', '{"id": 103, "author": 4606, "office": 387, "status": "open", "history": [300], "partner": 180, "section": 11, "category": "None", "comments": [67], "due_date": "2020-05-31", "location": "None", "cp_output": 50, "engagement": "None", "key_events": [], "assigned_by": 4606, "assigned_to": 4606, "description": "Faire une autre formation en HACT aux partenaires qui étaient absent", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 28, "reference_number": "CHD/2020/103/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [67], "before": []}}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (511, '2020-04-09 06:58:25.308421+00', '2020-04-09 06:58:25.308421+00', '139', 'update', '{"id": 139, "author": 4606, "office": 387, "status": "open", "history": [427], "partner": 335, "section": 11, "category": "None", "comments": [], "due_date": "2020-05-31", "location": "None", "cp_output": 19, "engagement": "None", "key_events": [], "assigned_by": 4606, "assigned_to": 4606, "description": "Suivre avec le bureau de zone d’Abéché pour que le partenaire soit inclus parmi les participants pour la prochaine formation HACT des partenaires", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 262, "reference_number": "CHD/2020/139/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 4606, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (512, '2020-04-09 15:17:26.620435+00', '2020-04-09 15:17:26.620435+00', '136', 'update', '{"id": 136, "author": 14006, "office": 391, "status": "open", "history": [411], "partner": "None", "section": 10, "category": "None", "comments": [69], "due_date": "2019-12-31", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 14006, "assigned_to": 13372, "description": "Faire le suivi des activités d’INTERSOS pour s’assurer que cela est conforme à l’accord de partenariat", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 17, "reference_number": "CHD/2020/136/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [69], "before": []}}', 13372, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (513, '2020-04-09 15:17:43.076271+00', '2020-04-09 15:17:43.076271+00', '136', 'update', '{"id": 136, "author": 14006, "office": 391, "status": "open", "history": [512, 411], "partner": "None", "section": 10, "category": "None", "comments": [69], "due_date": "2019-12-31", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 14006, "assigned_to": 13372, "description": "Faire le suivi des activités d’INTERSOS pour s’assurer que cela est conforme à l’accord de partenariat", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 17, "reference_number": "CHD/2020/136/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13372, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (514, '2020-04-09 15:19:38.712109+00', '2020-04-09 15:19:38.712109+00', '70', 'update', '{"id": 70, "author": 13372, "office": 391, "status": "open", "history": [130], "partner": 420, "section": 10, "category": "None", "comments": [70], "due_date": "2020-01-31", "location": "None", "cp_output": 49, "engagement": "None", "key_events": [], "assigned_by": 13372, "assigned_to": 13372, "description": "1.Appuyer le CPA du Logone Oriental à identifier les acteurs à former\n2.Faire la restitution de la formation au niveau provincial", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 154, "reference_number": "CHD/2019/70/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [70], "before": []}}', 13372, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (517, '2020-04-10 11:31:18.6537+00', '2020-04-10 11:31:18.6537+00', '173', 'create', '{"id": 173, "author": 13750, "office": 387, "status": "open", "history": [], "partner": 95, "section": 8, "category": "None", "comments": [], "due_date": "2020-06-30", "location": "None", "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13750, "description": "Organiser une réunion dans chaque école avec les acteurs clés pour un plan d’actions post-activités (à la reprise des activités dans les écoles)", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 404, "reference_number": "CHD/2020/173/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (515, '2020-04-09 15:19:50.292341+00', '2020-04-09 15:19:50.292341+00', '70', 'update', '{"id": 70, "author": 13372, "office": 391, "status": "completed", "history": [514, 130], "partner": 420, "section": 10, "category": "None", "comments": [70], "due_date": "2020-01-31", "location": "None", "cp_output": 49, "engagement": "None", "key_events": ["status_update"], "assigned_by": 13372, "assigned_to": 13372, "description": "1.Appuyer le CPA du Logone Oriental à identifier les acteurs à former\n2.Faire la restitution de la formation au niveau provincial", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 154, "reference_number": "CHD/2019/70/APD", "date_of_completion": "2020-04-09 15:19:50.234376+00:00", "monitoring_activity": "None"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2020-04-09 15:19:50.234376+00:00", "before": "None"}}', 13372, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (518, '2020-04-10 11:35:39.283316+00', '2020-04-10 11:35:39.283316+00', '174', 'create', '{"id": 174, "author": 13750, "office": 387, "status": "open", "history": [], "partner": 95, "section": 8, "category": "None", "comments": [], "due_date": "2020-06-30", "location": 87, "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13750, "description": "Organiser une réunion avec les enseignantes et directeurs d’écoles sur l’utilisation correcte des outils pédagogiques (à la reprise des activités dans les écoles)", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "reference_number": "CHD/2020/174/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (520, '2020-04-10 11:43:34.495423+00', '2020-04-10 11:43:34.495423+00', '176', 'create', '{"id": 176, "author": 13750, "office": 387, "status": "open", "history": [], "partner": 95, "section": 8, "category": "None", "comments": [], "due_date": "2020-04-30", "location": "None", "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13750, "description": "Faire le suivi avec le partenaire pour les besoins des écoles en termes de matériels pédagogiques", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 405, "reference_number": "CHD/2020/176/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (522, '2020-04-10 11:58:38.326273+00', '2020-04-10 11:58:38.326273+00', '178', 'create', '{"id": 178, "author": 13750, "office": 387, "status": "open", "history": [], "partner": 95, "section": 8, "category": "None", "comments": [], "due_date": "2020-06-30", "location": "None", "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13750, "description": "Finaliser les enquêtes CAP finales pour la gestion de l’hygiène menstruelle (à la reprise des activités dans les écoles)", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 405, "reference_number": "CHD/2020/178/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (524, '2020-04-10 11:59:53.664694+00', '2020-04-10 11:59:53.664694+00', '177', 'update', '{"id": 177, "author": 13750, "office": 387, "status": "open", "history": [523, 521], "partner": 95, "section": 8, "category": "None", "comments": [], "due_date": "2020-04-30", "location": "None", "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13750, "description": "Faire le suivi avec le partenaire pour les besoins des écoles en termes de matériels pédagogiques", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 405, "reference_number": "CHD/2020/177/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (526, '2020-04-10 15:11:41.003726+00', '2020-04-10 15:11:41.003726+00', '174', 'update', '{"id": 174, "author": 13750, "office": 387, "status": "open", "history": [525, 518], "partner": 95, "section": 8, "category": "None", "comments": [71], "due_date": "2020-06-30", "location": 87, "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13750, "description": "Organiser une réunion avec les enseignantes et directeurs d’écoles sur l’utilisation correcte des outils pédagogiques (à la reprise des activités dans les écoles)", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": "None", "reference_number": "CHD/2020/174/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (528, '2020-04-10 15:59:35.15278+00', '2020-04-10 15:59:35.15278+00', '179', 'update', '{"id": 179, "author": 13750, "office": 391, "status": "open", "history": [527], "partner": 444, "section": 8, "category": "None", "comments": [], "due_date": "2020-04-30", "location": "None", "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13512, "description": "Procéder à la vérification des villages et écoles du canton de Ndjokou et de Djoli", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 306, "reference_number": "CHD/2020/179/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (530, '2020-04-10 16:00:30.100695+00', '2020-04-10 16:00:30.100695+00', '180', 'create', '{"id": 180, "author": 13750, "office": 391, "status": "open", "history": [], "partner": 162, "section": 8, "category": "None", "comments": [], "due_date": "2020-05-20", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13512, "description": "Certifier le canton de Ndjokou et Djoli", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 307, "reference_number": "CHD/2020/180/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (532, '2020-04-10 16:03:48.436721+00', '2020-04-10 16:03:48.436721+00', '182', 'create', '{"id": 182, "author": 13750, "office": 387, "status": "open", "history": [], "partner": 162, "section": 8, "category": "None", "comments": [], "due_date": "2020-05-31", "location": "None", "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 9032, "description": "Appuyer dans la formation des maçons", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 307, "reference_number": "CHD/2020/182/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (533, '2020-04-10 16:05:39.241039+00', '2020-04-10 16:05:39.241039+00', '183', 'create', '{"id": 183, "author": 13750, "office": 391, "status": "open", "history": [], "partner": 444, "section": 8, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13512, "description": "Procéder à la vérification des villages et écoles du canton de Ndjokou", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 306, "reference_number": "CHD/2020/183/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (534, '2020-04-10 16:06:27.352053+00', '2020-04-10 16:06:27.352053+00', '184', 'create', '{"id": 184, "author": 13750, "office": 391, "status": "open", "history": [], "partner": 444, "section": 8, "category": "None", "comments": [], "due_date": "2020-05-31", "location": "None", "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13512, "description": "Certifier les canton de Ndjokou et Alako", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 306, "reference_number": "CHD/2020/184/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (535, '2020-04-10 16:07:23.098806+00', '2020-04-10 16:07:23.098806+00', '185', 'create', '{"id": 185, "author": 13750, "office": 387, "status": "open", "history": [], "partner": 444, "section": 8, "category": "None", "comments": [], "due_date": "2020-03-31", "location": "None", "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13750, "description": "Accorder la demande de No-cost extension", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 306, "reference_number": "CHD/2020/185/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (536, '2020-04-10 16:08:09.171358+00', '2020-04-10 16:08:09.171358+00', '186', 'create', '{"id": 186, "author": 13750, "office": 387, "status": "open", "history": [], "partner": 444, "section": 8, "category": "None", "comments": [], "due_date": "2020-04-30", "location": "None", "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 9032, "description": "Envoyer les intrants pour les écoles (savon et kits hygiéniques)", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 306, "reference_number": "CHD/2020/186/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (537, '2020-04-10 16:08:44.3663+00', '2020-04-10 16:08:44.3663+00', '187', 'create', '{"id": 187, "author": 13750, "office": 387, "status": "open", "history": [], "partner": 444, "section": 8, "category": "None", "comments": [], "due_date": "2020-05-31", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 9032, "description": "Appuyer dans la formation des maçons", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 306, "reference_number": "CHD/2020/187/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (538, '2020-04-10 16:25:54.835552+00', '2020-04-10 16:25:54.835552+00', '181', 'update', '{"id": 181, "author": 13750, "office": 387, "status": "open", "history": [531], "partner": 162, "section": 8, "category": "None", "comments": [72], "due_date": "2020-03-31", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13750, "description": "Accorder la demande de No-cost extension", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 307, "reference_number": "CHD/2020/181/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [72], "before": []}}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (539, '2020-04-10 16:26:01.083905+00', '2020-04-10 16:26:01.083905+00', '181', 'update', '{"id": 181, "author": 13750, "office": 387, "status": "open", "history": [538, 531], "partner": 162, "section": 8, "category": "None", "comments": [72], "due_date": "2020-03-31", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13750, "description": "Accorder la demande de No-cost extension", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 307, "reference_number": "CHD/2020/181/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (540, '2020-04-10 16:26:08.337895+00', '2020-04-10 16:26:08.337895+00', '181', 'update', '{"id": 181, "author": 13750, "office": 387, "status": "open", "history": [539, 538, 531], "partner": 162, "section": 8, "category": "None", "comments": [72], "due_date": "2020-03-31", "location": "None", "cp_output": "None", "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13750, "description": "Accorder la demande de No-cost extension", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 307, "reference_number": "CHD/2020/181/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (541, '2020-04-10 16:28:48.392753+00', '2020-04-10 16:28:48.392753+00', '185', 'update', '{"id": 185, "author": 13750, "office": 387, "status": "open", "history": [535], "partner": 444, "section": 8, "category": "None", "comments": [73], "due_date": "2020-03-31", "location": "None", "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 13750, "description": "Accorder la demande de No-cost extension", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 306, "reference_number": "CHD/2020/185/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [73], "before": []}}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (542, '2020-04-10 16:28:53.368191+00', '2020-04-10 16:28:53.368191+00', '185', 'update', '{"id": 185, "author": 13750, "office": 387, "status": "completed", "history": [541, 535], "partner": 444, "section": 8, "category": "None", "comments": [73], "due_date": "2020-03-31", "location": "None", "cp_output": 41, "engagement": "None", "key_events": ["status_update"], "assigned_by": 13750, "assigned_to": 13750, "description": "Accorder la demande de No-cost extension", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 306, "reference_number": "CHD/2020/185/APD", "date_of_completion": "2020-04-10 16:28:53.278237+00:00", "monitoring_activity": "None"}', '{"status": {"after": "completed", "before": "open"}, "date_of_completion": {"after": "2020-04-10 16:28:53.278237+00:00", "before": "None"}}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (543, '2020-04-10 16:30:20.415247+00', '2020-04-10 16:30:20.415247+00', '186', 'update', '{"id": 186, "author": 13750, "office": 387, "status": "open", "history": [536], "partner": 444, "section": 8, "category": "None", "comments": [74], "due_date": "2020-04-30", "location": "None", "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 9032, "description": "Envoyer les intrants pour les écoles (savon et kits hygiéniques)", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 306, "reference_number": "CHD/2020/186/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [74], "before": []}}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (544, '2020-04-10 16:30:24.257686+00', '2020-04-10 16:30:24.257686+00', '186', 'update', '{"id": 186, "author": 13750, "office": 387, "status": "open", "history": [543, 536], "partner": 444, "section": 8, "category": "None", "comments": [74], "due_date": "2020-04-30", "location": "None", "cp_output": 41, "engagement": "None", "key_events": [], "assigned_by": 13750, "assigned_to": 9032, "description": "Envoyer les intrants pour les écoles (savon et kits hygiéniques)", "intervention": "None", "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 306, "reference_number": "CHD/2020/186/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 13750, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (545, '2020-04-11 16:18:51.445142+00', '2020-04-11 16:18:51.445142+00', '188', 'create', '{"id": 188, "author": 12058, "office": 387, "status": "open", "history": [], "partner": 220, "section": 2, "category": "None", "comments": [], "due_date": "2020-04-30", "location": "None", "cp_output": 36, "engagement": "None", "key_events": [], "assigned_by": 12058, "assigned_to": 12058, "description": "Développer avec l’Association des Scouts du T[[schema]], de nouveaux accords de partenariat, qui prennent en compte toutes les leçons tirées de la phase pilote du programme de leadership transformationnel des adolescents et jeunes.", "intervention": 9, "tpm_activity": "None", "high_priority": false, "psea_assessment": "None", "travel_activity": 313, "reference_number": "CHD/2020/188/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 12058, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (546, '2020-04-15 10:04:36.19924+00', '2020-04-15 10:04:36.19924+00', '21', 'update', '{"id": 21, "end": "2021-03-01", "frs": [1103], "start": "2020-04-02", "title": "Phase III du Programme pour l’amélioration de l’accès aux soins par la mise en œuvre de la prise en charge intégrée des maladies de l’enfant (PCIME-C/ PEC-C) au niveau communautaire dans les districts sanitaires de Goré, de Béssao et de Baïbokoum (Logone O", "number": "CHD/PCA201815/PD202021", "status": "draft", "offices": [391, 387], "metadata": {}, "sections": [7], "agreement": 15, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [27], "document_type": "PD", "contingency_pd": false, "flat_locations": [68, 69], "planned_visits": [17], "review_date_prc": "2020-03-11", "submission_date": "2020-02-20", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2020-02-24", "unicef_focal_points": [11344], "partner_focal_points": [21], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-03-31", "reporting_requirements": [], "signed_by_partner_date": "2020-04-02", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 20}', '{"frs": {"after": [1103], "before": []}}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (547, '2020-04-15 12:29:07.781722+00', '2020-04-15 12:29:07.781722+00', '12', 'update', '{"id": 12, "end": "2020-06-30", "frs": [1038], "start": "2019-06-01", "title": "Appui à la prévention et au traitement de la malnutrition aigüe sévère à travers la mise en œuvre des activités WASH In Nut dans les provinces de Bahr El ghazel et Kanem.", "number": "CHD/PCA20198/PD201912-1", "status": "active", "offices": [387], "metadata": {}, "sections": [8], "agreement": 8, "amendments": [4], "attachments": [72, 71, 70, 69, 68, 67, 66, 65, 64, 63, 62, 61], "in_amendment": true, "result_links": [16, 17], "document_type": "PD", "contingency_pd": false, "flat_locations": [15, 18], "planned_visits": [7, 8], "review_date_prc": "2019-04-10", "submission_date": "2019-02-28", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "2019-03-25", "unicef_focal_points": [9148], "partner_focal_points": [8], "signed_pd_attachment": [549], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-05-28", "reporting_requirements": [], "signed_by_partner_date": "2019-05-30", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 8}', '{"end": {"after": "2020-06-30", "before": "2020-04-30"}}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (550, '2020-04-15 18:52:22.132506+00', '2020-04-15 18:52:22.132506+00', '24', 'create', '{"id": 24, "end": "2020-08-06", "frs": [], "start": "2020-04-07", "title": "Appui à la réponse d’urgence par la surveillance, la prise en charge nutritionnelle et la prévention contre les maladies évitables par la vaccination des enfants réfugiés et autochtones affectés par la crise soudanaise", "number": "CHD/SSFA202017", "status": "draft", "offices": [388], "metadata": {}, "sections": [7], "agreement": 17, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "SSFA", "contingency_pd": false, "flat_locations": [82], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [12954], "partner_focal_points": [22], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": "None", "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (551, '2020-04-15 19:25:26.136523+00', '2020-04-15 19:25:26.136523+00', '24', 'update', '{"id": 24, "end": "2020-08-06", "frs": [], "start": "2020-04-07", "title": "Appui à la réponse d’urgence par la surveillance, la prise en charge nutritionnelle et la prévention contre les maladies évitables par la vaccination des enfants réfugiés et autochtones affectés par la crise soudanaise", "number": "CHD/SSFA202017", "status": "draft", "offices": [388], "metadata": {}, "sections": [7], "agreement": 17, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [33, 34, 35], "document_type": "SSFA", "contingency_pd": false, "flat_locations": [82], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [12954], "partner_focal_points": [22], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": "None", "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (552, '2020-04-16 09:55:08.733711+00', '2020-04-16 09:55:08.733711+00', '376', 'update', '{"id": 376, "city": "N DJAMENA", "name": "ONG ASSOCIATION HELP TCHAD POUR LE DEVELOPPEMENT", "email": "HELPTCHAD2012@GMAIL.COM", "hidden": false, "rating": "High", "address": "AVENUE NIMERIE CROISSEMENT RUE DE 40M 4 EME ARROND", "blocked": false, "country": "081", "cso_type": "National", "net_ct_cy": "0.00", "agreements": [], "log_issues": [], "short_name": "", "assessments": [], "description": "", "hact_values": {"audits": {"completed": 0, "minimum_requirements": 0}, "spot_checks": {"completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "follow_up_required": 0, "minimum_requirements": 0}, "assurance_coverage": "void", "programmatic_visits": {"planned": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "completed": {"q1": 0, "q2": 0, "q3": 0, "q4": 0, "total": 0}, "minimum_requirements": 0}, "outstanding_findings": 0}, "postal_code": "", "reported_cy": "0.00", "shared_with": "None", "total_ct_cp": "0.00", "total_ct_cy": "0.00", "alternate_id": "None", "deleted_flag": false, "partner_type": "Civil Society Organization", "phone_number": "235 9928 4554", "total_ct_ytd": "0.00", "staff_members": [], "vendor_number": "2500233810", "vision_synced": true, "alternate_name": "", "planned_visits": [], "street_address": "", "psea_assessment": [], "related_partner": [], "manually_blocked": false, "type_of_assessment": "High Risk Assumed", "last_assessment_date": "2020-04-14", "basis_for_risk_rating": "", "monitoring_activities": [], "core_values_assessments": [66], "core_values_assessment_date": "2015-12-01", "outstanding_dct_amount_6_to_9_months_usd": "0.00", "outstanding_dct_amount_more_than_9_months_usd": "0.00"}', '{}', 7798, 68); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (553, '2020-04-16 09:57:21.648713+00', '2020-04-16 09:57:21.648713+00', '18', 'create', '{"id": 18, "end": "2021-12-31", "start": "2020-04-14", "status": "draft", "partner": 376, "signed_by": "None", "amendments": [], "attachment": [], "interventions": [], "agreement_type": "PCA", "partner_manager": 23, "agreement_number": "CHD/PCA202018", "country_programme": 73, "attached_agreement": "", "authorized_officers": [23], "reference_number_year": 2020, "signed_by_unicef_date": "2020-04-14", "signed_by_partner_date": "2020-04-14", "special_conditions_pca": false}', '{}', 7798, 72); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (554, '2020-04-16 10:06:30.06986+00', '2020-04-16 10:06:30.06986+00', '25', 'create', '{"id": 25, "end": "2020-08-13", "frs": [], "start": "2020-04-14", "title": "Contribuer à l’amélioration de l’accès à l’eau, à l’assainissement et aux bonnes pratiques d’hygiène en faveur des réfugiés soudanais à Moura dans la province du Ouaddai pour alleger les tache des femmes et des filles déjà vulnérables", "number": "CHD/PCA202018/HPD202025", "status": "draft", "offices": [388, 387], "metadata": {}, "sections": [8], "agreement": 18, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "HPD", "contingency_pd": false, "flat_locations": [82], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [8140, 9032], "partner_focal_points": [23], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (555, '2020-04-16 10:37:27.652393+00', '2020-04-16 10:37:27.652393+00', '25', 'update', '{"id": 25, "end": "2020-08-13", "frs": [], "start": "2020-04-14", "title": "Contribuer à l’amélioration de l’accès à l’eau, à l’assainissement et aux bonnes pratiques d’hygiène en faveur des réfugiés soudanais à Moura dans la province du Ouaddai pour alleger les tache des femmes et des filles déjà vulnérables", "number": "CHD/PCA202018/HPD202025", "status": "draft", "offices": [388, 387], "metadata": {}, "sections": [8], "agreement": 18, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [36], "document_type": "HPD", "contingency_pd": false, "flat_locations": [82], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [8140, 9032], "partner_focal_points": [23], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (556, '2020-04-16 11:55:24.142661+00', '2020-04-16 11:55:24.142661+00', '25', 'update', '{"id": 25, "end": "2020-08-13", "frs": [], "start": "2020-04-14", "title": "Contribuer à l’amélioration de l’accès à l’eau, à l’assainissement et aux bonnes pratiques d’hygiène en faveur des réfugiés soudanais à Moura dans la province du Ouaddai pour alleger les tache des femmes et des filles déjà vulnérables", "number": "CHD/PCA202018/HPD202025", "status": "draft", "offices": [388, 387], "metadata": {}, "sections": [8], "agreement": 18, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [36], "document_type": "HPD", "contingency_pd": false, "flat_locations": [82], "planned_visits": [21], "review_date_prc": "None", "submission_date": "2020-03-27", "termination_doc": "", "population_focus": "None", "unicef_signatory": 8462, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [8140, 9032], "partner_focal_points": [23], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "2020-04-14", "reporting_requirements": [], "signed_by_partner_date": "2020-04-14", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 23}', '{"submission_date": {"after": "2020-03-27", "before": "None"}, "unicef_signatory": {"after": 8462, "before": "None"}, "signed_by_unicef_date": {"after": "2020-04-14", "before": "None"}, "signed_by_partner_date": {"after": "2020-04-14", "before": "None"}, "partner_authorized_officer_signatory": {"after": 23, "before": "None"}}', 7798, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (557, '2020-04-16 17:08:15.443076+00', '2020-04-16 17:08:15.443076+00', '97', 'update', '{"id": 97, "author": 12132, "office": 391, "status": "open", "history": [182], "partner": 187, "section": 3, "category": "None", "comments": [75], "due_date": "2020-03-31", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 21654, "description": "6.\tAppuyer la DSP/LOC et les 2 districts dans la préparation et l’organisation périodique des journée foraines communautaires afin d’offrir de services intégrés dans les communautés à problèmes", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 193, "reference_number": "CHD/2020/97/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{"comments": {"after": [75], "before": []}}', 21654, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (558, '2020-04-16 17:08:28.378003+00', '2020-04-16 17:08:28.378003+00', '97', 'update', '{"id": 97, "author": 12132, "office": 391, "status": "open", "history": [557, 182], "partner": 187, "section": 3, "category": "None", "comments": [75], "due_date": "2020-03-31", "location": "None", "cp_output": 14, "engagement": "None", "key_events": [], "assigned_by": 12132, "assigned_to": 21654, "description": "6.\tAppuyer la DSP/LOC et les 2 districts dans la préparation et l’organisation périodique des journée foraines communautaires afin d’offrir de services intégrés dans les communautés à problèmes", "intervention": "None", "tpm_activity": "None", "high_priority": true, "psea_assessment": "None", "travel_activity": 193, "reference_number": "CHD/2020/97/APD", "date_of_completion": "None", "monitoring_activity": "None"}', '{}', 21654, 270); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (559, '2020-04-20 11:56:23.422596+00', '2020-04-20 11:56:23.422596+00', '16', 'update', '{"id": 16, "end": "2020-03-16", "frs": [1061], "start": "2019-09-17", "title": "Renforcement du système de protection en faveur des enfants affectés par la crise de la Province du Lac, y compris les mouhadjirines.", "number": "CHD/PCA201913/PD201916", "status": "active", "offices": [389, 387], "metadata": {}, "sections": [10], "agreement": 13, "amendments": [], "attachments": [102, 101], "in_amendment": false, "result_links": [23], "document_type": "PD", "contingency_pd": false, "flat_locations": [21], "planned_visits": [14], "review_date_prc": "None", "submission_date": "2019-09-03", "termination_doc": "", "population_focus": "None", "unicef_signatory": 3701, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [20384, 24195], "partner_focal_points": [16], "signed_pd_attachment": [612], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-06", "reporting_requirements": [], "signed_by_partner_date": "2019-09-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{"status": {"after": "active", "before": "ended"}}', 1657, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (560, '2020-04-20 12:23:13.003005+00', '2020-04-20 12:23:13.003005+00', '16', 'update', '{"id": 16, "end": "2020-05-04", "frs": [1061], "start": "2019-09-17", "title": "Renforcement du système de protection en faveur des enfants affectés par la crise de la Province du Lac, y compris les mouhadjirines.", "number": "CHD/PCA201913/PD201916-1", "status": "active", "offices": [389, 387], "metadata": {}, "sections": [10], "agreement": 13, "amendments": [5], "attachments": [102, 101], "in_amendment": true, "result_links": [23], "document_type": "PD", "contingency_pd": false, "flat_locations": [21], "planned_visits": [14], "review_date_prc": "None", "submission_date": "2019-09-03", "termination_doc": "", "population_focus": "None", "unicef_signatory": 3701, "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [20384, 24195], "partner_focal_points": [16], "signed_pd_attachment": [612], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2019, "signed_by_unicef_date": "2019-09-06", "reporting_requirements": [], "signed_by_partner_date": "2019-09-09", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": 16}', '{"end": {"after": "2020-05-04", "before": "2020-03-16"}}', 4606, 151); +INSERT INTO [[schema]].unicef_snapshot_activity VALUES (562, '2020-04-21 13:54:12.457198+00', '2020-04-21 13:54:12.457198+00', '26', 'create', '{"id": 26, "end": "2020-09-06", "frs": [], "start": "2020-04-07", "title": "Appui à la réponse d’urgence par la surveillance, la prise en charge nutritionnelle et la prévention contre les maladies évitables par la vaccination des enfants réfugiés et autochtones affectés par la crise soudanaise, dans la situation de la pandémie de", "number": "CHD/PCA202019/HPD202026", "status": "draft", "offices": [388, 387], "metadata": {}, "sections": [7], "agreement": 19, "amendments": [], "attachments": [], "in_amendment": false, "result_links": [], "document_type": "HPD", "contingency_pd": false, "flat_locations": [82], "planned_visits": [], "review_date_prc": "None", "submission_date": "None", "termination_doc": "", "population_focus": "None", "unicef_signatory": "None", "activation_letter": "", "country_programme": 73, "reporting_periods": [], "travel_activities": [], "signed_pd_document": "", "prc_review_document": "", "submission_date_prc": "None", "unicef_focal_points": [13371, 12954], "partner_focal_points": [22], "signed_pd_attachment": [], "monitoring_activities": [], "prc_review_attachment": [], "reference_number_year": 2020, "signed_by_unicef_date": "None", "reporting_requirements": [], "signed_by_partner_date": "None", "termination_doc_attachment": [], "activation_letter_attachment": [], "special_reporting_requirements": [], "partner_authorized_officer_signatory": "None"}', '{}', 7798, 151); -- -- Name: action_points_actionpoint_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].action_points_actionpoint_id_seq', 43, true); +SELECT pg_catalog.setval('[[schema]].action_points_actionpoint_id_seq', 188, true); -- @@ -17970,7 +25152,7 @@ SELECT pg_catalog.setval('[[schema]].actstream_follow_id_seq', 1, false); -- Name: attachments_attachmentflat_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].attachments_attachmentflat_id_seq', 441, true); +SELECT pg_catalog.setval('[[schema]].attachments_attachmentflat_id_seq', 717, true); -- @@ -17984,42 +25166,42 @@ SELECT pg_catalog.setval('[[schema]].audit_detailedfindinginfo_id_seq', 1, false -- Name: audit_engagement_active_pd_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].audit_engagement_active_pd_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].audit_engagement_active_pd_id_seq', 1, true); -- -- Name: audit_engagement_authorized_officers_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].audit_engagement_authorized_officers_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].audit_engagement_authorized_officers_id_seq', 1, true); -- -- Name: audit_engagement_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].audit_engagement_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].audit_engagement_id_seq', 13, true); -- -- Name: audit_engagement_offices_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].audit_engagement_offices_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].audit_engagement_offices_id_seq', 12, true); -- -- Name: audit_engagement_sections_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].audit_engagement_sections_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].audit_engagement_sections_id_seq', 12, true); -- -- Name: audit_engagement_staff_members1_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].audit_engagement_staff_members1_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].audit_engagement_staff_members1_id_seq', 34, true); -- @@ -18096,14 +25278,14 @@ SELECT pg_catalog.setval('[[schema]].django_comment_flags_id_seq', 1, false); -- Name: django_comments_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].django_comments_id_seq', 13, true); +SELECT pg_catalog.setval('[[schema]].django_comments_id_seq', 75, true); -- -- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].django_migrations_id_seq', 604, true); +SELECT pg_catalog.setval('[[schema]].django_migrations_id_seq', 612, true); -- @@ -18271,28 +25453,28 @@ SELECT pg_catalog.setval('[[schema]].funds_donor_id_seq', 1, false); -- Name: funds_fundscommitmentheader_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].funds_fundscommitmentheader_id_seq', 1383, true); +SELECT pg_catalog.setval('[[schema]].funds_fundscommitmentheader_id_seq', 1433, true); -- -- Name: funds_fundscommitmentitem_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].funds_fundscommitmentitem_id_seq', 2002, true); +SELECT pg_catalog.setval('[[schema]].funds_fundscommitmentitem_id_seq', 2079, true); -- -- Name: funds_fundsreservationheader_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].funds_fundsreservationheader_id_seq', 1064, true); +SELECT pg_catalog.setval('[[schema]].funds_fundsreservationheader_id_seq', 1109, true); -- -- Name: funds_fundsreservationitem_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].funds_fundsreservationitem_id_seq', 1697, true); +SELECT pg_catalog.setval('[[schema]].funds_fundsreservationitem_id_seq', 1792, true); -- @@ -18306,14 +25488,14 @@ SELECT pg_catalog.setval('[[schema]].funds_grant_id_seq', 1, false); -- Name: hact_aggregatehact_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].hact_aggregatehact_id_seq', 2, true); +SELECT pg_catalog.setval('[[schema]].hact_aggregatehact_id_seq', 3, true); -- -- Name: hact_hacthistory_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].hact_hacthistory_id_seq', 125, true); +SELECT pg_catalog.setval('[[schema]].hact_hacthistory_id_seq', 242, true); -- @@ -18369,14 +25551,14 @@ SELECT pg_catalog.setval('[[schema]].management_sectionhistory_to_sections_id_se -- Name: partners_agreement_authorized_officers_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_agreement_authorized_officers_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].partners_agreement_authorized_officers_id_seq', 18, true); -- -- Name: partners_agreement_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_agreement_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].partners_agreement_id_seq', 19, true); -- @@ -18397,7 +25579,7 @@ SELECT pg_catalog.setval('[[schema]].partners_assessment_id_seq', 1, false); -- Name: partners_corevaluesassessment_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_corevaluesassessment_id_seq', 482, true); +SELECT pg_catalog.setval('[[schema]].partners_corevaluesassessment_id_seq', 484, true); -- @@ -18418,70 +25600,70 @@ SELECT pg_catalog.setval('[[schema]].partners_filetype_id_seq', 7, true); -- Name: partners_intervention_flat_locations_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_intervention_flat_locations_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].partners_intervention_flat_locations_id_seq', 101, true); -- -- Name: partners_intervention_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_intervention_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].partners_intervention_id_seq', 26, true); -- -- Name: partners_intervention_offices_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_intervention_offices_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].partners_intervention_offices_id_seq', 34, true); -- -- Name: partners_intervention_partner_focal_points_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_intervention_partner_focal_points_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].partners_intervention_partner_focal_points_id_seq', 26, true); -- -- Name: partners_intervention_sections_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_intervention_sections_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].partners_intervention_sections_id_seq', 31, true); -- -- Name: partners_intervention_unicef_focal_points_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_intervention_unicef_focal_points_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].partners_intervention_unicef_focal_points_id_seq', 30, true); -- -- Name: partners_interventionamendment_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_interventionamendment_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].partners_interventionamendment_id_seq', 5, true); -- -- Name: partners_interventionattachment_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_interventionattachment_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].partners_interventionattachment_id_seq', 123, true); -- -- Name: partners_interventionbudget_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_interventionbudget_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].partners_interventionbudget_id_seq', 26, true); -- -- Name: partners_interventionplannedvisits_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_interventionplannedvisits_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].partners_interventionplannedvisits_id_seq', 21, true); -- @@ -18495,21 +25677,21 @@ SELECT pg_catalog.setval('[[schema]].partners_interventionreportingperiod_id_seq -- Name: partners_interventionresultlink_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_interventionresultlink_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].partners_interventionresultlink_id_seq', 36, true); -- -- Name: partners_interventionresultlink_ram_indicators_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_interventionresultlink_ram_indicators_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].partners_interventionresultlink_ram_indicators_id_seq', 62, true); -- -- Name: partners_partnerorganization_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_partnerorganization_id_seq', 454, true); +SELECT pg_catalog.setval('[[schema]].partners_partnerorganization_id_seq', 455, true); -- @@ -18523,14 +25705,14 @@ SELECT pg_catalog.setval('[[schema]].partners_partnerplannedvisits_id_seq', 1, f -- Name: partners_partnerstaffmember_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_partnerstaffmember_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].partners_partnerstaffmember_id_seq', 23, true); -- -- Name: partners_plannedengagement_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].partners_plannedengagement_id_seq', 453, true); +SELECT pg_catalog.setval('[[schema]].partners_plannedengagement_id_seq', 454, true); -- @@ -18593,14 +25775,14 @@ SELECT pg_catalog.setval('[[schema]].psea_assessor_id_seq', 1, false); -- Name: psea_evidence_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].psea_evidence_id_seq', 24, true); +SELECT pg_catalog.setval('[[schema]].psea_evidence_id_seq', 25, true); -- -- Name: psea_indicator_evidences_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].psea_indicator_evidences_id_seq', 23, true); +SELECT pg_catalog.setval('[[schema]].psea_indicator_evidences_id_seq', 25, true); -- @@ -18635,14 +25817,14 @@ SELECT pg_catalog.setval('[[schema]].reports_appliedindicator_disaggregation_id_ -- Name: reports_appliedindicator_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].reports_appliedindicator_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].reports_appliedindicator_id_seq', 165, true); -- -- Name: reports_appliedindicator_locations_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].reports_appliedindicator_locations_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].reports_appliedindicator_locations_id_seq', 391, true); -- @@ -18670,21 +25852,21 @@ SELECT pg_catalog.setval('[[schema]].reports_disaggregationvalue_id_seq', 1, fal -- Name: reports_indicator_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].reports_indicator_id_seq', 222, true); +SELECT pg_catalog.setval('[[schema]].reports_indicator_id_seq', 277, true); -- -- Name: reports_indicatorblueprint_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].reports_indicatorblueprint_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].reports_indicatorblueprint_id_seq', 150, true); -- -- Name: reports_lowerresult_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].reports_lowerresult_id_seq', 1, false); +SELECT pg_catalog.setval('[[schema]].reports_lowerresult_id_seq', 43, true); -- @@ -18712,7 +25894,7 @@ SELECT pg_catalog.setval('[[schema]].reports_reportingrequirement_id_seq', 1, fa -- Name: reports_result_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].reports_result_id_seq', 170, true); +SELECT pg_catalog.setval('[[schema]].reports_result_id_seq', 172, true); -- @@ -18726,7 +25908,7 @@ SELECT pg_catalog.setval('[[schema]].reports_resulttype_id_seq', 3, true); -- Name: reports_sector_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].reports_sector_id_seq', 14, true); +SELECT pg_catalog.setval('[[schema]].reports_sector_id_seq', 18, true); -- @@ -18775,49 +25957,49 @@ SELECT pg_catalog.setval('[[schema]].snapshot_activity_id_seq', 1, false); -- Name: t2f_iteneraryitem_airlines_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].t2f_iteneraryitem_airlines_id_seq', 31, true); +SELECT pg_catalog.setval('[[schema]].t2f_iteneraryitem_airlines_id_seq', 75, true); -- -- Name: t2f_iteneraryitem_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].t2f_iteneraryitem_id_seq', 263, true); +SELECT pg_catalog.setval('[[schema]].t2f_iteneraryitem_id_seq', 858, true); -- -- Name: t2f_travel_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].t2f_travel_id_seq', 164, true); +SELECT pg_catalog.setval('[[schema]].t2f_travel_id_seq', 490, true); -- -- Name: t2f_travelactivity_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].t2f_travelactivity_id_seq', 147, true); +SELECT pg_catalog.setval('[[schema]].t2f_travelactivity_id_seq', 455, true); -- -- Name: t2f_travelactivity_locations_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].t2f_travelactivity_locations_id_seq', 116, true); +SELECT pg_catalog.setval('[[schema]].t2f_travelactivity_locations_id_seq', 310, true); -- -- Name: t2f_travelactivity_travels_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].t2f_travelactivity_travels_id_seq', 186, true); +SELECT pg_catalog.setval('[[schema]].t2f_travelactivity_travels_id_seq', 571, true); -- -- Name: t2f_travelattachment_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].t2f_travelattachment_id_seq', 46, true); +SELECT pg_catalog.setval('[[schema]].t2f_travelattachment_id_seq', 670, true); -- @@ -18859,7 +26041,7 @@ SELECT pg_catalog.setval('[[schema]].tpm_tpmvisitreportrejectcomment_id_seq', 1, -- Name: unicef_attachments_attachment_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].unicef_attachments_attachment_id_seq', 441, true); +SELECT pg_catalog.setval('[[schema]].unicef_attachments_attachment_id_seq', 717, true); -- @@ -18880,14 +26062,14 @@ SELECT pg_catalog.setval('[[schema]].unicef_attachments_attachmentlink_id_seq', -- Name: unicef_attachments_filetype_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].unicef_attachments_filetype_id_seq', 57, true); +SELECT pg_catalog.setval('[[schema]].unicef_attachments_filetype_id_seq', 60, true); -- -- Name: unicef_snapshot_activity_id_seq; Type: SEQUENCE SET; Schema: [[schema]]; Owner: - -- -SELECT pg_catalog.setval('[[schema]].unicef_snapshot_activity_id_seq', 79, true); +SELECT pg_catalog.setval('[[schema]].unicef_snapshot_activity_id_seq', 562, true); -- @@ -20002,6 +27184,14 @@ ALTER TABLE ONLY [[schema]].partners_partnerstaffmember ADD CONSTRAINT partners_partnerstaffmember_pkey PRIMARY KEY (id); +-- +-- Name: partners_partnerstaffmember partners_partnerstaffmember_user_id_key; Type: CONSTRAINT; Schema: [[schema]]; Owner: - +-- + +ALTER TABLE ONLY [[schema]].partners_partnerstaffmember + ADD CONSTRAINT partners_partnerstaffmember_user_id_key UNIQUE (user_id); + + -- -- Name: partners_plannedengagement partners_plannedengagement_partner_id_key; Type: CONSTRAINT; Schema: [[schema]]; Owner: - -- @@ -24022,6 +31212,14 @@ ALTER TABLE ONLY [[schema]].partners_partnerplannedvisits ADD CONSTRAINT partners_partner_id_dde73d25_fk_partners_partnerorganization_id FOREIGN KEY (partner_id) REFERENCES [[schema]].partners_partnerorganization(id) DEFERRABLE INITIALLY DEFERRED; +-- +-- Name: partners_partnerstaffmember partners_partnerstaffmember_user_id_08ef0077_fk_auth_user_id; Type: FK CONSTRAINT; Schema: [[schema]]; Owner: - +-- + +ALTER TABLE ONLY [[schema]].partners_partnerstaffmember + ADD CONSTRAINT partners_partnerstaffmember_user_id_08ef0077_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + -- -- Name: psea_answer psea_answer_assessment_id_6aa9c055_fk_psea_assessment_id; Type: FK CONSTRAINT; Schema: [[schema]]; Owner: - -- diff --git a/src/etools_datamart/apps/sources/etools/enrichment/consts.py b/src/etools_datamart/apps/sources/etools/enrichment/consts.py index 9c3fad6c2..7ca60e6bd 100644 --- a/src/etools_datamart/apps/sources/etools/enrichment/consts.py +++ b/src/etools_datamart/apps/sources/etools/enrichment/consts.py @@ -290,3 +290,13 @@ class PartnersInterventionConst: (TERMINATED, "Terminated"), (CANCELLED, "Cancelled"), ) + + +class RiskConst: + VALUES = Choices( + (0, 'na', 'N/A'), + (1, 'low', 'Low'), + (2, 'medium', 'Medium'), + (3, 'significant', 'Significant'), + (4, 'high', 'High'), + ) diff --git a/src/etools_datamart/apps/sources/etools/models/public.py b/src/etools_datamart/apps/sources/etools/models/public.py index 7bcfca157..c4d6219ae 100644 --- a/src/etools_datamart/apps/sources/etools/models/public.py +++ b/src/etools_datamart/apps/sources/etools/models/public.py @@ -908,6 +908,7 @@ class UsersCountry(models.Model): vision_last_synced = models.DateTimeField(blank=True, null=True) local_currency = models.ForeignKey(PublicsCurrency, models.DO_NOTHING, related_name='UsersCountry_local_currency', blank=True, null=True) long_name = models.CharField(max_length=255) + iso3_code = models.CharField(max_length=10) class Meta: managed = False @@ -940,7 +941,7 @@ class UsersUserprofile(models.Model): office = models.ForeignKey(UsersOffice, models.DO_NOTHING, related_name='UsersUserprofile_office', blank=True, null=True) user_id = models.IntegerField(unique=True) country_override = models.ForeignKey(UsersCountry, models.DO_NOTHING, related_name='UsersUserprofile_country_override', blank=True, null=True) - partner_staff_member = models.IntegerField(blank=True, null=True) + field_partner_staff_member = models.IntegerField(db_column='_partner_staff_member', blank=True, null=True) # Field renamed because it started with '_'. guid = models.CharField(unique=True, max_length=40, blank=True, null=True) org_unit_code = models.CharField(max_length=32, blank=True, null=True) org_unit_name = models.CharField(max_length=64, blank=True, null=True) diff --git a/src/etools_datamart/apps/sources/etools/models/tenant.py b/src/etools_datamart/apps/sources/etools/models/tenant.py index a192e8dee..949eea7f3 100644 --- a/src/etools_datamart/apps/sources/etools/models/tenant.py +++ b/src/etools_datamart/apps/sources/etools/models/tenant.py @@ -164,7 +164,7 @@ class AuditEngagement(models.TenantModel): po_item = models.ForeignKey('PurchaseOrderPurchaseorderitem', models.DO_NOTHING, related_name='AuditEngagement_po_item', blank=True, null=True) shared_ip_with = models.TextField() # This field type is a guess. exchange_rate = models.DecimalField(max_digits=20, decimal_places=2) - currency_of_report = models.CharField(max_length=4, blank=True, null=True) + currency_of_report = models.CharField(max_length=5, blank=True, null=True) class Meta: managed = False @@ -1026,6 +1026,7 @@ class PartnersIntervention(models.TenantModel): reference_number_year = models.IntegerField(blank=True, null=True) activation_letter = models.CharField(max_length=1024, blank=True, null=True) termination_doc = models.CharField(max_length=1024, blank=True, null=True) + cfei_number = models.CharField(max_length=150, blank=True, null=True) class Meta: managed = False @@ -1122,7 +1123,7 @@ class PartnersInterventionbudget(models.TenantModel): total = models.DecimalField(max_digits=20, decimal_places=2) intervention = models.OneToOneField(PartnersIntervention, models.DO_NOTHING, related_name='PartnersInterventionbudget_intervention', blank=True, null=True) total_local = models.DecimalField(max_digits=20, decimal_places=2) - currency = models.CharField(max_length=4) + currency = models.CharField(max_length=5) class Meta: managed = False @@ -1216,6 +1217,10 @@ class PartnersPartnerorganization(models.TenantModel): manually_blocked = models.BooleanField() outstanding_dct_amount_6_to_9_months_usd = models.DecimalField(max_digits=20, decimal_places=2, blank=True, null=True) outstanding_dct_amount_more_than_9_months_usd = models.DecimalField(max_digits=20, decimal_places=2, blank=True, null=True) + highest_risk_rating_name = models.CharField(max_length=150) + highest_risk_rating_type = models.CharField(max_length=150) + psea_assessment_date = models.DateTimeField(blank=True, null=True) + sea_risk_rating_name = models.CharField(max_length=150) class Meta: managed = False @@ -1249,6 +1254,7 @@ class PartnersPartnerstaffmember(models.TenantModel): active = models.BooleanField() created = models.DateTimeField() modified = models.DateTimeField() + user = models.OneToOneField('AuthUser', models.DO_NOTHING, related_name='PartnersPartnerstaffmember_user', blank=True, null=True) class Meta: managed = False diff --git a/src/etools_datamart/config/settings.py b/src/etools_datamart/config/settings.py index caba29b52..9f8eda532 100644 --- a/src/etools_datamart/config/settings.py +++ b/src/etools_datamart/config/settings.py @@ -79,7 +79,7 @@ URL_PREFIX=(str, ''), USE_X_FORWARDED_HOST=(bool, False), X_FRAME_OPTIONS=(str, 'DENY'), - GEONAMES_URL=(str, 'http://api.geonames.org/findNearby'), + GEONAMES_URL=(str, 'http://api.geonames.org/findNearbyJSON'), GEONAMES_USERNAME=(str, 'ntrncic'), REQUEST_TIMEOUT=(int, 300), ) @@ -744,3 +744,5 @@ def before_send(event, hint): REQUEST_TIMEOUT = env('REQUEST_TIMEOUT') GEONAMES_URL = env('GEONAMES_URL') GEONAMES_USERNAME = env('GEONAMES_USERNAME') + +FIELD_SIZE_LIMIT = 32000 diff --git a/tests/COUNT_ACTION_POINTS_ACTIONPOINT b/tests/COUNT_ACTION_POINTS_ACTIONPOINT index 48082f72f..60d3b2f4a 100644 --- a/tests/COUNT_ACTION_POINTS_ACTIONPOINT +++ b/tests/COUNT_ACTION_POINTS_ACTIONPOINT @@ -1 +1 @@ -12 +15 diff --git a/tests/COUNT_PARTNERS_INTERVENTION b/tests/COUNT_PARTNERS_INTERVENTION index d00491fd7..00750edc0 100644 --- a/tests/COUNT_PARTNERS_INTERVENTION +++ b/tests/COUNT_PARTNERS_INTERVENTION @@ -1 +1 @@ -1 +3 diff --git a/tests/COUNT_PARTNERS_INTERVENTION_FLAT_LOCATIONS b/tests/COUNT_PARTNERS_INTERVENTION_FLAT_LOCATIONS index 573541ac9..d00491fd7 100644 --- a/tests/COUNT_PARTNERS_INTERVENTION_FLAT_LOCATIONS +++ b/tests/COUNT_PARTNERS_INTERVENTION_FLAT_LOCATIONS @@ -1 +1 @@ -0 +1 diff --git a/tests/COUNT_PARTNERS_PARTNERORGANIZATION b/tests/COUNT_PARTNERS_PARTNERORGANIZATION index d136d6a71..b0d73241c 100644 --- a/tests/COUNT_PARTNERS_PARTNERORGANIZATION +++ b/tests/COUNT_PARTNERS_PARTNERORGANIZATION @@ -1 +1 @@ -125 +129 diff --git a/tests/api/interfaces/_api_checker/test_data/data/_api_latest_datamart_audit_engagement-actionpoints_.fixture.json b/tests/api/interfaces/_api_checker/test_data/data/_api_latest_datamart_audit_engagement-actionpoints_.fixture.json new file mode 100644 index 000000000..f0a67eb77 --- /dev/null +++ b/tests/api/interfaces/_api_checker/test_data/data/_api_latest_datamart_audit_engagement-actionpoints_.fixture.json @@ -0,0 +1,199 @@ +{ + "data": { + "master": [ + { + "model": "data.engagement", + "pk": 397, + "fields": { + "source_id": null, + "last_modify_date": "2020-04-22T20:05:24.782Z", + "seen": null, + "country_name": "bolivia", + "schema_name": "bolivia", + "area_code": "", + "active_pd": null, + "active_pd_data": null, + "additional_supporting_documentation_provided": null, + "agreement": null, + "auditor": null, + "amount_refunded": "0.00", + "authorized_officers": null, + "authorized_officers_data": null, + "cancel_comment": null, + "created": null, + "date_of_cancel": null, + "date_of_comments_by_ip": null, + "date_of_comments_by_unicef": null, + "date_of_draft_report_to_ip": null, + "date_of_draft_report_to_unicef": null, + "date_of_field_visit": null, + "date_of_final_report": null, + "date_of_report_submit": null, + "end_date": null, + "engagement_attachments": null, + "engagement_type": null, + "exchange_rate": "0.00", + "explanation_for_additional_information": null, + "joint_audit": false, + "justification_provided_and_accepted": null, + "modified": null, + "partner_contacted_at": null, + "partner": { + "id": 100, + "name": "Partner1", + "source_id": 101, + "vendor_number": "123" + }, + "po_item": null, + "report_attachments": null, + "staff_members": null, + "staff_members_data": null, + "start_date": null, + "status": null, + "total_value": "0.00", + "write_off_required": "0.00", + "reference_number": null, + "final_report": null, + "shared_ip_with": "[]", + "spotcheck_total_amount_tested": null, + "spotcheck_total_amount_of_ineligible_expenditure": null, + "spotcheck_internal_controls": null, + "spotcheck_final_report": null, + "audited_expenditure": "0.00", + "financial_findings": "0.00", + "audit_opinion": null, + "action_points": null + } + }, + { + "model": "data.engagement", + "pk": 398, + "fields": { + "source_id": null, + "last_modify_date": "2020-04-22T20:05:24.785Z", + "seen": null, + "country_name": "chad", + "schema_name": "chad", + "area_code": "", + "active_pd": null, + "active_pd_data": null, + "additional_supporting_documentation_provided": null, + "agreement": null, + "auditor": null, + "amount_refunded": "0.00", + "authorized_officers": null, + "authorized_officers_data": null, + "cancel_comment": null, + "created": null, + "date_of_cancel": null, + "date_of_comments_by_ip": null, + "date_of_comments_by_unicef": null, + "date_of_draft_report_to_ip": null, + "date_of_draft_report_to_unicef": null, + "date_of_field_visit": null, + "date_of_final_report": null, + "date_of_report_submit": null, + "end_date": null, + "engagement_attachments": null, + "engagement_type": null, + "exchange_rate": "0.00", + "explanation_for_additional_information": null, + "joint_audit": false, + "justification_provided_and_accepted": null, + "modified": null, + "partner_contacted_at": null, + "partner": { + "id": 100, + "name": "Partner1", + "source_id": 101, + "vendor_number": "123" + }, + "po_item": null, + "report_attachments": null, + "staff_members": null, + "staff_members_data": null, + "start_date": null, + "status": null, + "total_value": "0.00", + "write_off_required": "0.00", + "reference_number": null, + "final_report": null, + "shared_ip_with": "[]", + "spotcheck_total_amount_tested": null, + "spotcheck_total_amount_of_ineligible_expenditure": null, + "spotcheck_internal_controls": null, + "spotcheck_final_report": null, + "audited_expenditure": "0.00", + "financial_findings": "0.00", + "audit_opinion": null, + "action_points": null + } + }, + { + "model": "data.engagement", + "pk": 399, + "fields": { + "source_id": null, + "last_modify_date": "2020-04-22T20:05:24.787Z", + "seen": null, + "country_name": "lebanon", + "schema_name": "lebanon", + "area_code": "", + "active_pd": null, + "active_pd_data": null, + "additional_supporting_documentation_provided": null, + "agreement": null, + "auditor": null, + "amount_refunded": "0.00", + "authorized_officers": null, + "authorized_officers_data": null, + "cancel_comment": null, + "created": null, + "date_of_cancel": null, + "date_of_comments_by_ip": null, + "date_of_comments_by_unicef": null, + "date_of_draft_report_to_ip": null, + "date_of_draft_report_to_unicef": null, + "date_of_field_visit": null, + "date_of_final_report": null, + "date_of_report_submit": null, + "end_date": null, + "engagement_attachments": null, + "engagement_type": null, + "exchange_rate": "0.00", + "explanation_for_additional_information": null, + "joint_audit": false, + "justification_provided_and_accepted": null, + "modified": null, + "partner_contacted_at": null, + "partner": { + "id": 100, + "name": "Partner1", + "source_id": 101, + "vendor_number": "123" + }, + "po_item": null, + "report_attachments": null, + "staff_members": null, + "staff_members_data": null, + "start_date": null, + "status": null, + "total_value": "0.00", + "write_off_required": "0.00", + "reference_number": null, + "final_report": null, + "shared_ip_with": "[]", + "spotcheck_total_amount_tested": null, + "spotcheck_total_amount_of_ineligible_expenditure": null, + "spotcheck_internal_controls": null, + "spotcheck_final_report": null, + "audited_expenditure": "0.00", + "financial_findings": "0.00", + "audit_opinion": null, + "action_points": null + } + } + ], + "deps": [] + } +} \ No newline at end of file diff --git a/tests/api/interfaces/_api_checker/test_data/data/_api_latest_datamart_audit_engagement-details_.fixture.json b/tests/api/interfaces/_api_checker/test_data/data/_api_latest_datamart_audit_engagement-details_.fixture.json new file mode 100644 index 000000000..2d8b61ec3 --- /dev/null +++ b/tests/api/interfaces/_api_checker/test_data/data/_api_latest_datamart_audit_engagement-details_.fixture.json @@ -0,0 +1,205 @@ +{ + "data": { + "master": [ + { + "model": "data.engagement", + "pk": 661, + "fields": { + "source_id": null, + "last_modify_date": "2020-07-23T15:15:45.053Z", + "seen": null, + "country_name": "bolivia", + "schema_name": "bolivia", + "area_code": "", + "active_pd": null, + "active_pd_data": null, + "additional_supporting_documentation_provided": null, + "agreement": null, + "auditor": null, + "amount_refunded": "0.00", + "authorized_officers": null, + "authorized_officers_data": null, + "cancel_comment": null, + "created": null, + "date_of_cancel": null, + "date_of_comments_by_ip": null, + "date_of_comments_by_unicef": null, + "date_of_draft_report_to_ip": null, + "date_of_draft_report_to_unicef": null, + "date_of_field_visit": null, + "date_of_final_report": null, + "date_of_report_submit": null, + "end_date": null, + "engagement_attachments": null, + "engagement_type": null, + "exchange_rate": "0.00", + "explanation_for_additional_information": null, + "joint_audit": false, + "justification_provided_and_accepted": null, + "modified": null, + "partner_contacted_at": null, + "partner": { + "id": 100, + "name": "Partner1", + "source_id": 101, + "vendor_number": "123" + }, + "po_item": null, + "report_attachments": null, + "staff_members": null, + "staff_members_data": null, + "start_date": null, + "status": null, + "total_value": "0.00", + "write_off_required": "0.00", + "reference_number": null, + "final_report": null, + "shared_ip_with": "[]", + "spotcheck_total_amount_tested": null, + "spotcheck_total_amount_of_ineligible_expenditure": null, + "spotcheck_internal_controls": null, + "spotcheck_final_report": null, + "rating": null, + "rating_extra": null, + "audited_expenditure": "0.00", + "financial_findings": "0.00", + "audit_opinion": null, + "action_points": null + } + }, + { + "model": "data.engagement", + "pk": 662, + "fields": { + "source_id": null, + "last_modify_date": "2020-07-23T15:15:45.056Z", + "seen": null, + "country_name": "chad", + "schema_name": "chad", + "area_code": "", + "active_pd": null, + "active_pd_data": null, + "additional_supporting_documentation_provided": null, + "agreement": null, + "auditor": null, + "amount_refunded": "0.00", + "authorized_officers": null, + "authorized_officers_data": null, + "cancel_comment": null, + "created": null, + "date_of_cancel": null, + "date_of_comments_by_ip": null, + "date_of_comments_by_unicef": null, + "date_of_draft_report_to_ip": null, + "date_of_draft_report_to_unicef": null, + "date_of_field_visit": null, + "date_of_final_report": null, + "date_of_report_submit": null, + "end_date": null, + "engagement_attachments": null, + "engagement_type": null, + "exchange_rate": "0.00", + "explanation_for_additional_information": null, + "joint_audit": false, + "justification_provided_and_accepted": null, + "modified": null, + "partner_contacted_at": null, + "partner": { + "id": 100, + "name": "Partner1", + "source_id": 101, + "vendor_number": "123" + }, + "po_item": null, + "report_attachments": null, + "staff_members": null, + "staff_members_data": null, + "start_date": null, + "status": null, + "total_value": "0.00", + "write_off_required": "0.00", + "reference_number": null, + "final_report": null, + "shared_ip_with": "[]", + "spotcheck_total_amount_tested": null, + "spotcheck_total_amount_of_ineligible_expenditure": null, + "spotcheck_internal_controls": null, + "spotcheck_final_report": null, + "rating": null, + "rating_extra": null, + "audited_expenditure": "0.00", + "financial_findings": "0.00", + "audit_opinion": null, + "action_points": null + } + }, + { + "model": "data.engagement", + "pk": 663, + "fields": { + "source_id": null, + "last_modify_date": "2020-07-23T15:15:45.059Z", + "seen": null, + "country_name": "lebanon", + "schema_name": "lebanon", + "area_code": "", + "active_pd": null, + "active_pd_data": null, + "additional_supporting_documentation_provided": null, + "agreement": null, + "auditor": null, + "amount_refunded": "0.00", + "authorized_officers": null, + "authorized_officers_data": null, + "cancel_comment": null, + "created": null, + "date_of_cancel": null, + "date_of_comments_by_ip": null, + "date_of_comments_by_unicef": null, + "date_of_draft_report_to_ip": null, + "date_of_draft_report_to_unicef": null, + "date_of_field_visit": null, + "date_of_final_report": null, + "date_of_report_submit": null, + "end_date": null, + "engagement_attachments": null, + "engagement_type": null, + "exchange_rate": "0.00", + "explanation_for_additional_information": null, + "joint_audit": false, + "justification_provided_and_accepted": null, + "modified": null, + "partner_contacted_at": null, + "partner": { + "id": 100, + "name": "Partner1", + "source_id": 101, + "vendor_number": "123" + }, + "po_item": null, + "report_attachments": null, + "staff_members": null, + "staff_members_data": null, + "start_date": null, + "status": null, + "total_value": "0.00", + "write_off_required": "0.00", + "reference_number": null, + "final_report": null, + "shared_ip_with": "[]", + "spotcheck_total_amount_tested": null, + "spotcheck_total_amount_of_ineligible_expenditure": null, + "spotcheck_internal_controls": null, + "spotcheck_final_report": null, + "rating": null, + "rating_extra": null, + "audited_expenditure": "0.00", + "financial_findings": "0.00", + "audit_opinion": null, + "action_points": null + } + } + ], + "deps": [] + } +} \ No newline at end of file diff --git a/tests/api/interfaces/_api_checker/test_data/data/_api_latest_datamart_interventions-budget_.fixture.json b/tests/api/interfaces/_api_checker/test_data/data/_api_latest_datamart_interventions-budget_.fixture.json index c5ea6e192..2ceed0ca3 100644 --- a/tests/api/interfaces/_api_checker/test_data/data/_api_latest_datamart_interventions-budget_.fixture.json +++ b/tests/api/interfaces/_api_checker/test_data/data/_api_latest_datamart_interventions-budget_.fixture.json @@ -3,10 +3,10 @@ "master": [ { "model": "data.interventionbudget", - "pk": 1205, + "pk": 397, "fields": { "source_id": null, - "last_modify_date": "2019-09-16T18:29:15.312Z", + "last_modify_date": "2020-09-24T20:11:19.889Z", "seen": null, "country_name": "bolivia", "schema_name": "bolivia", @@ -15,6 +15,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -93,10 +94,10 @@ }, { "model": "data.interventionbudget", - "pk": 1206, + "pk": 398, "fields": { "source_id": null, - "last_modify_date": "2019-09-16T18:29:15.319Z", + "last_modify_date": "2020-09-24T20:11:19.894Z", "seen": null, "country_name": "chad", "schema_name": "chad", @@ -105,6 +106,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -183,10 +185,10 @@ }, { "model": "data.interventionbudget", - "pk": 1207, + "pk": 399, "fields": { "source_id": null, - "last_modify_date": "2019-09-16T18:29:15.322Z", + "last_modify_date": "2020-09-24T20:11:19.898Z", "seen": null, "country_name": "lebanon", "schema_name": "lebanon", @@ -195,6 +197,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, diff --git a/tests/api/interfaces/_api_checker/test_data/data/_api_latest_datamart_interventions-locations_.fixture.json b/tests/api/interfaces/_api_checker/test_data/data/_api_latest_datamart_interventions-locations_.fixture.json index 4c1785d60..838b16f9d 100644 --- a/tests/api/interfaces/_api_checker/test_data/data/_api_latest_datamart_interventions-locations_.fixture.json +++ b/tests/api/interfaces/_api_checker/test_data/data/_api_latest_datamart_interventions-locations_.fixture.json @@ -3,10 +3,10 @@ "master": [ { "model": "data.interventionbylocation", - "pk": 1502, + "pk": 496, "fields": { "source_id": null, - "last_modify_date": "2019-09-16T18:29:14.711Z", + "last_modify_date": "2020-09-24T20:11:18.737Z", "seen": null, "country_name": "bolivia", "schema_name": "bolivia", @@ -21,6 +21,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -37,10 +38,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 0, + "intervention_id": 495, "last_amendment_date": null, "metadata": {}, - "number": "#000", + "number": "#495", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -75,7 +76,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title000", + "title": "title495", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", @@ -89,10 +90,10 @@ }, { "model": "data.interventionbylocation", - "pk": 1503, + "pk": 497, "fields": { "source_id": null, - "last_modify_date": "2019-09-16T18:29:14.719Z", + "last_modify_date": "2020-09-24T20:11:18.740Z", "seen": null, "country_name": "chad", "schema_name": "chad", @@ -107,6 +108,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -123,10 +125,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 1, + "intervention_id": 496, "last_amendment_date": null, "metadata": {}, - "number": "#001", + "number": "#496", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -161,7 +163,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title001", + "title": "title496", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", @@ -175,10 +177,10 @@ }, { "model": "data.interventionbylocation", - "pk": 1504, + "pk": 498, "fields": { "source_id": null, - "last_modify_date": "2019-09-16T18:29:14.722Z", + "last_modify_date": "2020-09-24T20:11:18.743Z", "seen": null, "country_name": "lebanon", "schema_name": "lebanon", @@ -193,6 +195,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -209,10 +212,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 2, + "intervention_id": 497, "last_amendment_date": null, "metadata": {}, - "number": "#002", + "number": "#497", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -247,7 +250,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title002", + "title": "title497", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", diff --git a/tests/api/interfaces/_api_checker/test_data/data/_api_latest_datamart_interventions_.fixture.json b/tests/api/interfaces/_api_checker/test_data/data/_api_latest_datamart_interventions_.fixture.json index c1f15b457..4a96914b3 100644 --- a/tests/api/interfaces/_api_checker/test_data/data/_api_latest_datamart_interventions_.fixture.json +++ b/tests/api/interfaces/_api_checker/test_data/data/_api_latest_datamart_interventions_.fixture.json @@ -3,10 +3,10 @@ "master": [ { "model": "data.intervention", - "pk": 1598, + "pk": 506, "fields": { "source_id": null, - "last_modify_date": "2019-09-16T18:29:14.072Z", + "last_modify_date": "2020-09-24T20:11:18.301Z", "seen": null, "country_name": "bolivia", "schema_name": "bolivia", @@ -15,6 +15,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -31,10 +32,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 0, + "intervention_id": 505, "last_amendment_date": null, "metadata": {}, - "number": "#000", + "number": "#505", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -69,7 +70,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title000", + "title": "title505", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", @@ -95,10 +96,10 @@ }, { "model": "data.intervention", - "pk": 1599, + "pk": 507, "fields": { "source_id": null, - "last_modify_date": "2019-09-16T18:29:14.078Z", + "last_modify_date": "2020-09-24T20:11:18.305Z", "seen": null, "country_name": "chad", "schema_name": "chad", @@ -107,6 +108,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -123,10 +125,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 1, + "intervention_id": 506, "last_amendment_date": null, "metadata": {}, - "number": "#001", + "number": "#506", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -161,7 +163,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title001", + "title": "title506", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", @@ -187,10 +189,10 @@ }, { "model": "data.intervention", - "pk": 1600, + "pk": 508, "fields": { "source_id": null, - "last_modify_date": "2019-09-16T18:29:14.080Z", + "last_modify_date": "2020-09-24T20:11:18.308Z", "seen": null, "country_name": "lebanon", "schema_name": "lebanon", @@ -199,6 +201,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -215,10 +218,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 2, + "intervention_id": 507, "last_amendment_date": null, "metadata": {}, - "number": "#002", + "number": "#507", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -253,7 +256,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title002", + "title": "title507", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", diff --git a/tests/api/interfaces/_api_checker/test_data/record/_api_latest_datamart_audit_engagement-actionpoints_.fixture.json b/tests/api/interfaces/_api_checker/test_data/record/_api_latest_datamart_audit_engagement-actionpoints_.fixture.json new file mode 100644 index 000000000..f920c5fcd --- /dev/null +++ b/tests/api/interfaces/_api_checker/test_data/record/_api_latest_datamart_audit_engagement-actionpoints_.fixture.json @@ -0,0 +1,69 @@ +{ + "record": { + "master": { + "model": "data.engagement", + "pk": 400, + "fields": { + "source_id": null, + "last_modify_date": "2020-04-22T20:05:27.891Z", + "seen": null, + "country_name": "bolivia", + "schema_name": "bolivia", + "area_code": "", + "active_pd": null, + "active_pd_data": null, + "additional_supporting_documentation_provided": null, + "agreement": null, + "auditor": null, + "amount_refunded": "0.00", + "authorized_officers": null, + "authorized_officers_data": null, + "cancel_comment": null, + "created": null, + "date_of_cancel": null, + "date_of_comments_by_ip": null, + "date_of_comments_by_unicef": null, + "date_of_draft_report_to_ip": null, + "date_of_draft_report_to_unicef": null, + "date_of_field_visit": null, + "date_of_final_report": null, + "date_of_report_submit": null, + "end_date": null, + "engagement_attachments": null, + "engagement_type": null, + "exchange_rate": "0.00", + "explanation_for_additional_information": null, + "joint_audit": false, + "justification_provided_and_accepted": null, + "modified": null, + "partner_contacted_at": null, + "partner": { + "id": 100, + "name": "Partner1", + "source_id": 101, + "vendor_number": "123" + }, + "po_item": null, + "report_attachments": null, + "staff_members": null, + "staff_members_data": null, + "start_date": null, + "status": null, + "total_value": "0.00", + "write_off_required": "0.00", + "reference_number": null, + "final_report": null, + "shared_ip_with": "[]", + "spotcheck_total_amount_tested": null, + "spotcheck_total_amount_of_ineligible_expenditure": null, + "spotcheck_internal_controls": null, + "spotcheck_final_report": null, + "audited_expenditure": "0.00", + "financial_findings": "0.00", + "audit_opinion": null, + "action_points": null + } + }, + "deps": [] + } +} \ No newline at end of file diff --git a/tests/api/interfaces/_api_checker/test_data/record/_api_latest_datamart_audit_engagement-details_.fixture.json b/tests/api/interfaces/_api_checker/test_data/record/_api_latest_datamart_audit_engagement-details_.fixture.json new file mode 100644 index 000000000..20ff4bebb --- /dev/null +++ b/tests/api/interfaces/_api_checker/test_data/record/_api_latest_datamart_audit_engagement-details_.fixture.json @@ -0,0 +1,71 @@ +{ + "record": { + "master": { + "model": "data.engagement", + "pk": 664, + "fields": { + "source_id": null, + "last_modify_date": "2020-07-23T15:15:48.897Z", + "seen": null, + "country_name": "bolivia", + "schema_name": "bolivia", + "area_code": "", + "active_pd": null, + "active_pd_data": null, + "additional_supporting_documentation_provided": null, + "agreement": null, + "auditor": null, + "amount_refunded": "0.00", + "authorized_officers": null, + "authorized_officers_data": null, + "cancel_comment": null, + "created": null, + "date_of_cancel": null, + "date_of_comments_by_ip": null, + "date_of_comments_by_unicef": null, + "date_of_draft_report_to_ip": null, + "date_of_draft_report_to_unicef": null, + "date_of_field_visit": null, + "date_of_final_report": null, + "date_of_report_submit": null, + "end_date": null, + "engagement_attachments": null, + "engagement_type": null, + "exchange_rate": "0.00", + "explanation_for_additional_information": null, + "joint_audit": false, + "justification_provided_and_accepted": null, + "modified": null, + "partner_contacted_at": null, + "partner": { + "id": 100, + "name": "Partner1", + "source_id": 101, + "vendor_number": "123" + }, + "po_item": null, + "report_attachments": null, + "staff_members": null, + "staff_members_data": null, + "start_date": null, + "status": null, + "total_value": "0.00", + "write_off_required": "0.00", + "reference_number": null, + "final_report": null, + "shared_ip_with": "[]", + "spotcheck_total_amount_tested": null, + "spotcheck_total_amount_of_ineligible_expenditure": null, + "spotcheck_internal_controls": null, + "spotcheck_final_report": null, + "rating": null, + "rating_extra": null, + "audited_expenditure": "0.00", + "financial_findings": "0.00", + "audit_opinion": null, + "action_points": null + } + }, + "deps": [] + } +} \ No newline at end of file diff --git a/tests/api/interfaces/_api_checker/test_data/record/_api_latest_datamart_interventions-budget_.fixture.json b/tests/api/interfaces/_api_checker/test_data/record/_api_latest_datamart_interventions-budget_.fixture.json index dd5c96670..c360f20d5 100644 --- a/tests/api/interfaces/_api_checker/test_data/record/_api_latest_datamart_interventions-budget_.fixture.json +++ b/tests/api/interfaces/_api_checker/test_data/record/_api_latest_datamart_interventions-budget_.fixture.json @@ -2,10 +2,10 @@ "record": { "master": { "model": "data.interventionbudget", - "pk": 1208, + "pk": 400, "fields": { "source_id": null, - "last_modify_date": "2019-09-16T18:29:20.015Z", + "last_modify_date": "2020-09-24T20:11:22.981Z", "seen": null, "country_name": "bolivia", "schema_name": "bolivia", @@ -14,6 +14,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, diff --git a/tests/api/interfaces/_api_checker/test_data/record/_api_latest_datamart_interventions-locations_.fixture.json b/tests/api/interfaces/_api_checker/test_data/record/_api_latest_datamart_interventions-locations_.fixture.json index 5ee14cdc3..d1f955491 100644 --- a/tests/api/interfaces/_api_checker/test_data/record/_api_latest_datamart_interventions-locations_.fixture.json +++ b/tests/api/interfaces/_api_checker/test_data/record/_api_latest_datamart_interventions-locations_.fixture.json @@ -2,10 +2,10 @@ "record": { "master": { "model": "data.interventionbylocation", - "pk": 1505, + "pk": 499, "fields": { "source_id": null, - "last_modify_date": "2019-09-16T18:29:19.539Z", + "last_modify_date": "2020-09-24T20:11:22.603Z", "seen": null, "country_name": "bolivia", "schema_name": "bolivia", @@ -20,6 +20,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -36,10 +37,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 3, + "intervention_id": 498, "last_amendment_date": null, "metadata": {}, - "number": "#003", + "number": "#498", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -74,7 +75,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title003", + "title": "title498", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", diff --git a/tests/api/interfaces/_api_checker/test_data/record/_api_latest_datamart_interventions_.fixture.json b/tests/api/interfaces/_api_checker/test_data/record/_api_latest_datamart_interventions_.fixture.json index 1795d7ea0..ba12cd3b1 100644 --- a/tests/api/interfaces/_api_checker/test_data/record/_api_latest_datamart_interventions_.fixture.json +++ b/tests/api/interfaces/_api_checker/test_data/record/_api_latest_datamart_interventions_.fixture.json @@ -2,10 +2,10 @@ "record": { "master": { "model": "data.intervention", - "pk": 1601, + "pk": 509, "fields": { "source_id": null, - "last_modify_date": "2019-09-16T18:29:19.090Z", + "last_modify_date": "2020-09-24T20:11:22.224Z", "seen": null, "country_name": "bolivia", "schema_name": "bolivia", @@ -14,6 +14,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -30,10 +31,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 3, + "intervention_id": 508, "last_amendment_date": null, "metadata": {}, - "number": "#003", + "number": "#508", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -68,7 +69,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title003", + "title": "title508", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_audit_engagement-actionpoints_/get/{'-serializer': 'simple'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_audit_engagement-actionpoints_/get/{'-serializer': 'simple'}.response.json new file mode 100644 index 000000000..bef3c8e99 --- /dev/null +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_audit_engagement-actionpoints_/get/{'-serializer': 'simple'}.response.json @@ -0,0 +1,174 @@ +{ + "status_code": 200, + "headers": { + "content-type": [ + "Content-Type", + "application/json" + ], + "vary": [ + "Vary", + "Accept, Origin, Cookie" + ], + "allow": [ + "Allow", + "GET, HEAD, OPTIONS" + ], + "etag": [ + "ETag", + "\"4ba983f9228d30c6fef2284b290f0ca8\"" + ], + "x-frame-options": [ + "X-Frame-Options", + "DENY" + ], + "view": [ + "view", + "etools_datamart.api.endpoints.datamart.audit_engagement.EngagementActionPointViewSet" + ], + "service": [ + "service", + "etools_datamart.api.endpoints.datamart.audit_engagement.EngagementActionPointViewSet" + ], + "cache-version": [ + "cache-version", + "1" + ], + "system-filters": [ + "system-filters", + "" + ], + "cache-key": [ + "cache-key", + "4ba983f9228d30c6fef2284b290f0ca8" + ], + "cache-hit": [ + "cache-hit", + "False" + ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], + "cache-ttl": [ + "cache-ttl", + "1y" + ], + "content-length": [ + "Content-Length", + "2442" + ] + }, + "data": { + "count": 3, + "next": null, + "current_page": 1, + "total_pages": 1, + "previous": null, + "results": [ + { + "country_name": "bolivia", + "schema": "bolivia", + "created": null, + "modified": null, + "reference_number": null, + "status": null, + "partner_contacted_at": null, + "engagement_type": null, + "start_date": null, + "end_date": null, + "total_value": "0.00", + "date_of_field_visit": null, + "date_of_draft_report_to_ip": null, + "date_of_comments_by_ip": null, + "date_of_draft_report_to_unicef": null, + "date_of_comments_by_unicef": null, + "date_of_report_submit": null, + "date_of_final_report": null, + "date_of_cancel": null, + "amount_refunded": "0.00", + "additional_supporting_documentation_provided": null, + "justification_provided_and_accepted": null, + "write_off_required": "0.00", + "cancel_comment": null, + "explanation_for_additional_information": null, + "joint_audit": false, + "shared_ip_with": [], + "exchange_rate": "0.00", + "partner": 100, + "agreement": null, + "po_item": null + }, + { + "country_name": "chad", + "schema": "chad", + "created": null, + "modified": null, + "reference_number": null, + "status": null, + "partner_contacted_at": null, + "engagement_type": null, + "start_date": null, + "end_date": null, + "total_value": "0.00", + "date_of_field_visit": null, + "date_of_draft_report_to_ip": null, + "date_of_comments_by_ip": null, + "date_of_draft_report_to_unicef": null, + "date_of_comments_by_unicef": null, + "date_of_report_submit": null, + "date_of_final_report": null, + "date_of_cancel": null, + "amount_refunded": "0.00", + "additional_supporting_documentation_provided": null, + "justification_provided_and_accepted": null, + "write_off_required": "0.00", + "cancel_comment": null, + "explanation_for_additional_information": null, + "joint_audit": false, + "shared_ip_with": [], + "exchange_rate": "0.00", + "partner": 100, + "agreement": null, + "po_item": null + }, + { + "country_name": "lebanon", + "schema": "lebanon", + "created": null, + "modified": null, + "reference_number": null, + "status": null, + "partner_contacted_at": null, + "engagement_type": null, + "start_date": null, + "end_date": null, + "total_value": "0.00", + "date_of_field_visit": null, + "date_of_draft_report_to_ip": null, + "date_of_comments_by_ip": null, + "date_of_draft_report_to_unicef": null, + "date_of_comments_by_unicef": null, + "date_of_report_submit": null, + "date_of_final_report": null, + "date_of_cancel": null, + "amount_refunded": "0.00", + "additional_supporting_documentation_provided": null, + "justification_provided_and_accepted": null, + "write_off_required": "0.00", + "cancel_comment": null, + "explanation_for_additional_information": null, + "joint_audit": false, + "shared_ip_with": [], + "exchange_rate": "0.00", + "partner": 100, + "agreement": null, + "po_item": null + } + ] + }, + "content_type": null +} \ No newline at end of file diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_audit_engagement-actionpoints_/get/{'-serializer': 'std'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_audit_engagement-actionpoints_/get/{'-serializer': 'std'}.response.json new file mode 100644 index 000000000..a63e22492 --- /dev/null +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_audit_engagement-actionpoints_/get/{'-serializer': 'std'}.response.json @@ -0,0 +1,135 @@ +{ + "status_code": 200, + "headers": { + "content-type": [ + "Content-Type", + "application/json" + ], + "vary": [ + "Vary", + "Accept, Origin, Cookie" + ], + "allow": [ + "Allow", + "GET, HEAD, OPTIONS" + ], + "etag": [ + "ETag", + "\"7d913ab3d23614da5584b0c1b08ef968\"" + ], + "x-frame-options": [ + "X-Frame-Options", + "DENY" + ], + "view": [ + "view", + "etools_datamart.api.endpoints.datamart.audit_engagement.EngagementActionPointViewSet" + ], + "service": [ + "service", + "etools_datamart.api.endpoints.datamart.audit_engagement.EngagementActionPointViewSet" + ], + "cache-version": [ + "cache-version", + "1" + ], + "system-filters": [ + "system-filters", + "" + ], + "cache-key": [ + "cache-key", + "7d913ab3d23614da5584b0c1b08ef968" + ], + "cache-hit": [ + "cache-hit", + "False" + ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], + "cache-ttl": [ + "cache-ttl", + "1y" + ], + "content-length": [ + "Content-Length", + "1350" + ] + }, + "data": { + "count": 3, + "next": null, + "current_page": 1, + "total_pages": 1, + "previous": null, + "results": [ + { + "po_item": null, + "engagement_type": null, + "start_date": null, + "end_date": null, + "partner": "Partner1", + "partner_contacted_at": null, + "vendor_number": "123", + "auditor": null, + "total_value": "0.00", + "spotcheck_total_amount_tested": null, + "date_of_field_visit": null, + "final_report": null, + "agreement": null, + "spotcheck_total_amount_of_ineligible_expenditure": null, + "financial_findings": "0.00", + "action_points": null, + "status": null, + "audit_opinion": null + }, + { + "po_item": null, + "engagement_type": null, + "start_date": null, + "end_date": null, + "partner": "Partner1", + "partner_contacted_at": null, + "vendor_number": "123", + "auditor": null, + "total_value": "0.00", + "spotcheck_total_amount_tested": null, + "date_of_field_visit": null, + "final_report": null, + "agreement": null, + "spotcheck_total_amount_of_ineligible_expenditure": null, + "financial_findings": "0.00", + "action_points": null, + "status": null, + "audit_opinion": null + }, + { + "po_item": null, + "engagement_type": null, + "start_date": null, + "end_date": null, + "partner": "Partner1", + "partner_contacted_at": null, + "vendor_number": "123", + "auditor": null, + "total_value": "0.00", + "spotcheck_total_amount_tested": null, + "date_of_field_visit": null, + "final_report": null, + "agreement": null, + "spotcheck_total_amount_of_ineligible_expenditure": null, + "financial_findings": "0.00", + "action_points": null, + "status": null, + "audit_opinion": null + } + ] + }, + "content_type": null +} \ No newline at end of file diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_audit_engagement-details_/get/{'-serializer': 'simple'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_audit_engagement-details_/get/{'-serializer': 'simple'}.response.json new file mode 100644 index 000000000..4b8242005 --- /dev/null +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_audit_engagement-details_/get/{'-serializer': 'simple'}.response.json @@ -0,0 +1,174 @@ +{ + "status_code": 200, + "headers": { + "content-type": [ + "Content-Type", + "application/json" + ], + "vary": [ + "Vary", + "Accept, Origin, Cookie" + ], + "allow": [ + "Allow", + "GET, HEAD, OPTIONS" + ], + "etag": [ + "ETag", + "\"c60b3b310d089968ed5807822d581577\"" + ], + "x-frame-options": [ + "X-Frame-Options", + "DENY" + ], + "view": [ + "view", + "etools_datamart.api.endpoints.datamart.audit_engagement.EngagementDetailViewSet" + ], + "service": [ + "service", + "etools_datamart.api.endpoints.datamart.audit_engagement.EngagementDetailViewSet" + ], + "cache-version": [ + "cache-version", + "1" + ], + "system-filters": [ + "system-filters", + "" + ], + "cache-key": [ + "cache-key", + "c60b3b310d089968ed5807822d581577" + ], + "cache-hit": [ + "cache-hit", + "False" + ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], + "cache-ttl": [ + "cache-ttl", + "1y" + ], + "content-length": [ + "Content-Length", + "2442" + ] + }, + "data": { + "count": 3, + "next": null, + "current_page": 1, + "total_pages": 1, + "previous": null, + "results": [ + { + "country_name": "bolivia", + "schema": "bolivia", + "created": null, + "modified": null, + "reference_number": null, + "status": null, + "partner_contacted_at": null, + "engagement_type": null, + "start_date": null, + "end_date": null, + "total_value": "0.00", + "date_of_field_visit": null, + "date_of_draft_report_to_ip": null, + "date_of_comments_by_ip": null, + "date_of_draft_report_to_unicef": null, + "date_of_comments_by_unicef": null, + "date_of_report_submit": null, + "date_of_final_report": null, + "date_of_cancel": null, + "amount_refunded": "0.00", + "additional_supporting_documentation_provided": null, + "justification_provided_and_accepted": null, + "write_off_required": "0.00", + "cancel_comment": null, + "explanation_for_additional_information": null, + "joint_audit": false, + "shared_ip_with": [], + "exchange_rate": "0.00", + "partner": 100, + "agreement": null, + "po_item": null + }, + { + "country_name": "chad", + "schema": "chad", + "created": null, + "modified": null, + "reference_number": null, + "status": null, + "partner_contacted_at": null, + "engagement_type": null, + "start_date": null, + "end_date": null, + "total_value": "0.00", + "date_of_field_visit": null, + "date_of_draft_report_to_ip": null, + "date_of_comments_by_ip": null, + "date_of_draft_report_to_unicef": null, + "date_of_comments_by_unicef": null, + "date_of_report_submit": null, + "date_of_final_report": null, + "date_of_cancel": null, + "amount_refunded": "0.00", + "additional_supporting_documentation_provided": null, + "justification_provided_and_accepted": null, + "write_off_required": "0.00", + "cancel_comment": null, + "explanation_for_additional_information": null, + "joint_audit": false, + "shared_ip_with": [], + "exchange_rate": "0.00", + "partner": 100, + "agreement": null, + "po_item": null + }, + { + "country_name": "lebanon", + "schema": "lebanon", + "created": null, + "modified": null, + "reference_number": null, + "status": null, + "partner_contacted_at": null, + "engagement_type": null, + "start_date": null, + "end_date": null, + "total_value": "0.00", + "date_of_field_visit": null, + "date_of_draft_report_to_ip": null, + "date_of_comments_by_ip": null, + "date_of_draft_report_to_unicef": null, + "date_of_comments_by_unicef": null, + "date_of_report_submit": null, + "date_of_final_report": null, + "date_of_cancel": null, + "amount_refunded": "0.00", + "additional_supporting_documentation_provided": null, + "justification_provided_and_accepted": null, + "write_off_required": "0.00", + "cancel_comment": null, + "explanation_for_additional_information": null, + "joint_audit": false, + "shared_ip_with": [], + "exchange_rate": "0.00", + "partner": 100, + "agreement": null, + "po_item": null + } + ] + }, + "content_type": null +} \ No newline at end of file diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_audit_engagement-details_/get/{'-serializer': 'std'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_audit_engagement-details_/get/{'-serializer': 'std'}.response.json new file mode 100644 index 000000000..92530e558 --- /dev/null +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_audit_engagement-details_/get/{'-serializer': 'std'}.response.json @@ -0,0 +1,141 @@ +{ + "status_code": 200, + "headers": { + "content-type": [ + "Content-Type", + "application/json" + ], + "vary": [ + "Vary", + "Accept, Origin, Cookie" + ], + "allow": [ + "Allow", + "GET, HEAD, OPTIONS" + ], + "etag": [ + "ETag", + "\"14f584bb49d28abfee2bfc635404119a\"" + ], + "x-frame-options": [ + "X-Frame-Options", + "DENY" + ], + "view": [ + "view", + "etools_datamart.api.endpoints.datamart.audit_engagement.EngagementDetailViewSet" + ], + "service": [ + "service", + "etools_datamart.api.endpoints.datamart.audit_engagement.EngagementDetailViewSet" + ], + "cache-version": [ + "cache-version", + "1" + ], + "system-filters": [ + "system-filters", + "" + ], + "cache-key": [ + "cache-key", + "14f584bb49d28abfee2bfc635404119a" + ], + "cache-hit": [ + "cache-hit", + "False" + ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], + "cache-ttl": [ + "cache-ttl", + "1y" + ], + "content-length": [ + "Content-Length", + "1452" + ] + }, + "data": { + "count": 3, + "next": null, + "current_page": 1, + "total_pages": 1, + "previous": null, + "results": [ + { + "po_item": null, + "engagement_type": null, + "start_date": null, + "end_date": null, + "partner": "Partner1", + "partner_contacted_at": null, + "vendor_number": "123", + "auditor": null, + "total_value": "0.00", + "spotcheck_total_amount_tested": null, + "date_of_field_visit": null, + "final_report": null, + "agreement": null, + "rating": null, + "rating_extra": null, + "spotcheck_total_amount_of_ineligible_expenditure": null, + "financial_findings": "0.00", + "action_points": null, + "status": null, + "audit_opinion": null + }, + { + "po_item": null, + "engagement_type": null, + "start_date": null, + "end_date": null, + "partner": "Partner1", + "partner_contacted_at": null, + "vendor_number": "123", + "auditor": null, + "total_value": "0.00", + "spotcheck_total_amount_tested": null, + "date_of_field_visit": null, + "final_report": null, + "agreement": null, + "rating": null, + "rating_extra": null, + "spotcheck_total_amount_of_ineligible_expenditure": null, + "financial_findings": "0.00", + "action_points": null, + "status": null, + "audit_opinion": null + }, + { + "po_item": null, + "engagement_type": null, + "start_date": null, + "end_date": null, + "partner": "Partner1", + "partner_contacted_at": null, + "vendor_number": "123", + "auditor": null, + "total_value": "0.00", + "spotcheck_total_amount_tested": null, + "date_of_field_visit": null, + "final_report": null, + "agreement": null, + "rating": null, + "rating_extra": null, + "spotcheck_total_amount_of_ineligible_expenditure": null, + "financial_findings": "0.00", + "action_points": null, + "status": null, + "audit_opinion": null + } + ] + }, + "content_type": null +} \ No newline at end of file diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_audit_engagements_/get/{'-serializer': 'std'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_audit_engagements_/get/{'-serializer': 'std'}.response.json index 21ab5ce48..971de554c 100644 --- a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_audit_engagements_/get/{'-serializer': 'std'}.response.json +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_audit_engagements_/get/{'-serializer': 'std'}.response.json @@ -15,7 +15,7 @@ ], "etag": [ "ETag", - "\"8c38fcd780e1688a004c761f667963fa\"" + "\"b42096ea0c266d1b9f6150e0397ef82c\"" ], "x-frame-options": [ "X-Frame-Options", @@ -39,19 +39,27 @@ ], "cache-key": [ "cache-key", - "8c38fcd780e1688a004c761f667963fa" + "b42096ea0c266d1b9f6150e0397ef82c" ], "cache-hit": [ "cache-hit", "False" ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], "cache-ttl": [ "cache-ttl", "1y" ], "content-length": [ "Content-Length", - "4323" + "4533" ] }, "data": { @@ -73,6 +81,7 @@ "active_pd_data": null, "additional_supporting_documentation_provided": null, "agreement": null, + "auditor": null, "amount_refunded": "0.00", "authorized_officers": null, "authorized_officers_data": null, @@ -116,9 +125,12 @@ "spotcheck_total_amount_of_ineligible_expenditure": null, "spotcheck_internal_controls": null, "spotcheck_final_report": null, + "rating": null, + "rating_extra": null, "audited_expenditure": "0.00", "financial_findings": "0.00", - "audit_opinion": null + "audit_opinion": null, + "action_points": null }, { "id": 1188, @@ -132,6 +144,7 @@ "active_pd_data": null, "additional_supporting_documentation_provided": null, "agreement": null, + "auditor": null, "amount_refunded": "0.00", "authorized_officers": null, "authorized_officers_data": null, @@ -175,9 +188,12 @@ "spotcheck_total_amount_of_ineligible_expenditure": null, "spotcheck_internal_controls": null, "spotcheck_final_report": null, + "rating": null, + "rating_extra": null, "audited_expenditure": "0.00", "financial_findings": "0.00", - "audit_opinion": null + "audit_opinion": null, + "action_points": null }, { "id": 1189, @@ -191,6 +207,7 @@ "active_pd_data": null, "additional_supporting_documentation_provided": null, "agreement": null, + "auditor": null, "amount_refunded": "0.00", "authorized_officers": null, "authorized_officers_data": null, @@ -234,9 +251,12 @@ "spotcheck_total_amount_of_ineligible_expenditure": null, "spotcheck_internal_controls": null, "spotcheck_final_report": null, + "rating": null, + "rating_extra": null, "audited_expenditure": "0.00", "financial_findings": "0.00", - "audit_opinion": null + "audit_opinion": null, + "action_points": null } ] }, diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-budget_/get/{'-serializer': 'full'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-budget_/get/{'-serializer': 'full'}.response.json index 57541b459..ff9a267e8 100644 --- a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-budget_/get/{'-serializer': 'full'}.response.json +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-budget_/get/{'-serializer': 'full'}.response.json @@ -15,7 +15,7 @@ ], "etag": [ "ETag", - "\"013064f7dbb540651fd89440d192f47e\"" + "\"95d3cd0eaf260c8a4f355638dd0c0051\"" ], "x-frame-options": [ "X-Frame-Options", @@ -39,19 +39,27 @@ ], "cache-key": [ "cache-key", - "013064f7dbb540651fd89440d192f47e" + "95d3cd0eaf260c8a4f355638dd0c0051" ], "cache-hit": [ "cache-hit", "False" ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], "cache-ttl": [ "cache-ttl", "1y" ], "content-length": [ "Content-Length", - "6096" + "6243" ] }, "data": { @@ -62,9 +70,9 @@ "previous": null, "results": [ { - "id": 1205, + "id": 397, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:15", + "last_modify_date": "24 Sep 2020 20:11:19", "country_name": "bolivia", "schema_name": "bolivia", "area_code": "", @@ -72,6 +80,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -102,6 +111,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -148,9 +158,9 @@ "locations_data": {} }, { - "id": 1206, + "id": 398, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:15", + "last_modify_date": "24 Sep 2020 20:11:19", "country_name": "chad", "schema_name": "chad", "area_code": "", @@ -158,6 +168,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -188,6 +199,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -234,9 +246,9 @@ "locations_data": {} }, { - "id": 1207, + "id": 399, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:15", + "last_modify_date": "24 Sep 2020 20:11:19", "country_name": "lebanon", "schema_name": "lebanon", "area_code": "", @@ -244,6 +256,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -274,6 +287,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-budget_/get/{'-serializer': 'plain'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-budget_/get/{'-serializer': 'plain'}.response.json index f92ca8135..6014f1f62 100644 --- a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-budget_/get/{'-serializer': 'plain'}.response.json +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-budget_/get/{'-serializer': 'plain'}.response.json @@ -15,7 +15,7 @@ ], "etag": [ "ETag", - "\"31570057be55e77731110613ce046155\"" + "\"1942a6f25697dea0e0bf3f329b97f462\"" ], "x-frame-options": [ "X-Frame-Options", @@ -39,19 +39,27 @@ ], "cache-key": [ "cache-key", - "31570057be55e77731110613ce046155" + "1942a6f25697dea0e0bf3f329b97f462" ], "cache-hit": [ "cache-hit", "False" ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], "cache-ttl": [ "cache-ttl", "1y" ], "content-length": [ "Content-Length", - "6762" + "6909" ] }, "data": { @@ -62,7 +70,7 @@ "previous": null, "results": [ { - "id": 1205, + "id": 397, "pd_ssfa_type": null, "pd_ssfa_reference_number": null, "pd_ssfa_title": null, @@ -71,10 +79,10 @@ "pd_ssfa_end_date": null, "pd_ssfa_submission_date": null, "pd_ssfa_submission_date_prc": null, - "pd_ssfa_last_modify_date": "16 Sep 2019 18:29:15", + "pd_ssfa_last_modify_date": "24 Sep 2020 20:11:19", "pd_ssfa_url": "https://etools.unicef.org/pmp/interventions/None/details/?schema=bolivia", "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:15", + "last_modify_date": "24 Sep 2020 20:11:19", "seen": null, "country_name": "bolivia", "schema_name": "bolivia", @@ -83,6 +91,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -110,6 +119,7 @@ "partner_focal_points": null, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -153,7 +163,7 @@ "locations": null }, { - "id": 1206, + "id": 398, "pd_ssfa_type": null, "pd_ssfa_reference_number": null, "pd_ssfa_title": null, @@ -162,10 +172,10 @@ "pd_ssfa_end_date": null, "pd_ssfa_submission_date": null, "pd_ssfa_submission_date_prc": null, - "pd_ssfa_last_modify_date": "16 Sep 2019 18:29:15", + "pd_ssfa_last_modify_date": "24 Sep 2020 20:11:19", "pd_ssfa_url": "https://etools.unicef.org/pmp/interventions/None/details/?schema=chad", "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:15", + "last_modify_date": "24 Sep 2020 20:11:19", "seen": null, "country_name": "chad", "schema_name": "chad", @@ -174,6 +184,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -201,6 +212,7 @@ "partner_focal_points": null, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -244,7 +256,7 @@ "locations": null }, { - "id": 1207, + "id": 399, "pd_ssfa_type": null, "pd_ssfa_reference_number": null, "pd_ssfa_title": null, @@ -253,10 +265,10 @@ "pd_ssfa_end_date": null, "pd_ssfa_submission_date": null, "pd_ssfa_submission_date_prc": null, - "pd_ssfa_last_modify_date": "16 Sep 2019 18:29:15", + "pd_ssfa_last_modify_date": "24 Sep 2020 20:11:19", "pd_ssfa_url": "https://etools.unicef.org/pmp/interventions/None/details/?schema=lebanon", "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:15", + "last_modify_date": "24 Sep 2020 20:11:19", "seen": null, "country_name": "lebanon", "schema_name": "lebanon", @@ -265,6 +277,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -292,6 +305,7 @@ "partner_focal_points": null, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-budget_/get/{'-serializer': 'std'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-budget_/get/{'-serializer': 'std'}.response.json index 6ae2a6b8c..34f8f37b0 100644 --- a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-budget_/get/{'-serializer': 'std'}.response.json +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-budget_/get/{'-serializer': 'std'}.response.json @@ -15,7 +15,7 @@ ], "etag": [ "ETag", - "\"6f239c61801cf086a8827e4b68819162\"" + "\"46575c710481f7bfb5aa6e09bf6cf7fd\"" ], "x-frame-options": [ "X-Frame-Options", @@ -39,19 +39,27 @@ ], "cache-key": [ "cache-key", - "6f239c61801cf086a8827e4b68819162" + "46575c710481f7bfb5aa6e09bf6cf7fd" ], "cache-hit": [ "cache-hit", "False" ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], "cache-ttl": [ "cache-ttl", "1y" ], "content-length": [ "Content-Length", - "5433" + "5580" ] }, "data": { @@ -62,9 +70,9 @@ "previous": null, "results": [ { - "id": 1205, + "id": 397, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:15", + "last_modify_date": "24 Sep 2020 20:11:19", "seen": null, "country_name": "bolivia", "schema_name": "bolivia", @@ -73,6 +81,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -96,6 +105,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -138,9 +148,9 @@ "locations_data": {} }, { - "id": 1206, + "id": 398, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:15", + "last_modify_date": "24 Sep 2020 20:11:19", "seen": null, "country_name": "chad", "schema_name": "chad", @@ -149,6 +159,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -172,6 +183,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -214,9 +226,9 @@ "locations_data": {} }, { - "id": 1207, + "id": 399, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:15", + "last_modify_date": "24 Sep 2020 20:11:19", "seen": null, "country_name": "lebanon", "schema_name": "lebanon", @@ -225,6 +237,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -248,6 +261,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-budget_/get/{'-serializer': 'v2'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-budget_/get/{'-serializer': 'v2'}.response.json index 33b65b37e..ce86b620f 100644 --- a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-budget_/get/{'-serializer': 'v2'}.response.json +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-budget_/get/{'-serializer': 'v2'}.response.json @@ -15,7 +15,7 @@ ], "etag": [ "ETag", - "\"e5363ba8c0668551f4503e3cf54d1232\"" + "\"753da872402516f50088a6960a453ce7\"" ], "x-frame-options": [ "X-Frame-Options", @@ -39,12 +39,20 @@ ], "cache-key": [ "cache-key", - "e5363ba8c0668551f4503e3cf54d1232" + "753da872402516f50088a6960a453ce7" ], "cache-hit": [ "cache-hit", "False" ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], "cache-ttl": [ "cache-ttl", "1y" @@ -105,7 +113,7 @@ "attachment_types": null, "created": null, "updated": null, - "pd_ssfa_last_modify_date": "16 Sep 2019 18:29:15", + "pd_ssfa_last_modify_date": "24 Sep 2020 20:11:19", "pd_ssfa_url": "https://etools.unicef.org/pmp/interventions/None/details/?schema=bolivia", "budget_cso_contribution": null, "budget_currency": null, @@ -158,7 +166,7 @@ "attachment_types": null, "created": null, "updated": null, - "pd_ssfa_last_modify_date": "16 Sep 2019 18:29:15", + "pd_ssfa_last_modify_date": "24 Sep 2020 20:11:19", "pd_ssfa_url": "https://etools.unicef.org/pmp/interventions/None/details/?schema=chad", "budget_cso_contribution": null, "budget_currency": null, @@ -211,7 +219,7 @@ "attachment_types": null, "created": null, "updated": null, - "pd_ssfa_last_modify_date": "16 Sep 2019 18:29:15", + "pd_ssfa_last_modify_date": "24 Sep 2020 20:11:19", "pd_ssfa_url": "https://etools.unicef.org/pmp/interventions/None/details/?schema=lebanon", "budget_cso_contribution": null, "budget_currency": null, diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-locations_/get/{'-serializer': 'full'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-locations_/get/{'-serializer': 'full'}.response.json index efb962bb7..2b4fb245f 100644 --- a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-locations_/get/{'-serializer': 'full'}.response.json +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-locations_/get/{'-serializer': 'full'}.response.json @@ -15,7 +15,7 @@ ], "etag": [ "ETag", - "\"de2bbe17e274a197a5fa4cecea101436\"" + "\"c7f1a56696baa1203884fd1a535606cf\"" ], "x-frame-options": [ "X-Frame-Options", @@ -39,19 +39,27 @@ ], "cache-key": [ "cache-key", - "de2bbe17e274a197a5fa4cecea101436" + "c7f1a56696baa1203884fd1a535606cf" ], "cache-hit": [ "cache-hit", "False" ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], "cache-ttl": [ "cache-ttl", "1y" ], "content-length": [ "Content-Length", - "5925" + "6078" ] }, "data": { @@ -62,9 +70,9 @@ "previous": null, "results": [ { - "id": 1502, + "id": 496, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "country_name": "bolivia", "schema_name": "bolivia", "area_code": "", @@ -77,6 +85,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -93,10 +102,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 0, + "intervention_id": 495, "last_amendment_date": null, "metadata": {}, - "number": "#000", + "number": "#495", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -108,6 +117,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -131,7 +141,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title000", + "title": "title495", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", @@ -144,9 +154,9 @@ "location": null }, { - "id": 1503, + "id": 497, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "country_name": "chad", "schema_name": "chad", "area_code": "", @@ -159,6 +169,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -175,10 +186,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 1, + "intervention_id": 496, "last_amendment_date": null, "metadata": {}, - "number": "#001", + "number": "#496", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -190,6 +201,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -213,7 +225,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title001", + "title": "title496", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", @@ -226,9 +238,9 @@ "location": null }, { - "id": 1504, + "id": 498, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "country_name": "lebanon", "schema_name": "lebanon", "area_code": "", @@ -241,6 +253,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -257,10 +270,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 2, + "intervention_id": 497, "last_amendment_date": null, "metadata": {}, - "number": "#002", + "number": "#497", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -272,6 +285,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -295,7 +309,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title002", + "title": "title497", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-locations_/get/{'-serializer': 'geo'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-locations_/get/{'-serializer': 'geo'}.response.json index 28c3a40a2..40dc92339 100644 --- a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-locations_/get/{'-serializer': 'geo'}.response.json +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-locations_/get/{'-serializer': 'geo'}.response.json @@ -15,7 +15,7 @@ ], "etag": [ "ETag", - "\"ed871f6db27b8c200fd9474e6f5fb392\"" + "\"6336505a50caafeb95c3f0300c1641d0\"" ], "x-frame-options": [ "X-Frame-Options", @@ -39,19 +39,27 @@ ], "cache-key": [ "cache-key", - "ed871f6db27b8c200fd9474e6f5fb392" + "6336505a50caafeb95c3f0300c1641d0" ], "cache-hit": [ "cache-hit", "False" ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], "cache-ttl": [ "cache-ttl", "1y" ], "content-length": [ "Content-Length", - "5574" + "5727" ] }, "data": { @@ -62,10 +70,10 @@ "previous": null, "results": [ { - "id": 1502, + "id": 496, "location": null, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "country_name": "bolivia", "schema_name": "bolivia", "area_code": "", @@ -73,6 +81,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -89,10 +98,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 0, + "intervention_id": 495, "last_amendment_date": null, "metadata": {}, - "number": "#000", + "number": "#495", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -104,6 +113,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -127,7 +137,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title000", + "title": "title495", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", @@ -139,10 +149,10 @@ "last_pv_date": null }, { - "id": 1503, + "id": 497, "location": null, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "country_name": "chad", "schema_name": "chad", "area_code": "", @@ -150,6 +160,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -166,10 +177,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 1, + "intervention_id": 496, "last_amendment_date": null, "metadata": {}, - "number": "#001", + "number": "#496", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -181,6 +192,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -204,7 +216,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title001", + "title": "title496", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", @@ -216,10 +228,10 @@ "last_pv_date": null }, { - "id": 1504, + "id": 498, "location": null, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "country_name": "lebanon", "schema_name": "lebanon", "area_code": "", @@ -227,6 +239,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -243,10 +256,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 2, + "intervention_id": 497, "last_amendment_date": null, "metadata": {}, - "number": "#002", + "number": "#497", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -258,6 +271,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -281,7 +295,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title002", + "title": "title497", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-locations_/get/{'-serializer': 'plain'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-locations_/get/{'-serializer': 'plain'}.response.json index ff6dd637a..924ff7708 100644 --- a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-locations_/get/{'-serializer': 'plain'}.response.json +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-locations_/get/{'-serializer': 'plain'}.response.json @@ -15,7 +15,7 @@ ], "etag": [ "ETag", - "\"c10fe455a8592eda4e7b76df8c929741\"" + "\"7c6e221439eb1f62d420039e02eceae6\"" ], "x-frame-options": [ "X-Frame-Options", @@ -39,19 +39,27 @@ ], "cache-key": [ "cache-key", - "c10fe455a8592eda4e7b76df8c929741" + "7c6e221439eb1f62d420039e02eceae6" ], "cache-hit": [ "cache-hit", "False" ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], "cache-ttl": [ "cache-ttl", "1y" ], "content-length": [ "Content-Length", - "5604" + "5757" ] }, "data": { @@ -62,9 +70,9 @@ "previous": null, "results": [ { - "id": 1502, + "id": 496, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "seen": null, "country_name": "bolivia", "schema_name": "bolivia", @@ -78,6 +86,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -93,10 +102,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 0, + "intervention_id": 495, "last_amendment_date": null, "metadata": {}, - "number": "#000", + "number": "#495", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -106,6 +115,7 @@ "partner_focal_points": null, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -128,7 +138,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title000", + "title": "title495", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", @@ -140,9 +150,9 @@ "location": null }, { - "id": 1503, + "id": 497, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "seen": null, "country_name": "chad", "schema_name": "chad", @@ -156,6 +166,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -171,10 +182,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 1, + "intervention_id": 496, "last_amendment_date": null, "metadata": {}, - "number": "#001", + "number": "#496", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -184,6 +195,7 @@ "partner_focal_points": null, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -206,7 +218,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title001", + "title": "title496", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", @@ -218,9 +230,9 @@ "location": null }, { - "id": 1504, + "id": 498, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "seen": null, "country_name": "lebanon", "schema_name": "lebanon", @@ -234,6 +246,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -249,10 +262,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 2, + "intervention_id": 497, "last_amendment_date": null, "metadata": {}, - "number": "#002", + "number": "#497", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -262,6 +275,7 @@ "partner_focal_points": null, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -284,7 +298,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title002", + "title": "title497", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-locations_/get/{'-serializer': 'std'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-locations_/get/{'-serializer': 'std'}.response.json index 48e1d4460..b4c989acd 100644 --- a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-locations_/get/{'-serializer': 'std'}.response.json +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-locations_/get/{'-serializer': 'std'}.response.json @@ -15,7 +15,7 @@ ], "etag": [ "ETag", - "\"ee08354a486bb6d5e22bf2cca0e94415\"" + "\"4f85a66f7f3f23d253099166472a4c4d\"" ], "x-frame-options": [ "X-Frame-Options", @@ -39,19 +39,27 @@ ], "cache-key": [ "cache-key", - "ee08354a486bb6d5e22bf2cca0e94415" + "4f85a66f7f3f23d253099166472a4c4d" ], "cache-hit": [ "cache-hit", "False" ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], "cache-ttl": [ "cache-ttl", "1y" ], "content-length": [ "Content-Length", - "5232" + "5385" ] }, "data": { @@ -62,9 +70,9 @@ "previous": null, "results": [ { - "id": 1502, + "id": 496, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "seen": null, "country_name": "bolivia", "schema_name": "bolivia", @@ -78,6 +86,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -91,9 +100,9 @@ "document_type": null, "end_date": null, "fr_number": null, - "intervention_id": 0, + "intervention_id": 495, "last_amendment_date": null, - "number": "#000", + "number": "#495", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -103,6 +112,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -126,7 +136,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title000", + "title": "title495", "unicef_focal_points": null, "unicef_focal_points_data": {}, "unicef_signatory_name": null, @@ -135,9 +145,9 @@ "location": null }, { - "id": 1503, + "id": 497, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "seen": null, "country_name": "chad", "schema_name": "chad", @@ -151,6 +161,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -164,9 +175,9 @@ "document_type": null, "end_date": null, "fr_number": null, - "intervention_id": 1, + "intervention_id": 496, "last_amendment_date": null, - "number": "#001", + "number": "#496", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -176,6 +187,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -199,7 +211,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title001", + "title": "title496", "unicef_focal_points": null, "unicef_focal_points_data": {}, "unicef_signatory_name": null, @@ -208,9 +220,9 @@ "location": null }, { - "id": 1504, + "id": 498, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "seen": null, "country_name": "lebanon", "schema_name": "lebanon", @@ -224,6 +236,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -237,9 +250,9 @@ "document_type": null, "end_date": null, "fr_number": null, - "intervention_id": 2, + "intervention_id": 497, "last_amendment_date": null, - "number": "#002", + "number": "#497", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -249,6 +262,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -272,7 +286,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title002", + "title": "title497", "unicef_focal_points": null, "unicef_focal_points_data": {}, "unicef_signatory_name": null, diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-locations_/get/{'-serializer': 'v2'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-locations_/get/{'-serializer': 'v2'}.response.json index 998e9073e..59810c309 100644 --- a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-locations_/get/{'-serializer': 'v2'}.response.json +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions-locations_/get/{'-serializer': 'v2'}.response.json @@ -15,7 +15,7 @@ ], "etag": [ "ETag", - "\"bf5805b1fcac0000dd87d7e5d9619d7b\"" + "\"12f5c05104dadd34d8a6c77c802b5cd3\"" ], "x-frame-options": [ "X-Frame-Options", @@ -39,12 +39,20 @@ ], "cache-key": [ "cache-key", - "bf5805b1fcac0000dd87d7e5d9619d7b" + "12f5c05104dadd34d8a6c77c802b5cd3" ], "cache-hit": [ "cache-hit", "False" ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], "cache-ttl": [ "cache-ttl", "1y" @@ -72,7 +80,7 @@ "agreement_reference_number": null, "pd_ssfa_type": null, "pd_ssfa_reference_number": null, - "pd_ssfa_title": "title000", + "pd_ssfa_title": "title495", "offices": null, "unicef_focal_points": null, "partner_focal_points": null, @@ -105,7 +113,7 @@ "attachment_types": null, "created": null, "updated": null, - "pd_ssfa_last_modify_date": "16 Sep 2019 18:29:14", + "pd_ssfa_last_modify_date": "24 Sep 2020 20:11:18", "pd_ssfa_url": "https://etools.unicef.org/pmp/interventions/None/details/?schema=bolivia", "location_name": null, "location_pcode": null, @@ -123,7 +131,7 @@ "agreement_reference_number": null, "pd_ssfa_type": null, "pd_ssfa_reference_number": null, - "pd_ssfa_title": "title001", + "pd_ssfa_title": "title496", "offices": null, "unicef_focal_points": null, "partner_focal_points": null, @@ -156,7 +164,7 @@ "attachment_types": null, "created": null, "updated": null, - "pd_ssfa_last_modify_date": "16 Sep 2019 18:29:14", + "pd_ssfa_last_modify_date": "24 Sep 2020 20:11:18", "pd_ssfa_url": "https://etools.unicef.org/pmp/interventions/None/details/?schema=chad", "location_name": null, "location_pcode": null, @@ -174,7 +182,7 @@ "agreement_reference_number": null, "pd_ssfa_type": null, "pd_ssfa_reference_number": null, - "pd_ssfa_title": "title002", + "pd_ssfa_title": "title497", "offices": null, "unicef_focal_points": null, "partner_focal_points": null, @@ -207,7 +215,7 @@ "attachment_types": null, "created": null, "updated": null, - "pd_ssfa_last_modify_date": "16 Sep 2019 18:29:14", + "pd_ssfa_last_modify_date": "24 Sep 2020 20:11:18", "pd_ssfa_url": "https://etools.unicef.org/pmp/interventions/None/details/?schema=lebanon", "location_name": null, "location_pcode": null, diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions_/get/{'-serializer': 'full'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions_/get/{'-serializer': 'full'}.response.json index 512189284..0935e0553 100644 --- a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions_/get/{'-serializer': 'full'}.response.json +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions_/get/{'-serializer': 'full'}.response.json @@ -15,7 +15,7 @@ ], "etag": [ "ETag", - "\"d090f34b0c253e4330ab0e41cd0b7fd7\"" + "\"e54dd8ea0202540ea369704f4e1bb360\"" ], "x-frame-options": [ "X-Frame-Options", @@ -31,7 +31,7 @@ ], "cache-version": [ "cache-version", - "1" + "2" ], "system-filters": [ "system-filters", @@ -39,19 +39,27 @@ ], "cache-key": [ "cache-key", - "d090f34b0c253e4330ab0e41cd0b7fd7" + "e54dd8ea0202540ea369704f4e1bb360" ], "cache-hit": [ "cache-hit", "False" ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], "cache-ttl": [ "cache-ttl", "1y" ], "content-length": [ "Content-Length", - "6210" + "6363" ] }, "data": { @@ -62,9 +70,9 @@ "previous": null, "results": [ { - "id": 1598, + "id": 506, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "country_name": "bolivia", "schema_name": "bolivia", "area_code": "", @@ -72,6 +80,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -88,10 +97,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 0, + "intervention_id": 505, "last_amendment_date": null, "metadata": {}, - "number": "#000", + "number": "#505", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -103,6 +112,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -126,7 +136,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title000", + "title": "title505", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", @@ -150,9 +160,9 @@ ] }, { - "id": 1599, + "id": 507, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "country_name": "chad", "schema_name": "chad", "area_code": "", @@ -160,6 +170,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -176,10 +187,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 1, + "intervention_id": 506, "last_amendment_date": null, "metadata": {}, - "number": "#001", + "number": "#506", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -191,6 +202,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -214,7 +226,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title001", + "title": "title506", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", @@ -238,9 +250,9 @@ ] }, { - "id": 1600, + "id": 508, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "country_name": "lebanon", "schema_name": "lebanon", "area_code": "", @@ -248,6 +260,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -264,10 +277,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 2, + "intervention_id": 507, "last_amendment_date": null, "metadata": {}, - "number": "#002", + "number": "#507", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -279,6 +292,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -302,7 +316,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title002", + "title": "title507", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions_/get/{'-serializer': 'plain'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions_/get/{'-serializer': 'plain'}.response.json index b8a0b1927..9abc691f9 100644 --- a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions_/get/{'-serializer': 'plain'}.response.json +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions_/get/{'-serializer': 'plain'}.response.json @@ -15,7 +15,7 @@ ], "etag": [ "ETag", - "\"a4fe2ed2ae028586394d5b98989ea815\"" + "\"3651eeab5e4afd32def7b1750869da97\"" ], "x-frame-options": [ "X-Frame-Options", @@ -31,7 +31,7 @@ ], "cache-version": [ "cache-version", - "1" + "2" ], "system-filters": [ "system-filters", @@ -39,19 +39,27 @@ ], "cache-key": [ "cache-key", - "a4fe2ed2ae028586394d5b98989ea815" + "3651eeab5e4afd32def7b1750869da97" ], "cache-hit": [ "cache-hit", "False" ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], "cache-ttl": [ "cache-ttl", "1y" ], "content-length": [ "Content-Length", - "6321" + "6474" ] }, "data": { @@ -62,19 +70,19 @@ "previous": null, "results": [ { - "id": 1598, + "id": 506, "pd_ssfa_type": null, "pd_ssfa_reference_number": null, - "pd_ssfa_title": "title000", + "pd_ssfa_title": "title505", "pd_ssfa_status": null, "pd_ssfa_start_date": null, "pd_ssfa_end_date": null, "pd_ssfa_submission_date": null, "pd_ssfa_submission_date_prc": null, - "pd_ssfa_last_modify_date": "16 Sep 2019 18:29:14", + "pd_ssfa_last_modify_date": "24 Sep 2020 20:11:18", "pd_ssfa_url": "https://etools.unicef.org/pmp/interventions/None/details/?schema=bolivia", "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "seen": null, "country_name": "bolivia", "schema_name": "bolivia", @@ -83,6 +91,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -98,10 +107,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 0, + "intervention_id": 505, "last_amendment_date": null, "metadata": {}, - "number": "#000", + "number": "#505", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -111,6 +120,7 @@ "partner_focal_points": null, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -133,7 +143,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title000", + "title": "title505", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", @@ -145,19 +155,19 @@ "locations": null }, { - "id": 1599, + "id": 507, "pd_ssfa_type": null, "pd_ssfa_reference_number": null, - "pd_ssfa_title": "title001", + "pd_ssfa_title": "title506", "pd_ssfa_status": null, "pd_ssfa_start_date": null, "pd_ssfa_end_date": null, "pd_ssfa_submission_date": null, "pd_ssfa_submission_date_prc": null, - "pd_ssfa_last_modify_date": "16 Sep 2019 18:29:14", + "pd_ssfa_last_modify_date": "24 Sep 2020 20:11:18", "pd_ssfa_url": "https://etools.unicef.org/pmp/interventions/None/details/?schema=chad", "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "seen": null, "country_name": "chad", "schema_name": "chad", @@ -166,6 +176,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -181,10 +192,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 1, + "intervention_id": 506, "last_amendment_date": null, "metadata": {}, - "number": "#001", + "number": "#506", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -194,6 +205,7 @@ "partner_focal_points": null, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -216,7 +228,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title001", + "title": "title506", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", @@ -228,19 +240,19 @@ "locations": null }, { - "id": 1600, + "id": 508, "pd_ssfa_type": null, "pd_ssfa_reference_number": null, - "pd_ssfa_title": "title002", + "pd_ssfa_title": "title507", "pd_ssfa_status": null, "pd_ssfa_start_date": null, "pd_ssfa_end_date": null, "pd_ssfa_submission_date": null, "pd_ssfa_submission_date_prc": null, - "pd_ssfa_last_modify_date": "16 Sep 2019 18:29:14", + "pd_ssfa_last_modify_date": "24 Sep 2020 20:11:18", "pd_ssfa_url": "https://etools.unicef.org/pmp/interventions/None/details/?schema=lebanon", "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "seen": null, "country_name": "lebanon", "schema_name": "lebanon", @@ -249,6 +261,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -264,10 +277,10 @@ "fr_number": null, "in_kind_amount": "10.00", "in_kind_amount_local": "10.00", - "intervention_id": 2, + "intervention_id": 507, "last_amendment_date": null, "metadata": {}, - "number": "#002", + "number": "#507", "number_of_attachments": null, "number_of_amendments": null, "offices": null, @@ -277,6 +290,7 @@ "partner_focal_points": null, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -299,7 +313,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title002", + "title": "title507", "total": "10.00", "total_local": "10.00", "unicef_cash": "10.00", diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions_/get/{'-serializer': 'short'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions_/get/{'-serializer': 'short'}.response.json index 694a5f560..0e86cf7de 100644 --- a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions_/get/{'-serializer': 'short'}.response.json +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions_/get/{'-serializer': 'short'}.response.json @@ -15,7 +15,7 @@ ], "etag": [ "ETag", - "\"80005e5084d491ef3d8b735e1640a2a4\"" + "\"0ba505bcebea4a6d9464ed4a33966c83\"" ], "x-frame-options": [ "X-Frame-Options", @@ -31,7 +31,7 @@ ], "cache-version": [ "cache-version", - "1" + "2" ], "system-filters": [ "system-filters", @@ -39,12 +39,20 @@ ], "cache-key": [ "cache-key", - "80005e5084d491ef3d8b735e1640a2a4" + "0ba505bcebea4a6d9464ed4a33966c83" ], "cache-hit": [ "cache-hit", "False" ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], "cache-ttl": [ "cache-ttl", "1y" @@ -62,20 +70,20 @@ "previous": null, "results": [ { - "title": "title000", - "number": "#000", + "title": "title505", + "number": "#505", "country_name": "bolivia", "start_date": null }, { - "title": "title001", - "number": "#001", + "title": "title506", + "number": "#506", "country_name": "chad", "start_date": null }, { - "title": "title002", - "number": "#002", + "title": "title507", + "number": "#507", "country_name": "lebanon", "start_date": null } diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions_/get/{'-serializer': 'std'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions_/get/{'-serializer': 'std'}.response.json index e67bb56ba..e024a4983 100644 --- a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions_/get/{'-serializer': 'std'}.response.json +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions_/get/{'-serializer': 'std'}.response.json @@ -15,7 +15,7 @@ ], "etag": [ "ETag", - "\"01fd0819d8e4d699e9e8268d1caf84e0\"" + "\"11c0c3e787af01afbfe6bde6e62a67f7\"" ], "x-frame-options": [ "X-Frame-Options", @@ -31,7 +31,7 @@ ], "cache-version": [ "cache-version", - "1" + "2" ], "system-filters": [ "system-filters", @@ -39,19 +39,27 @@ ], "cache-key": [ "cache-key", - "01fd0819d8e4d699e9e8268d1caf84e0" + "11c0c3e787af01afbfe6bde6e62a67f7" ], "cache-hit": [ "cache-hit", "False" ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], "cache-ttl": [ "cache-ttl", "1y" ], "content-length": [ "Content-Length", - "5472" + "5625" ] }, "data": { @@ -62,9 +70,9 @@ "previous": null, "results": [ { - "id": 1598, + "id": 506, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "seen": null, "country_name": "bolivia", "schema_name": "bolivia", @@ -73,6 +81,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -86,9 +95,9 @@ "document_type": null, "end_date": null, "fr_number": null, - "intervention_id": 0, + "intervention_id": 505, "last_amendment_date": null, - "number": "#000", + "number": "#505", "number_of_attachments": null, "number_of_amendments": null, "offices_data": {}, @@ -97,6 +106,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -120,7 +130,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title000", + "title": "title505", "unicef_focal_points": null, "unicef_focal_points_data": {}, "unicef_signatory_name": null, @@ -140,9 +150,9 @@ ] }, { - "id": 1599, + "id": 507, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "seen": null, "country_name": "chad", "schema_name": "chad", @@ -151,6 +161,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -164,9 +175,9 @@ "document_type": null, "end_date": null, "fr_number": null, - "intervention_id": 1, + "intervention_id": 506, "last_amendment_date": null, - "number": "#001", + "number": "#506", "number_of_attachments": null, "number_of_amendments": null, "offices_data": {}, @@ -175,6 +186,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -198,7 +210,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title001", + "title": "title506", "unicef_focal_points": null, "unicef_focal_points_data": {}, "unicef_signatory_name": null, @@ -218,9 +230,9 @@ ] }, { - "id": 1600, + "id": 508, "source_id": null, - "last_modify_date": "16 Sep 2019 18:29:14", + "last_modify_date": "24 Sep 2020 20:11:18", "seen": null, "country_name": "lebanon", "schema_name": "lebanon", @@ -229,6 +241,7 @@ "amendment_types": null, "attachment_types": null, "agreement_id": null, + "cfei_number": null, "clusters": null, "contingency_pd": null, "cp_outputs": null, @@ -242,9 +255,9 @@ "document_type": null, "end_date": null, "fr_number": null, - "intervention_id": 2, + "intervention_id": 507, "last_amendment_date": null, - "number": "#002", + "number": "#507", "number_of_attachments": null, "number_of_amendments": null, "offices_data": {}, @@ -253,6 +266,7 @@ "partner_focal_points_data": {}, "partner_id": null, "partner_name": null, + "partner_sea_risk_rating": null, "partner_signatory_name": null, "partner_signatory_email": null, "partner_signatory_first_name": null, @@ -276,7 +290,7 @@ "status": null, "submission_date": null, "submission_date_prc": null, - "title": "title002", + "title": "title507", "unicef_focal_points": null, "unicef_focal_points_data": {}, "unicef_signatory_name": null, diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions_/get/{'-serializer': 'v2'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions_/get/{'-serializer': 'v2'}.response.json index 7e8ad9f56..7126b24ad 100644 --- a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions_/get/{'-serializer': 'v2'}.response.json +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_interventions_/get/{'-serializer': 'v2'}.response.json @@ -15,7 +15,7 @@ ], "etag": [ "ETag", - "\"5a7ff754d6364d746f963c0faad7c810\"" + "\"7d8e2c4f1f996c78834f588d820252d7\"" ], "x-frame-options": [ "X-Frame-Options", @@ -31,7 +31,7 @@ ], "cache-version": [ "cache-version", - "1" + "2" ], "system-filters": [ "system-filters", @@ -39,12 +39,20 @@ ], "cache-key": [ "cache-key", - "5a7ff754d6364d746f963c0faad7c810" + "7d8e2c4f1f996c78834f588d820252d7" ], "cache-hit": [ "cache-hit", "False" ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], "cache-ttl": [ "cache-ttl", "1y" @@ -72,7 +80,7 @@ "agreement_reference_number": null, "pd_ssfa_type": null, "pd_ssfa_reference_number": null, - "pd_ssfa_title": "title000", + "pd_ssfa_title": "title505", "offices": null, "unicef_focal_points": null, "partner_focal_points": null, @@ -105,7 +113,7 @@ "attachment_types": null, "created": null, "updated": null, - "pd_ssfa_last_modify_date": "16 Sep 2019 18:29:14", + "pd_ssfa_last_modify_date": "24 Sep 2020 20:11:18", "pd_ssfa_url": "https://etools.unicef.org/pmp/interventions/None/details/?schema=bolivia" }, { @@ -119,7 +127,7 @@ "agreement_reference_number": null, "pd_ssfa_type": null, "pd_ssfa_reference_number": null, - "pd_ssfa_title": "title001", + "pd_ssfa_title": "title506", "offices": null, "unicef_focal_points": null, "partner_focal_points": null, @@ -152,7 +160,7 @@ "attachment_types": null, "created": null, "updated": null, - "pd_ssfa_last_modify_date": "16 Sep 2019 18:29:14", + "pd_ssfa_last_modify_date": "24 Sep 2020 20:11:18", "pd_ssfa_url": "https://etools.unicef.org/pmp/interventions/None/details/?schema=chad" }, { @@ -166,7 +174,7 @@ "agreement_reference_number": null, "pd_ssfa_type": null, "pd_ssfa_reference_number": null, - "pd_ssfa_title": "title002", + "pd_ssfa_title": "title507", "offices": null, "unicef_focal_points": null, "partner_focal_points": null, @@ -199,7 +207,7 @@ "attachment_types": null, "created": null, "updated": null, - "pd_ssfa_last_modify_date": "16 Sep 2019 18:29:14", + "pd_ssfa_last_modify_date": "24 Sep 2020 20:11:18", "pd_ssfa_url": "https://etools.unicef.org/pmp/interventions/None/details/?schema=lebanon" } ] diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_partners_/get/{'-serializer': 'full'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_partners_/get/{'-serializer': 'full'}.response.json index ec48767ca..942e34122 100644 --- a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_partners_/get/{'-serializer': 'full'}.response.json +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_partners_/get/{'-serializer': 'full'}.response.json @@ -15,7 +15,7 @@ ], "etag": [ "ETag", - "\"a95e5d9df8f7c00d8b4f81b79b0d2418\"" + "\"883e06f30c376ba36fb508391fb2fd66\"" ], "x-frame-options": [ "X-Frame-Options", @@ -39,19 +39,27 @@ ], "cache-key": [ "cache-key", - "a95e5d9df8f7c00d8b4f81b79b0d2418" + "883e06f30c376ba36fb508391fb2fd66" ], "cache-hit": [ "cache-hit", "False" ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], "cache-ttl": [ "cache-ttl", "1y" ], "content-length": [ "Content-Length", - "3156" + "3240" ] }, "data": { @@ -108,7 +116,8 @@ "hact_min_requirements": {}, "min_req_spot_checks": 0, "planned_engagement": {}, - "last_pv_date": null + "last_pv_date": null, + "sea_risk_rating_name": null }, { "id": 909, @@ -157,7 +166,8 @@ "hact_min_requirements": {}, "min_req_spot_checks": 0, "planned_engagement": {}, - "last_pv_date": null + "last_pv_date": null, + "sea_risk_rating_name": null }, { "id": 910, @@ -206,7 +216,8 @@ "hact_min_requirements": {}, "min_req_spot_checks": 0, "planned_engagement": {}, - "last_pv_date": null + "last_pv_date": null, + "sea_risk_rating_name": null } ] }, diff --git a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_partners_/get/{'-serializer': 'std'}.response.json b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_partners_/get/{'-serializer': 'std'}.response.json index 0fb5c00a5..21e956616 100644 --- a/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_partners_/get/{'-serializer': 'std'}.response.json +++ b/tests/api/interfaces/_api_checker/test_data/test_list/_api_latest_datamart_partners_/get/{'-serializer': 'std'}.response.json @@ -15,7 +15,7 @@ ], "etag": [ "ETag", - "\"7ccec5df985dccc47feaacff3ebeb6b2\"" + "\"a4d82a853c4da74c7164a1ec9b90dbd6\"" ], "x-frame-options": [ "X-Frame-Options", @@ -39,19 +39,27 @@ ], "cache-key": [ "cache-key", - "7ccec5df985dccc47feaacff3ebeb6b2" + "a4d82a853c4da74c7164a1ec9b90dbd6" ], "cache-hit": [ "cache-hit", "False" ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], "cache-ttl": [ "cache-ttl", "1y" ], "content-length": [ "Content-Length", - "3093" + "3177" ] }, "data": { @@ -107,7 +115,8 @@ "vision_synced": true, "min_req_programme_visits": 0, "hact_min_requirements": {}, - "min_req_spot_checks": 0 + "min_req_spot_checks": 0, + "sea_risk_rating_name": null }, { "id": 909, @@ -155,7 +164,8 @@ "vision_synced": true, "min_req_programme_visits": 0, "hact_min_requirements": {}, - "min_req_spot_checks": 0 + "min_req_spot_checks": 0, + "sea_risk_rating_name": null }, { "id": 910, @@ -203,7 +213,8 @@ "vision_synced": true, "min_req_programme_visits": 0, "hact_min_requirements": {}, - "min_req_spot_checks": 0 + "min_req_spot_checks": 0, + "sea_risk_rating_name": null } ] }, diff --git a/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_audit_engagement-actionpoints_400_/get/None.response.json b/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_audit_engagement-actionpoints_400_/get/None.response.json new file mode 100644 index 000000000..5e8fcdf81 --- /dev/null +++ b/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_audit_engagement-actionpoints_400_/get/None.response.json @@ -0,0 +1,74 @@ +{ + "status_code": 200, + "headers": { + "content-type": [ + "Content-Type", + "application/json" + ], + "vary": [ + "Vary", + "Accept, Origin, Cookie" + ], + "allow": [ + "Allow", + "GET, HEAD, OPTIONS" + ], + "etag": [ + "ETag", + "\"3db7298f8497ebba89ccfac990f3bb87\"" + ], + "x-frame-options": [ + "X-Frame-Options", + "DENY" + ], + "view": [ + "view", + "etools_datamart.api.endpoints.datamart.audit_engagement.EngagementActionPointViewSet" + ], + "service": [ + "service", + "etools_datamart.api.endpoints.datamart.audit_engagement.EngagementActionPointViewSet" + ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], + "cache-hit": [ + "cache-hit", + "False" + ], + "cache-ttl": [ + "cache-ttl", + "1y" + ], + "content-length": [ + "Content-Length", + "421" + ] + }, + "data": { + "po_item": null, + "engagement_type": null, + "start_date": null, + "end_date": null, + "partner": "Partner1", + "partner_contacted_at": null, + "vendor_number": "123", + "auditor": null, + "total_value": "0.00", + "spotcheck_total_amount_tested": null, + "date_of_field_visit": null, + "final_report": null, + "agreement": null, + "spotcheck_total_amount_of_ineligible_expenditure": null, + "financial_findings": "0.00", + "action_points": null, + "status": null, + "audit_opinion": null + }, + "content_type": null +} \ No newline at end of file diff --git a/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_audit_engagement-details_664_/get/None.response.json b/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_audit_engagement-details_664_/get/None.response.json new file mode 100644 index 000000000..00a9414e2 --- /dev/null +++ b/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_audit_engagement-details_664_/get/None.response.json @@ -0,0 +1,76 @@ +{ + "status_code": 200, + "headers": { + "content-type": [ + "Content-Type", + "application/json" + ], + "vary": [ + "Vary", + "Accept, Origin, Cookie" + ], + "allow": [ + "Allow", + "GET, HEAD, OPTIONS" + ], + "etag": [ + "ETag", + "\"4d61905ced5605c7039d3237cab10316\"" + ], + "x-frame-options": [ + "X-Frame-Options", + "DENY" + ], + "view": [ + "view", + "etools_datamart.api.endpoints.datamart.audit_engagement.EngagementDetailViewSet" + ], + "service": [ + "service", + "etools_datamart.api.endpoints.datamart.audit_engagement.EngagementDetailViewSet" + ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], + "cache-hit": [ + "cache-hit", + "False" + ], + "cache-ttl": [ + "cache-ttl", + "1y" + ], + "content-length": [ + "Content-Length", + "455" + ] + }, + "data": { + "po_item": null, + "engagement_type": null, + "start_date": null, + "end_date": null, + "partner": "Partner1", + "partner_contacted_at": null, + "vendor_number": "123", + "auditor": null, + "total_value": "0.00", + "spotcheck_total_amount_tested": null, + "date_of_field_visit": null, + "final_report": null, + "agreement": null, + "rating": null, + "rating_extra": null, + "spotcheck_total_amount_of_ineligible_expenditure": null, + "financial_findings": "0.00", + "action_points": null, + "status": null, + "audit_opinion": null + }, + "content_type": null +} \ No newline at end of file diff --git a/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_audit_engagements_1191_/get/None.response.json b/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_audit_engagements_1191_/get/None.response.json index 65cd00ef9..391237f0f 100644 --- a/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_audit_engagements_1191_/get/None.response.json +++ b/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_audit_engagements_1191_/get/None.response.json @@ -15,7 +15,7 @@ ], "etag": [ "ETag", - "\"77aa9b832743e3440fd06f119ef3b670\"" + "\"e6ce457046addba3f766bb07f6dfebbb\"" ], "x-frame-options": [ "X-Frame-Options", @@ -29,6 +29,14 @@ "service", "etools_datamart.api.endpoints.datamart.audit_engagement.EngagementViewSet" ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], "cache-hit": [ "cache-hit", "False" @@ -39,7 +47,7 @@ ], "content-length": [ "Content-Length", - "1414" + "1484" ] }, "data": { @@ -54,6 +62,7 @@ "active_pd_data": null, "additional_supporting_documentation_provided": null, "agreement": null, + "auditor": null, "amount_refunded": "0.00", "authorized_officers": null, "authorized_officers_data": null, @@ -97,9 +106,12 @@ "spotcheck_total_amount_of_ineligible_expenditure": null, "spotcheck_internal_controls": null, "spotcheck_final_report": null, + "rating": null, + "rating_extra": null, "audited_expenditure": "0.00", "financial_findings": "0.00", - "audit_opinion": null + "audit_opinion": null, + "action_points": null }, "content_type": null } \ No newline at end of file diff --git a/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_interventions-budget_400_/get/None.response.json b/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_interventions-budget_400_/get/None.response.json new file mode 100644 index 000000000..dcd56916b --- /dev/null +++ b/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_interventions-budget_400_/get/None.response.json @@ -0,0 +1,132 @@ +{ + "status_code": 200, + "headers": { + "content-type": [ + "Content-Type", + "application/json" + ], + "vary": [ + "Vary", + "Accept, Origin, Cookie" + ], + "allow": [ + "Allow", + "GET, HEAD, OPTIONS" + ], + "etag": [ + "ETag", + "\"1388e0fe8c2510d30e000e31549ad43e\"" + ], + "x-frame-options": [ + "X-Frame-Options", + "DENY" + ], + "view": [ + "view", + "etools_datamart.api.endpoints.datamart.partners_interventionbudget.InterventionBudgetViewSet" + ], + "service": [ + "service", + "etools_datamart.api.endpoints.datamart.partners_interventionbudget.InterventionBudgetViewSet" + ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], + "cache-hit": [ + "cache-hit", + "False" + ], + "cache-ttl": [ + "cache-ttl", + "1y" + ], + "content-length": [ + "Content-Length", + "1833" + ] + }, + "data": { + "id": 400, + "source_id": null, + "last_modify_date": "24 Sep 2020 20:11:22", + "seen": null, + "country_name": "bolivia", + "schema_name": "bolivia", + "area_code": "", + "agreement_reference_number": null, + "amendment_types": null, + "attachment_types": null, + "agreement_id": null, + "cfei_number": null, + "clusters": null, + "contingency_pd": null, + "cp_outputs": null, + "cp_outputs_data": {}, + "cso_type": null, + "country_programme": null, + "country_programme_id": null, + "days_from_prc_review_to_signature": null, + "days_from_submission_to_signature": null, + "document_type": null, + "end_date": null, + "fr_number": null, + "intervention_id": null, + "last_amendment_date": null, + "number": null, + "number_of_attachments": null, + "number_of_amendments": null, + "offices_data": {}, + "partner_authorized_officer_signatory_id": null, + "partner_focal_points": null, + "partner_focal_points_data": {}, + "partner_id": null, + "partner_name": null, + "partner_sea_risk_rating": null, + "partner_signatory_name": null, + "partner_signatory_email": null, + "partner_signatory_first_name": null, + "partner_signatory_last_name": null, + "partner_signatory_phone": null, + "partner_signatory_title": null, + "partner_source_id": null, + "partner_type": null, + "partner_vendor_number": null, + "planned_programmatic_visits": null, + "population_focus": null, + "prc_review_document": null, + "review_date_prc": null, + "reference_number": null, + "sections": null, + "sections_data": {}, + "signed_by_partner_date": null, + "signed_by_unicef_date": null, + "signed_pd_document": null, + "start_date": null, + "status": null, + "submission_date": null, + "submission_date_prc": null, + "title": null, + "unicef_focal_points": null, + "unicef_focal_points_data": {}, + "unicef_signatory_name": null, + "updated": null, + "last_pv_date": null, + "created": null, + "modified": null, + "budget_cso_contribution": null, + "budget_currency": null, + "budget_total": null, + "budget_unicef_cash": null, + "budget_unicef_supply": null, + "fr_numbers": null, + "fr_numbers_data": {}, + "locations": null, + "locations_data": {} + }, + "content_type": null +} \ No newline at end of file diff --git a/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_interventions-locations_499_/get/None.response.json b/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_interventions-locations_499_/get/None.response.json new file mode 100644 index 000000000..8124b87cc --- /dev/null +++ b/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_interventions-locations_499_/get/None.response.json @@ -0,0 +1,129 @@ +{ + "status_code": 200, + "headers": { + "content-type": [ + "Content-Type", + "application/json" + ], + "vary": [ + "Vary", + "Accept, Origin, Cookie" + ], + "allow": [ + "Allow", + "GET, HEAD, OPTIONS" + ], + "etag": [ + "ETag", + "\"8e751ae6d378e34bcc94a6ccf9296395\"" + ], + "x-frame-options": [ + "X-Frame-Options", + "DENY" + ], + "view": [ + "view", + "etools_datamart.api.endpoints.datamart.intervention.InterventionByLocationViewSet" + ], + "service": [ + "service", + "etools_datamart.api.endpoints.datamart.intervention.InterventionByLocationViewSet" + ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], + "cache-hit": [ + "cache-hit", + "False" + ], + "cache-ttl": [ + "cache-ttl", + "1y" + ], + "content-length": [ + "Content-Length", + "1768" + ] + }, + "data": { + "id": 499, + "source_id": null, + "last_modify_date": "24 Sep 2020 20:11:22", + "seen": null, + "country_name": "bolivia", + "schema_name": "bolivia", + "area_code": "", + "location_source_id": null, + "location_name": null, + "location_pcode": null, + "location_level": null, + "location_levelname": null, + "agreement_reference_number": null, + "amendment_types": null, + "attachment_types": null, + "agreement_id": null, + "cfei_number": null, + "clusters": null, + "contingency_pd": null, + "cp_outputs": null, + "cp_outputs_data": {}, + "cso_type": null, + "country_programme": null, + "country_programme_id": null, + "created": null, + "days_from_prc_review_to_signature": null, + "days_from_submission_to_signature": null, + "document_type": null, + "end_date": null, + "fr_number": null, + "intervention_id": 498, + "last_amendment_date": null, + "number": "#498", + "number_of_attachments": null, + "number_of_amendments": null, + "offices": null, + "offices_data": {}, + "partner_authorized_officer_signatory_id": null, + "partner_focal_points": null, + "partner_focal_points_data": {}, + "partner_id": null, + "partner_name": null, + "partner_sea_risk_rating": null, + "partner_signatory_name": null, + "partner_signatory_email": null, + "partner_signatory_first_name": null, + "partner_signatory_last_name": null, + "partner_signatory_phone": null, + "partner_signatory_title": null, + "partner_source_id": null, + "partner_type": null, + "partner_vendor_number": null, + "planned_programmatic_visits": null, + "population_focus": null, + "prc_review_document": null, + "review_date_prc": null, + "reference_number": null, + "sections": null, + "sections_data": {}, + "signed_by_partner_date": null, + "signed_by_unicef_date": null, + "signed_pd_document": null, + "start_date": null, + "status": null, + "submission_date": null, + "submission_date_prc": null, + "title": "title498", + "unicef_focal_points": null, + "unicef_focal_points_data": {}, + "unicef_signatory_name": null, + "updated": null, + "last_pv_date": null, + "location": null + }, + "content_type": null +} \ No newline at end of file diff --git a/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_interventions_509_/get/None.response.json b/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_interventions_509_/get/None.response.json new file mode 100644 index 000000000..c01112735 --- /dev/null +++ b/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_interventions_509_/get/None.response.json @@ -0,0 +1,134 @@ +{ + "status_code": 200, + "headers": { + "content-type": [ + "Content-Type", + "application/json" + ], + "vary": [ + "Vary", + "Accept, Origin, Cookie" + ], + "allow": [ + "Allow", + "GET, HEAD, OPTIONS" + ], + "etag": [ + "ETag", + "\"860993eebe01fdb20e5d742098c5d626\"" + ], + "x-frame-options": [ + "X-Frame-Options", + "DENY" + ], + "view": [ + "view", + "etools_datamart.api.endpoints.datamart.intervention.InterventionViewSet" + ], + "service": [ + "service", + "etools_datamart.api.endpoints.datamart.intervention.InterventionViewSet" + ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], + "cache-hit": [ + "cache-hit", + "False" + ], + "cache-ttl": [ + "cache-ttl", + "1y" + ], + "content-length": [ + "Content-Length", + "1848" + ] + }, + "data": { + "id": 509, + "source_id": null, + "last_modify_date": "24 Sep 2020 20:11:22", + "seen": null, + "country_name": "bolivia", + "schema_name": "bolivia", + "area_code": "", + "agreement_reference_number": null, + "amendment_types": null, + "attachment_types": null, + "agreement_id": null, + "cfei_number": null, + "clusters": null, + "contingency_pd": null, + "cp_outputs": null, + "cp_outputs_data": {}, + "cso_type": null, + "country_programme": null, + "country_programme_id": null, + "created": null, + "days_from_prc_review_to_signature": null, + "days_from_submission_to_signature": null, + "document_type": null, + "end_date": null, + "fr_number": null, + "intervention_id": 508, + "last_amendment_date": null, + "number": "#508", + "number_of_attachments": null, + "number_of_amendments": null, + "offices_data": {}, + "partner_authorized_officer_signatory_id": null, + "partner_focal_points": null, + "partner_focal_points_data": {}, + "partner_id": null, + "partner_name": null, + "partner_sea_risk_rating": null, + "partner_signatory_name": null, + "partner_signatory_email": null, + "partner_signatory_first_name": null, + "partner_signatory_last_name": null, + "partner_signatory_phone": null, + "partner_signatory_title": null, + "partner_source_id": null, + "partner_type": null, + "partner_vendor_number": null, + "planned_programmatic_visits": null, + "population_focus": null, + "prc_review_document": null, + "review_date_prc": null, + "reference_number": null, + "sections": null, + "sections_data": {}, + "signed_by_partner_date": null, + "signed_by_unicef_date": null, + "signed_pd_document": null, + "start_date": null, + "status": null, + "submission_date": null, + "submission_date_prc": null, + "title": "title508", + "unicef_focal_points": null, + "unicef_focal_points_data": {}, + "unicef_signatory_name": null, + "updated": null, + "last_pv_date": null, + "locations": null, + "locations_data": [ + { + "name": "location.name", + "level": "location.level", + "pcode": "location.p_code", + "latitude": "location.latitude", + "levelname": "location.gateway.name", + "longitude": "location.longitude", + "source_id": "1" + } + ] + }, + "content_type": null +} \ No newline at end of file diff --git a/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_partners_911_/get/None.response.json b/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_partners_911_/get/None.response.json index a398b7fed..4828a2f27 100644 --- a/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_partners_911_/get/None.response.json +++ b/tests/api/interfaces/_api_checker/test_data/test_record/_api_latest_datamart_partners_911_/get/None.response.json @@ -15,7 +15,7 @@ ], "etag": [ "ETag", - "\"68f9af627fae4adaf01cb232d256ff6a\"" + "\"0f879a1c80237d96cd8e608d73fa9c6b\"" ], "x-frame-options": [ "X-Frame-Options", @@ -29,6 +29,14 @@ "service", "etools_datamart.api.endpoints.datamart.partners_partner.PartnerViewSet" ], + "qs_filter": [ + "qs_filter", + "{}" + ], + "qs_exclude": [ + "qs_exclude", + "{}" + ], "cache-hit": [ "cache-hit", "False" @@ -39,7 +47,7 @@ ], "content-length": [ "Content-Length", - "1004" + "1032" ] }, "data": { @@ -88,7 +96,8 @@ "vision_synced": true, "min_req_programme_visits": 0, "hact_min_requirements": {}, - "min_req_spot_checks": 0 + "min_req_spot_checks": 0, + "sea_risk_rating_name": null }, "content_type": null } \ No newline at end of file diff --git a/tests/datamart/test_data_admin.py b/tests/datamart/test_data_admin.py index e4dec587e..5128acd14 100644 --- a/tests/datamart/test_data_admin.py +++ b/tests/datamart/test_data_admin.py @@ -9,15 +9,20 @@ from strategy_field.utils import fqn from test_utilities.factories import factories_registry +EXCLUDED_MODELS = [ + 'GeoName', +] + def pytest_generate_tests(metafunc): if 'modeladmin' in metafunc.fixturenames: m = [] ids = [] for model, admin in site._registry.items(): - if model._meta.app_label == 'data': - m.append(admin) - ids.append(admin.__class__.__name__) + if model.__name__ not in EXCLUDED_MODELS: + if model._meta.app_label == 'data': + m.append(admin) + ids.append(admin.__class__.__name__) metafunc.parametrize("modeladmin", m, ids=ids)